/* =============================================
   MATRIVANSH HEALTH FOUNDATION
   Premium Design System v2.0
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* =============================================
   COLOR SYSTEM
   ============================================= */
:root {
  --orange:      #F36E21;
  --orange-light:#FF8C4A;
  --orange-pale: rgba(243,110,33,0.08);
  --green:       #297C3A;
  --green-light: #3CA455;
  --green-pale:  rgba(41,124,58,0.08);
  --navy:        #1E1C3A;
  --navy-mid:    #2E2B55;
  --purple-soft: #f8f7ff;
  --white:       #ffffff;
  --off-white:   #FAFAF8;
  --text-dark:   #181726;
  --text-mid:    #4A4765;
  --text-light:  #7A7898;
  --border:      rgba(0,0,0,0.07);
  --shadow-sm:   0 2px 12px rgba(30,28,58,0.06);
  --shadow-md:   0 8px 32px rgba(30,28,58,0.10);
  --shadow-lg:   0 20px 60px rgba(30,28,58,0.14);
  --shadow-orange: 0 12px 40px rgba(243,110,33,0.22);
  --shadow-green:  0 12px 40px rgba(41,124,58,0.18);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --ease-smooth: cubic-bezier(0.4,0,0.2,1);
  --ease-bounce: cubic-bezier(0.175,0.885,0.32,1.275);
  --heading-font:'Playfair Display', serif;
  --body-font:   'Inter', sans-serif;
  --accent-font: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  color: var(--text-mid);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--heading-font);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

a { text-decoration:none; color:inherit; transition: all 0.3s var(--ease-smooth); }
ul { list-style:none; }
img { max-width:100%; display:block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-18px); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243,110,33,0.5); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 15px rgba(243,110,33,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243,110,33,0); }
}
@keyframes countUp {
  from { opacity:0; transform:scale(0.8); }
  to   { opacity:1; transform:scale(1); }
}
@keyframes slideInLeft {
  from { opacity:0; transform:translateX(-50px); }
  to   { opacity:1; transform:translateX(0); }
}

/* =============================================
   ANIMATIONS UTILITY
   ============================================= */
.animate-fade-up   { animation: fadeUp 0.7s var(--ease-smooth) both; }
.animate-delay-1   { animation-delay: 0.1s; }
.animate-delay-2   { animation-delay: 0.2s; }
.animate-delay-3   { animation-delay: 0.35s; }
.animate-delay-4   { animation-delay: 0.5s; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-pale);
  color: var(--orange);
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.section-label.green { background: var(--green-pale); color: var(--green); }
.section-label.green::before { background: var(--green); }

.section-title { margin-bottom: 56px; }
.section-title h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
}
.section-title.center { text-align: center; }
.section-title.center p { margin: 0 auto; }

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--accent-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-bounce);
  text-decoration:none;
  position:relative;
  overflow:hidden;
}
.btn::after {
  content:'';
  position:absolute;
  inset:0;
  background:white;
  opacity:0;
  transition:opacity 0.2s;
}
.btn:hover::after { opacity:0.1; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform:translateY(-3px) scale(1.02); box-shadow: 0 18px 50px rgba(243,110,33,0.32); }

.btn-secondary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-secondary:hover { transform:translateY(-3px) scale(1.02); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); transform:translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform:translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform:translateY(-2px); }

.btn i { font-size: 18px; }

/* =============================================
   TOP HEADER
   ============================================= */
.top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, #252250 60%, #1a1e3c 100%);
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(243,110,33,0.2);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left, .top-bar-right {
  display: flex;
  gap: 22px;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--orange); }
