/* ═══════════════════════════════════════════════
   إنسانلك — Production Stylesheet
   Primary: #4f72bf  ·  CTA: #e8872a
   AR: Cairo  ·  EN/TR: Lato
═══════════════════════════════════════════════ */
:root {
  --blue: #4f72bf;
  --blue-dk: #2d4a8a;
  --blue-dkr: #3c609e;
  --blue-lt: #eef2fb;
  --blue-ltr: #f5f7fd;
  --amber: #e8872a;
  --amber-dk: #c96f18;
  --amber-lt: #fdf3e8;
  --cyan: #38bdf8;
  --red: #e5484d;
  --dark: #3c609e;
  --mid: #5a6a8a;
  --border: #dde3f0;
  --bg: #f5f7fd;
  --bg-alt: #eef2f9;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(79, 114, 191, .10);
  --shadow-md: 0 4px 20px rgba(79, 114, 191, .12);
  --shadow-lg: 0 8px 40px rgba(79, 114, 191, .18);
  --font-ar: 'Cairo', Tahoma, sans-serif;
  --font-en: 'Lato', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ar);
  color: var(--dark);
  background: var(--white);
  direction: inherit;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 80px 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ar);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 13px 28px;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(79, 114, 191, 0.2);
}

.btn-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 114, 191, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--blue);
  border: 1px solid var(--border);
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--blue-lt);
}

.btn-amber {
  background: var(--amber);
  color: #fff;
}

.btn-amber:hover {
  background: var(--amber-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 135, 42, .3);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 11px 26px;
}

.btn-outline:hover {
  background: var(--blue-lt);
}

.btn-white {
  background: white;
  color: var(--blue);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--blue-lt);
}

/* ── Section Labels ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
}

/* ════════════════════════════════════════
   TOP UTILITY BAR
════════════════════════════════════════ */
.top-bar {
  display: none;
}

.top-bar.hide {
  transform: translateY(-100%);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
  min-height: 16px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 9px;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 3px;
  color: inherit;
  transition: color .15s;
}

.top-bar-contact a:hover {
  color: white;
}

.top-bar-contact i {
  width: 7px;
  height: 7px;
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-socials a {
  color: rgba(255, 255, 255, .7);
  display: flex;
  transition: color .15s;
}

.top-bar-socials a:hover {
  color: var(--amber);
}

.top-bar-socials i {
  width: 7px;
  height: 7px;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* ════════════════════════════════════════
   1. STICKY NAVIGATION
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 8px 0;
}

#navbar.top-collapsed {
  top: 0;
}

@media (max-width: 768px) {
  #navbar {
    top: 0 !important;
  }
}

#navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(79, 114, 191, .12);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}

#navbar .container{
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 0px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.nav-logo img.logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .3s, height .3s;
}

#navbar.scrolled .nav-logo img.logo-img {
  filter: none;
  height: 96px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 1;
  min-width: 0;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .9);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}

#navbar.scrolled .nav-link {
  color: var(--dark);
}

.nav-link:hover {
  background: rgba(255, 255, 255, .15);
  color: white;
}

#navbar.scrolled .nav-link:hover {
  background: var(--blue-lt);
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
}

#navbar.scrolled .search-btn {
  background: var(--blue-lt);
  border-color: var(--border);
  color: var(--blue);
}

.search-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
  transform: scale(1.1);
}

.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

#navbar.scrolled .lang-switcher {
  background: rgba(79, 114, 191, 0.05);
  border-color: var(--border);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled .lang-btn {
  color: var(--mid);
}

.lang-btn.active {
  background: white;
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#navbar.scrolled .lang-btn.active {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 12px rgba(79, 114, 191, 0.2);
}

.lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

#navbar.scrolled .lang-btn:hover:not(.active) {
  background: var(--blue-lt);
}

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .3s;
}

#navbar.scrolled .nav-hamburger span {
  background: var(--dark);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  z-index: 999;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  color: var(--dark);
  font-size: 20px;
  padding: 12px 32px;
  width: 100%;
  text-align: center;
  border-radius: 10px;
}

.mobile-menu .nav-link:hover {
  background: var(--blue-lt);
  color: var(--blue);
}

/* ════════════════════════════════════════
   FLOATING SOCIAL RAIL (mouse parallax)
════════════════════════════════════════ */
.social-rail {
  position: fixed;
  top: 70%;
  left: 0;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow-md);
}

[dir="ltr"] .social-rail {
  left: auto;
  right: 0;
  border-radius: 16px 0 0 16px;
  border-left: 1px solid var(--border);
  border-right: none;
}

.social-rail-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s, transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-rail-btn:hover {
  background: var(--amber);
  color: white;
  transform: scale(1.15) !important;
}

@media (max-width: 1024px) {
  .social-rail {
    display: none;
  }
}

/* ════════════════════════════════════════
   2. HERO SECTION
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  margin-top: -30px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--blue-dkr);
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(60, 96, 158, .92) 0%, rgba(79, 114, 191, .7) 60%, rgba(123, 157, 224, .5) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Ccircle cx='600' cy='200' r='300' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='100' cy='600' r='200' fill='rgba(255,255,255,0.02)'/%3E%3Ccircle cx='700' cy='700' r='150' fill='rgba(232,135,42,0.07)'/%3E%3C/svg%3E") center/cover;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: #fdd8a0;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  flex-wrap: wrap;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
}

/* Hero visual panel */
.hero-visual {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

/* Hero Logo — redesigned rotating identity block */
.hero-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 34px 0 20px;
}

.hero-logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      rgba(232, 135, 42, .75) 15%,
      transparent 35%,
      transparent 65%,
      rgba(255, 255, 255, .55) 80%,
      transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  animation: ring-rotate 6s linear infinite;
}

@keyframes ring-rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 216, 160, .35) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: .6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.hero-logo-orbit {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 170px;
  pointer-events: none;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fdd8a0;
  box-shadow: 0 0 8px rgba(253, 216, 160, .8);
  animation: orbit-spin 8s linear infinite;
}

.orbit-dot.od-2 {
  animation-duration: 11s;
  animation-direction: reverse;
  background: #fff;
}

.orbit-dot.od-3 {
  animation-duration: 14s;
  background: rgba(255, 255, 255, .65);
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg) translateX(85px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(85px) rotate(-360deg);
  }
}

.hero-logo-img {
  position: relative;
  z-index: 2;
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .25));
  transition: transform .4s ease;
}

.hero-visual:hover .hero-logo-img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {

  .hero-logo-ring,
  .hero-logo-glow,
  .orbit-dot {
    animation: none;
  }
}

.hero-stat-pills {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-pill {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fdd8a0;
  flex-shrink: 0;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.spin-slow {
  animation: spin-slow 18s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .spin-slow {
    animation: none;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

/* ════════════════════════════════════════
   FEATURED CAMPAIGNS & NEWS
════════════════════════════════════════ */
.featured-section {
  background: var(--bg);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.featured-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
}

.featured-main-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}

.featured-main:hover .featured-main-bg {
  transform: scale(1.05);
}

.featured-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60, 96, 158, .95) 5%, rgba(60, 96, 158, .5) 55%, transparent 100%);
}

.featured-main-content {
  position: relative;
  padding: 36px;
  color: white;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.featured-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.featured-main-content h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.3;
  max-width: 520px;
  color: #fff;
}

.featured-main-content p {
  font-size: 15px;
  opacity: .9;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 16px;
}

.featured-date {
  font-size: 13px;
  opacity: .75;
  font-family: 'Courier New', monospace;
}

