/* ============================================================
   Navigo Nepal ΓÇö Premium International-Grade Design System
   Inspired by UNESCO, UNICEF, Gates Foundation, TED, AG Pashmina
   ============================================================ */

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

/* ==================== CSS CUSTOM PROPERTIES ==================== */
:root {
  /* Premium Navy Color System */
  --primary-navy: #0A2342;
  --deep-navy: #06172F;
  --luxury-blue: #4F9CF9;
  --soft-sky: #DCEEFF;
  --elite-blue: #2563EB;
  --emerald: #10B981;
  --pure-white: #FFFFFF;
  --luxury-bg: #F8FBFF;
  --soft-gray: #64748B;

  /* Semantic Variables (Light Mode Default) */
  --bg-primary: #F8FBFF;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-navbar: rgba(255, 255, 255, 0.92);
  --border-color: rgba(10, 35, 66, 0.08);
  --border-glass: rgba(79, 156, 249, 0.15);

  --text-main: #0A2342;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;

  --accent-color: #2563EB;
  --accent-light: #4F9CF9;
  --accent-emerald: #10B981;
  --secondary-color: #0A2342;

  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #4F9CF9 100%);
  --gradient-hero: linear-gradient(135deg, #0A2342 0%, #1a3a5c 50%, #06172F 100%);
  --gradient-accent: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  --gradient-card: linear-gradient(180deg, rgba(37, 99, 235, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
  --gradient-subtle: linear-gradient(180deg, rgba(37, 99, 235, 0.02) 0%, transparent 100%);

  --glow-1: rgba(79, 156, 249, 0.08);
  --glow-2: rgba(16, 185, 129, 0.05);
  --shadow-sm: 0 1px 3px rgba(10, 35, 66, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 35, 66, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 35, 66, 0.1);
  --shadow-xl: 0 25px 60px rgba(10, 35, 66, 0.12);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.15);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

[data-theme="dark"] {
  --bg-primary: #06172F;
  --bg-secondary: #0A2342;
  --bg-card: #0d2a4a;
  --bg-navbar: rgba(6, 23, 47, 0.95);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(79, 156, 249, 0.2);

  --text-main: #F0F6FF;
  --text-muted: #8BA3C4;
  --text-inverse: #0A2342;

  --accent-color: #4F9CF9;
  --accent-light: #7BB8FF;
  --accent-emerald: #34D399;
  --secondary-color: #F0F6FF;

  --gradient-primary: linear-gradient(135deg, #4F9CF9 0%, #7BB8FF 100%);
  --gradient-card: linear-gradient(180deg, rgba(79, 156, 249, 0.05) 0%, rgba(52, 211, 153, 0.05) 100%);
  --gradient-subtle: linear-gradient(180deg, rgba(79, 156, 249, 0.03) 0%, transparent 100%);

  --glow-1: rgba(79, 156, 249, 0.12);
  --glow-2: rgba(16, 185, 129, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(79, 156, 249, 0.2);
}

/* ==================== BASE RESETS ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page Load Animation */
body.loading {
  opacity: 0;
}

body.loaded {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Accessibility Focus Ring */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ==================== TYPOGRAPHY SYSTEM ==================== */
.heading-xl {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.gradient-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-primary);
  display: inline-block;
}

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* ==================== LAYOUT SYSTEM ==================== */
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

[data-theme="dark"] .section {
  background-color: #06172F;
}

.section-alt {
  background-color: #0b1f3a;
  color: #ffffff;

  /* Local overrides for dark/navy section components */
  --bg-primary: #08172b;
  --bg-secondary: #0b1f3a;
  --bg-card: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.12);
  --border-glass: rgba(255, 255, 255, 0.15);
  --text-main: #ffffff;
  --text-muted: #a3b3c9;
  --accent-color: #4F9CF9;
  --accent-light: #7BB8FF;
}

[data-theme="dark"] .section-alt {
  background-color: #0A2342;

  --bg-primary: #0A2342;
  --bg-secondary: #0A2342;
  --bg-card: #0d2a4a;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(79, 156, 249, 0.2);
  --text-main: #F0F6FF;
  --text-muted: #8BA3C4;
  --accent-color: #4F9CF9;
  --accent-light: #7BB8FF;
}

/* Hide line dividers since alternating backgrounds handle separation */
.section-divider {
  display: none;
}

/* Custom enhancements for SVG Map inside dark Navy sections */
.section-alt .province-path {
  fill: rgba(255, 255, 255, 0.06);
}

.section-alt .province-path:hover,
.section-alt .province-path {
  fill: #dc2626;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.province-path.active {
  fill: #f87171;
  stroke: #ffffff;
  stroke-width: 1.5px;
  filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ==================== DOT GRID PATTERN ==================== */
.dot-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--border-color) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ==================== SECTION DIVIDERS ==================== */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-color) 20%, var(--accent-emerald) 80%, transparent 100%);
  opacity: 0.15;
  margin: 0;
  border: none;
}

/* ==================== GLASSMORPHISM PANELS ==================== */
.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-panel-hover:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.05);
  transform: translateY(-4px);
}

.glass-panel-hover:hover::before {
  opacity: 0.5;
}

/* ==================== AMBIENT BACKGROUND ==================== */
.glow-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-blue {
  width: 500px;
  height: 500px;
  background: var(--glow-1);
  top: -10%;
  right: -5%;
  animation: float-orb 20s ease-in-out infinite;
}

.orb-green {
  width: 400px;
  height: 400px;
  background: var(--glow-2);
  bottom: 10%;
  left: -8%;
  animation: float-orb 25s ease-in-out infinite reverse;
}

@keyframes float-orb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

/* ==================== PREMIUM BUTTON SYSTEM ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  position: relative;
  gap: 0.6rem;
  border-radius: var(--radius-md);
  text-transform: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--pure-white);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
  transform: translateY(0) scale(1);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
  border-radius: var(--radius-md);
}

.btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(37, 99, 235, 0.04);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
}

.btn-white {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.02);
}

/* ==================== SCROLL PROGRESS BAR ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-accent);
  width: 0;
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ==================== PREMIUM STICKY NAV ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 5%;
  background: var(--bg-navbar);
  width: 100%;
  max-width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-main);
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: filter 0.4s ease;
}

@media (max-width: 576px) {
  .logo-img {
    height: 30px;
  }
}

[data-theme="dark"] .logo-img {
  filter: invert(1) brightness(2);
}

/* Hide old text logo elements */
.logo-symbol {
  display: none;
}

.logo span span {
  display: none;
}

.logo>span {
  display: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--text-main);
}

.nav-link.active::after {
  width: 20px;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle Button */
.theme-toggle {
  width: 38px;
  height: 38px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

.theme-toggle:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(37, 99, 235, 0.05);
}

/* Mobile Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 14px 11px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

.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 Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 380px);
  height: 100dvh;
  background: var(--bg-secondary);
  z-index: 1001;
  padding: 5.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

@media (min-width: 576px) {
  .mobile-nav {
    width: min(80vw, 400px);
    padding: 6rem 2rem 2rem;
  }
}

.mobile-nav.open {
  right: 0;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav Close Button */
.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* Body scroll lock when mobile nav is open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
  padding: 0.7rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-sm);
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 576px) {
  .mobile-nav-link {
    font-size: 1.35rem;
  }
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--accent-color);
}

