body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang="ar"] body { font-family: 'Noto Sans Arabic', 'Inter', sans-serif; }
html[lang="en"] body { font-family: 'Inter', sans-serif; }

/* For smooth page transitions */
.page {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ensure body takes full height for hero section */
body, html {
    min-height: 100%;
}
