/* ============================================================
   UNICOF — Bold & Modern Bespoke Design System v2.0
   Future is Cooperative | Professional Institutional Grade
   ============================================================ */

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --primary-teal:      #058293;
  --deep-teal:         #032b32;
  --dark-navy:         #021a1f;
  --light-teal:        #60c5d5;
  --mint-accent:       #20c997;
  --accent-gold:       #f59e0b;
  --off-white:         #f4f8f8;
  --charcoal:          #172225;
  --slate-muted:       #526367;
  --white:             #ffffff;
  --border-light:      #e1ebed;
  --border-glass:      rgba(255,255,255,0.15);
  --card-shadow:       0 10px 30px -5px rgba(3,43,50,0.06), 0 4px 12px -2px rgba(3,43,50,0.04);
  --card-hover-shadow: 0 22px 45px -10px rgba(5,130,147,0.18), 0 8px 18px -4px rgba(3,43,50,0.08);
  --transition-fast:   0.25s cubic-bezier(0.16,1,0.3,1);
  --transition-slow:   0.6s cubic-bezier(0.16,1,0.3,1);
  --radius-sm:         8px;
  --radius-md:         16px;
  --radius-lg:         24px;
  --radius-xl:         36px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background-color: var(--off-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--deep-teal);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

p {
  margin-bottom: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--deep-teal); }

