/* Video Testimonials Styles */
.video-testimonials {
    padding: 80px 0;
    background-color: #fdfaf7;
    /* Warm background matching the theme */
}

.video-testimonial-item {
    border-radius: 20px;
    /* More rounded edges as requested */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #000;
    transition: all 0.4s ease;
    border: 4px solid #fff;
    position: relative;
    width: 100%;
}

.video-testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    border-color: #e66d23;
}

.video-thumb-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Landscape Aspect Ratio */
    height: 0;
    width: 100%;
    overflow: hidden;
    display: block;
}

.video-thumb-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    object-fit: cover !important;
    /* This ensures the landscape box is filled */
    display: block !important;
    z-index: 1;
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 54px;
    height: 54px;
    background: rgba(230, 109, 35, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-overlay i {
    color: #fff !important;
    font-size: 22px;
    margin-left: 4px;
}

.video-testimonial-item:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #e66d23;
}

.video-testimonials .section-title h2 {
    font-size: 40px;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Gilda Display', serif;
}

.video-testimonials .section-title p {
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .video-testimonials {
        padding: 50px 0;
    }

    .video-testimonials .section-title h2 {
        font-size: 28px;
    }
}