/* ==================== DROPDOWN MENU SYSTEM ==================== */

/* Parent item styling */
.nav-links li {
  position: relative;
}

.has-dropdown>a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Chevron indicator icon */
.chevron-icon {
  margin-left: 0.25rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
  opacity: 0.7;
}

.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
  color: var(--accent-color);
  opacity: 1;
}

/* Dropdown list container */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  z-index: 1001;
  border-radius: var(--radius-sm);
  /* Sharp edges 0px per PDR */
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown list item style */
.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.25s ease;
  text-align: left;
  border-bottom: 1px solid rgba(10, 35, 66, 0.02);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  color: var(--accent-color);
  background: rgba(37, 99, 235, 0.04);
  padding-left: 1.75rem;
  /* Indent on hover */
}

/* Double column layout (Mega-menu style for programs) */
.dropdown-double {
  min-width: 440px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
  gap: 0.25rem;
}

.dropdown-double a {
  border-bottom: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

/* ==================== MOBILE DROPDOWN ACCORDIONS ==================== */
.mobile-has-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid rgba(10, 35, 66, 0.03);
}

.mobile-dropdown-toggle {
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-has-dropdown.open .mobile-dropdown-toggle svg {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.mobile-dropdown-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-left: 0.75rem;
  background: rgba(10, 35, 66, 0.02);
  border-left: 2px solid var(--border-color);
  margin-left: 0.5rem;
}

.mobile-has-dropdown.open .mobile-dropdown-menu {
  max-height: 450px;
  /* Expandable height limit */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mobile-subnav-link {
  display: block;
  padding: 0.6rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  border-radius: var(--radius-sm);
  min-height: 40px;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-subnav-link:hover,
.mobile-subnav-link:active {
  color: var(--accent-color);
}

/* ==================== ALTERNATE MOBILE NAV (our-story, join pages) ==================== */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 14px 11px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

.mobile-menu-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

.mobile-nav-header .logo {
  font-size: 1.2rem;
}

.mobile-nav-header .logo-img {
  height: 28px;
}

.mobile-nav-has-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-nav-has-dropdown.open .mobile-nav-dropdown-toggle svg {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.mobile-nav-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-left: 0.75rem;
  background: rgba(10, 35, 66, 0.02);
  border-left: 2px solid var(--border-color);
  margin-left: 0.5rem;
}

.mobile-nav-has-dropdown.open .mobile-nav-submenu {
  max-height: 450px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(135deg, #0A2342 0%, #06172F 50%, #030b18 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(6, 23, 47, 0.75) 0%,
      rgba(6, 23, 47, 0.85) 50%,
      rgba(6, 23, 47, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Dot grid overlay on hero */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 48px 48px;
  z-index: 2;
  pointer-events: none;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  filter: saturate(0.8) contrast(1.05) brightness(0.9);
  transition: opacity 1.2s ease-in-out;
}

.hero-bg-image.active {
  opacity: 0.6;
}

.hero-container-layout {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 5rem);
  padding-top: 6rem;
  padding-bottom: 7rem;
  /* Reduced space for tighter layout */
}

.hero-text-content {
  flex: 1;
  max-width: 750px;
  text-align: left;
}

.hero-logo-display {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 560px;
}

.hero-emblem {
  width: 100%;
  max-width: 475px;
  height: auto;
  margin-top: -2.5rem;
  /* Shifting up for perfect alignment */
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 992px) {
  .hero-container-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-text-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-logo-display {
    display: none;
  }
}

.hero-text-content .heading-xl {
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.hero-text-content .hero-subtitle {
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
  max-width: 650px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Segmented CTAs - Robert Half Style */
.hero-cta-segments {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.cta-segment {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.segment-label-small {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  display: block;
}

.segment-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.segment-divider-line {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
  margin: 0.25rem 0;
}

/* Button Outline White Specific for Hero */
.btn-white.btn-outline-only {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

.btn-white.btn-outline-only:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px) scale(1.02);
}

/* Overlapping Bottom Search Console */
.hero-search-console {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 1140px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(10, 35, 66, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  padding: 0.75rem 0.75rem 0.75rem 1.75rem;
  z-index: 100;
  border-radius: var(--radius-xl);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

[data-theme="dark"] .hero-search-console {
  background: rgba(10, 35, 66, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-search-console:focus-within {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  position: relative;
}

.search-icon-wrapper {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.7;
}

.search-input-field {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.85rem 0;
  outline: none;
}

.search-input-field::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Custom Location Select Dropdown */
.search-select-field {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.85rem 2rem 0.85rem 0;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Chevron Down Icon */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.1rem;
}

.search-divider-vertical {
  width: 1px;
  height: 32px;
  background: var(--border-color);
  margin: 0 1.75rem;
  align-self: center;
  opacity: 0.8;
}

/* Search Submit Button */
.btn-search-go {
  background: var(--gradient-primary);
  color: #FFFFFF;
  padding: 1rem 2.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  /* Sharp edges 0px */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.btn-search-go:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-search-go:active {
  transform: translateY(0);
}

/* Autocomplete suggestions dropdown box */
.search-suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  margin-top: 0.6rem;
  max-height: 250px;
  overflow-y: auto;
  border-radius: var(--radius-sm);
}

.suggestion-item {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

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

.suggestion-item:hover {
  background-color: rgba(37, 99, 235, 0.05);
  color: var(--accent-color);
}

.suggestion-category {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563EB;
}

.suggestion-title {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.9rem;
}

.suggestion-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Card highlight glow effect when matched */
@keyframes highlight-pulse-glow {
  0% {
    box-shadow: 0 0 0 0px rgba(37, 99, 235, 0.4);
    border-color: var(--accent-color);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(37, 99, 235, 0.2);
    border-color: var(--accent-color);
  }

  100% {
    box-shadow: 0 0 0 0px rgba(37, 99, 235, 0);
  }
}

.highlight-match {
  animation: highlight-pulse-glow 1.8s ease-in-out 2;
  border-color: var(--accent-color) !important;
  transform: translateY(-6px) scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: linear-gradient(135deg, #0A2342 0%, #06172F 50%, #030b18 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .hero-container-layout {
    padding-bottom: 4rem;
    /* No overlap on mobile, push down */
  }

  .hero-search-console {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 3.5rem;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
  }

  .search-divider-vertical {
    display: none;
  }

  .search-input-group {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
  }

  .search-select-field {
    padding-right: 2rem;
  }

  .btn-search-go {
    width: 100%;
    padding: 1.1rem;
    text-align: center;
  }

  .search-suggestions-dropdown {
    left: 0;
    right: 0;
  }
}

@media (max-width: 768px) {
  .hero-cta-segments {
    flex-direction: column;
    gap: 1.75rem;
  }

  .segment-divider-line {
    width: 100%;
    height: 1px;
    margin: 0.25rem 0;
  }
}



/* ==================== OUR STORY & TIMELINE ==================== */
.story-header {
  text-align: left;
  max-width: 700px;
  margin-bottom: 4rem;
}

.story-values-grid {
  margin-bottom: 5rem;
}

/* Founding Story Block */
.founding-story-block {
  margin-bottom: 5rem;
  padding: 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-color);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .founding-story-block {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .founding-story-video {
    height: 100%;
    aspect-ratio: auto;
  }
}

.founding-story-content {
  position: relative;
  z-index: 1;
}

.founding-story-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #000;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founding-story-video iframe {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0 !important;
  /* Strict sharp corners as requested */
}

.founding-story-text {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-main);
  font-weight: 400;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

/* ==================== FOUNDER MESSAGE SECTION ==================== */
.founding-message-section {
  position: relative;
  background: #ffffff;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
}

[data-theme="dark"] .founding-message-section {
  background: #06172F;
}

/* Section Header */
.fm-header {
  text-align: center;
  margin-bottom: 4rem;
}

.fm-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.fm-label-line {
  width: 32px;
  height: 1px;
  background: var(--accent-color);
  opacity: 0.4;
}

.fm-label-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-color);
}

.fm-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.fm-title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Editorial Block - Two Column */
.fm-editorial {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

@media (max-width: 860px) {
  .fm-editorial {
    grid-template-columns: 1fr;
  }
}

/* Portrait Column */
.fm-portrait-col {
  position: relative;
  background: #0b1a32;
  display: flex;
  flex-direction: column;
}

.fm-portrait-frame {
  width: 100%;
  aspect-ratio: 0.82;
  overflow: hidden;
  position: relative;
}

.fm-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.fm-editorial:hover .fm-portrait-img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.03);
}

.fm-portrait-caption {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fm-caption-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

/* Quote Column */
.fm-quote-col {
  padding: 3rem 3rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media (max-width: 860px) {
  .fm-quote-col {
    padding: 2.5rem 2rem;
  }
}

.fm-quote-mark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.2;
  margin-bottom: 0.25rem;
  user-select: none;
}

.fm-blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 500;
  line-height: 1.9;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  font-style: normal;
}

/* Attribution Bar */
.fm-attribution {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
}

.fm-attribution-line {
  width: 3px;
  background: var(--accent-color);
  flex-shrink: 0;
}

.fm-attribution-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fm-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.fm-author-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-color);
  letter-spacing: 0.02em;
}

/* Stats Bar */
.fm-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 3.5rem auto 0 auto;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

.fm-stat-item {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
}

.fm-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-color);
  flex-shrink: 0;
}

.fm-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.fm-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Timeline */
.timeline-wrapper {
  position: relative;
  max-width: 100%;
  margin-top: 3rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), var(--accent-emerald));
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
}

.timeline-dot {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--bg-primary);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  z-index: 5;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-color);
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15);
}