/* Gradient Text Utility */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 60%, var(--mint-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll Reveal Animations ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(18px, -12px) scale(1.04); }
  66%       { transform: translate(-10px, 8px) scale(0.97); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6,146,166,0.25); }
  50%       { box-shadow: 0 0 0 12px rgba(6,146,166,0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes barGrow {
  from { width: 0%; }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll-reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Top Notice Bar ────────────────────────────────────────── */
.top-notice-bar {
  background: var(--deep-teal);
  color: #d1f0f4;
  padding: 8px 16px;
  font-size: 0.84rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.top-notice-bar strong { color: var(--light-teal); }

.top-notice-link {
  color: var(--light-teal);
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Header & Navigation ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(4, 57, 66, 0.08);
  box-shadow: 0 4px 20px rgba(4, 57, 66, 0.05);
  transition: all var(--transition-fast);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0284c7 0%, #06b6d4 35%, #10b981 70%, #f59e0b 100%);
  z-index: 1001;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(2, 43, 50, 0.12);
  border-bottom-color: rgba(6, 146, 166, 0.15);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: visible;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img, .brand-logo svg {
  height: 44px;
  width: auto;
  max-width: 195px;
  display: block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
  filter: drop-shadow(0 2px 8px rgba(6, 146, 166, 0.14));
}

.brand-logo:hover img, .brand-logo:hover svg {
  transform: scale(1.025);
  filter: drop-shadow(0 4px 14px rgba(6, 146, 166, 0.24));
}

/* ── Nav Menu ──────────────────────────────────────────────── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-item { position: relative; }

.nav-link {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--deep-teal);
  padding: 7px 9px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--primary-teal);
  background: rgba(5, 130, 147, 0.08);
}

.nav-link.active {
  color: var(--primary-teal);
  background: rgba(5, 130, 147, 0.12);
  font-weight: 700;
}

/* ── Dropdown Menu ─────────────────────────────────────────── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  min-width: 250px;
  border-radius: 16px;
  box-shadow: 0 18px 45px -8px rgba(3, 43, 50, 0.16), 0 4px 14px rgba(3, 43, 50, 0.05);
  border: 1px solid rgba(6, 146, 166, 0.14);
  border-top: 3px solid var(--primary-teal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  list-style: none;
  padding: 8px;
  z-index: 1100;
}

/* For rightmost menus (like Get Involved), align to right edge */
.nav-item:nth-last-child(-n+3) .dropdown-menu {
  left: auto;
  right: 0;
  transform-origin: top right;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-item {
  margin-bottom: 2px;
}
.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--charcoal);
  font-weight: 600;
  border-radius: 10px;
  transition: all var(--transition-fast);
}

/* Subtle glowing left indicator dot */
.dropdown-item a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-teal);
  opacity: 0.35;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

/* Smooth right-aligned arrow on hover */
.dropdown-item a::after {
  content: '→';
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.22s ease;
}

.dropdown-item a:hover {
  background: linear-gradient(90deg, rgba(6, 146, 166, 0.09) 0%, rgba(32, 201, 151, 0.06) 100%);
  color: var(--primary-teal);
  padding-left: 17px;
}

.dropdown-item a:hover::before {
  opacity: 1;
  background: var(--mint-accent);
  transform: scale(1.35);
  box-shadow: 0 0 6px rgba(32, 201, 151, 0.6);
}

.dropdown-item a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ── Header CTA ─────────────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: rgba(6, 146, 166, 0.08);
  border: 1px solid rgba(6, 146, 166, 0.25);
  color: var(--primary-teal);
  font-size: 1.35rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-left: auto;
  flex-shrink: 0;
  line-height: 1;
}

.mobile-toggle:hover, .mobile-toggle:focus {
  background: rgba(6, 146, 166, 0.16);
  color: var(--deep-teal);
  border-color: var(--primary-teal);
}

.mobile-drawer-cta {
  display: none;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 20px;
  font-size: 0.81rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #058293 60%, #046370 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0891b2 0%, #046d7c 60%, #024b55 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(6, 182, 212, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-teal);
  color: var(--primary-teal);
}

.btn-outline:hover {
  background: var(--primary-teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--deep-teal);
  color: var(--white);
}

.btn-dark:hover {
  background: #032a31;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Mobile Toggle ─────────────────────────────────────────── */
.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: rgba(6, 146, 166, 0.08);
  border: 1.5px solid rgba(6, 146, 166, 0.24);
  border-radius: 11px;
  font-size: 1.35rem;
  color: var(--deep-teal);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(6, 146, 166, 0.16);
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  transform: scale(1.04);
}

/* ── Geometric Pattern Background ─────────────────────────── */
.geo-pattern-bg {
  position: relative;
}

.geo-pattern-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(5,130,147,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.geo-pattern-bg > * { position: relative; z-index: 1; }

/* ── SVG Wave Divider ──────────────────────────────────────── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  display: block;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Hero Section (Home) ───────────────────────────────────── */
.hero-section {
  position: relative;
  background: 
    radial-gradient(circle at 85% 20%, rgba(6, 182, 212, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(2, 132, 199, 0.08) 0%, transparent 60%),
    linear-gradient(150deg, #011417 0%, #03282f 45%, #054552 100%);
  color: var(--white);
  padding: 96px 24px 115px;
  overflow: hidden;
}

/* Decorative glowing ambient orbs */
.hero-blob-1 {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(96, 197, 213, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 9s ease-in-out infinite;
  pointer-events: none;
  filter: blur(20px);
}

.hero-blob-2 {
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(32, 201, 151, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 12s ease-in-out infinite reverse;
  pointer-events: none;
  filter: blur(25px);
}

.hero-geo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-container {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

/* Artistic Eyebrow Badge */
.hero-eyebrow, .hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(96, 197, 213, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #67e8f9;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 24px;
  align-self: flex-start;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.9s ease both;
}

.hero-pulse-dot {
  width: 8px;
  height: 8px;
  background: #20c997;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 10px #20c997;
}

.hero-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #20c997;
  animation: radarPulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes radarPulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-title .accent, .hero-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #67e8f9 45%, #34d399 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.75;
  font-weight: 400;
  animation: fadeUp 0.9s 0.35s ease both;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeUp 0.9s 0.5s ease both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0284c7 100%);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(6, 182, 212, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  padding: 12px 26px;
  font-size: 0.86rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.55);
  color: var(--white);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.86rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 153, 51, 0.6);
  color: #ffb86c;
  transform: translateY(-2px);
}

/* Glass Stat Cards inside Hero */
.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fadeUp 0.9s 0.65s ease both;
}

.hero-stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s ease;
}

.hero-stat-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(96, 197, 213, 0.4);
  transform: translateY(-3px);
}

.hero-stat-number {
  font-size: 1.95rem;
  font-weight: 800;
  color: #67e8f9;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ── Hero Artistic Visual Composition ──────────────────────── */
.hero-image-wrap {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.1s 0.3s ease both;
}

.hero-visual-aura {
  position: absolute;
  inset: -15px;
  border-radius: 36px;
  background: radial-gradient(circle at 60% 40%, rgba(6, 182, 212, 0.32) 0%, rgba(16, 185, 129, 0.18) 50%, transparent 75%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.hero-img-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.6), 0 0 40px rgba(6, 182, 212, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.hero-img-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 39, 46, 0.65) 0%, rgba(3, 39, 46, 0.1) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrap:hover .hero-img-card img {
  transform: scale(1.03);
}

/* Floating interactive badge cards on hero visual */
.hero-floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(2, 34, 40, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(96, 197, 213, 0.35);
  border-radius: 14px;
  padding: 10px 16px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.hero-floating-badge.badge-top {
  top: 24px;
  left: -20px;
  animation: floatBadge1 4.5s ease-in-out infinite;
}

.hero-floating-badge.badge-bottom {
  bottom: 24px;
  right: -15px;
  animation: floatBadge2 5s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(7px); }
}

.badge-icon-bubble {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(96, 197, 213, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.badge-text-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.badge-text-sub {
  font-size: 0.7rem;
  color: #67e8f9;
  font-weight: 600;
}

/* ── Page Sub-Hero Banner ──────────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(145deg, var(--deep-teal) 0%, #056478 100%);
  color: var(--white);
  padding: 72px 20px 90px;
  overflow: hidden;
}

/* Decorative circle accent on page heroes */
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 5%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,197,213,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,201,151,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Page hero accent color variants */
.page-hero.hero-startup {
  background: linear-gradient(145deg, #032b32 0%, #0a5c6e 100%);
}

.page-hero.hero-viksit {
  background: linear-gradient(145deg, #1a0a00 0%, #3d1f00 50%, #032b32 100%);
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, #FF9933, #ffffff, #138808) 1;
}

.page-hero.hero-programs {
  background: linear-gradient(145deg, #032b32 0%, #07525f 100%);
}

.page-hero.hero-people {
  background: linear-gradient(145deg, #021a1f 0%, #043942 100%);
}

.page-hero.hero-knowledge {
  background: linear-gradient(145deg, #06354a 0%, #032b32 100%);
}

.page-hero.hero-media {
  background: linear-gradient(145deg, #1c0530 0%, #032b32 100%);
}

.page-hero.hero-involved {
  background: linear-gradient(145deg, #032b32 0%, #055a3e 100%);
}

.page-hero.hero-contact {
  background: linear-gradient(145deg, #032b32 0%, #0a3d4a 100%);
}

.page-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.page-breadcrumb a {
  color: var(--light-teal);
  font-weight: 600;
}

.page-breadcrumb a:hover { color: var(--white); }

.page-hero-icon {
  font-size: 3.2rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(96,197,213,0.3));
}

.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 800;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 700px;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ── Badges ────────────────────────────────────────────────── */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-core {
  background: rgba(6,146,166,0.15);
  color: var(--primary-teal);
  border: 1px solid rgba(6,146,166,0.25);
}

.badge-planned {
  background: rgba(245,158,11,0.12);
  color: #b45309;
  border: 1px solid rgba(245,158,11,0.25);
}

.badge-exploring {
  background: rgba(139,92,246,0.12);
  color: #7c3aed;
  border: 1px solid rgba(139,92,246,0.2);
}

.badge-goal {
  background: rgba(42,157,143,0.12);
  color: #0f766e;
  border: 1px solid rgba(42,157,143,0.2);
}

.badge-flagship {
  background: linear-gradient(135deg, rgba(255,153,51,0.85) 0%, rgba(6,146,166,0.85) 50%, rgba(19,136,8,0.85) 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border: none;
}

.badge-startup {
  background: rgba(4,57,66,0.08);
  color: var(--deep-teal);
  border: 1.5px solid var(--primary-teal);
}

/* ── Sections ──────────────────────────────────────────────── */
.section {
  padding: 90px 20px;
}

.section-alt {
  background-color: var(--white);
}

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 1.5px;
  width: 28px;
  background: var(--primary-teal);
  opacity: 0.5;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--deep-teal);
  font-weight: 800;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--slate-muted);
  line-height: 1.7;
}

/* ── Grid Layouts ──────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

/* ── Feature Cards ─────────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
  border-color: rgba(6,146,166,0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(6,146,166,0.1) 0%, rgba(96,197,213,0.15) 100%);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
  transition: transform var(--transition-fast);
}

.feature-card:hover .card-icon {
  transform: scale(1.1) rotate(-3deg);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--deep-teal);
}

.feature-card p {
  color: var(--slate-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* ── Process Step Cards ─────────────────────────────────────── */
.process-step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--primary-teal);
}

.step-number-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--deep-teal) 0%, #056478 100%);
  color: var(--light-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(3,43,50,0.25);
}

/* ── Stat Counter ──────────────────────────────────────────── */
.stat-counter {
  font-variant-numeric: tabular-nums;
}

.stats-bar {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, var(--deep-teal) 0%, #056478 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
}

.stats-bar-item {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: background var(--transition-fast);
}

.stats-bar-item:last-child { border-right: none; }

.stats-bar-item:hover {
  background: rgba(255,255,255,0.05);
}

.stats-bar-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--light-teal);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
}

.stats-bar-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── Flagship Banner (Viksit Bharat Box) ───────────────────── */
.viksit-banner-box {
  background: linear-gradient(145deg, #043942 0%, #07525f 100%);
  border-radius: var(--radius-lg);
  padding: 52px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(96,197,213,0.2);
  box-shadow: 0 24px 48px rgba(4,57,66,0.25);
}

.viksit-banner-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #FF9933, #FFFFFF 50%, #138808);
}

.viksit-banner-box::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96,197,213,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Goal Banner ───────────────────────────────────────────── */
.goal-banner {
  background: linear-gradient(145deg, var(--deep-teal) 0%, #067283 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 54px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 20px 48px rgba(4,57,66,0.22);
  position: relative;
  overflow: hidden;
}

.goal-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96,197,213,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.goal-banner h3 {
  color: var(--light-teal);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
  font-weight: 800;
}

.goal-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}

.goal-stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  text-align: center;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.goal-number {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--light-teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.goal-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ── People Cards ──────────────────────────────────────────── */
.people-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.people-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
}

.people-avatar {
  width: 100%;
  height: 220px;
  background: linear-gradient(145deg, var(--deep-teal) 0%, #056478 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--light-teal);
  position: relative;
  overflow: hidden;
}

.people-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(96,197,213,0.12) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.people-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--deep-teal);
}

.people-info {
  padding: 24px;
}

.people-name {
  font-size: 1.15rem;
  color: var(--deep-teal);
  margin-bottom: 4px;
  font-weight: 700;
}

.people-role {
  color: var(--primary-teal);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.people-bio {
  font-size: 0.88rem;
  color: var(--slate-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ── Publication Cards ─────────────────────────────────────── */
.pub-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pub-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.pub-type {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.pub-title {
  font-size: 1.1rem;
  color: var(--deep-teal);
  margin-bottom: 10px;
  font-weight: 700;
}

.pub-meta {
  font-size: 0.84rem;
  color: var(--slate-muted);
  margin-bottom: 20px;
}

/* ── Research Bar Chart ────────────────────────────────────── */
.chart-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  margin-top: 30px;
}

.bar-chart-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 16px;
}

.bar-label {
  width: 200px;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep-teal);
}

.bar-track {
  flex-grow: 1;
  height: 26px;
  background: var(--off-white);
  border-radius: 13px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--light-teal) 100%);
  border-radius: 13px;
  animation: barGrow 1.2s ease-out both;
  position: relative;
}

.bar-value {
  width: 52px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-teal);
  text-align: right;
}

/* ── Process Stepper (Coop Startup) ────────────────────────── */
.process-stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-teal);
  opacity: 0.7;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--deep-teal);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--slate-muted);
  margin-bottom: 0;
}

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,57,66,0.72);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

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

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 44px;
  position: relative;
  box-shadow: 0 32px 64px rgba(0,0,0,0.28);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--off-white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.modal-close:hover {
  background: var(--border-light);
  color: var(--charcoal);
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 7px;
  color: var(--deep-teal);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--off-white);
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  color: var(--charcoal);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5,130,147,0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #032b32 0%, #021a1f 100%);
  color: #cfdfe3;
  padding: 80px 20px 36px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #058293 0%, #60c5d5 50%, #20c997 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.65;
}

