/* Simple, Clean Testimonials Styling */
.testimonials-section {
    /* background: #f8f9fa; */
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    box-shadow: none;
    transition: all 0.3s ease;
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Video Container */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-title {
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 30px; */
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .testimonial-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-grid {
        padding: 0 10px;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 12px;
    }
    
    .testimonial-title {
        font-size: 14px;
    }
}