.featured-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-side-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  cursor: pointer;
  transition: all .25s;
  flex: 1;
}

.featured-side-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.featured-side-card img {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.fsc-content h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-dkr);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fsc-date {
  font-size: 11px;
  color: var(--mid);
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-main {
    min-height: 320px;
  }
}

/* ════════════════════════════════════════
   3. IMPACT COUNTERS
════════════════════════════════════════ */
.counters-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.counter-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.counter-item:first-child {
  border-right: none;
}

.counter-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  font-family: 'Courier New', Courier, monospace;
  font-variant-numeric: lining-nums;
}

.counter-suffix {
  font-size: 22px;
  color: var(--amber);
  font-weight: 900;
}

.counter-label {
  font-size: 14px;
  color: var(--mid);
  margin-top: 8px;
  font-weight: 600;
}

.counter-sub {
  font-size: 11px;
  color: var(--blue);
  margin-top: 4px;
  font-weight: 700;
  opacity: .7;
}

/* ════════════════════════════════════════
   4. ABOUT US
════════════════════════════════════════ */
.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 72px !important;
  align-items: center !important;
}

.about-grid::before,
.about-grid::after {
  display: none !important;
}

.about-content {
  order: 1 !important;
}

.about-visual {
  order: 2 !important;
}

[dir="rtl"] .about-content {
  order: 2 !important;
}

[dir="rtl"] .about-visual {
  order: 1 !important;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pinwheel-wrap {
  cursor: pointer;
}

.pinwheel-bg {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-lt), #dce6f8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-mission-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.mission-card {
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}

.mission-card:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-md);
}

.mc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: rgba(79, 114, 191, 0.1);
  transition: all 0.3s ease;
}

.mission-card:hover .mc-icon {
  background: var(--blue);
  color: white;
  transform: scale(1.1);
}

.mc-icon i,
.mc-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2px;
}

.mc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.mc-text {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   5. MEDIA CENTER — BENTO GRID
════════════════════════════════════════ */
.media-section {
  background: var(--dark);
}

.media-section .section-title {
  color: white;
}

.media-section .section-sub {
  color: rgba(255, 255, 255, .6);
}

.media-section .section-eyebrow {
  background: rgba(79, 114, 191, .3);
  color: #a8c0ef;
}

.bento-media {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 180px;
  gap: 12px;
  margin-top: 40px;
}

.media-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #3c609e;
  display: flex;
  align-items: flex-end;
}

.mi-1 {
  grid-column: 1 / 3;
  grid-row: 1;
}

.mi-2 {
  grid-column: 3;
  grid-row: 1;
}

.mi-3 {
  grid-column: 4;
  grid-row: 1;
}

.mi-4 {
  grid-column: 1;
  grid-row: 2;
}

.mi-5 {
  grid-column: 2 / 4;
  grid-row: 2;
}

.mi-6 {
  grid-column: 4;
  grid-row: 2;
}

.media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

.media-item:hover .media-bg {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60, 96, 158, .85) 0%, transparent 60%);
}

.media-content {
  position: relative;
  padding: 14px;
  color: white;
  width: 100%;
}

.media-tag {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}

.media-tag-video {
  background: var(--amber);
}

.media-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.mi-1 .media-title {
  font-size: 16px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all .2s;
}

.media-item:hover .play-btn {
  background: var(--amber);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 90%;
  background: #3c609e;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.open .lightbox-inner {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  left: 15px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all .2s;
}

.lightbox-close:hover {
  background: var(--amber);
  transform: rotate(90deg);
}

.lightbox-content {
  width: 100%;
  line-height: 0;
}

.lb-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background: #000;
  display: block;
}

/* Media lightbox: YouTube embed */
.lb-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  line-height: 0;
}
.lb-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lb-video-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  color: rgba(255, 255, 255, .6);
  font-size: 48px;
}

/* Media lightbox: image gallery */
.lb-gallery {
  position: relative;
  background: #000;
  line-height: 0;
}
.lb-gallery .lb-image {
  object-fit: contain;
  max-height: 70vh;
  height: 70vh;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 3;
}
.lb-nav:hover { background: var(--amber); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
/* RTL: mirror the gallery arrows (previous on the right, next on the left) */
[dir="rtl"] .lb-prev { left: auto; right: 14px; }
[dir="rtl"] .lb-next { right: auto; left: 14px; }
.lb-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 6px 14px;
  border-radius: 20px;
  direction: ltr;
}

/* Media type icon inside the tag */
.media-tag svg { margin-inline-end: 3px; }

/* /media-center view: same bento layout/feel as the front-page media section,
   repeating the mixed-size pattern every 6 items so it works with any count. */