.footer-title {
  color: var(--light-teal);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--light-teal);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 16px;
}

/* ── CTA Section Accent ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--deep-teal) 0%, #056478 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96,197,213,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Highlight Quote/Note Box ──────────────────────────────── */
.note-box {
  background: linear-gradient(135deg, rgba(5,130,147,0.06) 0%, rgba(96,197,213,0.08) 100%);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  border: 1px solid rgba(5,130,147,0.2);
  border-left: 5px solid var(--primary-teal);
  position: relative;
}

.note-box h3 { color: var(--deep-teal); margin-bottom: 10px; }
.note-box p { color: var(--slate-muted); margin-bottom: 0; }

/* ── Tab Navigation ────────────────────────────────────────── */
.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 6px;
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--slate-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--white);
  color: var(--primary-teal);
  box-shadow: var(--card-shadow);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Divider Utilities ─────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* ── Compact desktop navbar for 1151px - 1260px screens ─────── */
@media (max-width: 1260px) and (min-width: 1151px) {
  .nav-container {
    padding: 8px 16px;
    gap: 8px;
  }
  .brand-logo img, .brand-logo svg {
    height: 40px;
    max-width: 175px;
  }
  .nav-menu {
    gap: 1px;
  }
  .nav-link {
    padding: 6px 7px;
    font-size: 0.76rem;
  }
  .header-actions .btn {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOUNDATION KEY OFFICERS — MODERN EXECUTIVE CARDS
   ═══════════════════════════════════════════════════════════ */
.key-officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.officer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(2, 43, 50, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.officer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 43, 50, 0.12);
  border-color: rgba(6, 146, 166, 0.35);
}

.officer-photo-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio square frame */
  background: linear-gradient(135deg, #021a1f 0%, #032b32 50%, #065b66 100%);
  overflow: hidden;
}

.officer-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.officer-card:hover .officer-photo {
  transform: scale(1.05);
}

.officer-chair-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
  z-index: 2;
}

