/* إجبار إبطاء حركة شريط الشركاء على الهاتف */

@media only screen and (max-width: 768px),
       only screen and (max-device-width: 768px) {
    
    /* إجبار السرعة البطيئة */
    .mobile-partners-track {
        animation: mobile-marquee-scroll 40s linear infinite !important;
        animation-duration: 40s !important;
    }
    
    /* تعريف الـ animation مرة أخرى للتأكيد */
    @keyframes mobile-marquee-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}
