/* =============================================================
   EOSD Website — Stylesheet
   Brand colors (from logo): navy #16365c, green #4f9d44
   ============================================================= */

:root {
  --navy:        #16365c;
  --navy-deep:   #0e2440;
  --navy-soft:   #1f4a7a;
  --green:       #4f9d44;
  --green-light: #7ec46f;
  --ink:         #16365c;
  --text:        #566573;
  --bg:          #f4f7f4;
  --card-border: #e7eee8;
  --maxw:        1240px;
  --radius-xs:   4px;
  --radius-sm:   6px;
  --radius-md:   8px;
  --radius-lg:   10px;
  --radius-xl:   12px;
  --radius-2xl:  14px;
  --radius-btn:  8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
}
body[dir="ltr"] { font-family: 'Space Grotesk', 'Cairo', sans-serif; }
::selection { background: var(--green); color: #fff; }
img { display: block; }
button, input, textarea { font-family: inherit; }

/* ---------- Animations ---------- */
@keyframes floaty   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spinslow { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Layout helpers ---------- */
.wrap     { max-width: var(--maxw); margin: 0 auto; padding-left: 30px; padding-right: 30px; }
.section  { padding-top: 84px; padding-bottom: 84px; }
.kicker   { color: var(--green); font-weight: 700; letter-spacing: 1.5px; font-size: 14px; margin-bottom: 12px; }
.kicker.light { color: var(--green-light); }
.center   { text-align: center; }
.head-block { max-width: 760px; margin: 0 auto 54px; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillars-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

h1 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; line-height: 1.13; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; line-height: 1.2; }
h3 { font-size: 21px; font-weight: 800; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e3ebe4;
}
.header-inner { padding: 14px 30px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; cursor: pointer; }
.brand img { height: 54px; width: auto; }
.brand-name { font-weight: 800; font-size: 16px; letter-spacing: .3px; line-height: 1.15; }
.brand-sub  { font-size: 11px; color: var(--green); font-weight: 600; letter-spacing: .5px; }
.header-end {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-end .nav { margin-inline-start: 0; }
.nav { display: flex; align-items: center; gap: 30px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid #dce8dd;
  background: #fff;
  border-radius: var(--radius-btn);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.menu-toggle:hover { border-color: var(--green); }
.menu-toggle-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}
.menu-toggle-box span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.is-open {
  border-color: var(--green);
  box-shadow: 0 8px 20px -12px rgba(79,157,68,.55);
}
.menu-toggle.is-open .menu-toggle-box span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle-box span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle-box span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-nav.open {
  display: block;
  pointer-events: auto;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 36, 64, .45);
  z-index: 0;
}
.mobile-nav-panel {
  position: fixed;
  top: var(--header-offset, 72px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 12px 12px max(20px, env(safe-area-inset-bottom));
}
.mobile-nav-inner {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border: 1px solid #e3ebe4;
  border-radius: var(--radius-xl);
  padding: 10px;
  display: grid;
  gap: 4px;
  box-shadow: 0 24px 50px -24px rgba(22,54,92,.35);
  margin-bottom: 8px;
}
.mobile-navlink {
  display: block;
  width: 100%;
  text-align: start;
  padding: 14px 16px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.mobile-navlink:hover { background: #f4f7f4; }
.mobile-navlink.active {
  background: #eef5ee;
  color: var(--green);
}
body.mobile-nav-open { overflow: hidden; }
body.mobile-nav-open .site-header { z-index: 210; }
.navlink {
  position: relative; cursor: pointer; font-weight: 600; font-size: 15px;
  color: var(--navy); transition: color .3s ease; white-space: nowrap;
  background: none; border: none;
}
.navlink:hover { color: var(--green); }
.navlink.active { color: var(--green); }
.navlink::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: center; transition: transform .35s ease;
}
.navlink:hover::after { transform: scaleX(1); }
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform .25s ease;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  inset-inline-start: 50%;
  min-width: 210px;
  padding: 8px;
  background: rgba(255,255,255,.99);
  border: 1px solid #e3ebe4;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px -20px rgba(22,54,92,.4);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 220;
}
body[dir="rtl"] .nav-dropdown-menu { transform: translate(50%, -6px); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
body[dir="rtl"] .nav-dropdown:hover .nav-dropdown-menu,
body[dir="rtl"] .nav-dropdown:focus-within .nav-dropdown-menu { transform: translate(50%, 0); }
.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-link {
  display: block;
  width: 100%;
  padding: 11px 13px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: start;
  white-space: nowrap;
  cursor: pointer;
}
.nav-dropdown-link:hover,
.nav-dropdown-link.active { color: var(--green); background: #eef5ee; }
.mobile-nav-group { display: grid; gap: 2px; }
.mobile-nav-parent { font-weight: 800; }
.mobile-nav-submenu {
  display: grid;
  gap: 2px;
  margin: 0 12px 6px;
  padding-inline-start: 12px;
  border-inline-start: 2px solid #dce8dd;
}
.mobile-nav-sublink { padding: 11px 14px; font-size: 15px; }
.lang-btn {
  border: 1.5px solid var(--navy); background: transparent; color: var(--navy);
  font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: var(--radius-btn);
  cursor: pointer; letter-spacing: .5px; flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn { font-weight: 700; font-size: 16px; padding: 16px 34px; border-radius: var(--radius-btn); cursor: pointer; border: none; }
.btn-primary { background: var(--green); color: #fff; transition: transform .3s ease, box-shadow .3s ease; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -10px rgba(79,157,68,.6); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); transition: transform .3s ease, background .3s ease, color .3s ease; }
.btn-ghost:hover { transform: translateY(-3px); background: #fff; color: var(--navy); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-xl); padding: 34px 30px;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .45s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px -20px rgba(22,54,92,.32); border-color: var(--green); }
.card .icon { width: 60px; height: 60px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.card p { font-size: 15px; line-height: 1.7; color: var(--text); margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: radial-gradient(circle at 70% 20%, var(--navy-soft), var(--navy) 55%, var(--navy-deep)); color: #fff; overflow: hidden; }
.hero .blob { position: absolute; border-radius: 50%; }
.hero .blob1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(79,157,68,.32), transparent 70%); top: -120px; inset-inline-end: -120px; animation: floaty 9s ease-in-out infinite; }
.hero .blob2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(79,157,68,.18), transparent 70%); bottom: -100px; inset-inline-start: -80px; animation: floaty 11s ease-in-out infinite; }
.hero-inner { padding: 96px 30px 110px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; position: relative; }
.hero-tag { display: inline-flex; align-items: center; gap: 9px; background: rgba(79,157,68,.18); border: 1px solid rgba(79,157,68,.45); padding: 8px 16px; border-radius: var(--radius-btn); font-size: 13px; font-weight: 600; margin-bottom: 26px; }
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); }
.hero h1 { margin-bottom: 22px; }
.hero p { font-size: 19px; line-height: 1.75; color: #cddbe9; max-width: 560px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-ring { position: absolute; border-radius: 50%; }
.hero-ring.r1 { width: 340px; height: 340px; border: 1px dashed rgba(255,255,255,.22); animation: spinslow 38s linear infinite; }
.hero-ring.r2 { width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.1); }
.hero-logo { background: rgba(255,255,255,.96); border-radius: 50%; width: 290px; height: 290px; display: flex; align-items: center; justify-content: center; box-shadow: 0 30px 70px -20px rgba(0,0,0,.55); animation: floaty 7s ease-in-out infinite; }
.hero-logo img { width: 230px; height: auto; }

/* ---------- Stats ---------- */
.stats { background: #fff; border-bottom: 1px solid #eef2ee; }
.stats-inner { padding: 46px 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-size: 46px; font-weight: 900; color: var(--navy); font-family: 'Space Grotesk', sans-serif; }
.stat .label { font-size: 14px; color: #5d7081; font-weight: 600; margin-top: 4px; }

/* ---------- Banner ---------- */
.banner { background: linear-gradient(120deg, var(--navy), var(--navy-soft)); color: #fff; }
.banner-inner { max-width: 1040px; margin: 0 auto; padding: 84px 30px; text-align: center; }
.banner .emoji { font-size: 54px; line-height: 1; margin-bottom: 18px; }
.banner p { font-size: 18px; color: #cddbe9; line-height: 1.7; max-width: 680px; margin: 0 auto 32px; }

/* ---------- Page header ---------- */
.page-hero { background: radial-gradient(circle at 70% 10%, var(--navy-soft), var(--navy) 60%); color: #fff; }
.page-hero-inner { padding: 74px 30px 64px; }
.page-hero h1 { max-width: 820px; }

/* ---------- About ---------- */
.lead { font-size: 19px; line-height: 1.9; color: #3c4d5c; }
.muted { font-size: 17px; line-height: 1.9; color: var(--text); margin-top: 22px; }
.reg-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, #fff 0%, #f4f9f4 100%);
  border: 1px solid #d8e8da;
  border-inline-start: 5px solid var(--green);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: 0 18px 40px -28px rgba(22,54,92,.28);
}
.reg-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eef5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reg-icon img { width: 30px; height: 30px; }
.reg-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.reg-number {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--navy);
  font-family: 'Space Grotesk', 'Cairo', sans-serif;
  letter-spacing: .06em;
  word-break: break-word;
}
.vm-card { background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-xl); padding: 40px; }
.vm-card .ico { font-size: 34px; margin-bottom: 14px; }
.vm-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 14px; }
.vm-card p { font-size: 16px; line-height: 1.8; color: var(--text); }
.vm-green { border-top: 5px solid var(--green); }
.vm-navy  { border-top: 5px solid var(--navy); }

.value-card { background: #f6f9f6; border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 30px; }
.value-card .ico { font-size: 30px; margin-bottom: 14px; }
.value-card h4 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; line-height: 1.65; color: var(--text); }

.gov-section { background: linear-gradient(180deg, #f6f9f6 0%, #fff 100%); border-block: 1px solid #eef2ee; }
.gov-intro { max-width: 760px; margin: 18px auto 0; font-size: 17px; line-height: 1.85; color: var(--text); }
.gov-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.gov-card {
  background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px 26px 30px;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .45s ease;
}
.gov-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -22px rgba(22,54,92,.28); border-color: var(--green); }
.gov-card .ico { width: 50px; height: 50px; border-radius: var(--radius-md); background: #eef5ee; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.gov-card h4 { font-size: 19px; font-weight: 800; margin-bottom: 10px; color: var(--navy); line-height: 1.35; }
.gov-card p { font-size: 15px; line-height: 1.75; color: var(--text); }
.gov-doc-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 14px; font-weight: 700; color: var(--green); text-decoration: none;
  border-bottom: 1.5px solid transparent; transition: color .2s ease, border-color .2s ease;
}
.gov-doc-btn:hover { color: var(--navy); border-color: var(--green); }

.founder { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-2xl); overflow: hidden; }
.founder .photo { min-height: 420px; height: 100%; display: flex; align-items: flex-end; padding: 24px; background: repeating-linear-gradient(135deg, #e4ece6, #e4ece6 12px, #dbe6dd 12px, #dbe6dd 24px); }
.founder .photo span { font-family: 'Space Grotesk', monospace; font-size: 12px; color: #5d7081; background: rgba(255,255,255,.85); padding: 6px 12px; border-radius: var(--radius-xs); }
.founder .quote-body { padding: 50px 50px 50px 0; }
body[dir="rtl"] .founder .quote-body { padding: 50px 0 50px 50px; }
.founder .qmark { font-size: 54px; line-height: .6; color: var(--green); }
.founder blockquote { font-size: 19px; line-height: 1.85; color: #2f3f4d; font-weight: 500; margin: 0 0 26px; }
.founder .name { font-size: 18px; font-weight: 800; }
.founder .role { font-size: 14px; color: var(--green); font-weight: 600; }

/* ---------- Programs ---------- */
.obj-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 22px 24px; }
.obj-item .n { flex-shrink: 0; width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Space Grotesk', sans-serif; }
.obj-item .txt { font-size: 15.5px; line-height: 1.6; color: #33424f; font-weight: 500; padding-top: 6px; }

.plan-item { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; background: linear-gradient(120deg, #fff, #f6f9f6); border: 1px solid var(--card-border); border-inline-start: 5px solid var(--green); border-radius: var(--radius-lg); padding: 30px 34px; }
.plan-item .n { font-size: 50px; font-weight: 900; color: #dbe6dd; font-family: 'Space Grotesk', sans-serif; }
.plan-item h3 { margin-bottom: 8px; }
.plan-item p { font-size: 15px; line-height: 1.7; color: var(--text); }

/* ---------- Partners ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pill { background: #fff; border: 1px solid #d8e3da; color: var(--navy); font-weight: 600; font-size: 15px; padding: 13px 24px; border-radius: var(--radius-btn); transition: all .3s ease; }
.pill:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.why-card { background: #f6f9f6; border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 32px; transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .45s ease; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px -20px rgba(22,54,92,.32); border-color: var(--green); }
.why-card .ico { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.why-card h4 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.why-card p { font-size: 15px; line-height: 1.7; color: var(--text); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.contact-row { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 24px 26px; }
.contact-row .ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--radius-sm); background: #eef5ee; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.contact-row .label { font-size: 13px; color: #7c8b97; font-weight: 600; letter-spacing: .5px; margin-bottom: 4px; }
.contact-row .value { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.5; }
.contact-form { background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-xl); padding: 40px; }
.contact-form h3 { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.contact-form .sub { font-size: 14.5px; color: var(--text); margin-bottom: 26px; line-height: 1.6; }
.contact-form .fields { display: grid; gap: 16px; }
.contact-form input, .contact-form textarea { font-size: 15px; padding: 14px 16px; border: 1.5px solid #dde6df; border-radius: var(--radius-sm); outline: none; background: #fafcfa; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); }
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { border-radius: var(--radius-sm); padding: 15px; }

/* ---------- News ---------- */
.news-card { cursor: pointer; padding: 0; overflow: hidden; }
.event-card { cursor: default; }
.news-card .news-cover { width: 100%; height: 200px; object-fit: cover; display: block; }
.news-card .news-cover-empty {
  width: 100%; height: 200px; display: flex; align-items: center; justify-content: center;
  background: #f0f4f1; font-size: 14px; font-weight: 600; color: #7c8b97;
}
.news-card .news-body { padding: 24px 26px; }
.news-card .news-date { font-size: 13px; color: var(--green); font-weight: 700; margin-bottom: 8px; }
.news-card h3 { font-size: 19px; line-height: 1.4; }
.news-card .news-excerpt { font-size: 14.5px; line-height: 1.65; color: var(--text); margin-top: 10px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-empty { text-align: center; padding: 60px 30px; color: var(--text); font-size: 17px; }

/* News detail — full-width hero image */
.news-hero {
  width: 100%;
  height: clamp(280px, 52vh, 560px);
  overflow: hidden;
  background: var(--navy-deep);
}
.news-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-article {
  background: #fff;
  border-bottom: 1px solid #eef2ee;
  padding: 0 0 84px;
}
.news-article .wrap { max-width: 820px; }
.news-article-header { padding: 44px 0 0; }
.news-detail-wrap { max-width: 820px; margin: 0 auto; }
.news-detail-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--ink);
}
.news-detail-meta { font-size: 14px; color: var(--green); font-weight: 700; margin-bottom: 14px; letter-spacing: .3px; }
.news-detail-body {
  font-size: 18px;
  line-height: 1.95;
  color: #3c4d5c;
  white-space: pre-wrap;
  margin-bottom: 40px;
}
.news-extra-gallery { display: grid; gap: 24px; margin-top: 12px; }
.news-extra-figure { margin: 0; }
.news-extra-figure img {
  width: 100%;
  height: clamp(220px, 38vh, 440px);
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
}
.news-back-btn {
  background: none; border: 1.5px solid var(--card-border); color: var(--navy);
  font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: var(--radius-btn);
  cursor: pointer; margin-bottom: 24px; transition: border-color .3s, color .3s;
}
.news-back-btn:hover { border-color: var(--green); color: var(--green); }

/* ---------- Annual Report ---------- */
.report-card { cursor: pointer; }
.report-article .report-sections { margin-top: 36px; }
.report-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--card-border);
}
.report-section:last-child { border-bottom: none; }
.report-section-title {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}
.report-section-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  white-space: pre-wrap;
}
.report-pdf-wrap { margin: 20px 0 8px; }
.report-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.why-card p { font-size: 15px; line-height: 1.7; color: var(--text); }

.partner-grid { gap: 28px; }
.partner-card { background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; text-align: center; transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .45s ease; }
.partner-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px -20px rgba(22,54,92,.28); border-color: var(--green); }
.partner-logo { height: 150px; padding: 28px; background: linear-gradient(180deg, #f6f9f6 0%, #fff 100%); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #eef2ee; }
.partner-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.partner-placeholder { width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.partner-body { padding: 26px 28px 32px; }
.partner-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--navy); }
.partner-card p { font-size: 15px; line-height: 1.75; color: var(--text); }

/* ---------- Organizational Chart ---------- */
.org-section { padding: 70px 30px 90px; }
.org-intro { max-width: 820px; margin: 0 auto 48px; }
.org-chart-wrap { padding: 10px 0 20px; }
.org-chart-tiered {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.org-level {
  width: 100%;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  padding: 28px 24px 32px;
  box-shadow: 0 10px 36px rgba(22, 54, 92, .05);
}
.org-level-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef2ee;
}
.org-level-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.org-level-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.org-level-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: #eef5ee;
  padding: 5px 12px;
  border-radius: 999px;
}
.org-level-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.org-level-bridge {
  width: 2px;
  height: 36px;
  background: linear-gradient(var(--green-light), var(--green));
  position: relative;
  margin: 4px 0;
}
.org-level-bridge span {
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(79, 157, 68, .15);
}
.org-card {
  position: relative;
  width: min(240px, 100%);
  flex: 0 1 240px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(22, 54, 92, .07);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}
.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(22, 54, 92, .12);
}
.org-card-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--green));
}
.org-avatar {
  width: 88px;
  height: 88px;
  margin: 22px auto 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8f0ea;
  background: linear-gradient(145deg, #eef5ee, #e4ece6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-avatar img { width: 100%; height: 100%; object-fit: cover; }
.org-avatar-fallback { font-size: 34px; opacity: .55; }
.org-card-body { padding: 18px 22px 24px; text-align: center; }
.org-dept {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--green);
  background: #eef5ee;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.org-name { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.35; margin-bottom: 6px; }
.org-role { font-size: 13.5px; line-height: 1.65; color: var(--text); }

/* ---------- Employees ---------- */
.employees-section { padding: 70px 30px 90px; }
.employees-intro { max-width: 820px; margin: 0 auto 48px; }
.employee-grid { gap: 28px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.employee-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  text-align: center;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .4s ease;
}
.employee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(22, 54, 92, .11);
  border-color: var(--green);
}
.employee-photo {
  position: relative;
  height: 220px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-soft) 55%, var(--green) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.employee-photo img,
.employee-photo .employee-avatar-fallback {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
  transform: translateY(50%);
  object-fit: cover;
  background: #eef5ee;
}
.employee-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  opacity: .7;
}
.employee-body { padding: 78px 24px 28px; }
.employee-dept {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--green);
  background: #eef5ee;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.employee-name { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.employee-role { font-size: 14px; line-height: 1.65; color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #cdd9e6; }
.footer-inner { padding: 60px 30px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.footer-brand img { height: 60px; width: auto; background: #fff; border-radius: 50%; padding: 5px; }
.footer-brand .name { font-weight: 800; font-size: 16px; color: #fff; line-height: 1.3; }
.site-footer .blurb { font-size: 14px; line-height: 1.8; color: #9fb3c6; max-width: 340px; }
.footer-col h4 { font-weight: 800; color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-links { display: grid; gap: 11px; }
.footer-links button { background: none; border: none; cursor: pointer; font-size: 14.5px; color: #9fb3c6; transition: color .3s ease; text-align: start; }
.footer-links button:hover { color: var(--green-light); }
.footer-contact { display: grid; gap: 11px; font-size: 14.5px; color: #9fb3c6; line-height: 1.6; }
.footer-bottom { border-top: 1px solid #1d3a57; margin-top: 20px; }
.footer-bottom-inner { padding: 22px 30px; font-size: 13px; color: #7c93a8; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: var(--radius-xs); }
::-webkit-scrollbar-track { background: #dfe7e0; }

/* ---------- Site loader ---------- */
@keyframes loader-spin { to { transform: rotate(360deg); } }
@keyframes loader-shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
@keyframes loader-pulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  background: var(--bg);
  overflow: hidden;
}
.site-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 28px);
  width: min(100%, 320px);
  text-align: center;
}
.site-loader-visual {
  position: relative;
  width: clamp(80px, 22vw, 118px);
  height: clamp(80px, 22vw, 118px);
  flex-shrink: 0;
}
.site-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--green), var(--green-light), transparent 55%, transparent);
  animation: loader-spin 1.1s linear infinite;
  will-change: transform;
}
.site-loader-ring::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg);
}
.site-loader-logo {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -12px rgba(22, 54, 92, .28);
}
.site-loader-logo img {
  width: 52%;
  max-width: 62px;
  height: auto;
}
.site-loader-bar {
  width: min(220px, 78vw);
  height: 4px;
  border-radius: 999px;
  background: #dce8dd;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.site-loader-bar span {
  position: absolute;
  inset: 0;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy-soft), var(--green));
  animation: loader-shimmer 1.35s ease-in-out infinite;
  will-change: transform;
}
.site-loader-text {
  font-size: clamp(12px, 3.4vw, 14px);
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  line-height: 1.5;
  padding: 0 8px;
  animation: loader-pulse 1.6s ease-in-out infinite;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner, .grid-3, .grid-2, .contact-grid, .founder, .footer-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 16px; }
  .nav .navlink { font-size: 14px; }
  .founder .quote-body, body[dir="rtl"] .founder .quote-body { padding: 36px; }
  .hero-visual { order: -1; }
  .news-hero { height: clamp(220px, 40vh, 360px); }
  .news-article-header { padding-top: 32px; }
  .org-level { padding: 22px 16px 26px; }
  .org-level-row { gap: 16px; }
  .org-card { flex: 1 1 100%; max-width: 320px; }
}
@media (max-width: 560px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .reg-card { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
  .site-loader-logo { animation: none; }
  .site-loader-inner { gap: 18px; }
}