.officer-info {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.officer-name {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--deep-teal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.officer-role {
  color: var(--primary-teal);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(6, 146, 166, 0.15);
}

.officer-bio {
  font-size: 0.88rem;
  color: var(--slate-muted);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   100 SELECTED COOPERATIVE SEGMENTS — CURATION & CRITERIA
   ═══════════════════════════════════════════════════════════ */
.curated-sectors-banner {
  background: linear-gradient(135deg, rgba(6, 146, 166, 0.08) 0%, rgba(245, 158, 11, 0.07) 100%);
  border: 1.5px solid rgba(6, 146, 166, 0.22);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.curated-sectors-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-teal), var(--accent-gold));
}

.curated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #022b32;
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 28px 0 40px;
}

.criteria-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 4px 15px rgba(2, 43, 50, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.criteria-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-teal);
  box-shadow: 0 10px 25px rgba(6, 146, 166, 0.12);
}

.criteria-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-teal);
  background: rgba(6, 146, 166, 0.1);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.criteria-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 8px;
}

.criteria-desc {
  font-size: 0.86rem;
  color: var(--slate-muted);
  line-height: 1.55;
  margin: 0;
}

/* Interactive Sector Category Filter Tabs */
.sector-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.sector-filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.sector-filter-btn:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  background: rgba(6, 146, 166, 0.04);
}

