/* ============================================================
   ORONGO WIDOWS AND ORPHANS CBO — WEBSITE STYLES
   Professional · Modern · Responsive
   orongowidowsandorphanscbo.com
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:        #5b21b6;   /* deep violet – dignity & strength */
  --primary-dark:   #3b0764;
  --primary-light:  #7c3aed;
  --accent:         #059669;   /* emerald green – hope & growth */
  --accent-light:   #10b981;
  --accent-dark:    #047857;
  --gold:           #d97706;   /* amber gold – warmth & community */
  --gold-light:     #f59e0b;
  --gold-dark:      #b45309;
  --text-dark:      #1e1b4b;
  --text-body:      #374151;
  --text-muted:     #6b7280;
  --bg-white:       #ffffff;
  --bg-light:       #faf5ff;
  --bg-section:     #ecfdf5;
  --bg-warm:        #fffbeb;
  --border:         #e5e7eb;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.14);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font:           'Poppins', sans-serif;
  --box-width:      1320px;
  --outer-bg:       #1a1a2e;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--outer-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1,h2,h3,h4,h5,h6 { color: var(--text-dark); font-weight: 700; line-height: 1.25; }

/* ---- Boxed Wrapper ---- */
.site-wrapper {
  max-width: var(--box-width);
  margin: 0 auto;
  background: var(--bg-white);
  box-shadow: 0 0 80px rgba(0,0,0,.55);
  position: relative;
  overflow-x: hidden;
}

/* ---------- Utilities ---------- */
.container        { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad      { padding: 90px 0; }
.section-pad-sm   { padding: 60px 0; }
.text-center      { text-align: center; }
.text-white       { color: #fff; }

.badge-label {
  display: inline-block;
  background: rgba(91,33,182,.10);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.badge-label.green {
  background: rgba(5,150,105,.10);
  color: var(--accent-dark);
}
.badge-label.gold {
  background: rgba(217,119,6,.10);
  color: var(--gold-dark);
}
.badge-label.white {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.30);
}

.section-title            { margin-bottom: 50px; }
.section-title h2         { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 14px; }
.section-title p          { color: var(--text-muted); max-width: 580px; font-size: 1.05rem; }
.section-title.centered   { text-align: center; }
.section-title.centered p { margin: 0 auto; }

.divider {
  width: 64px; height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 12px 0 20px;
}
.divider.centered { margin: 12px auto 20px; }
.divider.gold     { background: var(--gold); }
.divider.white    { background: rgba(255,255,255,.60); }

/* Buttons */
.btn, .btn-primary, .btn-outline, .btn-accent, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,33,182,.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5,150,105,.35);
}
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.40);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.cbo-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.cbo-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(91,33,182,.12);
  border-bottom-color: rgba(91,33,182,.15);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-3d {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  text-shadow:
    1px 1px 0 var(--primary-light),
    2px 2px 0 var(--accent-dark),
    3px 3px 0 rgba(0,0,0,.18),
    4px 4px 6px rgba(0,0,0,.12);
  transform: perspective(300px) rotateX(8deg);
  display: inline-block;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  line-height: 1;
}
.navbar-logo:hover .logo-3d {
  transform: perspective(300px) rotateX(0deg);
  text-shadow:
    1px 1px 0 var(--primary-light),
    2px 2px 0 var(--accent-dark),
    4px 4px 0 rgba(0,0,0,.2),
    6px 6px 10px rgba(0,0,0,.18);
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text .org-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.logo-text .org-tag {
  font-size: .64rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-links a {
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .08em;
  overflow: hidden;
}
/* animated underline bar */
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width .3s ease, left .3s ease;
}
.navbar-links a:hover {
  color: var(--primary);
  background: rgba(91,33,182,.06);
}
.navbar-links a:hover::after {
  width: calc(100% - 32px);
  left: 16px;
}
/* active pill — gradient + white text */
.navbar-links a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 4px 14px rgba(91,33,182,.30);
}
.navbar-links a.active::after {
  display: none;
}
.navbar-cta { flex-shrink: 0; }
.btn-support {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-support:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91,33,182,.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger:hover {
  background: rgba(91,33,182,.08);
}
.hamburger span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px 36px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--accent)) 1;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s ease;
  gap: 6px;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: var(--transition);
  background: var(--bg-light);
}
.mobile-nav a:hover {
  color: var(--primary);
  border-color: rgba(91,33,182,.15);
  background: rgba(91,33,182,.06);
  transform: translateX(4px);
}
.mobile-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(91,33,182,.25);
}
.mobile-nav a.btn-support-mobile {
  margin-top: 16px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 8px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .05;
}
.hero .container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content .badge-label { margin-bottom: 18px; }
.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 800;
}
.hero-content h1 span {
  color: var(--gold-light);
  position: relative;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,.18); transform: translateX(6px); }