.view-media-center .view-content-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 12px;
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 0 20px 70px;
}
.view-media-center .item { grid-column: span 1; min-width: 0; }
.view-media-center .item:nth-child(6n+1),
.view-media-center .item:nth-child(6n+5) { grid-column: span 2; }
.view-media-center .item .media-item { height: 100%; }
.view-media-center .item:nth-child(6n+1) .media-title { font-size: 16px; }
/* Hero spans the full viewport width like the About page (/mn-nhn-0) hero */
.view-media-center .about-hero {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media (max-width: 900px) {
  .view-media-center .view-content-wrap { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .view-media-center .item:nth-child(6n+1),
  .view-media-center .item:nth-child(6n+5) { grid-column: span 2; }
}
@media (max-width: 560px) {
  .view-media-center .view-content-wrap { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .view-media-center .item { grid-column: span 1 !important; }
}

/* ── /akhbarna news view: full-width hero + responsive news-card grid ── */
.view-news-center .about-hero {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.view-news-center .view-content-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: var(--max-w);
  margin: 50px auto 0;
  padding: 0 20px;
}
.view-news-center .item { min-width: 0; }
.view-news-center .news-card { min-width: 0; height: 100%; }
@media (max-width: 900px) { .view-news-center .view-content-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .view-news-center .view-content-wrap { grid-template-columns: 1fr; } }

/* staggered entrance animation */
.view-news-center .item { animation: newsCardIn .55s cubic-bezier(.22, 1, .36, 1) both; }
.view-news-center .item:nth-child(1) { animation-delay: .02s; }
.view-news-center .item:nth-child(2) { animation-delay: .08s; }
.view-news-center .item:nth-child(3) { animation-delay: .14s; }
.view-news-center .item:nth-child(4) { animation-delay: .20s; }
.view-news-center .item:nth-child(5) { animation-delay: .26s; }
.view-news-center .item:nth-child(6) { animation-delay: .32s; }
.view-news-center .item:nth-child(7) { animation-delay: .38s; }
.view-news-center .item:nth-child(8) { animation-delay: .44s; }
.view-news-center .item:nth-child(9) { animation-delay: .50s; }
@keyframes newsCardIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .view-news-center .item { animation: none; }
}

/* empty state */
.view-empty-msg {
  max-width: var(--max-w);
  margin: 50px auto;
  padding: 40px 20px;
  text-align: center;
  color: var(--mid);
  font-size: 18px;
  font-weight: 600;
}

/* pager */
.view-news-center .pager { max-width: var(--max-w); margin: 46px auto 10px; padding: 0 20px; }
.view-news-center .pager__items {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.view-news-center .pager__item a,
.view-news-center .pager__item--current,
.view-news-center .pager__item.is-active a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 14px;
  border: 1px solid var(--border); border-radius: 24px;
  background: var(--white); color: var(--blue-dk);
  font-weight: 700; text-decoration: none; transition: all .2s;
}
.view-news-center .pager__item a:hover {
  background: var(--blue); color: #fff; border-color: var(--blue);
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.view-news-center .pager__item--current,
.view-news-center .pager__item.is-active a {
  background: var(--blue-dkr); color: #fff; border-color: var(--blue-dkr);
}

/* ══════════════════════════════════════════════════════
   ARTICLES & REPORTS — /articles-reports listing + detail
   ══════════════════════════════════════════════════════ */
.view-reports-center .about-hero {
  width: 100vw; max-width: 100vw;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}
.view-reports-center .view-content-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: var(--max-w); margin: 54px auto 0; padding: 0 20px;
}
.view-reports-center .item { min-width: 0; }
@media (max-width: 900px) { .view-reports-center .view-content-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .view-reports-center .view-content-wrap { grid-template-columns: 1fr; } }

/* card */
.report-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s;
}
.report-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-lt); }
.rc-thumb { position: relative; height: 190px; overflow: hidden; background: linear-gradient(135deg, var(--blue-dkr), var(--blue)); }
.rc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .55s ease; }
.report-card:hover .rc-bg { transform: scale(1.07); }
.rc-thumb-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,40,77,.5), transparent 55%); }
.rc-badge {
  position: absolute; top: 14px; inset-inline-start: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: 22px; color: #fff; font-size: 12px; font-weight: 800;
  box-shadow: 0 6px 16px rgba(0,0,0,.18); backdrop-filter: blur(3px);
}
.rc-badge-article { background: rgba(79,114,191,.94); }
.rc-badge-report  { background: rgba(232,135,42,.96); }
.rc-fileflag {
  position: absolute; top: 14px; inset-inline-end: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 16px; background: rgba(23,40,77,.62); color: #fff;
  font-size: 11px; font-weight: 800; backdrop-filter: blur(3px);
}
.rc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex-grow: 1; }
.rc-eyebrow { color: var(--amber-dk); font-size: 12.5px; font-weight: 800; margin-bottom: 9px; }
.rc-title {
  color: var(--blue-dkr); font-size: 19px; font-weight: 800; line-height: 1.45; margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.rc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.rc-tag { font-size: 11px; font-weight: 700; color: var(--blue-dk); background: var(--blue-lt); padding: 4px 11px; border-radius: 20px; }
.rc-more { margin-top: auto; color: var(--blue); font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }
.rc-more i { font-style: normal; transition: transform .25s; }
.report-card:hover .rc-more i { transform: translateX(5px); }
[dir="rtl"] .rc-more i { transform: scaleX(-1); }
[dir="rtl"] .report-card:hover .rc-more i { transform: scaleX(-1) translateX(5px); }

/* staggered entrance */
.view-reports-center .item { animation: newsCardIn .55s cubic-bezier(.22,1,.36,1) both; }
.view-reports-center .item:nth-child(1){animation-delay:.02s}
.view-reports-center .item:nth-child(2){animation-delay:.08s}
.view-reports-center .item:nth-child(3){animation-delay:.14s}
.view-reports-center .item:nth-child(4){animation-delay:.20s}
.view-reports-center .item:nth-child(5){animation-delay:.26s}
.view-reports-center .item:nth-child(6){animation-delay:.32s}
.view-reports-center .item:nth-child(7){animation-delay:.38s}
.view-reports-center .item:nth-child(8){animation-delay:.44s}
.view-reports-center .item:nth-child(9){animation-delay:.50s}
@media (prefers-reduced-motion: reduce) { .view-reports-center .item { animation: none; } }

/* pager (shared look with news) */
.view-reports-center .pager { max-width: var(--max-w); margin: 46px auto 10px; padding: 0 20px; }
.view-reports-center .pager__items { display: flex; justify-content: center; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.view-reports-center .pager__item a,
.view-reports-center .pager__item.is-active a {
  display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px;
  border: 1px solid var(--border); border-radius: 24px; background: var(--white); color: var(--blue-dk); font-weight: 700; text-decoration: none; transition: all .2s;
}
.view-reports-center .pager__item a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.view-reports-center .pager__item.is-active a { background: var(--blue-dkr); color: #fff; border-color: var(--blue-dkr); }

/* ==========================================================================
   All Projects listing (/all-projects) — view id: projects_all
   ========================================================================== */
.view-projects-all .about-hero {
  width: 100vw; max-width: 100vw;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}
.view-projects-all .view-content-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: var(--max-w); margin: 54px auto 0; padding: 0 20px;
}
.view-projects-all .item { min-width: 0; }
@media (max-width: 900px) { .view-projects-all .view-content-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .view-projects-all .view-content-wrap { grid-template-columns: 1fr; } }

/* card */
.project-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-lt); }
.pjc-thumb { position: relative; height: 210px; overflow: hidden; background: linear-gradient(135deg, var(--blue-dkr), var(--blue)); }
.pjc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.project-card:hover .pjc-bg { transform: scale(1.08); }
.pjc-thumb-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,40,77,.6), transparent 58%); }
.pjc-badge {
  position: absolute; bottom: 14px; inset-inline-start: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 22px; color: #fff; font-size: 12px; font-weight: 800;
  background: rgba(79,114,191,.94); box-shadow: 0 6px 16px rgba(0,0,0,.22); backdrop-filter: blur(4px);
}
.pjc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex-grow: 1; }
.pjc-title {
  color: var(--blue-dkr); font-size: 19px; font-weight: 800; line-height: 1.45; margin: 0 0 12px;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pjc-loc { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-dk); font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.pjc-loc svg { color: var(--amber-dk); flex-shrink: 0; }
.pjc-more { margin-top: auto; color: var(--blue); font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }
.pjc-more i { font-style: normal; transition: transform .25s; }
.project-card:hover .pjc-more i { transform: translateX(5px); }
[dir="rtl"] .pjc-more i { transform: scaleX(-1); }
[dir="rtl"] .project-card:hover .pjc-more i { transform: scaleX(-1) translateX(5px); }

/* staggered entrance */
.view-projects-all .item { animation: newsCardIn .55s cubic-bezier(.22,1,.36,1) both; }
.view-projects-all .item:nth-child(1){animation-delay:.02s}
.view-projects-all .item:nth-child(2){animation-delay:.08s}
.view-projects-all .item:nth-child(3){animation-delay:.14s}
.view-projects-all .item:nth-child(4){animation-delay:.20s}
.view-projects-all .item:nth-child(5){animation-delay:.26s}
.view-projects-all .item:nth-child(6){animation-delay:.32s}
.view-projects-all .item:nth-child(7){animation-delay:.38s}
.view-projects-all .item:nth-child(8){animation-delay:.44s}
.view-projects-all .item:nth-child(9){animation-delay:.50s}
@media (prefers-reduced-motion: reduce) { .view-projects-all .item { animation: none; } }

/* pager (shared look) */
.view-projects-all .pager { max-width: var(--max-w); margin: 46px auto 10px; padding: 0 20px; }
.view-projects-all .pager__items { display: flex; justify-content: center; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.view-projects-all .pager__item a,
.view-projects-all .pager__item.is-active a {
  display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px;
  border: 1px solid var(--border); border-radius: 24px; background: var(--white); color: var(--blue-dk); font-weight: 700; text-decoration: none; transition: all .2s;
}
.view-projects-all .pager__item a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.view-projects-all .pager__item.is-active a { background: var(--blue-dkr); color: #fff; border-color: var(--blue-dkr); }

/* ==========================================================================
   Editable video hero (Gavias Content Builder) on inner pages
   (/articles-reports, /all-projects, /akhbarna, /mn-nhn-0, /for-support)
   ========================================================================== */
.page-hero-video {
  width: 100vw; max-width: 100vw;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}
.page-hero-inner { max-width: 860px; margin: 0 auto; padding: 92px 20px; }
.page-hero-title {
  color: #fff; font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; line-height: 1.18; margin: 0 0 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.page-hero-sub {
  color: rgba(255,255,255,.92); font-size: clamp(16px, 2vw, 20px); line-height: 1.7;
  margin: 0 auto; max-width: 720px; text-shadow: 0 1px 12px rgba(0,0,0,.3);
}

/* ── detail page ── */
.report-detail .report-hero {
  width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  text-align: start; padding: 130px 0 64px;
}
.report-detail .report-hero .container { max-width: 900px; }
.report-back { display: inline-block; color: rgba(255,255,255,.85); font-weight: 700; text-decoration: none; margin-bottom: 20px; font-size: 14px; transition: color .2s; }
.report-back:hover { color: #fff; }
.report-hero .rc-badge { position: static; display: inline-flex; margin-bottom: 18px; }
.report-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 46px); font-weight: 900; line-height: 1.2; margin: 0 0 14px; }
.report-hero p { color: rgba(255,255,255,.9); font-size: 19px; line-height: 1.7; max-width: 760px; margin: 0; }
.report-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 22px; }
.report-date { color: rgba(255,255,255,.75); font-size: 13px; font-weight: 700; }
.report-metatags { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.report-metatags .rc-tag { background: rgba(255,255,255,.16); color: #fff; }
.report-wrap { max-width: 900px; margin: 0 auto; padding: 0 20px 80px; }
.report-download {
  display: flex; align-items: center; gap: 16px; margin: -32px 0 36px; position: relative; z-index: 5;
  background: var(--white); border: 1px solid var(--border); border-inline-start: 5px solid var(--amber);
  border-radius: 16px; padding: 20px 24px; box-shadow: var(--shadow-lg); text-decoration: none; transition: transform .25s, box-shadow .25s;
}
.report-download:hover { transform: translateY(-3px); }
.rd-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--amber-lt); color: var(--amber-dk); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rd-text { display: flex; flex-direction: column; }
.rd-text strong { color: var(--blue-dkr); font-size: 17px; }
.rd-text small { color: var(--mid); font-size: 13px; margin-top: 2px; }
.report-body { color: #33445c; font-size: 17px; line-height: 1.9; }
.report-body p { margin: 0 0 18px; }
.report-body h2, .report-body h3 { color: var(--blue-dkr); margin: 32px 0 14px; }
.report-body img { max-width: 100%; border-radius: 12px; margin: 20px 0; }

.lb-info {
  padding: 28px 32px;
  background: #3c609e;
  color: white;
  text-align: start;
}
h2.bm-title {
    color: #fff;
}

.lb-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 10px;
}

.lb-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  white-space: pre-line;
}

.lb-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.lb-date {
  font-size: 14px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
  opacity: 0.9;
}

.lb-date::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='4' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' x2='16' y1='2' y2='6'%3E%3C/line%3E%3Cline x1='8' x2='8' y1='2' y2='6'%3E%3C/line%3E%3Cline x1='3' x2='21' y1='10' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

/* Program Modal */
.p-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(60, 96, 158, 0.95);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-modal.open {
  opacity: 1;
  pointer-events: all;
}

.p-modal-inner {
  width: 95%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--white);
  border-radius: 10px;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.p-modal.open .p-modal-inner {
  transform: translateY(0) scale(1);
}

.p-modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--blue);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.p-modal-close:hover {
  background: var(--amber);
  color: white;
  transform: rotate(90deg);
}