.timeline-year {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.15);
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}



/* ==================== VISION & CORE MANDATE SECTION ==================== */
.vision-section {
  position: relative;
  background: radial-gradient(ellipse at 20% 30%, #0A2342 0%, #06172F 70%, #030b18 100%);
  color: #ffffff;
  padding: clamp(7rem, 14vw, 11rem) 0;
  overflow: hidden;
}

/* Ambient decorative elements */
.vision-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.vision-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(37, 99, 235, 0.08);
  top: -15%;
  right: -10%;
  animation: float-orb 25s ease-in-out infinite;
}

.vision-orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(16, 185, 129, 0.05);
  bottom: -10%;
  left: -8%;
  animation: float-orb 20s ease-in-out infinite reverse;
}

.vision-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* Section Header */
.vision-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 5rem;
}

.vision-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vision-label-line {
  width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--luxury-blue));
}

.vision-label-line:last-child {
  background: linear-gradient(90deg, var(--luxury-blue), transparent);
}

.vision-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4F9CF9;
}

.vision-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.vision-title-accent {
  color: #4F9CF9;
}


.vision-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* Mission & Vision New Layout */
.vision-mv-new {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
  width: 100vw;
  margin-left: -5vw;
  padding: 0 5vw;
}

@media (max-width: 991px) {
  .vision-mv-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .vision-mv-new {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
}

/* Mission & Vision Cards Stack */
.vision-mv-cards {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.vision-mv-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(12px);
  padding: 2.25rem 2.5rem !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.vision-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vision-mv-card:hover {
  border-color: rgba(79, 156, 249, 0.35) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(79, 156, 249, 0.12) !important;
}

.vision-mv-card:hover::before {
  opacity: 1;
}

.vision-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.vision-card-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(79, 156, 249, 0.1);
  border: 1px solid rgba(79, 156, 249, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4F9CF9;
  transition: all 0.4s ease;
}

.vision-mv-card:hover .vision-card-icon-wrapper {
  background: rgba(79, 156, 249, 0.2);
  border-color: #4F9CF9;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(79, 156, 249, 0.3);
}

.vision-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.vision-mv-overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #4F9CF9;
  display: inline-block;
  margin: 0;
}

.vision-mv-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  margin: 0;
}

.vision-mv-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.vision-mv-image-outer-frame {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-mv-image-outer-frame::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(79, 156, 249, 0.2);
  z-index: 1;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-mv-image-col:hover .vision-mv-image-outer-frame::after {
  bottom: -8px;
  right: -8px;
  border-color: rgba(79, 156, 249, 0.45);
}

@media (max-width: 768px) {
  .vision-mv-image-outer-frame {
    margin-right: 15px;
    margin-bottom: 15px;
  }
}

.vision-mv-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #06172F;
}

.vision-mv-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-mv-image-col:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.03);
}

.vision-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 23, 47, 0.4) 0%, rgba(6, 23, 47, 0) 50%);
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.6s ease;
}

.vision-mv-image-col:hover .vision-img-overlay {
  opacity: 0.3;
}

/* Pulsing Floating Badge */
.vision-img-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 4;
  background: rgba(6, 23, 47, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  pointer-events: none;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: badge-pulse 2s infinite ease-in-out;
}

.badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
}

@keyframes badge-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    opacity: 0.5;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Core Mandate Section */
.vision-mandate-section {
  position: relative;
  z-index: 2;
  margin-bottom: 5rem;
}

.vision-mandate-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.vision-mandate-overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4F9CF9;
  display: block;
  margin-bottom: 0.75rem;
}

