/* Testimonials Section Styles */

.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonial-card {
    background-color: var(--light);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 18px;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    color: var(--gray);
    font-size: 14px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .testimonials {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-author img {
        width: 45px;
        height: 45px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author img {
        width: 40px;
        height: 40px;
    }
} 