/* ============================================================
   ASIF AHNAF — Personal Website Stylesheet
   Brand: Deep Navy + Midnight Blue + Emerald + Gold
   Font: Plus Jakarta Sans (Google Fonts)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0A1628;
  --midnight:   #0D2149;
  --navy-mid:   #122358;
  --emerald:    #0F7B5F;
  --emerald-lt: #13A37E;
  --gold:       #C9A84C;
  --gold-lt:    #E5C97E;
  --white:      #FFFFFF;
  --gray-100:   #F5F6FA;
  --gray-200:   #E8EAF2;
  --gray-400:   #9AA0B4;
  --gray-600:   #5C6480;
  --text:       #0A1628;
  --font:       'Plus Jakarta Sans', sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 32px rgba(10,22,40,.10);
  --shadow-md:  0 8px 48px rgba(10,22,40,.15);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
.display-xl { font-size: clamp(2.6rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.07; letter-spacing: -.03em; }
.display-lg { font-size: clamp(2rem,  4vw, 3.6rem);  font-weight: 800; line-height: 1.10; letter-spacing: -.025em; }
.display-md { font-size: clamp(1.5rem, 3vw, 2.4rem);  font-weight: 700; line-height: 1.20; letter-spacing: -.02em; }
.heading-sm  { font-size: clamp(1.1rem, 2vw, 1.4rem);  font-weight: 700; line-height: 1.30; }
.body-lg    { font-size: 1.125rem; line-height: 1.75; }
.body-md    { font-size: 1rem;     line-height: 1.70; }
.body-sm    { font-size: .875rem;  line-height: 1.65; }
.label      { font-size: .75rem;   font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- LAYOUT ---------- */
.container   { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.container-lg{ max-width: 1380px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.section     { padding-block: clamp(4rem, 9vw, 9rem); }
.section-sm  { padding-block: clamp(2.5rem, 5vw, 5rem); }

.grid-2   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.flex-row { display: flex; align-items: center; gap: 1.25rem; }
.flex-col { display: flex; flex-direction: column; gap: 1rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.75rem; border-radius: 50px; font-family: var(--font);
  font-size: .9375rem; font-weight: 700; cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary   { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.35); }
.btn-outline   { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark      { background: var(--navy); color: var(--white); }
.btn-dark:hover{ background: var(--midnight); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-emerald   { background: var(--emerald); color: var(--white); }
.btn-emerald:hover { background: var(--emerald-lt); transform: translateY(-2px); }

/* ---------- SECTION LABELS ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: .65rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo  { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { color: var(--white); font-weight: 800; font-size: 1.05rem; line-height: 1.2; }
.nav-logo-text span { display: block; font-size: .65rem; font-weight: 500; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a { color: rgba(255,255,255,.75); font-size: .875rem; font-weight: 600; transition: color .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: .5rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ---------- HERO ---------- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--midnight) 50%, #091B3D 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: 5rem;
}
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(15,123,95,.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,168,76,.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(19,163,126,.12) 0%, transparent 55%);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-lt); padding: .45rem 1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.75rem; backdrop-filter: blur(8px);
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-name { color: var(--white); margin-bottom: .5rem; }
.hero-name em { font-style: normal; color: var(--gold); }
.hero-roles {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.75rem;
}
.hero-role-tag {
  padding: .35rem .85rem; border-radius: 50px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 600;
  transition: var(--transition);
}
.hero-role-tag:hover { background: rgba(201,168,76,.15); border-color: var(--gold); color: var(--gold-lt); }
.hero-tagline { color: rgba(255,255,255,.72); margin-bottom: 2.5rem; max-width: 520px; }
.hero-cta     { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats   { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat-lbl { font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-portrait-wrap {
  position: relative; width: 380px; height: 480px;
}
.hero-portrait-ring {
  position: absolute; inset: -20px;
  border: 2px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-portrait-ring2 {
  position: absolute; inset: -40px;
  border: 1px solid rgba(201,168,76,.1);
  border-radius: calc(var(--radius-lg) + 10px);
  animation: ringPulse 4s ease-in-out infinite .8s;
}
.hero-portrait {
  width: 100%; height: 100%; border-radius: var(--radius-lg); object-fit: cover;
  position: relative; z-index: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.2);
}
.hero-portrait-placeholder {
  width: 100%; height: 100%; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1a2e5a 0%, #0f1f40 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .85rem; font-weight: 600; gap: .75rem;
  position: relative; z-index: 1; border: 1px solid rgba(201,168,76,.15);
}
.hero-portrait-placeholder svg { opacity: .3; }
.hero-float-card {
  position: absolute; background: rgba(255,255,255,.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: .85rem 1.1rem; color: var(--white); z-index: 2;
  animation: floatCard 5s ease-in-out infinite;
}
.hero-float-card .fc-num { font-size: 1.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-float-card .fc-lbl { font-size: .7rem; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.hero-float-card.fc-1 { bottom: 40px; left: -40px; animation-delay: 0s; }
.hero-float-card.fc-2 { top: 60px; right: -40px; animation-delay: 1.5s; }
.hero-float-card.fc-3 { bottom: 120px; right: -30px; animation-delay: 3s; }

/* ---------- ABOUT ---------- */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.about-image-wrap { position: sticky; top: 7rem; }
.about-img {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: .85rem; font-weight: 600; gap: .75rem; border: 2px dashed var(--gray-200);
}
.about-credentials { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.cred-badge {
  display: flex; align-items: center; gap: .85rem;
  padding: .75rem 1rem; background: var(--gray-100); border-radius: var(--radius);
  transition: var(--transition);
}
.cred-badge:hover { background: var(--navy); color: var(--white); }
.cred-badge:hover .cred-icon { background: rgba(201,168,76,.2); color: var(--gold); }
.cred-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.cred-text { font-size: .82rem; font-weight: 600; line-height: 1.35; }

.about-story p { color: var(--gray-600); margin-bottom: 1.25rem; }
.about-story p strong { color: var(--navy); font-weight: 700; }
.about-story blockquote {
  border-left: 3px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0;
  font-style: italic; font-size: 1.15rem; color: var(--navy); font-weight: 500; line-height: 1.6;
}
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.value-card {
  padding: 1.25rem; background: var(--gray-100); border-radius: var(--radius);
  border-left: 3px solid var(--emerald); transition: var(--transition);
}
.value-card:hover { background: var(--navy); color: var(--white); }
.value-card:hover p { color: rgba(255,255,255,.65); }
.value-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
.value-card p { font-size: .8rem; color: var(--gray-600); line-height: 1.5; }

/* ---------- IMPACT DASHBOARD ---------- */
#impact { background: var(--navy); color: var(--white); overflow: hidden; position: relative; }
.impact-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(15,123,95,.18) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201,168,76,.08) 0%, transparent 55%);
}
.impact-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.impact-header h2 { color: var(--white); }
.impact-header p  { color: rgba(255,255,255,.6); max-width: 560px; margin-inline: auto; margin-top: .75rem; }
.impact-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(255,255,255,.06); border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 4rem; position: relative; z-index: 1;
}
.impact-stat {
  padding: 2.5rem 2rem; background: rgba(10,22,40,.7); text-align: center;
  transition: var(--transition); cursor: default;
}
.impact-stat:hover { background: rgba(15,123,95,.2); }
.impact-stat-icon { font-size: 2rem; margin-bottom: .75rem; }
.impact-num { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--gold); line-height: 1; }
.impact-num-label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: .5rem; }