.vision-mandate-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.vision-mandate-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.vision-mandate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .vision-mandate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vision-mandate-card {
  position: relative;
  background: rgba(8, 31, 62, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.vision-mandate-card:hover {
  border-color: rgba(79, 156, 249, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Card Image */
.vision-mandate-card-image {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

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

.vision-mandate-card:hover .vision-mandate-card-image img {
  transform: scale(1.05);
}

.vision-mandate-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 23, 47, 0) 40%, rgba(6, 23, 47, 0.9) 100%);
  pointer-events: none;
}

/* Card Content */
.vision-mandate-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vision-mandate-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 156, 249, 0.1);
  border: 1px solid rgba(79, 156, 249, 0.15);
  margin-bottom: 0.75rem;
  color: #4F9CF9;
  transition: all 0.4s ease;
}

.vision-mandate-card:hover .vision-mandate-card-icon {
  background: rgba(79, 156, 249, 0.2);
  transform: scale(1.05);
}

.vision-mandate-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.vision-mandate-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* Core Values Section */
.vision-values-section {
  position: relative;
  z-index: 2;
}

.vision-values-header {
  text-align: center;
  margin-bottom: 3rem;
}

.vision-values-overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #10B981;
  display: block;
  margin-bottom: 0.75rem;
}

.vision-values-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.vision-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .vision-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Enhanced value cards inside the values grid */
.vision-values-grid .glass-panel,
.vision-value-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(8px);
  padding: 1.75rem 2rem !important;
}

.vision-values-grid .glass-panel:hover,
.vision-value-card:hover {
  border-color: rgba(79, 156, 249, 0.2) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.vision-value-card h4 {
  color: #ffffff !important;
  font-size: 1.05rem !important;
}

.vision-value-card p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .vision-mandate-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vision-mandate-card-image {
    height: 140px;
  }

  .vision-mandate-card-content {
    padding: 1rem;
  }

  .vision-mandate-card-title {
    font-size: 1rem;
  }

  .vision-mandate-card-text {
    font-size: 0.85rem;
  }
}

/* ==================== UNIQUENESS SECTION ==================== */
.uniqueness-section {
  position: relative;
  background: linear-gradient(180deg, #030B18 0%, #06172F 50%, #030B18 100%);
  color: #ffffff;
  padding: 8rem 0;
  overflow: hidden;
}

.uq-constellation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* Subtle grid background */
.uq-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 156, 249, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 156, 249, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* --- Section Header --- */
.uq-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.uq-label-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.uq-label-line {
  width: 40px;
  height: 1px;
  background: rgba(79, 156, 249, 0.3);
}

.uq-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4F9CF9;
}

.uq-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.uq-title-accent {
  color: #4F9CF9;
}

.uq-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Editorial Block --- */
.uq-editorial-block {
  position: relative;
  z-index: 1;
  margin-bottom: 6rem;
}

.uq-editorial-block:last-child {
  margin-bottom: 0;
}

.uq-block-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 800;
  color: rgba(79, 156, 249, 0.06);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  user-select: none;
}

.uq-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.uq-block-grid--reversed {
  direction: rtl;
}

.uq-block-grid--reversed>* {
  direction: ltr;
}

/* --- Block Content --- */
.uq-block-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.uq-block-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.uq-block-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.uq-block-text:last-of-type {
  margin-bottom: 1.75rem;
}

.uq-block-text strong {
  color: #ffffff;
  font-weight: 600;
}

.uq-block-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.uq-method-chip {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 1.1rem;
  transition: all 0.3s ease;
}

.uq-method-chip:hover {
  border-color: rgba(79, 156, 249, 0.4);
  color: #ffffff;
  background: rgba(79, 156, 249, 0.06);
}

/* --- Image Grid (2x2) --- */
.uq-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.uq-img-cell {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #06172F;
}

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

.uq-img-cell:hover img {
  transform: scale(1.05);
}

/* --- Landscape Image --- */
.uq-landscape-frame {
  width: 100%;
  overflow: hidden;
  background: #06172F;
  border-radius: var(--radius-md);
}

.uq-landscape-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.8) contrast(1.05);
}

.uq-landscape-frame:hover .uq-landscape-img {
  transform: scale(1.03);
  filter: brightness(1) contrast(1);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .uq-block-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .uq-block-grid--reversed {
    direction: ltr;
  }

  .uq-editorial-block {
    margin-bottom: 4rem;
  }
}