.pm-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.pm-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pm-hero:hover img {
  transform: scale(1.05);
}

.pm-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pm-icon i,
.pm-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.5px;
}

.pm-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.pm-content {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  text-align: right;
}

@media (max-width: 768px) {
  .pm-content {
    grid-template-columns: 1fr;
  }
}

.pm-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-dkr);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pm-section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--amber);
  border-radius: 2px;
}

.pm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark);
}

.pm-list li:last-child {
  border-bottom: none;
}

.pm-list li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 900;
}

.pm-projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pm-project-card {
  position: relative;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.35s ease;
}

.pm-project-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

.pm-p-name {
  font-weight: 700;
  color: var(--blue-dk);
  margin-bottom: 4px;
}

.pm-p-loc {
  font-size: 12px;
  color: var(--mid);
}

.pm-footer {
  padding: 30px 40px;
  background: var(--blue-lt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  direction: inherit;
}

/* ════════════════════════════════════════
   6. PROGRAMS BENTO GRID
════════════════════════════════════════ */
.programs-section {
  background: var(--bg);
}



/* News Slider */
.news-section {
  background: var(--white);
  overflow: hidden;
  padding: 80px 0;
}

.news-slider-wrap {
  position: relative;
  margin-top: 40px;
  padding: 0 60px;
}

.news-track-container {
  overflow: hidden;
  padding: 10px 0;
}

.news-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card {
  min-width: calc(25% - 15px);
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .news-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .news-card {
    min-width: 100%;
  }
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--blue-lt);
}

.news-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-img {
  transform: scale(1.1);
}

.news-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
}

.news-date {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
  font-variant-numeric: lining-nums;
}

.news-date::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.news-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-dkr);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  color: var(--blue-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  font-size: 20px;
}

.news-nav:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.news-prev {
  left: 0;
}

.news-next {
  right: 0;
}

/* "More" / "المزيد" button */
.news-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff !important;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(79,114,191,0.25);
}
.news-more-btn:hover {
  background: var(--blue-dk);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(79,114,191,0.35);
}
html[dir="ltr"] .news-more-btn i { transform: rotate(180deg); }

/* News Modal (single consolidated implementation) */
.nm-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.nm-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.nm-container {
  background: var(--bg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.nm-modal.open .nm-container {
  transform: scale(1);
}

.nm-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.nm-close:hover {
  background: var(--amber-dk);
}

.nm-hero {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.nm-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nm-body {
  padding: 40px;
  text-align: right;
}

.nm-meta {
  font-size: 14px;
  color: var(--amber-dk);
  margin-bottom: 12px;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
  font-variant-numeric: lining-nums;
}

.nm-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--blue-dkr);
}

.nm-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 30px;
  text-align: justify;
}

@media (max-width: 640px) {
  .nm-hero {
    height: 250px;
  }

  .nm-title {
    font-size: 22px;
  }

  .nm-body {
    padding: 25px;
  }
}