.impact-bars-section { position: relative; z-index: 1; }
.impact-bars-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.75rem; }
.impact-bar-row    { margin-bottom: 1.25rem; }
.impact-bar-meta   { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.impact-bar-name   { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.8); }
.impact-bar-val    { font-size: .85rem; font-weight: 700; color: var(--gold); }
.impact-bar-track  { height: 6px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; }
.impact-bar-fill   { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--emerald), var(--gold)); width: 0; transition: width 1.4s cubic-bezier(.4,0,.2,1); }

/* ---------- VENTURES ---------- */
#ventures { background: var(--gray-100); }
.ventures-header { text-align: center; margin-bottom: 3.5rem; }
.ventures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.venture-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
}
.venture-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,.3); }
.venture-card-top {
  padding: 1.75rem 1.75rem 1.25rem; display: flex; align-items: flex-start; gap: 1rem;
}
.venture-logo {
  width: 56px; height: 56px; border-radius: var(--radius); object-fit: contain;
  background: var(--gray-100); padding: 6px; flex-shrink: 0;
}
.venture-logo-placeholder {
  width: 56px; height: 56px; border-radius: var(--radius); background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold); font-size: 1.1rem; font-weight: 800;
}
.venture-meta { flex: 1; }
.venture-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .2rem; }
.venture-sector {
  display: inline-block; padding: .2rem .6rem; background: rgba(15,123,95,.1);
  color: var(--emerald); font-size: .7rem; font-weight: 700; border-radius: 4px; text-transform: uppercase; letter-spacing: .08em;
}
.venture-card-body { padding: 0 1.75rem 1.5rem; flex: 1; }
.venture-card-body p { font-size: .87rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1rem; }
.venture-role-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(10,22,40,.06); color: var(--navy); font-size: .72rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 50px; margin-bottom: .85rem;
}
.venture-card-footer {
  padding: 1rem 1.75rem; border-top: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
}
.venture-link { font-size: .8rem; font-weight: 700; color: var(--emerald); display: flex; align-items: center; gap: .3rem; transition: color .25s; }
.venture-link:hover { color: var(--navy); }
.venture-tag { font-size: .72rem; color: var(--gray-400); font-weight: 600; }

