/* css/style.css */

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    /* 30s এর বদলে 15s ব্যবহার করা হয়েছে স্পিড বাড়ানোর জন্য */
    animation: scroll 15s linear infinite; 
}

/* মাউস নিলে স্লাইড বন্ধ হবে (এটি আপনার ডিজাইনে প্রিমিয়াম ফিল দেবে) */
.animate-marquee:hover {
    animation-play-state: paused;
}