@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
}

/* Animation for testimonial cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-service-card, .custom-testimonial-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.custom-service-card:nth-child(1) { animation-delay: 0.1s; }
.custom-service-card:nth-child(2) { animation-delay: 0.2s; }
.custom-service-card:nth-child(3) { animation-delay: 0.3s; }
.custom-service-card:nth-child(4) { animation-delay: 0.4s; }

.custom-testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.custom-testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.custom-testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.custom-testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.custom-testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.custom-testimonial-card:nth-child(6) { animation-delay: 0.6s; }

/* Logo carousel animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

@media (min-width: 768px) {
    .flex.overflow-x-auto {
        animation: scroll 20s linear infinite;
    }
}