* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Almustashar Title'; 
  src: url('../assets/fonts/hero/almustasharDigital900-Regular.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
    background-color: var(--white);
    color: var(--black);
    margin: 0;
    font-family: var(--main-font);
    overflow-x: hidden;
}

body[dir="rtl"] {
    font-family: 'Cairo', sans-serif;
}

h1, h2 {
    font-family: var(--main-font);
    font-weight: 800;
}

body[dir="rtl"] h1, body[dir="rtl"] h2 {
    font-family: 'Cairo', sans-serif;
}

body[dir="ltr"] .lang-ar-only { display: none !important; }
body[dir="rtl"] .lang-en-only { display: none !important; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

