.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Overlay for better text readability */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.discover-btn {
    background-color: #FF7A00;
    color: white;
    padding: 15px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.discover-btn:hover {
    background-color: #4040BF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #FF7A00;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: #FF7A00;
    transform: scale(1.2);
    border-color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet styles */
@media (max-width: 991px) {
    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.3rem;
    }

    .discover-btn {
        padding: 12px 35px;
        font-size: 1.1rem;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .slider-arrow.prev {
        left: 20px;
    }

    .slider-arrow.next {
        right: 20px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .slide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .discover-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .slider-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Small mobile styles */
@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .discover-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-slider {
        height: 350px;
    }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-subtitle {
        font-size: 0.9rem;
    }

    .discover-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}