/* ---------- LEADERSHIP ---------- */
#leadership { background: var(--white); }
.leadership-timeline { position: relative; }
.leadership-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--emerald));
  transform: translateX(-50%);
}
.lt-item {
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; margin-bottom: 3rem; align-items: center;
}
.lt-card {
  background: var(--gray-100); border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition); border: 1px solid var(--gray-200);
}
.lt-card:hover { background: var(--navy); color: var(--white); box-shadow: var(--shadow-md); }
.lt-card:hover p { color: rgba(255,255,255,.65); }
.lt-card:hover .lt-period { color: var(--gold); }
.lt-center { display: flex; align-items: center; justify-content: center; }
.lt-dot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--gold);
  border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--gold); z-index: 1;
}
.lt-logo { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.lt-org-name { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.lt-role { font-size: .82rem; font-weight: 600; color: var(--emerald); margin-bottom: .5rem; }
.lt-period { font-size: .75rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; }
.lt-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; margin-top: .6rem; }
.lt-item:nth-child(even) .lt-card { grid-column: 3; }
.lt-item:nth-child(odd) .lt-card:first-child  { grid-column: 1; text-align: right; }
.lt-item:nth-child(even) .lt-center { grid-column: 2; }

/* ---------- SDG SECTION ---------- */
#sdg { background: var(--midnight); color: var(--white); position: relative; overflow: hidden; }
.sdg-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 20% 30%, rgba(15,123,95,.22) 0%, transparent 60%);
}
.sdg-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.sdg-header h2 { color: var(--white); }
.sdg-header p  { color: rgba(255,255,255,.6); max-width: 600px; margin-inline: auto; margin-top: .75rem; }
.sdg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.sdg-card {
  border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04); transition: var(--transition); cursor: default;
}
.sdg-card:hover { background: rgba(255,255,255,.09); border-color: rgba(201,168,76,.35); transform: translateY(-4px); }
.sdg-num { font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: .5rem; }
.sdg-title { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.sdg-card p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 1rem; }
.sdg-project-list { display: flex; flex-direction: column; gap: .4rem; }
.sdg-project { font-size: .75rem; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: .45rem; }
.sdg-project::before { content: '→'; color: var(--gold); font-size: .85rem; }

