/* Video Testimonials Elite UI */
html, body {
    overflow-x: hidden !important;
}
.video-testimonials-section {
    padding: 100px 0;
    background: #f8faff;
}

.video-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 142, 210, 0.1);
}

.video-card__thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: #e1e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card__play-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #008ed2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 142, 210, 0.4);
    transition: all 0.3s ease;
}

.video-card__play-btn:hover {
    transform: scale(1.1);
    background: #0d2944;
}

.video-card__duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(13, 41, 68, 0.7);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.video-card__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 5px;
}

.video-card__user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-card__avatar {
    width: 45px;
    height: 45px;
    background: rgba(0, 142, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008ed2;
    font-size: 18px;
}

.video-card__user-info h4 {
    font-size: 17px;
    font-weight: 800;
    color: #0d2944;
    margin: 0;
}

.video-card__user-info p {
    font-size: 13px;
    color: #7a8a9e;
    margin: 0;
}

.video-card__user-info p span {
    color: #008ed2;
    font-weight: 600;
}

.video-card__quote {
    font-size: 30px;
    color: rgba(0, 142, 210, 0.1);
}

/* CTA Bar */
.video-cta-bar {
    background: #ffffff;
    border-radius: 25px;
    padding: 30px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    margin-top: 50px;
}

.video-cta__left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.video-cta__icon {
    width: 65px;
    height: 65px;
    background: #008ed2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 142, 210, 0.2);
}

.video-cta__text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0d2944;
    margin: 0;
    line-height: 1.4;
}

.video-cta__right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.video-cta__more-text {
    font-size: 18px;
    font-weight: 700;
    color: #0d2944;
}

.video-cta__btn {
    background: #008ed2;
    color: #fff;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.video-cta__btn:hover {
    background: #0d2944;
    color: #fff;
    transform: translateX(5px);
}

.video-cta-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .video-cta-bar {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .video-cta__left {
        flex-direction: column;
    }
    .video-cta__right {
        flex-direction: column;
        gap: 20px;
    }
    .video-cta-divider {
        display: none;
    }
}
