.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #0b112c;
}

.homeBannerSwiper {
    width: 100%;
    height: 100%;
}

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

.homeBannerSwiper .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.15);
    transition: transform 7s ease-out;
    z-index: 1;
}

.homeBannerSwiper .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 23, 77, 0.95) 0%, rgba(11, 23, 77, 0.75) 45%, rgba(11, 23, 77, 0.1) 100%);
    z-index: 2;
}

.homeBannerSwiper .swiper-slide-active .slide-bg {
    transform: scale(1);
}

.homeBannerSwiper .container {
    position: relative;
    z-index: 3;
    height: 100%;
}

.banner-content {
    color: #ffffff;
}

.banner-content .sub-title {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
    transition-delay: 0.3s;
}

.banner-content .sub-title .line {
    width: 40px;
    height: 1px;
    background-color: #ffffff;
    display: inline-block;
    margin-right: 15px;
}

.banner-content .main-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
    transition-delay: 0.5s;
}

.banner-content .desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
    transition-delay: 0.7s;
}

.banner-content .theme-btn {
    padding: 14px 36px;
    background-color: #2b56f5;
    border: 2px solid #2b56f5;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease, background-color 0.3s ease, border-color 0.3s ease;
    transition-delay: 0.9s;
    text-decoration: none;
    display: inline-block;
}

.banner-content .theme-btn:hover {
    background-color: transparent;
    color: #2b56f5;
}

/* Animations for active slide */
.homeBannerSwiper .swiper-slide-active .banner-content .sub-title,
.homeBannerSwiper .swiper-slide-active .banner-content .main-title,
.homeBannerSwiper .swiper-slide-active .banner-content .desc,
.homeBannerSwiper .swiper-slide-active .banner-content .theme-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Pagination styles */
.homeBannerSwiper .swiper-pagination {
    position: absolute;
    right: 250px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    width: auto !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 10;
}

/* Remove continuous line */
.homeBannerSwiper .swiper-pagination::before {
    display: none;
}

.homeBannerSwiper .swiper-pagination-bullet {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 !important;
}

/* Individual connecting lines with gradient */
.homeBannerSwiper .swiper-pagination-bullet:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(100% + 5px);
    /* 5px gap from the bottom of the circle */
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 15px;
    /* total gap is 25px, leaving 5px gap at top and bottom */
    background: linear-gradient(to bottom, #2b56f5 0%, transparent 100%);
    z-index: -1;
}

.homeBannerSwiper .swiper-pagination-bullet-active {
    background: #2b56f5;
    border-color: #2b56f5;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-content .main-title {
        font-size: 50px;
    }

    .homeBannerSwiper .swiper-pagination {
        right: 20px !important;
    }
}

@media (max-width: 767px) {
    .banner-content .main-title {
        font-size: 40px;
    }

    .banner-content .desc {
        font-size: 16px;
    }

    .homeBannerSwiper .swiper-pagination {
        display: none;
    }
}

@media (max-width: 650px) {
    .banner-content .main-title {
        font-size: 30px;
        font-weight: 600;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .banner-content .main-title br {
        display: none;
    }

    .banner-content .desc {
        margin-bottom: 25px;
    }

    .banner-content .theme-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
.banner-section{height: 70vh;}
}