/* ---------- GLOBAL PRESENCE ---------- */
#global { background: var(--white); }
.global-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.global-map-placeholder {
  background: var(--navy); border-radius: var(--radius-lg); padding: 3rem;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.world-svg { width: 100%; opacity: .5; filter: invert(1); }
.global-pin { position: absolute; }
.global-pin-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.25); animation: pulse 2s infinite;
}
.global-pin-label {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-lt); font-size: .65rem; font-weight: 700; padding: .2rem .5rem; border-radius: 4px;
  white-space: nowrap;
}
.global-engagements { display: flex; flex-direction: column; gap: 1.25rem; }
.engagement-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem; background: var(--gray-100); border-radius: var(--radius); transition: var(--transition);
}
.engagement-item:hover { background: var(--navy); color: var(--white); }
.engagement-item:hover .engagement-meta p { color: rgba(255,255,255,.55); }
.engagement-icon {
  width: 44px; height: 44px; border-radius: var(--radius); background: var(--navy);
  color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.engagement-meta h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.engagement-meta p  { font-size: .82rem; color: var(--gray-600); line-height: 1.55; }
.engagement-year { font-size: .72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- AWARDS ---------- */
#awards { background: var(--gray-100); }
.awards-header { text-align: center; margin-bottom: 3.5rem; }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.award-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: var(--transition); text-align: center;
}
.award-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.award-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt)); margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--navy);
}
.award-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.award-org  { font-size: .8rem; color: var(--emerald); font-weight: 600; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .07em; }
.award-year { font-size: .75rem; color: var(--gray-400); font-weight: 600; }
.award-desc { font-size: .82rem; color: var(--gray-600); line-height: 1.6; margin-top: .75rem; }

/* ---------- MILESTONES TIMELINE ---------- */
#milestones { background: var(--white); }
.milestones-header { text-align: center; margin-bottom: 3.5rem; }
.milestones-scroll { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 3rem; }
.milestones-scroll::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--emerald), var(--navy));
}
.milestone-item { position: relative; padding-bottom: 2.5rem; padding-left: 2rem; }
.milestone-item::before {
  content: attr(data-year); position: absolute; left: -5.5rem; top: .1rem;
  font-size: .78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .06em;
  width: 4.5rem; text-align: right;
}
.milestone-dot {
  position: absolute; left: -7px; top: .35rem;
  width: 14px; height: 14px; border-radius: 50%; background: var(--gold);
  border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold);
}
.milestone-content { background: var(--gray-100); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.milestone-content h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.milestone-content p  { font-size: .82rem; color: var(--gray-600); line-height: 1.65; }
.milestone-tag { display: inline-block; background: var(--emerald); color: var(--white); font-size: .68rem; font-weight: 700; padding: .2rem .55rem; border-radius: 4px; text-transform: uppercase; letter-spacing: .07em; margin-top: .6rem; }

/* ---------- AI SECTION ---------- */
#ai-leadership { background: linear-gradient(135deg, var(--navy) 0%, #091833 100%); color: var(--white); position: relative; overflow: hidden; }
.ai-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(15,123,95,.2) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 10% 70%, rgba(201,168,76,.1) 0%, transparent 55%);
}
.ai-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.ai-content h2 { color: var(--white); }
.ai-content .eyebrow { margin-bottom: 1rem; }
.ai-content p { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.ai-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.ai-pillar {
  padding: 1.25rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); transition: var(--transition);
}
.ai-pillar:hover { background: rgba(15,123,95,.2); border-color: var(--emerald); }
.ai-pillar-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.ai-pillar h4 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.ai-pillar p  { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.55; }
.ai-visual {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.ai-quote { font-size: 1.15rem; font-style: italic; color: rgba(255,255,255,.8); line-height: 1.7; border-left: 3px solid var(--gold); padding-left: 1.5rem; margin-bottom: 2rem; }
.ai-stat-row { display: flex; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.ai-mini-stat { text-align: center; }
.ai-mini-num { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.ai-mini-lbl { font-size: .7rem; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }

/* ---------- TESTIMONIALS ---------- */
#testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--gray-100); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--gray-200); transition: var(--transition); display: flex; flex-direction: column;
}
.testimonial-card:hover { background: var(--navy); box-shadow: var(--shadow-md); }
.testimonial-card:hover .tc-name { color: var(--white); }
.testimonial-card:hover .tc-role { color: rgba(255,255,255,.55); }
.testimonial-card:hover blockquote { color: rgba(255,255,255,.8); }
.tc-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
blockquote.tc-quote { font-size: .92rem; color: var(--gray-600); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 1.25rem; }
.tc-footer { display: flex; align-items: center; gap: .85rem; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 800; font-size: .85rem; flex-shrink: 0;
}
.tc-name { font-size: .9rem; font-weight: 700; color: var(--navy); }
.tc-role { font-size: .75rem; color: var(--gray-400); font-weight: 600; }

/* ---------- MEDIA & PUBLICATIONS ---------- */
#media { background: var(--gray-100); }
.media-header { text-align: center; margin-bottom: 3.5rem; }
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.media-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: var(--transition);
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.media-thumb {
  aspect-ratio: 16/9; background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold); position: relative; overflow: hidden;
}
.media-type-badge {
  position: absolute; top: .85rem; left: .85rem;
  background: var(--gold); color: var(--navy); font-size: .65rem; font-weight: 800;
  padding: .25rem .55rem; border-radius: 4px; text-transform: uppercase; letter-spacing: .07em;
}
.media-body { padding: 1.25rem; }
.media-body h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; line-height: 1.4; }
.media-body p  { font-size: .8rem; color: var(--gray-600); line-height: 1.6; margin-bottom: .85rem; }
.media-meta { display: flex; align-items: center; justify-content: space-between; }
.media-source { font-size: .72rem; font-weight: 700; color: var(--emerald); text-transform: uppercase; letter-spacing: .06em; }
.media-date   { font-size: .72rem; color: var(--gray-400); font-weight: 600; }

