/* Testimonials Section Styling */
.testimonials-section {
    background: #f8fafc;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 6rem 0;
}

.testimonials-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.10), 0 2px 8px rgba(124,58,237,0.08);
    transform: translateY(-7px) scale(1.03);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: #fbbf24;
    margin: 0 auto 0.5rem auto;
    display: flex;
    justify-content: center;
    gap: 3px;
    font-size: 1.1em;
}

.testimonial-quote {
    font-style: italic;
    color: var(--gray-600);
    margin: 0 auto 1rem auto;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin: 0 auto 1rem auto;
    text-align: center;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
}