/* ════════════════════════════════════════
   DONATE BANNER
════════════════════════════════════════ */
.donate-banner {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.donate-banner h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
  background: linear-gradient(to bottom, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.donate-banner p {
  font-size: 18px;
  opacity: .7;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.donate-container {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.donate-form {
  max-width: 600px;
  margin: 0 auto;
}

.donate-amounts {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.d-amount {
  background: rgba(255, 255, 255, .2);
  border: 2px solid rgba(255, 255, 255, .4);
  color: white;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s;
}

.d-amount:hover,
.d-amount.active {
  background: white;
  color: var(--amber-dk);
  border-color: white;
}

.donate-trust {
  margin-top: 25px;
  font-size: 13px;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 900px) {
  .donate-container {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   7. PARTNERS CAROUSEL
════════════════════════════════════════ */
.partners-section {
  background: white;
  border-top: 1px solid var(--border);
}

/* Partners slider — same mechanics as the news slider, with auto-slide + loop */
.partners-slider-wrap {
  position: relative;
  margin-top: 40px;
  padding: 0 60px;
}

.partners-track-container {
  overflow: hidden;
  padding: 10px 0;
}

.partners-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Arabic (RTL): reverse card order so the track starts from the right,
   then translateX(-N) naturally reveals cards entering from the right side. */
[dir="rtl"] .partners-track {
  flex-direction: row-reverse;
}


.partner-card {
  min-width: calc(25% - 15px);
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  min-height: 160px;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .partner-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .partner-card {
    min-width: 100%;
  }
}

.partner-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--blue-lt);
}

.partner-logo {
  max-height: 110px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
  filter: grayscale(0) opacity(1);
}

.partners-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  color: var(--blue-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  font-size: 20px;
}

.partners-nav:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.partners-prev {
  left: 0;
}

.partners-next {
  right: 0;
}

/* ════════════════════════════════════════
   8. FOOTER
════════════════════════════════════════ */
footer {
  background: var(--blue-dkr);
  color: rgba(255, 255, 255, .75);
}

.footer-top {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: #fdd8a0;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}


.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  max-width: 280px;
}

/* Drupal block wrapper passthrough for footer-brand */
.footer-brand .block,
.footer-brand .block-content,
.footer-brand .field__item,
.footer-brand .field {
  display: contents;
}



.footer-col h4,
.footer-col .footer-col-title {
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Drupal block wrapper passthrough — keeps footer column layout intact */
.footer-col .block,
.footer-col .block-content,
.footer-col .field__item,
.footer-col .field {
  display: contents;
}


.footer-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color .15s;
}

.footer-col a:hover {
  color: white;
}

/* Contact Us links with leading icons */
.footer-col a.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact-link .fc-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--amber);
  display: inline-flex;
}
.footer-contact-link:hover .fc-icon {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, .05);
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, .2);
}

.social-btn[aria-label*="X"]:hover {
  background: #000;
}

.social-btn[aria-label*="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn[aria-label*="Facebook"]:hover {
  background: #1877F2;
}

.social-btn[aria-label*="YouTube"]:hover {
  background: #FF0000;
}

.social-btn[aria-label*="LinkedIn"]:hover {
  background: #0A66C2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  cursor: pointer;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ════════════════════════════════════════
   UTILITIES & ANIMATIONS
════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.badge-cyan {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 100px;
  font-size: 14px;
  color: #38bdf8;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.text-glow-blue {
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.about-page #navbar.scrolled {
  background: rgba(60, 96, 158, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.about-page #navbar.scrolled .nav-link {
  color: #cbd5e1;
}

.about-page #navbar.scrolled .nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.about-page #navbar.scrolled .nav-logo img.logo-img {
  filter: brightness(0) invert(1);
}

.about-page #navbar.scrolled .search-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.about-page #navbar.scrolled .lang-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
}

.about-page #navbar.scrolled .lang-btn.active {
  background: #38bdf8;
  color: white;
}

/* about-page: section-titles on DARK backgrounds (hero area) are white */
.about-page .about-hero .section-title,
.about-page .about-hero h1 {
  color: white;
}

/* section-titles on LIGHT backgrounds should be dark */
.about-page .section-title {
  color: var(--dark);
}

/* Only override to white when inside a dark bg container */
.about-page .vm-section .section-title {
  color: var(--dark);
}

.about-page .section-eyebrow {
  color: var(--blue);
  background: var(--blue-lt);
}

/* Hero area eyebrow stays cyan */
.about-hero .section-eyebrow,
.about-hero .badge-cyan {
  color: #fff;
}

/* ════════════════════════════════════════
   ABOUT PAGE — HERO / VISION / VALUES / GOALS
════════════════════════════════════════ */
.about-hero {
  padding: 180px 0 120px;
  background: radial-gradient(circle at 10% 20%, rgb(79, 111, 187) 0%, rgb(64, 93, 160) 90.2%);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
  filter: blur(60px);
}

.about-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-hero p {
  font-size: 20px;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.vm-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 30px !important;
  margin-top: -60px !important;
  position: relative !important;
  z-index: 5 !important;
}

.vm-card {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 24px !important;
  padding: 36px 30px !important;
  text-align: center !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
}

.vm-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
}

.vm-card h3 {
  font-size: 28px !important;
  font-weight: 900 !important;
  color: var(--blue-dkr) !important;
  margin-bottom: 10px !important;
}

.vm-card p {
  font-size: 16px !important;
  color: #64748b !important;
  line-height: 1.8 !important;
  max-width: 320px !important;
}

.vm-card .icon-wrap,
.vm-card .vm-icon-box {
  width: 76px !important;
  height: 76px !important;
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  border-radius: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
  color: white !important;
  box-shadow: 0 10px 25px rgba(79, 114, 191, 0.25) !important;
  transition: transform 0.3s ease !important;
}

.vm-card:hover .icon-wrap,
.vm-card:hover .vm-icon-box {
  transform: scale(1.1) rotate(5deg) !important;
}

.vm-card .icon-wrap i,
.vm-card .icon-wrap svg,
.vm-card .vm-icon-box i,
.vm-card .vm-icon-box svg {
  width: 36px !important;
  height: 36px !important;
  stroke-width: 1.5px !important;
}

@media (max-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr !important;
    margin-top: 20px !important;
  }

  .vm-card {
    padding: 40px 24px !important;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--bg);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  border-color: var(--amber);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 54px;
  height: 54px;
  background: rgba(79, 114, 191, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--blue);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.value-icon i,
.value-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2px;
}

.value-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--blue-dk);
}

.value-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

.goals-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.goal-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border-right: 4px solid var(--amber);
}

[dir="ltr"] .goal-item {
  border-right: none;
  border-left: 4px solid var(--amber);
}

.goal-num {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 900;
  font-size: 24px;
  color: var(--amber);
  opacity: 0.5;
  font-variant-numeric: lining-nums;
}

.goal-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dk);
  line-height: 1.4;
}

/* ════════════════════════════════════════
   ORGANIZATIONAL CHART
════════════════════════════════════════ */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.org-node {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 14px;
  padding: 16px 28px;
  font-weight: 800;
  color: var(--blue-dkr);
  font-size: 15px;
}

.org-node i,
.org-node svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.org-node-top {
  background: var(--blue-dkr);
  color: white;
}

.org-node-top i,
.org-node-top svg {
  color: #fdd8a0;
}

.org-node-mid {
  background: var(--amber);
  color: white;
}

.org-node-mid i,
.org-node-mid svg {
  color: white;
}

.org-connector {
  width: 2px;
  height: 36px;
  background: var(--border);
}

.org-branches {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.org-node-leaf {
  font-size: 14px;
  padding: 14px 22px;
}

/* SVG arrow connectors in org chart */
.org-arrow-down {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.org-branch-connector {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.org-branch-svg {
  width: 100%;
  height: 60px;
  display: block;
}

@media (max-width: 640px) {
  .org-branches {
    flex-direction: column;
  }
  .org-branch-connector { display: none; }
}

/* ════════════════════════════════════════
   FOUNDERS & BOARD — PEOPLE GRID
════════════════════════════════════════ */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.person-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s;
}

.person-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.person-card-chair {
  border-color: var(--amber);
  background: var(--amber-lt);
}

.person-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--blue-lt);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.person-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-card-chair .person-avatar {
  background: var(--amber);
  color: white;
}

.person-avatar i,
.person-avatar svg {
  width: 36px;
  height: 36px;
}

.person-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-dkr);
  margin-bottom: 4px;
}

