:root {
  --brand: #2d6df6;
  --brand-2: #2dc8f6;
  --dark: #0f172a;
  --muted: #64748b;
  --bg: #0b1022;
  --card: #0f1530;
  --radius: 1.25rem;
  --radius-full: 999px;
  --transition: all 1s ease;
}
html,
body {
  background: radial-gradient(
      1200px 600px at 80% -10%,
      rgba(45, 109, 246, 0.25),
      transparent
    ),
    radial-gradient(
      1000px 500px at -10% 110%,
      rgba(45, 200, 246, 0.25),
      transparent
    ),
    var(--bg);
  color: #e5e7eb;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}
/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: rgba(35, 155, 182, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

/* Logo */
.navbar img {
  position: relative;
  top: 5px;
  right: 210px;
  width: 60px;
  height: auto;
}
@media (max-width: 992px) {
  .navbar img {
    display: block;
    position: absolute;
    right: 180px;
    margin-inline-end: 0.75rem;
  }
}

/* Brand text */
.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff !important;
  margin-inline-end: 4.5rem;
}

/* Links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #f0f4f8 !important;
  transition: var(--transition);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color:#f9b43a !important;
}

/* Dropdown */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.dropdown-item {
  font-weight: 500;
  color: #222;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff !important;
}

/* Submenu RTL fix */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: -0.25rem;
}
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* Navbar when scrolled */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.285) !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* Space below navbar */
div.space {
  height: 70px;
}



.text-blue {
  color: #2dc8f6;
}
.btn-brand {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: #1e55d3;
  --bs-btn-hover-border-color: #1e55d3;
}
.btn-ghost {
  background: transparent;
  color: #cdd5e1;
  border: 1px solid #334155;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      600px 260px at 20% 10%,
      rgba(45, 109, 246, 0.25),
      transparent
    ),
    radial-gradient(
      700px 300px at 80% 90%,
      rgba(45, 200, 246, 0.18),
      transparent
    );
  pointer-events: none;
}
.section-title {
  font-weight: 800;
  letter-spacing: 0.3px;
}
.muted {
  color: var(--muted);
}
.card-soft {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}
.check {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(45, 109, 246, 0.12);
  border: 1px solid rgba(45, 109, 246, 0.25);
}
.shadow-soft {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.partner-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to right, #0f172a, #0f172a);
}

.badge-glow {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border: none;
}
.list-dot {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-dot li {
  position: relative;
  padding-inline-start: 1.75rem;
  margin-bottom: 0.75rem;
}
.list-dot li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand);
}
.small-muted {
  font-size: 0.95rem;
  color: #97a3b6;
}