.sector-filter-btn.active {
  background: var(--primary-teal);
  border-color: var(--primary-teal);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(6, 146, 166, 0.3);
}

/* Sector Selection Card */
.curated-sector-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.curated-sector-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 146, 166, 0.4);
  box-shadow: 0 16px 36px rgba(2, 43, 50, 0.1);
}

.curated-sector-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.curated-sector-num {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-teal);
  background: rgba(6, 146, 166, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.curated-sector-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 10px;
}

.curated-sector-desc {
  font-size: 0.88rem;
  color: var(--slate-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.curated-sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
}

.curated-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #475569;
}

.curated-tag.tag-growth {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
}

.curated-tag.tag-tech {
  background: rgba(6, 146, 166, 0.12);
  color: #0c4a6e;
}

.curated-tag.tag-empower {
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
}

.curated-tag.tag-future {
  background: rgba(99, 102, 241, 0.12);
  color: #3730a3;
}

/* ═══════════════════════════════════════════════════════════
   COOPERATIVE LEADERSHIP NETWORK — ALLIED VISIONARIES
   ═══════════════════════════════════════════════════════════ */
.leadership-network-section {
  background: var(--off-white);
  position: relative;
}

.leaders-network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 36px;
}

.leader-network-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 20px rgba(2, 43, 50, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.leader-network-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 146, 166, 0.4);
  box-shadow: 0 16px 36px rgba(2, 43, 50, 0.1);
}