.person-role {
  font-size: 13px;
  color: var(--mid);
  font-weight: 600;
}

/* ════════════════════════════════════════
   MEMBERS TABS & SLIDER
════════════════════════════════════════ */
.members-tab-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 0;
}

.members-tab-btn {
  background: var(--blue-lt);
  color: var(--blue-dkr);
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 10px 28px;
  font-family: var(--font-ar);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.members-tab-btn:hover {
  border-color: var(--blue);
}

.members-tab-btn.active {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 16px rgba(79, 114, 191, 0.3);
}

.members-panel {
  margin-top: 0;
  animation: fadeIn 0.35s ease;
}

.members-panel.hidden {
  display: none;
}

.members-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.members-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  color: var(--blue-dkr);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  font-family: var(--font-ar);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.members-nav-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateX(-4px);
}

.members-nav-prev:hover {
  transform: translateX(4px);
}

.members-section-title,
.org-section-title,
.geo-section-title,
.members-eyebrow {
  color: var(--dark) !important;
}

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

.people-grid-slider {
  margin-top: 30px;
}

/* ════════════════════════════════════════
   WORLD MAP (geographic presence)
════════════════════════════════════════ */
.world-map-wrap {
  margin-top: 50px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.world-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
  max-height: 480px;
}

.map-countries-legend {
  padding: 20px 28px;
  background: white;
  border-top: 1px solid var(--border);
}

.map-legend-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-legend-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-legend-hq,
.map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.map-legend-hq {
  background: var(--amber-lt);
  color: var(--amber-dk);
  border: 1px solid rgba(232, 135, 42, 0.25);
}

.map-legend-item {
  background: var(--blue-lt);
  color: var(--blue-dkr);
  border: 1px solid rgba(79, 114, 191, 0.15);
}


.world-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-dot {
  fill: var(--blue);
  opacity: .35;
}

.map-pin {
  cursor: pointer;
}

.map-pin-pulse {
  fill: var(--amber);
  opacity: .35;
  animation: map-pulse 2.2s ease-out infinite;
  transform-origin: center;
}

.map-pin-dot {
  fill: var(--amber-dk);
  stroke: white;
  stroke-width: 2;
}

.map-pin:hover .map-pin-dot {
  fill: var(--blue-dk);
}

@keyframes map-pulse {
  0% {
    transform: scale(0.6);
    opacity: .5;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-pin-pulse {
    animation: none;
  }
}

.map-legend {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  white-space: nowrap;
}

.map-legend.show {
  opacity: 1;
}

/* ════════════════════════════════════════
   GOVERNANCE
════════════════════════════════════════ */
.gov-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.gov-feature {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.gf-icon {
  width: 56px;
  height: 56px;
  background: #f1f5f9;
  color: var(--blue-dk);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 20px;
  border: 1px solid #e2e8f0;
}

.gf-text h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}

.gf-text p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
}

.gov-visual {
  background: linear-gradient(135deg, #4669b9, #4166a0);
  padding: 50px;
  border-radius: 40px;
  color: white;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.gov-visual h3{color:#fff;}
.gov-visual::after {
  content: '✓';
  position: absolute;
  font-size: 200px;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gov-visual h3 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
}

.gov-visual p {
  opacity: 0.8;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .gov-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   ARTICLES & REPORTS PAGE
════════════════════════════════════════ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 10px;
}

.article-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--blue-lt);
}

.article-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.article-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
}

[dir="ltr"] .article-tag {
  right: auto;
  left: 14px;
}

.article-body {
  padding: 24px;
}

.article-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-dkr);
  margin-bottom: 10px;
  line-height: 1.4;
}

.article-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.article-link {
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: var(--blue);
  padding: 9px 18px;
  border-radius: 8px;
  transition: all .2s;
}

.article-link:hover {
  background: var(--blue-dk);
}

.article-link-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--border);
}

.article-link-outline:hover {
  background: var(--blue-lt);
}

/* ════════════════════════════════════════
   System Messages / Toasts
════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: white;
  color: var(--dark);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  border-right: 4px solid var(--amber);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
}

[dir="ltr"] .toast {
  border-right: none;
  border-left: 4px solid var(--amber);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 20px;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 96, 158, 0.96);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.search-overlay.active {
  visibility: visible;
  opacity: 1;
}

.search-container {
  width: 90%;
  max-width: 800px;
  position: relative;
  transform: translateY(-40px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-overlay.active .search-container {
  transform: translateY(0);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 16px;
  padding: 12px 12px 12px 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.search-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 1.4rem;
  color: var(--dark);
  outline: none;
  font-family: inherit;
}

.search-input-wrap input::placeholder {
  color: #94a3b8;
  font-size: 1.1rem;
}

.search-submit-btn {
  background: var(--blue);
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s;
}

.search-submit-btn:hover {
  background: var(--amber);
  transform: scale(1.05);
}

.search-close-btn {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.search-close-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateX(-50%) rotate(90deg);
}

.search-results-mock {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 1rem;
}

/* Live search results (inside the search overlay) */
.search-loading,
.search-empty {
  margin-top: 26px; text-align: center; color: rgba(255, 255, 255, 0.7); font-size: 1rem;
}
.search-results-head {
  margin: 26px 0 12px; color: rgba(255, 255, 255, 0.85); font-weight: 800; font-size: .95rem;
  text-align: start;
}
.search-results-head .sr-count { color: rgba(255, 255, 255, 0.55); font-weight: 600; }
.search-results-list {
  list-style: none; margin: 0; padding: 0; text-align: start;
  max-height: 52vh; overflow-y: auto; display: flex; flex-direction: column; gap: 8px;
}
.search-results-list .sr-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 18px; border-radius: 12px; text-decoration: none;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background .2s, border-color .2s, transform .2s;
}
.search-results-list .sr-item:hover {
  background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.28); transform: translateY(-1px);
}
.search-results-list .sr-title {
  color: #fff; font-weight: 700; font-size: 1rem; line-height: 1.4;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.search-results-list .sr-type {
  flex-shrink: 0; font-size: 11.5px; font-weight: 800; color: #fff;
  background: rgba(79, 114, 191, 0.9); padding: 4px 12px; border-radius: 20px;
}

/* ════════════════════════════════════════
   BANK MODAL — BLUE & WHITE THEME
════════════════════════════════════════ */
.bm-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.bm-modal.open {
  visibility: visible;
  opacity: 1;
}

