/* Hero Swiper Custom CSS — Robust Standalone Specs */
.hero-slider-container {
    position: relative;
    width: 100%;
    min-height: 1000px;
    height: 100vh;
    max-height: 1080px;
    background: #0d1e2d;
    overflow: hidden;
}

@media (max-width: 1400px) {
    .hero-slider-container {
        min-height: 850px;
        height: 85vh;
    }
}

@media (max-width: 991px) {
    .hero-slider-container {
        min-height: 700px;
        height: 75vh;
    }
}

@media (max-width: 576px) {
    .hero-slider-container {
        min-height: 550px;
        height: 65vh;
    }
}

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

.hero-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

/* Slide Base Styling — Visible by Default */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

/* First slide or Active slide is 100% visible */
.hero-slide:first-child,
.hero-slide.swiper-slide-active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
}

/* Background Image Layer for Ken Burns Effect */
.hero-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    will-change: transform;
}

/* Ken Burns active animation */
.hero-slide.swiper-slide-active .hero-slide__bg,
.hero-slide:first-child .hero-slide__bg {
    animation: kenburnsZoom 7.5s linear infinite alternate;
}

@keyframes kenburnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

/* Overlay 1: Flat Dark Overlay (20% opacity) */
.hero-slide__overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* Overlay 2: Diagonal Gradient Overlay */
.hero-slide__overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1deg, rgba(0, 209, 255, 0) 0%, rgba(0, 145, 226, 0.75) 100%);
    z-index: 3;
}

/* Content Container */
.hero-slide__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 0 24px;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
}

/* Heading Typography */
.hero-slide__heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 77px;
    line-height: 86px;
    color: #ffffff;
    margin: 0 auto 24px auto;
    max-width: 934px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1400px) {
    .hero-slide__heading {
        font-size: 66px;
        line-height: 74px;
    }
}

@media (max-width: 991px) {
    .hero-slide__heading {
        font-size: 52px;
        line-height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-slide__heading {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 16px;
    }
}

/* Subtext Typography */
.hero-slide__subtext {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    color: #ffffff;
    margin: 0 auto;
    max-width: 950px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
    .hero-slide__subtext {
        font-size: 22px;
        line-height: 32px;
        max-width: 720px;
    }
}

@media (max-width: 576px) {
    .hero-slide__subtext {
        font-size: 17px;
        line-height: 26px;
    }
}

/* Uranus Style Pagination Bullets */
.hero-swiper-pagination {
    position: absolute;
    bottom: 45px !important;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff;
    background: transparent;
    border-radius: 50%;
    opacity: 0.75;
    margin: 0 !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-swiper-pagination .swiper-pagination-bullet-active,
.hero-swiper-pagination .swiper-pagination-bullet:hover {
    background: #ffffff;
    opacity: 1;
    transform: scale(1.25);
}
