/* Video Testimonials Section Styles */

.video-testimonials {
    padding: 3rem 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.video-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.video-testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.video-testimonials h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin: 0.8rem auto 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.video-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 10px rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
}

.video-carousel-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 15px rgba(139, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-testimonials {
        padding: 2rem 0;
    }
    
    .video-carousel-container {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .video-testimonials {
        padding: 1.5rem 0;
    }
    
    .video-testimonials h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}