.bm-container {
  width: 100%;
  max-width: 650px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bm-modal.open .bm-container {
  transform: scale(1);
}

.bm-header {
  padding: 20px 24px;
  background: #3c609e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.bm-badge {
  display: inline-block;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.bm-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

.bm-subtitle {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}

.bm-close {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bm-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.bm-body {
  padding: 20px 24px;
  max-height: 75vh;
  overflow-y: auto;
}

.bm-amount-alert {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.baa-icon {
  color: #3c609e;
  font-size: 18px;
}

.baa-text {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.baa-text .mono {
  color: #3c609e;
  font-weight: 900;
  margin-right: 5px;
}

.bm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.bm-info-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 12px 16px;
  border-radius: 12px;
}

.ic-label {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 4px;
}

.ic-value {
  font-size: 14px;
  color: #3c609e;
  font-weight: 800;
}

.account-row {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.acc-header {
  padding: 12px 16px;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}

.acc-currency {
  font-size: 12px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

.acc-currency.usd {
  background: #dcfce7;
  color: #166534;
}

.acc-currency.eur {
  background: #e0f2fe;
  color: #075985;
}

.acc-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #f1f5f9;
  border-radius: 10px;
}

.field-label {
  font-size: 12px;
  color: #64748b;
  min-width: 100px;
}

.field-value {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.copy-btn {
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #3c609e;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover {
  background: #3c609e;
  color: #fff;
}

.bm-footer {
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bm-trust {
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bm-trust i {
  color: #22c55e;
}

.mono {
  font-family: 'Courier New', Courier, monospace !important;
}

@media (max-width: 640px) {
  .bm-grid {
    grid-template-columns: 1fr;
  }

  .bm-header,
  .bm-body,
  .bm-footer {
    padding: 15px;
  }

  .field-label {
    min-width: 70px;
  }

  .bm-title {
    font-size: 18px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .hero-title {
    font-size: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    gap: 40px !important;
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-item:nth-child(2) {
    border-right: none;
  }

  .bento-media {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .mi-1,
  .mi-2,
  .mi-3,
  .mi-4,
  .mi-5,
  .mi-6 {
    grid-column: auto;
    grid-row: auto;
    height: 180px;
  }



  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section-title {
    font-size: 28px;
  }

  .gov-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 30px;
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .counter-item {
    padding: 24px 10px;
  }

  .counter-num {
    font-size: 28px;
  }

  .counter-suffix {
    font-size: 18px;
  }

  .counter-label {
    font-size: 12px;
  }

  .counter-sub {
    font-size: 10px;
  }

  .bento-media {
    grid-template-columns: 1fr;
  }

  .mi-1,
  .mi-2,
  .mi-3,
  .mi-4,
  .mi-5,
  .mi-6 {
    grid-column: auto;
    grid-row: auto;
    height: 160px;
  }



  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .donate-banner h2 {
    font-size: 26px;
  }

  .container {
    padding: 0 16px;
  }
}

/* =========================================
   WORLD MAP SVG & LEGEND (About Page)
   ========================================= */
.world-map-wrap {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  margin-top: 40px;
}

.world-map-svg-container {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.world-map-svg {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.map-legend-bar {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.map-legend-entry {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-md);
  font-weight: 500;
}

.map-dot-hq {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4f72bf;
  box-shadow: 0 0 6px rgba(79,114,191,0.6);
}

.map-dot-active {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e8872a;
  box-shadow: 0 0 6px rgba(232,135,42,0.6);
}

.map-countries-legend {
  margin-top: 30px;
}

.map-legend-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-dkr);
  margin-bottom: 16px;
  text-align: center;
}

.map-legend-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.map-legend-hq {
  background: rgba(79,114,191,0.1);
  color: #4f72bf;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(79,114,191,0.2);
}

.map-legend-item {
  background: var(--bg-alt);
  color: var(--text-dk);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.map-legend-item:hover {
  background: rgba(232,135,42,0.1);
  color: #e8872a;
  border-color: rgba(232,135,42,0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .about-content {
    order: 2 !important;
  }
  .about-visual {
    order: 1 !important;
  }
  .world-map-wrap {
    padding: 24px;
  }
  .map-legend-bar {
    flex-direction: column;
    gap: 12px;
  }
}

/* ════════════════════════════════════════
   DRUPAL ADMIN TOOLBAR OFFSET FOR FIXED NAV
   ════════════════════════════════════════ */
body.toolbar-horizontal #navbar {
  top: 39px;
}
body.toolbar-horizontal.toolbar-tray-open #navbar {
  top: 79px;
}
body.toolbar-vertical #navbar {
  top: 39px;
}

body.toolbar-horizontal #mobileMenu {
  top: calc(70px + 39px);
}
body.toolbar-horizontal.toolbar-tray-open #mobileMenu {
  top: calc(70px + 79px);
}
body.toolbar-vertical #mobileMenu {
  top: calc(70px + 39px);
}

@media (max-width: 768px) {
  body.toolbar-horizontal #navbar {
    top: 39px !important;
  }
  body.toolbar-horizontal.toolbar-tray-open #navbar {
    top: 79px !important;
  }
  body.toolbar-vertical #navbar {
    top: 39px !important;
  }
}

/* Hide help container box styles to show only the vertical rail */
.help.gav-help-region {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.help.gav-help-region .content-inner {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Floating administrative tasks rail on the right side (RTL Arabic) */
.admin-rail {
  position: fixed;
  top: 70%;
  right: 0;
  left: auto !important;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-right: none !important;
  border-left: 1px solid var(--border) !important;
  border-radius: 16px 0 0 16px !important;
  box-shadow: var(--shadow-md);
}

/* Position admin-rail on the left side for LTR (English and Turkish) */
[dir="ltr"] .admin-rail {
  right: auto !important;
  left: 0 !important;
  border-left: none !important;
  border-right: 1px solid var(--border) !important;
  border-radius: 0 16px 16px 0 !important;
}

.admin-rail-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--blue) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s, transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none !important;
}

.admin-rail-btn:hover {
  background: var(--amber) !important;
  color: white !important;
  transform: scale(1.15) !important;
}

.admin-rail-btn.is-active {
  background: var(--blue) !important;
  color: white !important;
}

/* Tooltip custom styling or just default browser styling.
   Let's ensure SVGs are centered and sized properly. */
.admin-rail-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}

/* ════════════════════════════════════════
   DYNAMIC DRUPAL MENU MAPPINGS (HEADER & MOBILE)
   ════════════════════════════════════════ */
.nav-links .gva-navigation ul.gva_menu_main {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links .gva-navigation ul.gva_menu_main > li {
  display: block;
  float: none !important;
}

.nav-links .gva-navigation ul.gva_menu_main > li > a {
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .9) !important;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
  text-decoration: none !important;
  border: none !important;
  background: transparent !important;
  font-family: inherit !important;
}

#navbar.scrolled .nav-links .gva-navigation ul.gva_menu_main > li > a {
  color: var(--dark) !important;
}

.nav-links .gva-navigation ul.gva_menu_main > li > a:hover {
  background: rgba(255, 255, 255, .15) !important;
  color: white !important;
}

#navbar.scrolled .nav-links .gva-navigation ul.gva_menu_main > li > a:hover {
  background: var(--blue-lt) !important;
  color: var(--blue) !important;
}

/* Mobile menu dynamic links mapping */
.mobile-menu .gva-navigation {
  width: 100%;
}

.mobile-menu .gva-navigation ul.gva_menu_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.mobile-menu .gva-navigation ul.gva_menu_main > li {
  width: 100%;
  text-align: center;
  float: none !important;
}

.mobile-menu .gva-navigation ul.gva_menu_main > li > a {
  display: block;
  color: var(--dark) !important;
  font-size: 20px;
  padding: 12px 32px;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  transition: all 0.2s;
  text-decoration: none !important;
  border: none !important;
  background: transparent !important;
  font-family: inherit !important;
}

.mobile-menu .gva-navigation ul.gva_menu_main > li > a:hover {
  background: var(--blue-lt) !important;
  color: var(--blue) !important;
}

/* ════════════════════════════════════════
   5. GLOBAL LANGUAGE-SPECIFIC FONTS
   ════════════════════════════════════════ */
html[lang="en"] body,
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, html[lang="en"] h4, html[lang="en"] h5, html[lang="en"] h6,
html[lang="en"] .section-title, html[lang="en"] .post-title, html[lang="en"] .entry-title,
html[lang="en"] .btn, html[lang="en"] button, html[lang="en"] input, html[lang="en"] select, html[lang="en"] textarea,
html[lang="en"] .navigation ul.gva_menu_main > li > a,
html[lang="en"] .gva-navigation ul.gva_menu_main > li > a,
html[lang="en"] .bank-account-card, html[lang="en"] .bank-info-trust,
html[lang="en"] .about-section__title, html[lang="en"] .about-section__feature-title, html[lang="en"] .about-section__feature-description {
  font-family: var(--font-en) !important;
}

html[lang="tr"] body,
html[lang="tr"] h1, html[lang="tr"] h2, html[lang="tr"] h3, html[lang="tr"] h4, html[lang="tr"] h5, html[lang="tr"] h6,
html[lang="tr"] .section-title, html[lang="tr"] .post-title, html[lang="tr"] .entry-title,
html[lang="tr"] .btn, html[lang="tr"] button, html[lang="tr"] input, html[lang="tr"] select, html[lang="tr"] textarea,
html[lang="tr"] .navigation ul.gva_menu_main > li > a,
html[lang="tr"] .gva-navigation ul.gva_menu_main > li > a,
html[lang="tr"] .bank-account-card, html[lang="tr"] .bank-info-trust,
html[lang="tr"] .about-section__title, html[lang="tr"] .about-section__feature-title, html[lang="tr"] .about-section__feature-description {
  font-family: var(--font-en) !important;
}

html[lang="ar"] body,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] h5, html[lang="ar"] h6,
html[lang="ar"] .section-title, html[lang="ar"] .post-title, html[lang="ar"] .entry-title,
html[lang="ar"] .btn, html[lang="ar"] button, html[lang="ar"] input, html[lang="ar"] select, html[lang="ar"] textarea,
html[lang="ar"] .navigation ul.gva_menu_main > li > a,
html[lang="ar"] .gva-navigation ul.gva_menu_main > li > a,
html[lang="ar"] .bank-account-card, html[lang="ar"] .bank-info-trust,
html[lang="ar"] .about-section__title, html[lang="ar"] .about-section__feature-title, html[lang="ar"] .about-section__feature-description {
  font-family: var(--font-ar) !important;
}

