/* HERO SECTION */
#hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

/* Text Overlay */
#hero-slider .slide-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

#hero-slider .slide-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
}

#hero-slider .slide-text p {
    font-size: 1rem;
    margin-top: 8px;
    opacity: 0.9;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

/* No data message */
.no-data {
    color: #fff;
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    #hero-slider .slide-text {
        bottom: 30px;
        left: 25px;
    }

    #hero-slider .slide-text h2 {
        font-size: 1.6rem;
    }

    #hero-slider .slide-text p {
        font-size: 0.9rem;
    }

    .arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .arrow.left {
        left: 20px;
    }

    .arrow.right {
        right: 20px;
    }
}