.video-testimonial-section {
    position: relative;
    display: block;
    background-color: var(--cleanin-gray-bg);
    background-image: none;
    padding: 60px 0;
    overflow: hidden;
    color: #222;
    border-radius: 0px;
    margin: 0;
    z-index: 1;
}

.video-testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/pattern/testimonial-v3-pattern.png');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
}

.video-testimonial__content {
    position: relative;
    display: block;
}

.video-testimonial__tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cleanin-base);
    margin-bottom: 20px;
}

.video-testimonial__quote-icon {
    font-size: 50px;
    color: var(--cleanin-base);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.video-testimonial__title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.video-testimonial__text {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 35px;
    max-width: 500px;
    font-family: "Heebo", serif;
}

.video-testimonial__patient {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.video-testimonial__patient-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--cleanin-base);
}

.video-testimonial__patient-info p {
    font-size: 16px;
    color: #222;
}

/* Button override to match site only theme */
.video-testimonial__btn {
    position: relative;
    display: inline-block;
    color: #fff !important;
    font-size: 14px;
    line-height: 55px;
    font-weight: 600;
    background: var(--cleanin-base);
    border-radius: 5px;
    padding: 0px 35px 0px;
    overflow: hidden;
    font-family: var(--cleanin-font);
    text-transform: uppercase;
    transition: all 0.3s linear;
    z-index: 1;
}

.video-testimonial__btn i {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 700;
}

.video-testimonial__btn:hover {
    color: #222 !important;
    transform: translateY(-3px);
}

/* Video Column */
.video-testimonial__video-box {
    position: relative;
}

.video-testimonial__circle-wrap {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.video-testimonial__circle-inner {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-testimonial__youtube-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    z-index: 3;
}

.video-testimonial__youtube-badge i {
    color: #ff0000;
    margin: 0 5px;
    font-size: 16px;
}

.video-testimonial__waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    background-image: url('../images/shapes/testimonial-v1-shape1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media only screen and (max-width: 991px) {
    .video-testimonial-section {
        padding: 70px 0;
        text-align: center;
    }

    .video-testimonial__content {
        margin-bottom: 50px;
    }

    .video-testimonial__text {
        margin-left: auto;
        margin-right: auto;
    }

    .video-testimonial__patient {
        justify-content: center;
    }

    .video-testimonial__btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Slider Custom Styles */
.video-testimonial-carousel {
    position: relative;
    padding-bottom: 60px;
}

.video-testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    width: 100%;
    z-index: 10;
}

.video-testimonial-carousel .owl-dots .owl-dot {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    outline: none !important;
}

.video-testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    background-color: #cbd5e0;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.video-testimonial-carousel .owl-dots .owl-dot.active span {
    background-color: var(--cleanin-base);
    width: 35px;
    border-radius: 10px;
}

.video-testimonial-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--cleanin-base);
    opacity: 0.7;
}

.video-item-wrapper {
    padding: 10px;
}

@media only screen and (max-width: 767px) {
    .video-item-wrapper {
        padding: 10px 20px;
    }

    .video-testimonial__title {
        font-size: 30px;
    }

    .video-testimonial__circle-inner iframe {
        height: 250px;
    }
}