/* ===============================
   GLOBAL
=================================*/
body{
  font-family:'Tajawal','Inter',sans-serif;
  background:linear-gradient(135deg,#111 0%,#000 100%);
  color:#fff;
  overflow-x:hidden;
}
html{ scroll-behavior:smooth; }

 /* موبايل/تابلت: وسط الروابط وزر اللغة داخل الكولابس */
  @media (max-width: 991.98px){
    .nav-wrap{
      width:100%;
      flex-direction: column;
      align-items:center;              /* بالنص */
      gap:.75rem;
      padding:.5rem 0;
    }
    .navbar-nav{
      flex-direction: column;
      align-items:center;              /* بالنص */
      gap:.25rem;
    }
    .navbar .nav-link{ padding:.6rem .25rem; }
  }

/* ===============================
   SECTIONS & TITLES
=================================*/
.section{ padding:5rem 0; }
.section-title{ font-size:3rem; font-weight:800; text-align:center; }
.text-primary{ color:#fff!important; }

/* ===============================
   GLASS CARDS
=================================*/
.glass-card{
  background:rgba(20,20,20,.6);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.15);
  border-radius:1rem;
  padding:2rem 1.5rem;
  height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
  text-align:center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.glass-card2:hover{
  border-color:rgba(255,255,255,.4);
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(255,255,255,.1);
}

/* ===============================
   PILLARS
=================================*/
.pillar{ padding-top:22px; }
.pillar-icon{
  font-size:2rem; width:56px; height:56px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.35);
  margin-bottom:12px;
}
.pillar h5{
  font-weight:800; line-height:1.35; min-height:3.2em; margin:0;
}

/* ===============================
   CTA BAND
=================================*/
.cta-band{
  background:rgba(20,20,20,.6);
  border:1px solid rgba(255,255,255,.15);
  border-radius:1.25rem;
  padding:2rem;
}

/* ===============================
   BUTTONS
=================================*/
.btn-primary{
  background:#fff; border:none; border-radius:.7rem; padding:.8rem 1.4rem;
  font-weight:700; color:#000;
}
.btn-primary:hover{ background:#ccc; color:#000; }



/* RTL helpers (للأيقونة داخل الأزرار) */
[dir="rtl"] .me-1{ margin-left:.25rem !important; margin-right:0 !important; }
      /* RTL helpers للأرقام */
    .ltr{ direction:ltr; display:inline-block; }
      [dir="rtl"] .me-2{ margin-left:.5rem !important; margin-right:0 !important; }
  [dir="rtl"] .ms-2{ margin-right:.5rem !important; margin-left:0 !important; }