.top-bar i { color: var(--orange); margin-right: 6px; }
.top-bar-right a {
  font-size: 16px;
  width: 30px; height: 30px;
  display: inline-flex; align-items:center; justify-content:center;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.top-bar-right a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-area {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s var(--ease-smooth);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, var(--orange) 30%, var(--green) 70%, transparent 100%) 1;
  box-shadow: 0 4px 30px rgba(30,28,58,0.08);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.navbar-brand { display:flex; align-items:center; }
.navbar-brand img { height: 90px; }


.main-nav ul {


  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav ul li { position: relative; }
.main-nav ul li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--accent-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  border-radius: 10px;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-smooth);
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after { transform: scaleX(1); }
.main-nav ul li a:hover, .main-nav ul li a.active {
  color: var(--orange);
  background: var(--orange-pale);
}

/* =============================================
   HERO SECTION — Two Column Layout
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(243,110,33,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at -10% 80%, rgba(41,124,58,0.20) 0%, transparent 60%),
    linear-gradient(135deg, #1E1C3A 0%, #14122e 50%, #1a1e3c 100%);
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  bottom: -80px; left: 10%;
  animation-delay: -3s;
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero uses a 2-column grid: text left, visual right */
.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 140px 0 100px;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(243,110,33,0.15);
  border: 1px solid rgba(243,110,33,0.35);
  color: #FFA56A;
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.6s var(--ease-smooth) both;
}
.hero-subtitle .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 26px;
  animation: fadeUp 0.7s var(--ease-smooth) 0.1s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeUp 0.7s var(--ease-smooth) 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-smooth) 0.3s both;
  margin-bottom: 60px;
}

/* Floating stats pills on hero */
.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-smooth) 0.4s both;
}
.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(20px);
  padding: 14px 24px;
  border-radius: 50px;
}
.hero-stat-pill .val {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-pill .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--accent-font);
  line-height: 1.3;
  white-space: nowrap;
}
.hero-stat-pill .icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  color: white;
  font-size: 18px;
  flex-shrink:0;
}

/* =============================================
   HERO VISUAL — Right side decorative panel
   ============================================= */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 460px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-visual-card::before {
  content:'';
  position:absolute;
  inset:-1px;
  border-radius:24px;
  background: linear-gradient(135deg, rgba(243,110,33,0.4), rgba(41,124,58,0.2), transparent 60%);
  z-index:-1;
}

.hvc-title {
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hvc-program-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.hvc-program-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 18px;
  border-radius: 12px;
  transition: all 0.3s;
}
.hvc-program-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateX(5px);
}

.hvc-prog-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items:center; justify-content:center;
  font-size: 20px;
  flex-shrink: 0;
}
.hvc-prog-icon.o { background: rgba(243,110,33,0.18); color: #FFA56A; }
.hvc-prog-icon.g { background: rgba(41,124,58,0.18); color: #6BD888; }
.hvc-prog-icon.p { background: rgba(108,99,255,0.18); color: #AEA8FF; }
.hvc-prog-icon.t { background: rgba(0,175,185,0.18); color: #5FE0E8; }

.hvc-prog-info .hvc-prog-name {
  font-family: var(--accent-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.hvc-prog-info .hvc-prog-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
}

.hvc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hvc-trust {
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-family: var(--accent-font);
}
.hvc-trust i { color: var(--orange); font-size: 16px; }
.hvc-badge {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* Floating notification bubbles */
.hvc-notif {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hvc-notif-1 {
  top: -22px;
  right: -20px;
  animation-delay: -2s;
}
.hvc-notif-2 {
  bottom: -22px;
  left: -20px;
  animation-delay: -4s;
}
.hvc-notif i { font-size: 18px; }
.hvc-notif span {
  font-size: 12px;
  font-weight: 600;
  color: white;
  font-family: var(--accent-font);
}

/* =============================================
   SUBPAGE HERO BANNER
   ============================================= */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0 60px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,28,58,0.7) 0%, rgba(30,28,58,0.95) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.6s var(--ease-bounce) both;
}
.page-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  animation: fadeUp 0.6s var(--ease-bounce) 0.1s both;
}
.page-breadcrumb {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  animation: fadeUp 0.6s var(--ease-bounce) 0.2s both;
}
.page-breadcrumb a { color: var(--white); }
.page-breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb i { font-size: 14px; opacity: 0.5; }

/* =============================================
   PROGRAMS PAGE STYLES
   ============================================= */
.program-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.program-block:last-child {
  border-bottom: none;
}
.program-block-reverse {
  direction: rtl;
}
.program-block-reverse > * {
  direction: ltr;
}
.program-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.program-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.program-block:hover .program-img-wrapper img {
  transform: scale(1.05);
}
.program-content h3 {
  font-size: 38px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}
.program-content h4 {
  font-size: 18px;
  color: var(--orange);
  font-family: var(--accent-font);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.program-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}
.program-feature-list {
  list-style: none;
}
.program-feature-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}
.program-feature-list li::before {
  content: '\eb84'; /* bx-check */
  font-family: 'boxicons';
  position: absolute;
  left: 0; top: 2px;
  color: var(--green);
  font-size: 20px;
  background: rgba(41,124,58,0.1);
  border-radius: 50%;
}
.program-feature-list strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* =============================================
   GET INVOLVED STYLES
   ============================================= */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.involve-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.involve-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-smooth);
}
.involve-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: rgba(243,110,33,0.3);
}
.involve-card:hover::before { transform: scaleX(1); }