@media (max-width: 640px) {
  .uniqueness-section {
    padding: 5rem 0;
  }

  .uq-header {
    margin-bottom: 3rem;
  }

  .uq-block-number {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

/* ==================== NEPAL IMPACT MAP ==================== */
.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .map-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.map-container {
  width: 100%;
  position: relative;
  aspect-ratio: 1.6;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: contain;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

[data-theme="dark"] .map-image-bg {
  opacity: 0.65;
  filter: brightness(0.9) contrast(1.1) saturate(0.8);
}

#nepalMap {
  width: 90%;
  height: 90%;
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.province-path {
  fill: #D91C2A;
  /* Nepal flag red */
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 0.8;
  stroke-linejoin: round;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.province-path:hover,
.province-path.active {
  fill: #E32636;
  /* Slightly brighter red */
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.5;
}

.province-path.active {
  fill: #E32636;
}

/* ==================== SUCCESS STORIES ==================== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin-top: 3rem;
}

.carousel-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 0 0.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex-direction: row;
    align-items: center;
    padding: 3rem;
  }
}

.testimonial-img-wrapper {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(37, 99, 235, 0.15);
}

.testimonial-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex-grow: 1;
}

.quote-icon {
  display: none;
}

.testimonial-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  border-left: 3px solid var(--accent-color);
  padding-left: 1.5rem;
}

.testimonial-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.carousel-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background: var(--border-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--accent-color);
  width: 28px;
  border-radius: var(--radius-full);
}

/* ==================== COORDINATORS SECTION ==================== */
.coord-section {
  position: relative;
  background: linear-gradient(180deg, #030B18 0%, #06172F 50%, #030B18 100%);
  color: #ffffff;
  padding: 7rem 0;
  overflow: hidden;
}

.coord-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 156, 249, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 156, 249, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Header */
.coord-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.coord-label-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.coord-label-line {
  width: 40px;
  height: 1px;
  background: rgba(79, 156, 249, 0.3);
}

.coord-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #4F9CF9;
}

.coord-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.coord-title-accent {
  color: #4F9CF9;
}

.coord-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #8BA3C4;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Leadership Row */
.coord-leadership-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.coord-leader-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(79, 156, 249, 0.08);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.coord-leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 156, 249, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.coord-leader-card:hover {
  border-color: rgba(79, 156, 249, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.coord-leader-card:hover::before {
  opacity: 1;
}

.coord-leader-featured {
  border-color: rgba(79, 156, 249, 0.15);
}

.coord-leader-avatar {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.coord-avatar-initials {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.coord-avatar--blue {
  background: linear-gradient(135deg, #2563EB, #4F9CF9);
}

.coord-avatar--emerald {
  background: linear-gradient(135deg, #059669, #10B981);
}

.coord-avatar--purple {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.coord-avatar--sky {
  background: linear-gradient(135deg, #0284C7, #38BDF8);
}

.coord-avatar--rose {
  background: linear-gradient(135deg, #E11D48, #FB7185);
}

.coord-avatar--amber {
  background: linear-gradient(135deg, #D97706, #FBBF24);
}

.coord-avatar--violet {
  background: linear-gradient(135deg, #7C3AED, #C084FC);
}

.coord-avatar--cyan {
  background: linear-gradient(135deg, #0891B2, #22D3EE);
}

.coord-leader-info {
  position: relative;
  z-index: 1;
}

.coord-leader-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4F9CF9;
  display: block;
  margin-bottom: 0.4rem;
}

.coord-leader-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.coord-leader-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.coord-leader-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4F9CF9, #10B981);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.coord-leader-card:hover .coord-leader-accent {
  transform: scaleX(1);
}

/* Core Coordinators Grid */
.coord-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.coord-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(79, 156, 249, 0.06);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.coord-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #4F9CF9;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.coord-card:hover {
  border-color: rgba(79, 156, 249, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.coord-card:hover::after {
  height: 100%;
}

.coord-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.coord-card-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coord-card-avatar .coord-avatar-initials {
  font-size: 0.95rem;
}

.coord-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.25rem 0.6rem;
}

.coord-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.coord-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #4F9CF9;
  display: block;
  margin-bottom: 0.65rem;
}

.coord-card-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.coord-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4F9CF9, #10B981);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.coord-card:hover .coord-card-line {
  transform: scaleX(1);
}

/* Responsive */
@media (max-width: 1024px) {
  .coord-leadership-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .coord-core-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .coord-section {
    padding: 5rem 0;
  }

  .coord-header {
    margin-bottom: 3rem;
  }

  .coord-core-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .coord-title {
    font-size: 1.8rem;
  }

  .coord-leader-card {
    padding: 1.5rem;
  }

  .coord-card {
    padding: 1.5rem;
  }
}

/* ==================== PARTNERS SECTION ==================== */
.partners-section {
  position: relative;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 4rem;
}

.partners-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.partners-label-line {
  width: 40px;
  height: 1px;
  background: rgba(79, 156, 249, 0.3);
}

.partners-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4F9CF9;
}

.partners-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.partners-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Partners Logo Grid */
.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  aspect-ratio: 16 / 10;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.partner-logo-cell:hover {
  border-color: rgba(79, 156, 249, 0.25);
  background: rgba(79, 156, 249, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.partner-logo-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.75) grayscale(20%);
  opacity: 0.65;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-cell:hover img {
  filter: brightness(1) grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Partners Responsive */
@media (max-width: 1024px) {
  .partners-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .partners-section {
    padding: 3rem 0;
  }

  .partners-title {
    font-size: 1.5rem;
  }

  .partners-subtitle {
    font-size: 0.9rem;
  }

  .partners-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .partner-logo-cell {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 400px) {
  .partners-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .partner-logo-cell {
    padding: 0.75rem 1rem;
  }
}

/* ==================== BLOG & RESOURCES ==================== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .blog-layout {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
  }
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-post-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

@media (min-width: 576px) {
  .blog-post-card {
    grid-template-columns: 200px 1fr;
  }
}

.blog-post-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}

.blog-post-img {
  width: 100%;
  height: 160px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-img img {
  transform: scale(1.05);
}

.blog-post-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-post-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
}

.blog-post-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.blog-post-card:hover h3 {
  color: var(--accent-color);
}

.blog-post-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-read-more {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resource-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.resource-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.resource-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resource-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--pure-white);
  background: var(--gradient-primary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.resource-download-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.resource-download-btn:hover {
  gap: 0.75rem;
}

.resource-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.resource-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== VOLUNTEER SECTION ==================== */
.volunteer-positions-grid {
  margin-top: 3rem;
}

.position-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.position-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.15);
}

.position-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  flex-wrap: wrap;
}

.meta-tag {
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
}

.meta-tag-highlight {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(37, 99, 235, 0.05);
}

.position-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.position-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.7;
}

/* ==================== DONATION SECTION ==================== */
.donate-bg-girl {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: luminosity;
  filter: grayscale(100%) contrast(1.15) brightness(0.85);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0) 100%);
}

[data-theme="dark"] .donate-bg-girl {
  opacity: 0.08;
}

.donation-grid {
  margin-top: 3rem;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.donation-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.donation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.donation-card.featured {
  border-color: var(--accent-color);
}

.donation-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.3rem 3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: rotate(45deg);
}

.donation-tier-header {
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.donation-amount-wrapper {
  margin: 1.5rem 0;
}

.donation-currency {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
  color: var(--text-muted);
}

.donation-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.donation-period {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.donation-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.donation-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.donation-features svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* ==================== CONTACT SECTION ==================== */
#contact {
  background-color: var(--bg-primary);
}

.contact-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

#contact .container {
  position: relative;
  z-index: 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .form-group-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  color: var(--text-main);
  font-size: 0.88rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ==================== PREMIUM FOOTER ==================== */
.footer {
  background: var(--primary-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer .logo-img {
  filter: none;
}

.footer-col h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-accent-green);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-links a:hover {
  color: var(--color-accent-green);
  padding-left: 6px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn-footer {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-btn-footer:hover {
  background: var(--color-accent-green);
  border-color: var(--color-accent-green);
  color: var(--color-deep-navy);
  transform: translateY(-2px);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 0;
  /* Strict 0px radius per PDR */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 0;
  color: #FFFFFF;
  padding: 0.85rem 1rem;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn {
  border-radius: 0;
  padding: 0 1.25rem;
  background: var(--color-luxury-blue);
  color: white;
  border: none;
  transition: background 0.3s ease;
}

.newsletter-form .btn:hover {
  background: var(--color-primary-navy);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

.footer-bottom-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-accent-green);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent-green) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top-btn:hover {
  color: #FFFFFF !important;
}

/* ==================== MODALS ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 23, 47, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 620px;
  width: 100%;
  padding: 3rem;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
}

.modal-close-btn:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.modal-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
}

.modal-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

/* ==================== CONFETTI CANVAS ==================== */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 100000;
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

/* ==================== SECTION BACKGROUNDS ==================== */
.section-alt {
  background: var(--bg-secondary);
}

/* Dot pattern section backgrounds */
.section.dot-pattern {
  position: relative;
}

/* ==================== SHIMMER EFFECT ==================== */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 30%, var(--accent-emerald) 50%, var(--accent-light) 70%, var(--accent-color) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: linear-gradient(135deg, #0A2342 0%, #06172F 50%, #030b18 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .hero-content .heading-xl {
    font-size: 2.2rem;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-stat-float {
    display: none;
  }

  .metric-number {
    font-size: 2.5rem;
  }

  .donation-val {
    font-size: 2.8rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-img-wrapper {
    width: 100px;
    height: 100px;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .container {
    width: 92%;
  }

  .founding-story-block {
    padding: 2rem;
  }

  .leadership-quote {
    padding: 2rem;
  }

  .goals-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .btn-lg {
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
  }
}

/* ==================== INFINITE MARQUEE BANNER ==================== */
.marquee-banner {
  width: 100%;
  overflow: hidden;
  background: var(--primary-navy);
  padding: 1.15rem 0;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);

  /* Modern slanted style spanning full screen width */
  transform: rotate(-3.5deg) scale(1.08);
  transform-origin: center;
  margin: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .marquee-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  /* Smoothly fade text out at the screen edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pure-white);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 3.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.3s ease;
}

[data-theme="dark"] .marquee-item {
  color: var(--text-main);
  border-right: 1px solid var(--border-color);
}

.marquee-item:hover {
  color: var(--accent-light);
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 991px) {
  .marquee-banner {
    padding: 0.95rem 0;
    margin: 3.5rem 0;
    /* Reduce angle slightly on small viewports */
    transform: rotate(-2deg) scale(1.05);
  }

  .marquee-item {
    font-size: 0.85rem;
    padding: 0 2.5rem;
  }
}

/* ============================================================
   WHY WE EXIST SECTION - Premium Redesign
   ============================================================ */

/* ============================================================
   BRAND BANNER (UNICEF STYLE) - Premium Callout
   ============================================================ */

.wwe-brand-banner {
  position: relative;
  width: 100%;
  /* Sleek pure black background for a modern, ultra-enhanced premium look */
  background-color: #000000;
  padding: 6.5rem 0 6rem;
  overflow: hidden;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wwe-brand-banner::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(210, 73, 0, 0.28) 0%, transparent 70%);
  top: -150px;
  right: -50px;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  z-index: 1;
}

.wwe-brand-banner::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(79, 156, 249, 0.16) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  z-index: 1;
}

.wwe-brand-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 40%, transparent 100%);
}

.unicef-banner-content {
  max-width: 880px;
  text-align: left;
  position: relative;
  z-index: 2;
  margin-left: 2.5rem; /* Inward alignment offset matching reference */
}

.unicef-banner-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF !important;
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.02em;
}

.unicef-banner-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92) !important;
  margin: 0 0 2.25rem 0;
  max-width: 820px;
}

.unicef-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.unicef-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 2.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.unicef-banner-btn-primary {
  background-color: #FFFFFF;
  color: #0A2342 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.unicef-banner-btn-primary:hover {
  background-color: #F8FBFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(210, 73, 0, 0.22), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.unicef-banner-btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.unicef-banner-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.unicef-banner-btn:active {
  transform: translateY(0);
}

/* Responsive Brand Banner Settings */
@media (max-width: 991px) {
  .unicef-banner-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .wwe-brand-banner {
    padding: 4rem 0;
  }
  .unicef-banner-title {
    font-size: 1.85rem;
  }
  .unicef-banner-text {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
  .unicef-banner-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
  }
  .unicef-banner-buttons {
    gap: 0.75rem;
  }
}

/* --- Section Container --- */
.wwe-section {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
  background: var(--bg-primary);
}

/* --- Ambient Orbs --- */
.wwe-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.wwe-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}

.wwe-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 70%);
  bottom: -80px;
  right: -100px;
}

[data-theme="dark"] .wwe-orb-1 {
  background: radial-gradient(circle, rgba(79, 156, 249, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .wwe-orb-2 {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
}

/* --- Subtle Grid Lines Background --- */
.wwe-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-color) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
}

/* --- Section Header --- */
.wwe-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.wwe-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.wwe-label-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
}

.wwe-label-line:last-child {
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.wwe-label-text {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color);
}

.wwe-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.wwe-title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wwe-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* --- Stats Bar --- */
.wwe-stats-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  background: #F8FAFC; /* Light gray background matching reference design */
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 4.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .wwe-stats-bar {
  background: var(--bg-card);
}

.wwe-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 2rem;
}

.wwe-stat-icon-wrapper {
  color: var(--text-main);
  margin-bottom: 0.85rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwe-stat-number {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.wwe-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

.wwe-stat-divider {
  width: 1px;
  height: 90px;
  background-color: var(--border-color);
  align-self: center;
  flex-shrink: 0;
}

/* --- Problem-Solution Grid --- */
.wwe-ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 4.5rem;
}

.wwe-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Column Labels */
.wwe-column-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
}

.wwe-problem-label {
  color: #DC2626;
  border-bottom: 2px solid rgba(220, 38, 38, 0.2);
}

.wwe-solution-label {
  color: var(--accent-emerald);
  border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

[data-theme="dark"] .wwe-problem-label {
  color: #F87171;
  border-bottom-color: rgba(248, 113, 113, 0.2);
}

[data-theme="dark"] .wwe-solution-label {
  color: #34D399;
  border-bottom-color: rgba(52, 211, 153, 0.2);
}

/* --- Cards --- */
.wwe-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.wwe-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transition: opacity 0.4s ease;
}

.wwe-problem-card::after {
  background: linear-gradient(180deg, #DC2626, #F87171);
}

.wwe-solution-card::after {
  background: linear-gradient(180deg, var(--accent-emerald), #6EE7B7);
}

.wwe-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.12);
}

.wwe-problem-card:hover {
  border-color: rgba(220, 38, 38, 0.15);
}

.wwe-solution-card:hover {
  border-color: rgba(16, 185, 129, 0.15);
}

/* Card Icon */
.wwe-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.wwe-icon-problem {
  background: rgba(220, 38, 38, 0.08);
  color: #DC2626;
}

.wwe-icon-solution {
  background: rgba(16, 185, 129, 0.08);
  color: var(--accent-emerald);
}

[data-theme="dark"] .wwe-icon-problem {
  background: rgba(248, 113, 113, 0.1);
  color: #F87171;
}

[data-theme="dark"] .wwe-icon-solution {
  background: rgba(52, 211, 153, 0.1);
  color: #34D399;
}

/* Card Text */
.wwe-card-body {
  flex: 1;
}

.wwe-card-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.wwe-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --- Center Divider --- */
.wwe-center-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 0.5rem 0;
}

