/* ====================================
   Smooth Motion - حركة ناعمة وسلسة
   ==================================== */

/* تفعيل التمرير السلس */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* تحسين التمرير على الأجهزة المحمولة */
body {
    -webkit-overflow-scrolling: touch;
}

/* تحسين الأداء */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