.hero-card .card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.hero-card h4 { font-size: 1rem; color: #fff; margin-bottom: 4px; }
.hero-card p  { font-size: .82rem; color: rgba(255,255,255,.75); margin-bottom: 0; }
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Hero Stats Bar */
.hero-stats {
  background: #fff;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-item .num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-item .label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ============================================================
   ABOUT BRIEF
   ============================================================ */
.about-brief { background: var(--bg-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-visual img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  right: -16px; bottom: 32px;
  background: var(--primary);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .big-num { font-size: 2rem; font-weight: 800; display: block; }
.about-badge span:last-child { font-size: .78rem; opacity: .85; }

.about-content h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.about-content .lead {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.value-item i { color: var(--accent); font-size: 1rem; }

/* ============================================================
   PROGRAMS (HOME)
   ============================================================ */
.programs-home { background: var(--bg-light); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  border-radius: 0 0 4px 4px;
  transition: height .4s ease;
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.program-card:hover::before { height: 100%; width: 4px; }
.prog-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.prog-icon.purple { background: rgba(91,33,182,.10); color: var(--primary); }
.prog-icon.green  { background: rgba(5,150,105,.10);  color: var(--accent); }
.prog-icon.gold   { background: rgba(217,119,6,.10);  color: var(--gold); }
.prog-icon.blue   { background: rgba(37,99,235,.10);  color: #2563eb; }
.program-card h3  { font-size: 1.2rem; margin-bottom: 12px; }
.program-card p   { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.prog-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.prog-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--text-muted);
}
.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 16px;
  transition: var(--transition);
}
.prog-link:hover { gap: 10px; }

/* ============================================================
   IMPACT SECTION
   ============================================================ */
.impact-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.impact-section .container { position: relative; z-index: 1; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  text-align: center;
}
.impact-item { padding: 20px; }
.impact-item .i-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin: 0 auto 16px;
}
.impact-item .i-num {
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.impact-item .i-label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section { background: var(--bg-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.team-card-top {
  height: 8px;
  width: 100%;
}
.team-card-top.purple { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.team-card-top.green  { background: linear-gradient(90deg, var(--accent-dark), var(--accent-light)); }
.team-card-top.gold   { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.team-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 0 5px #fff, 0 0 0 7px var(--border);
}
.team-avatar.purple { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.team-avatar.green  { background: linear-gradient(135deg, var(--accent-dark), var(--accent-light)); }
.team-avatar.gold   { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); }
.team-card-body     { padding: 20px 28px 28px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.team-card h3       { font-size: 1.1rem; margin-bottom: 6px; color: var(--text-dark); }
.team-card .role    { font-size: .8rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.team-card p        { font-size: .875rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.team-contact       { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.team-contact a     { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-size: .8rem; color: var(--text-muted); background: var(--bg-light); border-radius: 30px; padding: 6px 14px; transition: var(--transition); text-decoration: none; }
.team-contact a:hover { background: var(--primary); color: #fff; }
.team-contact i     { color: var(--accent); font-size: .85rem; }
.team-contact a:hover i { color: #fff; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--accent-dark);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.6rem,3vw,2.4rem); color: #fff; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
  background: var(--primary-dark);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.page-header .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.page-header .badge-label { display: none; }
.page-header h1 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 5px 14px;
}
.breadcrumb-bar a {
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}
.breadcrumb-bar a:hover { color: #fff; }
.breadcrumb-bar .sep  {
  color: rgba(255,255,255,.30);
  font-size: .65rem;
  margin: 0 2px;
}
.breadcrumb-bar .cur  {
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
}

/* ============================================================
   ABOUT PAGE SECTIONS
   ============================================================ */
.mission-vision { background: var(--bg-white); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}
.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.mv-card.purple { background: var(--bg-light); border-color: rgba(91,33,182,.15); }
.mv-card.green  { background: var(--bg-section); border-color: rgba(5,150,105,.15); }
.mv-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.mv-icon.purple { background: rgba(91,33,182,.12); color: var(--primary); }
.mv-icon.green  { background: rgba(5,150,105,.12);  color: var(--accent); }
.mv-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.mv-card p  { color: var(--text-muted); line-height: 1.8; }

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.value-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card .v-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 14px;
}
.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p  { font-size: .875rem; color: var(--text-muted); }

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */
/* ---- Program Tabs Strip ---- */
.prog-tabs-wrap {
  background: var(--primary-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.prog-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.prog-tabs::-webkit-scrollbar { display: none; }
.prog-tab {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.prog-tab:hover { color: #fff; background: rgba(255,255,255,.06); }
.prog-tab.active { color: #fff; border-bottom-color: var(--gold); background: rgba(255,255,255,.1); }

/* ---- Program Sections (alternating 2-col) ---- */
.prog-section { padding: 80px 0; }
.prog-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.prog-section-inner.reverse { direction: rtl; }
.prog-section-inner.reverse > * { direction: ltr; }

/* Photo column */
.prog-photo-col {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.prog-photo-col img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.prog-photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 80px;
  height: 80px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  border: 3px solid #fff;
}
.prog-photo-badge .pb-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.prog-photo-badge .pb-label {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.8);
}

/* Text column */
.prog-text-col { position: relative; padding-left: 20px; }
.prog-accent-line {
  width: 4px;
  height: 60px;
  border-radius: 4px;
  margin-bottom: 22px;
}
.prog-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.prog-text-col h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}
.prog-text-col p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: .97rem;
}
.prog-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 22px;
}
.prog-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-body);
  font-weight: 500;
}
.prog-feat i { font-size: .85rem; flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--bg-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; margin-bottom: 12px; }
.contact-info > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.c-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.c-item .c-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.c-icon.purple { background: rgba(91,33,182,.10); color: var(--primary); }
.c-icon.green  { background: rgba(5,150,105,.10);  color: var(--accent); }
.c-icon.gold   { background: rgba(217,119,6,.10);  color: var(--gold); }
.c-item-text .c-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); margin-bottom: 3px; }
.c-item-text .c-value { font-size: .95rem; font-weight: 600; color: var(--text-dark); }
.c-item-text .c-value a { color: var(--text-dark); }
.c-item-text .c-value a:hover { color: var(--primary); }
.c-item-text .c-sub { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group label span { color: #dc2626; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91,33,182,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { background: var(--bg-white); }
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-light);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(59,7,100,.58);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 1.5rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw; max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
}
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 24px; right: 24px; font-size: 1.3rem; }
.lb-prev   { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next   { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   FOOTER
   ============================================================ */
.cbo-footer {
  background: #111;
  color: rgba(255,255,255,.75);
}
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer-brand .brand-tag {
  font-size: .75rem;
  color: var(--gold-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-brand p { font-size: .875rem; line-height: 1.8; max-width: 280px; }
.footer-social  { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary-light); color: #fff; transform: translateY(-2px); }
.footer-col h4  { color: #fff; font-size: .95rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.footer-col ul li a::before { content: '▸'; color: var(--gold-light); font-size: .7rem; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: .875rem; }
.footer-contact-item i { color: var(--gold-light); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,.70); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,.60); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 992px) {
  .hero-inner          { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual         { display: none; }
  .about-inner         { grid-template-columns: 1fr; gap: 40px; }
  .about-visual        { display: none; }
  .programs-grid       { grid-template-columns: 1fr; }
  .impact-grid         { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .team-grid           { grid-template-columns: 1fr 1fr; }
  .mv-grid             { grid-template-columns: 1fr; }
  .values-list         { grid-template-columns: 1fr 1fr; }
  .contact-grid        { grid-template-columns: 1fr; gap: 40px; }
  .prog-detail-card    { grid-template-columns: 1fr; }
  .prog-detail-card .prog-num { width: 56px; height: 56px; font-size: 1.2rem; }
}

@media (max-width: 768px) {
  .section-pad  { padding: 60px 0; }
  .navbar-links { display: none !important; }
  .navbar-cta   { display: none !important; }
  .hamburger    { display: flex !important; }
  .mobile-nav   { display: flex; }
  .stats-grid   { grid-template-columns: repeat(2,1fr); }
  .stat-divider { display: none; }
  .team-grid    { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .form-row     { grid-template-columns: 1fr; }
  .values-list  { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container      { padding: 0 16px; }
  .hero-btns      { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .impact-grid    { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cta-btns       { flex-direction: column; align-items: center; }
  .contact-form-card { padding: 28px 20px; }
}

/* ============================================================
   HERO IMAGE SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--primary-dark);
}

/* ---- Slides ---- */
.slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.slide.active .slide-bg {
  transform: scale(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 6, 32, 0.58);
}
.slide-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: rgba(15,6,32,.42);
}

/* ---- Slide Content ---- */
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.slide-content .container { position: relative; z-index: 2; }
.slide-text {
  max-width: 640px;
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .7s ease .2s, opacity .7s ease .2s;
}
.slide.active .slide-tag { transform: translateY(0); opacity: 1; }

.slide-text h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform .7s ease .35s, opacity .7s ease .35s;
}
.slide.active .slide-text h1 { transform: translateY(0); opacity: 1; }
.slide-text h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.slide-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
  transform: translateY(25px);
  opacity: 0;
  transition: transform .7s ease .5s, opacity .7s ease .5s;
}
.slide.active .slide-text p { transform: translateY(0); opacity: 1; }

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .7s ease .65s, opacity .7s ease .65s;
}
.slide.active .slide-btns { transform: translateY(0); opacity: 1; }

/* ---- Floating Info Card on slides ---- */
.slide-info-card {
  position: absolute;
  right: 60px;
  bottom: 100px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  color: #fff;
  max-width: 260px;
  z-index: 3;
  transform: translateX(30px);
  opacity: 0;
  transition: transform .8s ease .8s, opacity .8s ease .8s;
}
.slide.active .slide-info-card { transform: translateX(0); opacity: 1; }
.slide-info-card .ic-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.slide-info-card h4 { font-size: 1rem; color: #fff; margin-bottom: 6px; }
.slide-info-card p  { font-size: .8rem; color: rgba(255,255,255,.75); line-height: 1.5; margin: 0; }

/* ---- Arrows ---- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* ---- Dots ---- */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.50);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  width: 30px;
  border-radius: 5px;
}

/* ---- Progress Bar ---- */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 4px;
  background: var(--gold-light);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* ---- Slide Counter ---- */
.slider-counter {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 10;
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 5px 14px;
}
.slider-counter .cur-num { color: #fff; font-size: 1rem; }

/* ============================================================
   STATS BAR (redesigned for slider page)
   ============================================================ */
.stats-strip {
  background: #fff;
  position: relative;
  z-index: 5;
  box-shadow: 0 -4px 30px rgba(0,0,0,.12), 0 4px 20px rgba(0,0,0,.06);
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-color: var(--border);
}
.stat-block {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--bg-light); }
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width .4s ease;
  border-radius: 0 0 3px 3px;
}
.stat-block:hover::before { width: 60%; }
.stat-block .stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin: 0 auto 10px;
}
.stat-block .stat-num {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.stat-block .stat-label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.35;
}

/* ============================================================
   ABOUT SECTION (redesigned)
   ============================================================ */
.about-redesign {
  background: var(--bg-white);
  padding: 100px 0;
}
.about-redesign-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-col {
  position: relative;
}
.about-main-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}
.about-secondary-photo {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid #fff;
  box-shadow: var(--shadow-lg);
}
.about-year-badge {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-year-badge .yr { font-size: 1.6rem; font-weight: 800; display: block; line-height: 1; }
.about-year-badge .yr-label { font-size: .7rem; opacity: .85; font-weight: 500; }
.about-quote-card {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 220px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  z-index: 3;
}
.about-quote-card p     { font-size: .8rem; color: var(--text-body); line-height: 1.5; font-style: italic; margin-bottom: 8px; }
.about-quote-card .qby { font-size: .72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .05em; }

.about-text-col h2 { font-size: clamp(1.5rem, 2.8vw, 2.4rem); margin-bottom: 18px; }
.about-text-col .lead-para {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 18px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}
.about-text-col p { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 24px 0 32px;
}
.ac-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dark);
}
.ac-item .ac-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: .6rem;
}

/* ============================================================
   PROGRAMS CARDS (redesigned with images)
   ============================================================ */
.programs-with-images {
  background: var(--bg-light);
}
.programs-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.prog-img-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.prog-img-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.prog-img-card:hover .prog-card-img img {
  transform: scale(1.05);
}
.prog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.prog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.prog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,6,32,.32);
}
.prog-card-num {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
}
.prog-card-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prog-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.prog-img-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.prog-img-card p  { color: var(--text-muted); font-size: .875rem; line-height: 1.7; flex: 1; margin-bottom: 18px; }
.prog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.prog-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.prog-card-tags span {
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--text-muted);
}
.prog-card-link {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-light);
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.prog-card-link:hover { background: var(--primary); color: #fff; }

/* ============================================================
   GALLERY PREVIEW STRIP
   ============================================================ */
.gallery-strip {
  background: var(--bg-white);
  padding: 80px 0;
}
.gallery-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.gs-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gs-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gs-item:hover img { transform: scale(1.07); }
.gs-item .gs-overlay {
  position: absolute; inset: 0;
  background: rgba(59,7,100,.56);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex; align-items: flex-end; padding: 12px;
}
.gs-item:hover .gs-overlay { opacity: 1; }
.gs-item .gs-overlay span {
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
}
.gs-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-strip-cta { text-align: center; }

/* ============================================================
   RESPONSIVE — SLIDER & NEW SECTIONS
   ============================================================ */
@media (max-width: 1200px) {
  .slide-info-card { right: 24px; bottom: 80px; }
}

@media (max-width: 992px) {
  .hero-slider          { height: 80vh; }
  .slide-info-card      { display: none; }
  .about-redesign-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-photo-col      { display: none; }
  .about-secondary-photo { display: none; }
  .programs-cards-grid  { grid-template-columns: 1fr; }
  .gallery-strip-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner    { grid-template-columns: repeat(2, 1fr); }
  .stat-block           { border-bottom: 1px solid var(--border); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-bottom: none; }
  .stat-block:nth-child(4) { border-right: none; border-bottom: none; }
}

@media (max-width: 768px) {
  .hero-slider      { height: 90vh; min-height: 500px; }
  .slide-text h1    { font-size: clamp(1.7rem, 6vw, 2.5rem); }
  .slider-arrow     { width: 40px; height: 40px; font-size: .85rem; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .slide-btns       { flex-direction: column; }
  .slide-btns .btn  { width: 100%; justify-content: center; }
  .gallery-strip    { padding: 60px 0; }
  .gallery-strip-grid { grid-template-columns: repeat(2,1fr); }
  .gs-item.tall     { grid-row: span 1; aspect-ratio: 1; }
  .stat-block       { padding: 22px 16px; }
  .about-checklist  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-slider     { height: 92vh; }
  .slider-counter  { display: none; }
  .gallery-strip-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .stats-strip-inner  { grid-template-columns: repeat(2,1fr); }
}