.leader-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(2, 43, 50, 0.06);
  background: linear-gradient(to right, rgba(6, 146, 166, 0.04), transparent);
}

.leader-thumb-wrap {
  width: 76px;
  height: 76px;
  min-width: 76px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #022026, #065b66);
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(2, 43, 50, 0.15);
  position: relative;
}

.leader-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.leader-network-card:hover .leader-thumb {
  transform: scale(1.08);
}

.leader-meta {
  flex-grow: 1;
}

.leader-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--deep-teal);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.leader-position {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 4px;
}

.leader-society-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--deep-teal);
  background: rgba(6, 146, 166, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.4px;
}

.leader-card-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.leader-domain {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.leader-quote {
  font-size: 0.88rem;
  color: var(--slate-muted);
  line-height: 1.6;
  position: relative;
  margin: 0;
  font-style: normal;
  flex-grow: 1;
}

.leader-quote-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile (≤ 1150px)
   ═══════════════════════════════════════════════════════════ */
@keyframes slideDownNav {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1150px) {

  /* Modern Solid Opaque Drawer Navigation */
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #ffffff !important;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 20px 36px;
    box-shadow: 0 25px 60px rgba(2, 43, 50, 0.35);
    display: none;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    border-bottom: 3px solid var(--primary-teal);
    gap: 6px;
    z-index: 9999;
    opacity: 1 !important;
  }

  .nav-menu.active {
    display: flex;
    animation: slideDownNav 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-item { width: 100%; }

  .nav-link {
    width: 100%;
    padding: 13px 16px;
    font-size: 0.94rem;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(4, 57, 66, 0.02);
    border: 1px solid rgba(4, 57, 66, 0.06);
    color: var(--deep-teal);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link:hover, .nav-link:active {
    background: rgba(6, 146, 166, 0.08);
    border-color: rgba(6, 146, 166, 0.2);
    color: var(--primary-teal);
  }

  .nav-container {
    justify-content: space-between;
  }

  .site-header nav {
    margin: 0;
    padding: 0;
    line-height: 0;
    width: 0;
    height: 0;
  }

  .mobile-toggle {
    display: flex !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .header-actions { display: none !important; }

  /* Mobile Dropdown Submenus: Clean Nested Drawer Accordions */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 6px 10px;
    margin: 4px 0 8px 10px;
    background: rgba(6, 146, 166, 0.05);
    border-left: 3px solid var(--primary-teal);
    min-width: unset;
    width: auto;
  }

  .nav-item.mobile-open .dropdown-menu { display: block; }

  .dropdown-item a {
    font-size: 0.88rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--charcoal);
  }

  .dropdown-item a:hover {
    background: rgba(6, 146, 166, 0.1);
    color: var(--primary-teal);
    padding-left: 14px;
  }

  .dropdown-item a::before,
  .dropdown-item a::after { display: none; }

  /* Mobile Nav Drawer CTA button container */
  .mobile-drawer-cta {
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-drawer-cta .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  /* Grid resets */
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  /* In mobile hero: Text & Headline first, then artistic visual */
  .hero-image-wrap {
    width: 100%;
    max-width: 100%;
    order: 2;
  }

  .hero-floating-badge.badge-top {
    top: 14px;
    left: 14px;
    animation: none;
  }

  .hero-floating-badge.badge-bottom {
    bottom: 14px;
    right: 14px;
    animation: none;
  }

  .hero-floating-badge {
    padding: 8px 12px;
    gap: 8px;
    border-radius: 10px;
  }

  .badge-icon-bubble {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .badge-text-title { font-size: 0.76rem; }
  .badge-text-sub { font-size: 0.65rem; }

  .goal-banner,
  .grid-2,
  .grid-3,
  .grid-4,
  .viksit-banner-box .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

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

  .stats-bar {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .stats-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 28px 20px;
  }

  .stats-bar-item:last-child { border-bottom: none; }

  .goal-banner {
    grid-template-columns: 1fr !important;
    padding: 40px 28px;
  }

  .goal-stat-box { padding: 24px; }

  .hero-stat-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .viksit-banner-box {
    padding: 36px 28px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 576px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 576px) {

  .section { padding: 52px 16px; }

  .hero-section { padding: 56px 16px 76px; }

  .page-hero { padding: 52px 16px 72px; }

  .hero-title { font-size: 2.1rem; line-height: 1.15; }

  .page-hero-title { font-size: 1.75rem; }

  .hero-subtitle, .page-hero-desc { font-size: 0.98rem; line-height: 1.65; margin-bottom: 28px; }

  .section-title { font-size: 1.65rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  .hero-stat-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .hero-stat-item {
    padding: 14px 16px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-stat-number { font-size: 1.65rem; }

  .hero-floating-badge {
    position: static;
    margin: 8px 0;
    width: 100%;
  }

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

  .feature-card, .process-step-card {
    padding: 22px 18px;
  }

  .goal-banner {
    padding: 32px 18px;
  }

  .goal-number { font-size: 3.4rem; }

  .viksit-banner-box { padding: 28px 18px; }

  .bar-label { width: 130px; font-size: 0.8rem; }

  .chart-box { padding: 22px 16px; }

  .stats-bar-number { font-size: 2.2rem; }

  /* CRITICAL: Force all inline grid overrides to 1 col on mobile */
  div[style*="grid-template-columns"],
  form div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .form-grid-2 {
    grid-template-columns: 1fr !important;
  }

  .modal-content { padding: 28px 20px; }

  .top-notice-bar { flex-direction: column; gap: 4px; font-size: 0.78rem; }

  .btn { padding: 10px 16px; font-size: 0.8rem; }

  .nav-container { padding: 10px 14px; }

  .brand-logo img, .brand-logo svg {
    height: 40px;
    max-width: 170px;
  }

  .page-hero-icon { font-size: 2.5rem; }
}
/* ── Social Media Links ─────────────────────────────────────── */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-icon-btn:hover {
  background: #058293;
  color: #ffffff;
  border-color: #60c5d5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 130, 147, 0.35);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