.involve-icon {
  width: 80px; height: 80px;
  background: rgba(243,110,33,0.1);
  color: var(--orange);
  font-size: 40px;
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 24px;
  transition: all 0.4s;
}
.involve-card:hover .involve-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotateY(180deg);
}
.involve-card h3 {
  font-size: 24px; margin-bottom: 16px;
}
.involve-card p {
  color: var(--text-light); line-height: 1.7; margin-bottom: 30px; flex: 1;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-header {
  background: linear-gradient(135deg, rgba(20,18,46,0.03) 0%, rgba(20,18,46,0.05) 100%);
  padding: 50px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.contact-form {
  padding: 50px;
}
.form-group {
  margin-bottom: 24px;
}
.form-control {
  width: 100%;
  padding: 16px 20px;
  background: #f8f9fa;
  border: 1px solid #e1e3e8;
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--text-dark);
  transition: all 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243,110,33,0.1);
  background: var(--white);
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-family: var(--accent-font);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.marquee-item i { font-size: 18px; opacity: 0.8; }
.marquee-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* =============================================
   IMPACT STATS SECTION
   ============================================= */
.impact-section {
  background: linear-gradient(135deg, #1E1C3A 0%, #252345 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content:'';
  position:absolute;
  top:-200px; right:-200px;
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(243,110,33,0.12), transparent 70%);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap:2px;
}
.impact-card {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position:relative;
  transition: all 0.4s;
}
.impact-card:last-child { border-right: none; }
.impact-card::before {
  content:'';
  position:absolute;
  bottom:0; left:50%; transform:translateX(-50%);
  width:0; height:3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius:2px;
  transition: width 0.5s var(--ease-smooth);
}
.impact-card:hover::before { width:70%; }
.impact-num {
  font-family: var(--heading-font);
  font-size: 58px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.impact-num span { color: var(--orange); -webkit-text-fill-color: var(--orange); }
.impact-label {
  font-family: var(--accent-font);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.impact-icon {
  width: 52px; height: 52px;
  background: rgba(243,110,33,0.12);
  border: 1px solid rgba(243,110,33,0.25);
  border-radius: 14px;
  display: flex; align-items:center; justify-content:center;
  color: var(--orange);
  font-size: 24px;
  margin: 0 auto 20px;
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-section { background: var(--off-white); }

.about-image-wrapper {
  position: relative;
}
.about-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-experience-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange);
  text-align: center;
  font-family: var(--heading-font);
  z-index: 2;
}
.about-experience-badge .num {
  font-size: 48px;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-experience-badge .txt {
  font-size: 13px;
  opacity: 0.9;
  font-family: var(--accent-font);
  font-weight: 500;
}
.about-quote-card {
  position: absolute;
  top: 40px;
  right: -32px;
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
  z-index: 2;
}
.about-quote-card .q-icon { color: var(--orange); font-size: 28px; margin-bottom: 8px; }
.about-quote-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}
.about-quote-card .author {
  margin-top: 10px;
  font-weight: 700;
  font-size: 12px;
  color: var(--text-dark);
  font-style: normal;
}

.about-content { padding-left: 60px; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.pillar-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.pillar-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.pillar-icon {
  width: 44px; height: 44px;
  background: var(--orange-pale);
  border-radius: 10px;
  display: flex; align-items:center; justify-content:center;
  color: var(--orange);
  font-size: 20px;
  flex-shrink: 0;
}
.pillar-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
  font-family: var(--accent-font);
  color: var(--text-dark);
}
.pillar-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* =============================================
   PROGRAMS SECTION
   ============================================= */
.programs-section { background: var(--white); }

.program-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.program-block-reverse {
    direction: rtl;
}
.program-block-reverse > * {
    direction: ltr;
}
.program-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.program-img-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-smooth);
}
.program-block:hover .program-img-wrapper img { transform: scale(1.05); }

