.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}
.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}
.slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.content {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
h1 {
    font-size: 85px;
    margin-bottom: 10px;
}
.btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(to left, #fe5917, #f12a2f);
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
}
.slider-navigation .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.left-arrow {
    left: 10px;
}
.right-arrow {
    right: 10px;
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.nav-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.nav-dot.active {
    background: #fe5917;
}
