
.hero-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}
.banner-bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}
.banner-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
}
.banner-slide{
    height: 770px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.banner-title {
    font-weight: 800;
    font-size: 60px;
    line-height: 1.25;
    margin-bottom: 10px;
    max-width: 1000px;
}
.banner-subtitle {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 15px;
    max-width: 1000px;
}
.banner-desc {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1em;
}
.banner-content {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    max-width: 670px;
}
.hero-banner .swiper{
    width: 100%;
}
.hero-banner .swiper-pagination {
    display: flex;
    gap: 15px;
    position: relative;
    bottom: 55px;
    top: auto;
}
.hero-banner .swiper-pagination .swiper-pagination-bullet {
    flex: 1;
    height: 3px;
    background: #fff;
    opacity: 1;
    border-radius: 0;
    margin: 0;
    position: relative;
}
.hero-banner .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #00BBD4;
}
.hero-banner .swiper-pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: #00BBD4;
}
.hero-banner .swiper-pagination .swiper-pagination-bullet-active::before {
    width: var(--progress, 0%);
}
.hero-banner .swiper-pagination .swiper-pagination-progressbar-fill{
    height: 3px;
}
.hero-banner .swiper-pagination-progressbar{
    background-color: #fff;
    height: 3px;
}

@media (max-width: 767.95px) {
    .banner-slide{
        height: 560px;
        /* Switch to mobile background */
        background-image: var(--bg-mobile) !important;
    }
    .banner-title{
        font-size: 30px;
        margin-bottom: 5px;
    }
    .banner-subtitle{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .hero-banner .swiper-pagination{
        bottom: 65px;
    }
}