/* --- FONTS & UTILITIES --- */
.fnt_poppins {
    font-family: 'Poppins', sans-serif !important;
}

.wrap {
    width: 1440px !important;
    margin: 0 auto;
    position: relative;
    max-width: 90%;
}

.fnt_18 {
    font-size: 18px;
}

.fnt_60 {
    font-size: 60px;
    line-height: 1.2;
}

/* --- CAROUSEL LAYOUT --- */
.indexBanner {
    position: relative;
    width: 100%;
    /* Push down to avoid hiding behind fixed header if necessary, 
        or keep 0 if header is transparent */
    margin-top: 0;
}

.indexBanner .banner_swiper {
    width: 100%;
    overflow: hidden;
    height: 100vh;
    max-height: 980px;
}

.indexBanner .banner_swiper .swiper-slide {
    position: relative;
    height: 100%;
}

/* Images & Video */
.indexBanner .banner_swiper .swiper-slide .swiepr-image {
    height: 100%;
    width: 100%;
}

.indexBanner .banner_swiper .swiper-slide .swiepr-image img,
.indexBanner .banner_swiper .swiper-slide .swiepr-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Text Overlay */
.indexBanner .banner_swiper .swiper-slide .swiper-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    /* Default text color */
    z-index: 10;
    text-align: left;
    /* Ensure text alignment matches original */
    width: 100%;
}

.indexBanner .banner_swiper .swiper-slide .swiper-info h1 {
    font-weight: 600;
    margin: 10px 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

.indexBanner .banner_swiper .swiper-slide .swiper-info .subtit {
    opacity: 0.8;
}

.indexBanner a {
    text-decoration: none;
    color: inherit;
}

/* Buttons & Links */
.indexBanner .toPage {
    position: absolute;
    z-index: 2;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.indexBanner .toPage a {
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 78, 162, 0.1);
    display: flex;
    align-items: center;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.indexBanner .toPage a:hover {
    background: #fff;
    color: #004ea2;
}

.indexBanner .toPage a svg {
    margin-left: 10px;
    fill: currentColor;
}

/* Navigation Arrows */
.indexBanner .banner_swiper .swiper-button-prev,
.indexBanner .banner_swiper .swiper-button-next {
    width: 50px;
    height: 80px;
    background: rgba(51, 51, 51, 0.8);
    position: absolute;
    top: 50%;
    margin-top: -40px;
    z-index: 20;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.indexBanner .banner_swiper .swiper-button-prev {
    left: 0;
}

.indexBanner .banner_swiper .swiper-button-next {
    right: 0;
}

.indexBanner .banner_swiper .swiper-button-prev.visible,
.indexBanner .banner_swiper .swiper-button-next.visible {
    opacity: 1;
    pointer-events: auto;
}

.indexBanner .banner_swiper .swiper-button-prev:after,
.indexBanner .banner_swiper .swiper-button-next:after {
    font-size: 24px;
}

/* Pagination */
.indexBanner .banner_swiper .swiper-pagination {
    bottom: 30px;
}

.indexBanner .banner_swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #004ea2;
    opacity: 0.4;
    margin: 0 6px;
}

.indexBanner .banner_swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1400px) {
    .fnt_60 {
        font-size: 48px;
    }

    .fnt_18 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .indexBanner .banner_swiper {
        height: 60vh;
        min-height: 400px;
    }

    .fnt_60 {
        font-size: 32px;
    }

    .indexBanner .banner_swiper .swiper-button-prev,
    .indexBanner .banner_swiper .swiper-button-next {
        display: none;
    }

    /* Hide arrows on mobile */
}

.indexBanner .toPage a svg path {
    fill: currentColor !important; 
    transition: fill 0.3s ease;
}