.program-content {
    padding: 20px 0;
}
.program-content h3 {
    font-size: 42px;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.program-content h4 {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.program-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}


.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.45s var(--ease-bounce);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.program-card-top {
  padding: 36px 32px;
  position: relative;
  flex:1;
}
.program-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  display: flex; align-items:center; justify-content:center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-bounce);
}
.program-card:hover .program-card-icon { transform: scale(1.15) rotate(-5deg); }

.ic-orange { background: linear-gradient(135deg, rgba(243,110,33,0.12), rgba(255,140,74,0.18)); color: var(--orange); }
.ic-green  { background: linear-gradient(135deg, rgba(41,124,58,0.10), rgba(60,164,85,0.18)); color: var(--green); }
.ic-purple { background: linear-gradient(135deg, rgba(108,99,255,0.10), rgba(138,129,255,0.18)); color: #6c63ff; }
.ic-teal   { background: linear-gradient(135deg, rgba(0,175,185,0.10), rgba(0,200,210,0.18)); color: #00afb9; }

.program-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.program-sub {
  font-size: 13px;
  color: var(--orange);
  font-family: var(--accent-font);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.program-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.program-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.program-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.program-feature-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.program-card-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program-link {
  font-family: var(--accent-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}
.program-link:hover { gap: 12px; }
.program-link i { font-size: 18px; }

/* =============================================
   MISSION / VISION STRIP
   ============================================= */
.mv-section {
  background: linear-gradient(135deg, var(--green) 0%, #1d5c2a 100%);
  padding: 80px 0;
  position: relative;
  overflow:hidden;
}
.mv-section::before {
  content:'';
  position:absolute;
  top:-150px; right:-150px;
  width:400px; height:400px;
  border-radius:50%;
  background: rgba(255,255,255,0.05);
}
.mv-section::after {
  content:'';
  position:absolute;
  bottom:-100px; left:-100px;
  width:300px; height:300px;
  border-radius:50%;
  background: rgba(255,255,255,0.04);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: center;
  position:relative;
  z-index:2;
}
.mv-divider { background: rgba(255,255,255,0.15); height: 100%; min-height: 120px; }
.mv-item { padding: 16px 48px; text-align: center; }
.mv-item .mv-icon {
  font-size: 38px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.mv-item h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}
.mv-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* =============================================
   CHANGE SECTION
   ============================================= */
.change-section { background: var(--off-white); }
.change-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.change-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease-bounce);
  position: relative;
  overflow: hidden;
}
.change-card::before {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-smooth);
}
.change-card:hover::before { transform: scaleX(1); }
.change-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.change-card-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 30px;
  color: white;
  margin: 0 auto 24px;
  transition: all 0.4s var(--ease-bounce);
  box-shadow: var(--shadow-orange);
}
.change-card:hover .change-card-num { transform: scale(1.15) rotate(10deg); }
.change-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.change-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   LEADERSHIP SECTION
   ============================================= */
.leadership-section { background: var(--white); }
.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-bounce);
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.leader-img-wrap {
  position: relative;
  overflow: hidden;
}
.leader-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-smooth);
}
.leader-card:hover .leader-img-wrap img { transform: scale(1.08); }
.leader-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,28,58,0.7) 0%, transparent 60%);
}
.leader-body { padding: 28px; }
.leader-body h3 { font-size: 22px; margin-bottom: 4px; }
.leader-role {
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.leader-quote {
  font-style: italic;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #252345 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content:'';
  position:absolute;
  top:-200px; left:50%;
  transform:translateX(-50%);
  width:600px; height:600px;
  background: radial-gradient(circle, rgba(243,110,33,0.15), transparent 70%);
}
.cta-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
  position:relative;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 40px;
  position:relative;
}
.cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; }

/* =============================================
   LEADERSHIP — Magazine Portrait Cards
   ============================================= */

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.founder-portrait-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.45s var(--ease-bounce), box-shadow 0.4s ease;
  box-shadow: var(--shadow-lg);
}
.founder-portrait-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(30,28,58,0.22);
}
.fpc-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.7s var(--ease-smooth);
}
.founder-portrait-card:hover .fpc-photo { transform: scale(1.07); }

.fpc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 45%,
    rgba(20,18,46,0.75) 65%,
    rgba(20,18,46,0.97) 100%
  );
}
.fpc-overlay-green {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 45%,
    rgba(18,50,25,0.80) 65%,
    rgba(18,50,25,0.97) 100%
  );
}