.wwe-divider-line {
  width: 1px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(180deg, transparent, var(--accent-color), transparent);
  opacity: 0.3;
}

.wwe-divider-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--accent-color);
  flex-shrink: 0;
  margin: 0.75rem 0;
}

/* --- CTA Banner --- */
.wwe-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 3.5rem;
  background: var(--gradient-hero);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.wwe-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(79, 156, 249, 0.15), transparent),
    radial-gradient(ellipse 40% 70% at 100% 50%, rgba(16, 185, 129, 0.1), transparent);
  pointer-events: none;
}

.wwe-cta-content {
  position: relative;
  z-index: 1;
}

.wwe-cta-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.wwe-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.wwe-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #FFFFFF;
  color: var(--primary-navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwe-cta-btn:hover {
  background: var(--accent-light);
  color: #FFFFFF;
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(79, 156, 249, 0.3);
}

.wwe-cta-btn svg {
  transition: transform 0.3s ease;
}

.wwe-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   REDESIGNED CHALLENGE & RESPONSE - Premium Interactive Layout
   ============================================================ */

.wwe-challenge-response-wrapper {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.wwe-pair-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 2.5rem;
}

.wwe-pair-row:last-child {
  margin-bottom: 0;
}

/* Card General Style */
.wwe-redesigned-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.wwe-redesigned-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0.9;
  z-index: 3;
}

