/* Testimonials Page Styles */

/* Header Section matches About Page */
.testimonials-header-section {
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #fff;
    background-image: radial-gradient(#00B050 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-position: 0 0;
    background-color: rgba(255, 255, 255, 0.97);
    background-blend-mode: overlay;
}

.testimonials-intro {
    max-width: 800px;
    margin-bottom: 20px;
}

.testimonials-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
}

/* Grid Section */
.testimonials-grid-section {
    padding-bottom: 80px;
    background-color: #f8f9fa;
    padding-top: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid #00B050;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 32px;
    color: #e0f2f1;
    /* Light green/teal */
    color: rgba(0, 176, 80, 0.2);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #00B050;
    padding: 2px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.author-role {
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-header-section {
        padding-top: 60px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}