/* Testimonials CSS */

/* Testimonials Auto-scroll Animation */
.testimonials-container {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.1s linear; /* Added for JS smooth scrolling */
}

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Light theme styling for testimonials */
[data-theme="light"] .testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

[data-theme="light"] .testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

[data-theme="light"] .testimonial-card h4 {
    color: #1e293b;
}

[data-theme="light"] .testimonial-card p {
    color: #475569;
}

[data-theme="light"] .testimonials-section h2 {
    color: #1e293b;
}

[data-theme="light"] .testimonials-section p {
    color: #475569;
}