.wwe-card-problem::after {
  background: linear-gradient(90deg, #EF4444, #F87171);
}

.wwe-card-solution::after {
  background: linear-gradient(90deg, var(--accent-emerald), #34D399);
}

/* Card Image Section */
.wwe-card-media {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.wwe-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwe-card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 35, 66, 0.1), rgba(10, 35, 66, 0.55));
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.75rem;
}

.wwe-card-media-overlay .wwe-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  z-index: 4;
}

/* Badges */
.wwe-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.9rem;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wwe-badge-problem {
  background: rgba(239, 68, 68, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wwe-badge-solution {
  background: rgba(16, 185, 129, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card Body Section */
.wwe-card-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wwe-card-header-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.wwe-icon-wrapper {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.wwe-card-problem .wwe-icon-wrapper {
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
}

.wwe-card-solution .wwe-icon-wrapper {
  background: rgba(16, 185, 129, 0.08);
  color: var(--accent-emerald);
}

[data-theme="dark"] .wwe-card-problem .wwe-icon-wrapper {
  background: rgba(239, 68, 68, 0.15);
}

[data-theme="dark"] .wwe-card-solution .wwe-icon-wrapper {
  background: rgba(16, 185, 129, 0.15);
}

.wwe-card-title-group {
  display: flex;
  flex-direction: column;
}

.wwe-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.1rem;
}

.wwe-card-problem .wwe-card-meta {
  color: #EF4444;
}

.wwe-card-solution .wwe-card-meta {
  color: var(--accent-emerald);
}

.wwe-card-info-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0;
}

.wwe-card-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Connector Section */
.wwe-pair-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.wwe-connector-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.25) 0%, rgba(16, 185, 129, 0.25) 100%);
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.4s ease;
}

.wwe-connector-node {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwe-connector-node svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Micro-interactions & Hovers */
.wwe-pair-row:hover .wwe-connector-line {
  background: linear-gradient(90deg, #EF4444 0%, var(--accent-emerald) 100%);
  height: 3px;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
}

.wwe-pair-row:hover .wwe-connector-node {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

/* Individual Card Hover */
.wwe-redesigned-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.wwe-card-problem:hover {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.08);
}

.wwe-card-solution:hover {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08);
}

.wwe-redesigned-card:hover .wwe-card-media img {
  transform: scale(1.06);
}

.wwe-redesigned-card:hover .wwe-icon-wrapper {
  transform: scale(1.1);
}

.wwe-card-problem:hover .wwe-icon-wrapper {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
}

.wwe-card-solution:hover .wwe-icon-wrapper {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .wwe-pair-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 2rem;
  }

  .wwe-pair-row:last-child {
    margin-bottom: 0;
  }

  .wwe-pair-connector {
    height: 40px;
    margin: 0;
  }

  .wwe-connector-line {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.25) 0%, rgba(16, 185, 129, 0.25) 100%);
  }

  .wwe-pair-row:hover .wwe-connector-line {
    background: linear-gradient(180deg, #EF4444 0%, var(--accent-emerald) 100%);
    width: 3px;
    height: 100%;
    box-shadow: none;
  }

  .wwe-connector-node {
    width: 32px;
    height: 32px;
  }

  .wwe-connector-node svg {
    transform: rotate(90deg);
  }

  .wwe-pair-row:hover .wwe-connector-node {
    transform: scale(1.08) rotate(90deg);
  }

  .wwe-pair-row:hover .wwe-connector-node svg {
    transform: rotate(90deg) translateY(2px);
  }
}

@media (max-width: 640px) {
  .wwe-challenge-response-wrapper {
    margin-top: 2.5rem;
  }

  .wwe-card-media {
    height: 140px;
  }

  .wwe-card-info {
    padding: 1rem 1.25rem;
  }

  .wwe-card-info-title {
    font-size: 1rem;
  }

  .wwe-icon-wrapper {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .wwe-icon-wrapper svg {
    width: 16px;
    height: 16px;
  }
}

/* ==================== WHY WE EXIST - RESPONSIVE ==================== */

@media (max-width: 991px) {
  .wwe-section {
    padding: 5rem 0 4rem;
  }

  .wwe-header {
    margin-bottom: 3rem;
  }

  .wwe-stats-bar {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
    margin-bottom: 3rem;
  }

  .wwe-stat-divider {
    width: 100px;
    height: 1px;
    background-color: var(--border-color);
  }

  .wwe-stat-item {
    padding: 0;
  }

  .wwe-ps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .wwe-center-divider {
    flex-direction: row;
    padding: 0.5rem 0;
  }

  .wwe-divider-line {
    width: auto;
    height: 1px;
    min-height: unset;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  }

  .wwe-divider-icon {
    margin: 0 0.75rem;
  }

  .wwe-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .wwe-section {
    padding: 3.5rem 0 3rem;
  }

  .wwe-title {
    font-size: 1.75rem;
  }

  .wwe-subtitle {
    font-size: 0.95rem;
  }

  .wwe-stat-number {
    font-size: 2rem;
  }

  .wwe-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }

  .wwe-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .wwe-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .wwe-label-line {
    width: 28px;
  }

  .wwe-cta-banner {
    padding: 2rem 1.5rem;
  }

  .wwe-cta-title {
    font-size: 1.2rem;
  }

  .wwe-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   FOUNDING STORY & TIMELINE SECTION - Premium Redesign
   ============================================================ */

.fs-section {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.fs-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.fs-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  top: -80px;
  right: -100px;
}

.fs-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.10) 0%, transparent 70%);
  bottom: -120px;
  left: -150px;
}

[data-theme="dark"] .fs-orb-1 {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
}

[data-theme="dark"] .fs-orb-2 {
  background: radial-gradient(circle, rgba(79, 156, 249, 0.12) 0%, transparent 70%);
}

.fs-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-color) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
}

/* --- Section Header --- */
.fs-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
  position: relative;
  z-index: 1;
}

.fs-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.fs-label-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
}

.fs-label-line:last-child {
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.fs-label-text {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color);
}

.fs-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.fs-title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fs-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* --- Founding Story Block Layout --- */
.fs-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 6rem;
}

.fs-story-content-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fs-story-content-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), var(--accent-emerald));
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.fs-story-content-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.18);
}

.fs-quote-icon-container {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 156, 249, 0.12) 0%, rgba(52, 211, 153, 0.12) 100%);
  border: 1px solid rgba(79, 156, 249, 0.15);
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.fs-story-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-main);
  margin: 0;
}

.fs-story-text p {
  margin: 0 0 1.25rem 0;
  line-height: 1.85;
}

.fs-story-text p:last-child {
  margin-bottom: 0;
}

