.home-banner-slider-section .et_pb_row {
    max-width: 100% !important;
    padding-top: 0;
    min-height: calc(100vh - 93px);
    background: #005432;
}

.hero-slider.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slider .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aspect1920 {
    aspect-ratio: 1920/900;
    object-fit: cover;
    min-height: calc(100vh - 95px);
}

.hero-slider .text-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 7.7%;
    width: 40%;
    z-index: 2;
    padding-right: 20px;
}

.hero-slider .text-content .title {
    font-family: "DM Serif Text";
    font-size: 60px;
    font-weight: 400;
    line-height: 120%;
    color: white;
    margin: 0;
    padding-bottom: 20px;
}

.hero-slider .text-content .desc,
.hero-slider .text-content .desc p,
.hero-slider .text-content .desc div {
    color: white;
    font-family: "League Spartan";
    font-size: 24px;
    line-height: 150%;
    margin: 0;
}

.hero-slider .text-content .btn {
    font-family: "League Spartan";
    font-size: 22px;
    font-weight: 500;
    margin-top: 40px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 12px;
    background: #FFBA26;
    color: #005432;
    text-decoration: none;
}

/* --- Pagination Bullets --- */
.hero-slider .swiper-pagination {
    bottom: 40px !important;
    width: 90%;
    left: 2%;
}

.hero-slider .swiper-pagination-bullet {
    position: relative;
    width: 9%;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 10px !important;
}

.hero-slider .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #fff;
    transition: width 0s;
}

.hero-slider .swiper-pagination-bullet-active::after {
    width: 100%;
    transition: width var(--swiper-autoplay-delay, 3000ms) linear;
}

/* Paused progress state */
.swiper-pagination-bullet.paused::after {
    transition: none !important;
    width: var(--paused-width, auto);
}

/* --- Controls --- */
.swiper-controls {
    position: absolute;
    bottom: 35px;
    right: 8%;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.swiper-button {
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.icon-play,
.icon-pause {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.icon-play {
    display: none;
}

.is-paused .icon-play {
    display: block;
}

.is-paused .icon-pause {
    display: none;
}

@media (max-width: 1280px) {
    .hero-slider .text-content {
        width: 60%;
    }

    .hero-slider .text-content .title {
        font-size: 48px;
    }

    .hero-slider .text-content .desc {
        font-size: 20px;
    }

    .hero-slider .text-content .btn {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .hero-slider .text-content {
        left: 20px;
        width: 90%;
    }

    .hero-slider .text-content .title {
        font-size: 40px;
    }

    .hero-slider .text-content .desc {
        font-size: 16px;
    }

    .hero-slider .text-content .btn {
        font-size: 14px;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 6%;
        margin: 0 4px !important;
    }
}