body { font-family: 'Inter', sans-serif; }
.navy-bg { background-color: #1F3C88; }
.navy-text { color: #1F3C88; }
.orange-bg { background-color: #F7931E; }
.orange-text { color: #F7931E; }
.green-bg { background-color: #2E7D32; }
.green-text { color: #2E7D32; }


.animate-slide {
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.animate-slide:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animate-slide {
        animation: slide 20s linear infinite;
    }
}