/* Redesigned Programs Section Layout and Animations */
.section-eyebrow {
  display: inline-block;
  background-color: #f0f4f8;
  color: #4a5568;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.bento-programs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.prog-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

/* Card background image zoom container */
.pc-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.prog-card:hover .pc-bg {
  transform: scale(1.06);
}

/* Transparent overlays with custom colors matching design */
.pc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.prog-card.pc-2 .pc-overlay {
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(43, 108, 176, 0.7) 100%);
}

.prog-card.pc-1 .pc-overlay {
  background: linear-gradient(135deg, rgba(43, 108, 176, 0.85) 0%, rgba(66, 153, 225, 0.75) 100%);
}

.prog-card.pc-5 .pc-overlay {
  background: linear-gradient(135deg, rgba(221, 107, 32, 0.9) 0%, rgba(237, 137, 54, 0.8) 100%);
}

.prog-card.pc-4 .pc-overlay {
  background: linear-gradient(135deg, rgba(44, 122, 123, 0.85) 0%, rgba(56, 178, 172, 0.7) 100%);
}

.prog-card.pc-3 .pc-overlay {
  background: linear-gradient(135deg, rgba(214, 158, 46, 0.85) 0%, rgba(236, 201, 75, 0.7) 100%);
}

/* Glassmorphism Icon Squircle */
.pc-icon-wrap {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

[dir="rtl"] .pc-icon-wrap {
  left: auto;
  right: 24px;
}

.pc-icon-wrap i,
.pc-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
  stroke-width: 1.75px;
}

.prog-card:hover .pc-icon-wrap {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(15deg) scale(1.05);
}

/* Glassmorphism Second Icon (FontAwesome) on opposite side */
.pc-icon-fa {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

[dir="rtl"] .pc-icon-fa {
  right: auto;
  left: 24px;
}

.pc-icon-fa i {
  font-size: 24px;
  color: #ffffff;
}

.prog-card:hover .pc-icon-fa {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(-15deg) scale(1.05);
}

.pc-type {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

/* Text Content styling */
.pc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: #ffffff;
}

.pc-eyebrow {
  display: none;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pc-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #ffffff;
  line-height: 1.3;
}

/* Premium sliding desc animation on card hover */
.pc-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
}

.prog-card:hover .pc-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}

/* Grid layout rules for Desktop */
.prog-card.pc-2 { grid-column: span 3; height: 320px; }
.prog-card.pc-1 { grid-column: span 3; height: 320px; }

.prog-card.pc-5 { grid-column: span 2; height: 280px; }
.prog-card.pc-4 { grid-column: span 2; height: 280px; }
.prog-card.pc-3 { grid-column: span 2; height: 280px; }

.prog-card.pc-5 .pc-title,
.prog-card.pc-4 .pc-title,
.prog-card.pc-3 .pc-title {
  font-size: 19px;
}

/* Responsive Grid rules for Tablet */
@media (max-width: 991px) {
  .bento-programs {
    grid-template-columns: repeat(2, 1fr);
  }
  .prog-card.pc-2, .prog-card.pc-1, .prog-card.pc-5, .prog-card.pc-4 {
    grid-column: span 1;
    height: 290px;
  }
  .prog-card.pc-3 {
    grid-column: span 2;
    height: 280px;
  }
}

/* Responsive Grid rules for Mobile */
@media (max-width: 575px) {
  .bento-programs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .prog-card.pc-2, .prog-card.pc-1, .prog-card.pc-5, .prog-card.pc-4, .prog-card.pc-3 {
    grid-column: span 1;
    height: 260px;
  }

}

/* ══ NEW PROGRAM MODAL STYLING ══ */
.pm-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.pm-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pm-hero:hover img {
  transform: scale(1.05);
}

.pm-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pm-icon i,
.pm-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.5px;
}

.pm-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.pm-content {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  text-align: right;
}

@media (max-width: 768px) {
  .pm-content {
    grid-template-columns: 1fr;
  }
}

.pm-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-dkr);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pm-section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--amber);
  border-radius: 2px;
}

.pm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark);
}

.pm-list li:last-child {
  border-bottom: none;
}

.pm-list li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 900;
}

.pm-projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pm-project-card {
  position: relative;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.35s ease;
}

.pm-project-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

/* Thumbnail image layer */
.pm-pc-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.pm-project-card:hover .pm-pc-thumb {
  transform: scale(1.1);
}

/* Dark gradient overlay */
.pm-pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 17, 40, 0.92) 0%,
    rgba(10, 17, 40, 0.35) 55%,
    transparent 100%
  );
  transition: background 0.35s ease;
}

.pm-project-card:hover .pm-pc-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 17, 40, 0.97) 0%,
    rgba(10, 17, 40, 0.55) 65%,
    rgba(79, 114, 191, 0.1) 100%
  );
}

/* Text content */
.pm-pc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  transform: translateY(6px);
  transition: transform 0.35s ease;
}

.pm-project-card:hover .pm-pc-content {
  transform: translateY(0);
}

.pm-pc-name {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 5px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.pm-pc-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.pm-project-card:hover .pm-pc-loc {
  opacity: 1;
  transform: translateY(0);
}

.pm-pc-loc i {
  color: var(--blue-lt);
  font-size: 10px;
  flex-shrink: 0;
}

/* Top-right open arrow */
.pm-pc-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  opacity: 0;
  transform: translate(4px, -4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pm-project-card:hover .pm-pc-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.pm-footer {
  padding: 30px 40px;
  background: var(--blue-lt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  direction: rtl;
}

.pm-icon i {
  width: auto !important;
  height: auto !important;
  font-size: 28px !important;
}

.pm-projects-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


