/* css/style.css */
body {
    /* font-family: 'Inter', sans-serif; */
    line-height: 1.6;
}

/* Marquee Animation Keyframes */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Marquee Class */
.animate-marquee {
    animation: marquee 15s linear infinite;
}

.marquee-container {
    white-space: nowrap;
}
.swiper-slide {
    opacity: 0.5;
    filter: blur(2px);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.swiper-slide-active {
    opacity: 1 !important;
    filter: blur(0px) !important;
    transform: scale(1) !important;
}