/* ---------- CONTACT ---------- */
#contact { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(15,123,95,.2) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201,168,76,.1) 0%, transparent 55%);
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; position: relative; z-index: 1; }
.contact-left h2 { color: var(--white); margin-bottom: 1rem; }
.contact-left p  { color: rgba(255,255,255,.65); margin-bottom: 2.5rem; max-width: 440px; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.channel {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); transition: var(--transition);
}
.channel:hover { background: rgba(201,168,76,.12); border-color: rgba(201,168,76,.35); }
.channel-icon { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(201,168,76,.15); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.channel-text h5 { font-size: .9rem; font-weight: 700; color: var(--white); }
.channel-text p  { font-size: .8rem; color: rgba(255,255,255,.5); }

.contact-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 2.5rem; backdrop-filter: blur(10px); }
.contact-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
.form-group label { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: .85rem 1rem; color: var(--white);
  font-family: var(--font); font-size: .9rem; transition: var(--transition); width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy); color: var(--white); }

/* ---------- FOOTER ---------- */
footer {
  background: #050E1E; color: rgba(255,255,255,.5); padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-top: .75rem; max-width: 300px; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,.5); font-size: .85rem;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h5 { font-size: .8rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: .82rem; color: rgba(255,255,255,.45); padding: .3rem 0; transition: color .25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: .78rem; }
.footer-bottom span { color: var(--gold); font-weight: 700; }

/* ---------- SCROLL TO TOP ---------- */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--navy);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; pointer-events: none; transform: translateY(12px);
}
#scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-3px); background: var(--gold-lt); }

/* ---------- ANIMATIONS ---------- */
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
@keyframes ringPulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: .2; transform: scale(1.03); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,22,40,.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.25rem; font-weight: 700; transition: color .25s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual      { display: none; }
  .about-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { position: static; }
  .impact-stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .ventures-grid    { grid-template-columns: repeat(2, 1fr); }
  .ai-inner         { grid-template-columns: 1fr; }
  .contact-inner    { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .leadership-timeline::before { left: 20px; }
  .lt-item          { grid-template-columns: 1fr; padding-left: 3.5rem; }
  .lt-center        { position: absolute; left: 12px; top: 1.5rem; }
  .lt-item:nth-child(odd) .lt-card:first-child { text-align: left; }
  .lt-item:nth-child(even) .lt-card { grid-column: 1; }
  .global-inner     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .ventures-grid { grid-template-columns: 1fr; }
  .sdg-grid      { grid-template-columns: 1fr; }
  .awards-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .media-grid    { grid-template-columns: 1fr; }
  .ai-pillars    { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats    { flex-wrap: wrap; gap: 1.5rem; }
  .values-grid   { grid-template-columns: 1fr; }
  .milestones-scroll { padding-left: 2rem; }
  .milestone-item::before { display: none; }
}

@media (max-width: 480px) {
  .hero-cta      { flex-direction: column; }
  .btn           { width: 100%; justify-content: center; }
  .impact-stats-grid { grid-template-columns: 1fr; }
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
