/* Testimonials Section Styles */
.testimonials {
    padding: 80px 0;
}

.testimonials .testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #f8f9fa;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 500;
}

.testimonials .stars {
    margin-bottom: 20px;
}

.testimonials .stars i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 2px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    position: relative;
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
    color: #3498db;
    font-size: 24px;
    font-weight: bold;
}

.testimonials .quote-icon-left {
    margin-right: 10px;
}

.testimonials .quote-icon-right {
    margin-left: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials .testimonial-item {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .testimonials .testimonial-img {
        width: 70px;
        height: 70px;
    }
    
    .testimonials .testimonial-item h3 {
        font-size: 18px;
    }
    
    .testimonials .testimonial-item h4 {
        font-size: 13px;
    }
    
    .testimonials .quote-icon-left,
    .testimonials .quote-icon-right {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials .testimonial-item {
        padding: 20px 15px;
    }
    
    .testimonials .testimonial-item p {
        font-size: 14px;
    }
}