:root {
  --color-navy: #283979;
  --color-navy-dark: #1e2d5e;
  --color-navy-alt: #2b354f;
  --color-teal: #21B2B8;
  --color-gold: #F9AD1C;
  --color-bg-light: #f7f9fc;
  --color-text-sub: #5a6580;
  --color-border: #eef1f6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Alexandria', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--color-navy);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


img {border-radius: 5px !important;}


/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}


