/* ==================================================
   TESTIMONIALS SECTION STYLES
   ================================================== */

/* Testimonials Grid */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials {
        grid-template-columns: 1fr;
    }
}

.testimonial {
    background: #F7F9FA;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 4px solid #0583D2;
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 131, 210, 0.15);
    transition: all 0.3s ease;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #0583D2;
}