.swiper-slide {
    position: relative;
    min-height: 550px;
}

.qshs-bg,
.qshs-bg video,
.qshs-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.qshs-bg video,
.qshs-bg-img {
    object-fit: cover;
}

.qshs-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px;
}

.qshs-title{
    font-family: "Montserrat", Sans-serif;
    font-size: 44px;
    line-height: 56px;
    font-weight: 400;
    color: #fff;
}

.qshs-title .qshs-highlight{
    color: #00b286;
    font-weight: 700;
}

.qshs-desc p{
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}

.qshs-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 20px;
    background: #ff5a1f;
    color: #fff;
    text-decoration: none;
    margin-top: 25px;
}

.qshs-btn span{
    font-family: "Montserrat", Sans-serif;
    font-size: 17px;
    font-weight: 600;
}

.qshs-btn i {
    transition: transform .3s ease;
}

.qshs-btn:hover i {
    transform: translateX(6px);
}

.qshs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: #00c389; /* green */
    z-index: 5;
    transition: width 0.1s linear;
}


/* Pagination container – desktop */
.qshs-pagination {
    display: flex;
    gap: 10px;
}

/* Default dot */
.qshs-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Active dot */
.qshs-pagination .swiper-pagination-bullet-active {
    background: #00c389;
    transform: scale(1.4);
}

@media (max-width: 991px) {
    .qshs-content {
        padding: 40px;
    }

     .qshs-pagination {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
}