.fs-story-text strong {
  font-weight: 700;
  color: var(--text-main);
}

/* --- Video Section --- */
.fs-story-video-container {
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fs-story-video-container:hover {
  transform: translateY(-6px);
}

.fs-video-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(79, 156, 249, 0.22) 0%, rgba(52, 211, 153, 0.12) 70%);
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fs-story-video-container:hover .fs-video-glow {
  opacity: 0.95;
  transform: scale(1.06);
}

.fs-story-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: #000000;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fs-story-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --- Timeline Heading --- */
.fs-timeline-heading {
  text-align: center;
  margin: 2rem auto 4.5rem;
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.fs-timeline-label {
  display: inline-flex;
  padding: 0.5rem 1.25rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-bottom: 1.5rem;
}

.fs-timeline-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-emerald);
}

.fs-timeline-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.fs-timeline-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Timeline Styling Overrides --- */
.timeline-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem 0;
  z-index: 1;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-emerald) 60%, var(--accent-light) 100%);
  border-radius: var(--radius-full);
  opacity: 0.85;
}

.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  padding-left: 3.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fsFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fsFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 12px;
  width: 21px;
  height: 21px;
  background: var(--bg-secondary);
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 0 4px var(--bg-secondary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:nth-child(even) .timeline-dot {
  border-color: var(--accent-emerald);
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-color);
  transform: scale(1.25);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15);
}

.timeline-item:nth-child(even):hover .timeline-dot {
  background: var(--accent-emerald);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15);
}

.timeline-year {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.timeline-item:nth-child(even) .timeline-year {
  color: var(--accent-emerald);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.timeline-item:nth-child(even) .timeline-content::before {
  background: linear-gradient(90deg, var(--accent-emerald), transparent);
}

.timeline-item:hover .timeline-content {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.15);
}

.timeline-item:nth-child(even):hover .timeline-content {
  border-color: rgba(16, 185, 129, 0.15);
}

.timeline-item:hover .timeline-content::before {
  opacity: 1;
}

.timeline-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.timeline-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ==================== FOUNDING STORY RESPONSIVE ==================== */

@media (max-width: 991px) {
  .fs-section {
    padding: 5rem 0 4rem;
  }

  .fs-header {
    margin-bottom: 3.5rem;
  }

  .fs-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4.5rem;
  }

  .fs-story-content-wrapper {
    padding: 2.25rem;
  }

  .fs-timeline-heading {
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 640px) {
  .fs-section {
    padding: 3.5rem 0 3rem;
  }

  .fs-title {
    font-size: 1.75rem;
  }

  .fs-subtitle {
    font-size: 0.95rem;
  }

  .fs-story-content-wrapper {
    padding: 1.5rem;
  }

  .fs-quote-icon-container {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
  }

  .fs-quote-icon-container svg {
    width: 20px;
    height: 20px;
  }

  .fs-story-text {
    font-size: 0.95rem;
  }

  .fs-timeline-title {
    font-size: 1.65rem;
  }

  .fs-timeline-subtitle {
    font-size: 0.9rem;
  }

  .timeline-wrapper {
    padding: 1rem 0;
  }

  .timeline-line {
    left: 14px;
  }

  .timeline-item {
    padding-left: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .timeline-dot {
    left: 6px;
    top: 6px;
    width: 17px;
    height: 17px;
    border-width: 3px;
  }

  .timeline-year {
    font-size: 1rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-content h4 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.88rem;
  }
}

/* ============================================================
   OUR PARTNERS SECTION - Premium Grid Card Layout
   ============================================================ */

.partners-section {
  padding: 5.5rem 0;
  background-color: var(--bg-primary);
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partners-title-wrapper {
  margin-bottom: 3.5rem;
}

.partners-title {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 2.2rem;
  position: relative;
  margin: 0;
}

.partners-title::before,
.partners-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-color);
}

.partners-title::before {
  top: 0;
}

.partners-title::after {
  bottom: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.partner-logo-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.75);
  transition: all 0.35s ease;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.partner-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Dark theme specific settings */
[data-theme="dark"] .partner-logo-card {
  background-color: var(--bg-card);
}

[data-theme="dark"] .partner-logo-card:hover {
  background-color: var(--bg-card);
  border-color: var(--accent-light);
}

[data-theme="dark"] .partner-logo-card img {
  filter: grayscale(100%) invert(1) brightness(1.2) opacity(0.7);
}

[data-theme="dark"] .partner-logo-card:hover img {
  filter: grayscale(0%) invert(0) brightness(1) opacity(1);
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 4rem 0;
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .partners-title {
    font-size: 1.45rem;
    padding: 0.4rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .partner-logo-card {
    height: 90px;
    padding: 0.85rem;
  }
}

/* ============================================================
   DUAL DYNAMIC CROSSING MARQUEES - Premium Agency Interaction
   ============================================================ */

.marquee-cross-container {
  position: relative;
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 5.5rem 0;
  z-index: 10;
}

.marquee-cross-container .marquee-banner {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Banner 1: Navy background, slanted down, scrolling left */
.marquee-banner-1 {
  background: var(--primary-navy) !important;
  transform: rotate(-3.5deg) scale(1.08);
  transform-origin: center;
  z-index: 11;
}

/* Banner 2: Gradient background, slanted up, scrolling right */
.marquee-banner-2 {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-emerald) 100%) !important;
  transform: rotate(3.5deg) scale(1.08);
  transform-origin: center;
  z-index: 12;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .marquee-banner-1 {
  background: var(--bg-card) !important;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .marquee-banner-2 {
  background: linear-gradient(90deg, rgba(79, 156, 249, 0.9) 0%, rgba(52, 211, 153, 0.9) 100%) !important;
}

/* Reverse Scroll Animation Track */
.marquee-track-reverse {
  display: flex;
  width: max-content;
  animation: marquee-scroll-reverse 35s linear infinite;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.marquee-track-reverse:hover {
  animation-play-state: paused;
}

/* Make sure text elements in reverse track match normal items style */
.marquee-track-reverse .marquee-item {
  display: flex;
  align-items: center;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pure-white);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 3.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.3s ease;
}

[data-theme="dark"] .marquee-track-reverse .marquee-item {
  color: var(--text-main);
  border-right: 1px solid var(--border-color);
}

.marquee-track-reverse .marquee-item:hover {
  color: var(--accent-light);
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Responsive Crossing Marquees Override */
@media (max-width: 991px) {
  .marquee-cross-container {
    height: 150px;
    margin: 4rem 0 3.5rem;
  }
  
  .marquee-banner-1 {
    transform: rotate(-2deg) scale(1.05);
  }
  
  .marquee-banner-2 {
    transform: rotate(2deg) scale(1.05);
  }
  
  .marquee-track-reverse .marquee-item {
    font-size: 0.85rem;
    padding: 0 2.5rem;
  }
}

@media (max-width: 480px) {
  .marquee-cross-container {
    height: 130px;
    margin: 3.5rem 0 2.5rem;
  }
}