/* Slow down clients carousel animation */
.clients-track {
    animation: clientsScroll 120s linear infinite !important;
}

@keyframes clientsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile: even slower so logos are fully visible */
@media (max-width: 768px) {
    .clients-track {
        animation-duration: 100s !important;
    }
}

@media (max-width: 480px) {
    .clients-track {
        animation-duration: 80s !important;
    }
}