.fpc-number {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--heading-font);
  font-size: 90px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  transition: color 0.4s;
}
.founder-portrait-card:hover .fpc-number { color: rgba(255,255,255,0.11); }

.fpc-body {
  position: relative;
  z-index: 2;
  padding: 32px 36px;
}

.fpc-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: white;
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(243,110,33,0.45);
}
.fpc-badge-green { background: var(--green); box-shadow: 0 4px 18px rgba(41,124,58,0.45); }

.fpc-name {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.fpc-divider {
  width: 40px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 18px;
}
.fpc-divider-green { background: #6BD888; }

.fpc-quote {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.80);
  font-style: italic;
  margin-bottom: 22px;
}

.fpc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.fpc-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.88);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 50px;
  transition: all 0.25s;
}
.fpc-tags span i { font-size: 13px; }
.founder-portrait-card:hover .fpc-tags span { background: rgba(255,255,255,0.14); }

.fpc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.fpc-link:hover { gap: 12px; }
.fpc-link i { font-size: 18px; }
.fpc-link-green { border-bottom-color: #6BD888; }

.treasurer-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
}
.treasurer-strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
  border-radius: 4px 0 0 4px;
}
.treasurer-strip:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(243,110,33,0.25); }
.treasurer-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-md);
  display: flex; align-items:center; justify-content:center;
  color: white; font-size: 32px; flex-shrink: 0;
  box-shadow: var(--shadow-orange);
}
.treasurer-content { flex: 1; }
.treasurer-label {
  font-family: var(--accent-font);
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.treasurer-name {
  font-family: var(--heading-font);
  font-size: 26px; color: var(--text-dark);
  margin-bottom: 8px;
}
.treasurer-content p { font-size: 14px; color: var(--text-light); line-height: 1.7; max-width: 680px; }
.treasurer-quote-icon { flex-shrink: 0; }

/* Keep .leader-row etc below for about.html fallback */
.leader-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-smooth);
}
.leader-row:hover {
  box-shadow: 0 30px 70px rgba(30,28,58,0.14);
  transform: translateY(-4px);
}
.leader-row-reverse {
  direction: rtl;
}
.leader-row-reverse > * {
  direction: ltr;
}

.leader-photo-col {
  position: relative;
  background-size: cover;
  background-position: center top;
  min-height: 500px;
}
.leader-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,28,58,0.3) 0%, rgba(30,28,58,0.1) 100%);
}
.leader-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: white;
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  letter-spacing: 0.3px;
}

.leader-info-col {
  background: var(--white);
  display: flex;
  align-items: center;
}
.leader-info-inner {
  padding: 56px 52px;
}

.leader-name {
  font-size: 36px;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.leader-title-line {
  font-family: var(--accent-font);
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.leader-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin-bottom: 24px;
}
.leader-blockquote {
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 0;
}
.leader-q-icon {
  font-size: 32px;
  color: var(--orange);
  opacity: 0.3;
  display: block;
  margin-bottom: 8px;
  font-style: normal;
}
.leader-bio {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}
.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.leader-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  color: var(--orange);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}
.leader-tag i { font-size: 14px; }

/* Other leaders mini-cards */
.other-leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.other-leader-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.3s var(--ease-smooth);
}
.other-leader-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.other-leader-avatar {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items:center; justify-content:center;
  color: white;
  font-size: 26px;
  flex-shrink: 0;
}
.other-leader-name {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.other-leader-role {
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.other-leader-bio {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #13122A;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo img {
  height: 130px;
  margin-bottom: 18px;
}
.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--accent-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.footer-links a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--orange);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span { font-size: 14px; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--orange); }

/* =============================================
   PAGE BANNER
   ============================================= */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-banner::before {
  content:'';
  position:absolute;
  top:-200px; right:-100px;
  width:600px; height:600px;
  background: radial-gradient(circle, rgba(243,110,33,0.12), transparent 70%);
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  position: relative;
}
.page-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  margin-top: 14px;
  position: relative;
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  color: var(--orange);
  font-size: 24px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-card { border-right:none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; gap:0; }
  .mv-divider { display: none; }
  .about-content { padding-left:32px; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .change-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .about-content { padding-left: 0; margin-top: 32px; }
  .about-image-wrapper img { height: 320px; }
  .about-experience-badge, .about-quote-card { display: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align:center; }

  .hero h1 { font-size: 40px; }
  .hero-desc { font-size: 16px; }
  .section { padding: 64px 0; }
}
