
    :root {
      --bg-main: #020617;
      --bg-section: #020817;
      --bg-card: rgba(15, 23, 42, 0.9);
      --border-subtle: rgba(148, 163, 184, 0.3);
      --primary: #f97316;
      --primary-soft: #fed7aa;
      --accent: #38bdf8;
      --text-main: #e5e7eb;
      --text-muted: #9ca3af;
      --radius-lg: 18px;
      --radius-xl: 26px;
      --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.55);
      --nav-height: 76px;

      
    }

    * {
      
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #02091f 0, #020617 45%, #000 100%);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      border: none;
      cursor: pointer;
      background: none;
    }

    /* main {
      padding-top: var(--nav-height);
    } */
     main {
  padding-top: 0 !important;
}


    /* section {
      scroll-margin-top: calc(var(--nav-height) + 16px);
    }

    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .section-padding {
      padding: 4.5rem 0;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .section-tag {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .section-heading h2 {
      font-size: 2rem;
      letter-spacing: -0.03em;
      margin-bottom: 0.5rem;
    }

    .section-heading p {
      color: var(--text-muted);
      font-size: 0.95rem;
    } */
/* ================= GLOBAL SECTION STYLES ================= */
section {
  position: relative; /* Essential for containing absolute backgrounds */
  scroll-margin-top: calc(var(--nav-height, 80px) + 30px); /* Increased buffer for comfort */
}

.container {
  width: 100%;
  max-width: 1240px; /* Slightly wider for a modern, open feel */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0; /* More breathing room = Premium look */
}

/* ================= SECTION HEADINGS ================= */
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem; /* Increased separation from content */
  max-width: 760px; /* Prevents text from stretching too wide */
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* The Eyebrow / Tag Text */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em; /* Wider tracking for elegance */
  font-weight: 700;
  
  /* Gradient Text Effect */
  background: linear-gradient(90deg, var(--accent, #38bdf8), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  margin-bottom: 1rem;
  position: relative;
}

/* Optional: Subtle Glow behind the tag */
.section-tag::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: var(--accent, #38bdf8);
  filter: blur(25px);
  opacity: 0.15;
  z-index: -1;
}

.section-heading h2 {
  /* Fluid Typography: Scales smoothly between sizes */
  font-size: clamp(2.2rem, 5vw, 3rem); 
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #ffffff;
  
  /* Subtle text shadow for depth */
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 
}

.section-heading p {
  font-size: 1.05rem;
  
  /* High Visibility Color (Soft White) */
  color: #cbd5e1; 
  
  line-height: 1.75;
  font-weight: 400;
  max-width: 90%; /* Ensures line lengths are comfortable to read */
  margin: 0 auto;
}

/* ================= MOBILE ADJUSTMENTS ================= */
@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .section-heading {
    margin-bottom: 2.5rem;
    text-align: left; /* Often looks better left-aligned on mobile */
  }
  
  .section-heading p {
    margin: 0;
    font-size: 1rem;
  }
}
    /* ===== HEADER / NAV ===== */
    header#top-nav {
      position: fixed;
      inset-inline: 0;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.86),
        rgba(15, 23, 42, 0.78),
        rgba(15, 23, 42, 0.52)
      );
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    }

    .nav-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
 .logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 10%, #fed7aa 0, #f97316 40%, #4f46e5 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8);
    } 

    .logo-icon svg {
      width: 18px;
      height: 18px;
      fill: #0b1120;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text span:first-child {
      font-weight: 700;
      letter-spacing: -0.03em;
      font-size: 1.1rem;
    }

    .logo-text span:last-child {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-muted);
    } */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* NEW IMAGE LOGO BLOCK */
.logo-image {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  /* box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8); */
  flex-shrink: 0;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT BLOCK */
/* .logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
  color: #fff;
}

.logo-text span:last-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
} */

.logo-text {
  display: flex;
  flex-direction: column;
  /* Ensures the two lines sit tightly together */
  line-height: 1; 
  /* Prevents users from accidentally highlighting the logo text */
  user-select: none; 
  cursor: pointer;
}

.logo-text span:first-child {
  font-family: sans-serif; /* Ensure you use your primary bold font */
  font-weight: 800; /* Extra bold for impact */
  font-size: 1.35rem; /* Increased size slightly for authority */
  letter-spacing: -0.04em; /* Tighter tracking looks more modern */
  
  /* The Gradient Text Magic */
  background: linear-gradient(120deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fff; /* Fallback */
  
  /* Slight shadow to lift it off the dark background */
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.1));
}

.logo-text span:last-child {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  /* Widen spacing for the "premium brand" look */
  letter-spacing: 0.3em; 
  color: var(--accent); /* Uses your brand accent color */
  margin-top: 6px; /* Spacing between title and subtitle */
  opacity: 0.9;
  padding-left: 2px; /* Optical alignment correction */
}
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.6rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      position: relative;
      color: var(--text-muted);
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.25rem;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 999px;
      transition: width 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--text-main);
      transform: translateY(-1px);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-donate-btn {
      padding: 0.6rem 1.3rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #0b1120;
      font-size: 0.85rem;
      font-weight: 600;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.85);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      border: 1px solid rgba(248, 250, 252, 0.12);
    }

    .nav-donate-btn span.icon {
      font-size: 1rem;
    }

    .nav-donate-btn:hover {
      transform: translateY(-1px) scale(1.03);
      box-shadow: 0 18px 40px rgba(8, 47, 73, 0.85);
    }

    .nav-donate-btn:active {
      transform: translateY(0) scale(0.97);
      box-shadow: 0 8px 24px rgba(8, 47, 73, 0.7);
    }

    /* Mobile nav */
    .nav-toggle {
      display: none;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      backdrop-filter: blur(14px);
      background: rgba(15, 23, 42, 0.9);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .nav-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--text-main);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-toggle.open span:nth-child(1) {
      transform: translateY(3px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
      transform: translateY(-3px) rotate(-45deg);
    }

    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.96));
      backdrop-filter: blur(26px);
      z-index: 40;
      display: none;
      flex-direction: column;
      padding: 1.5rem;
    }

    .mobile-menu-overlay.open {
      display: flex;
    }

    .mobile-menu-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }

    .mobile-close-btn {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      background: rgba(15, 23, 42, 0.95);
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 1.3rem;
      margin-top: 0.5rem;
      font-size: 1.1rem;
    }

    .mobile-nav-links a {
      color: var(--text-main);
      font-weight: 500;
    }

    .mobile-nav-links a span {
      display: block;
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-top: 0.15rem;
    }

    .mobile-menu-bottom {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .mobile-menu-bottom .nav-donate-btn {
      justify-content: center;
      width: 100%;
    }

    .mobile-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
    }

    /* ===== HERO ===== */
    /* #hero {
      position: relative;
      min-height: 50vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: -2;
    }

    .hero-slide {
       
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
      transform: scale(1.02);
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1.0);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 45%),
                  radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.26), transparent 50%),
                  linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.7));
      mix-blend-mode: multiply;
      z-index: -1;
    }

    .hero-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 3.5rem 1.5rem 4.5rem;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 3.5rem;
      align-items: center;
    }

    .hero-content {
      margin-top: 70px;
      max-width: 560px;
      backdrop-filter: blur(18px);
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.92));
      border-radius: var(--radius-xl);
      padding: 1.8rem 2rem;
      border: 1px solid rgba(148, 163, 184, 0.45);
      box-shadow: var(--shadow-soft);
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: var(--text-muted);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 1rem;
    }

    .hero-label-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle, #bef264 0, #22c55e 50%, #166534 100%);
      box-shadow: 0 0 12px rgba(22, 163, 74, 0.85);
    }

    #hero h1 {
      font-size: clamp(2.15rem, 3vw, 3rem);
      letter-spacing: -0.04em;
      margin-bottom: 0.9rem;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
      margin-bottom: 1.8rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 1.4rem;
    }

    .btn-primary {
      padding: 0.85rem 1.7rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), #fb923c, var(--accent));
      color: #0b1120;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border: 1px solid rgba(250, 250, 250, 0.18);
      transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
      white-space: nowrap;
    }

    .btn-primary:hover {
      transform: translateY(-1px) scale(1.03);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
      filter: brightness(1.03);
    }

    .btn-primary:active {
      transform: translateY(0) scale(0.97);
      box-shadow: 0 12px 35px rgba(15, 23, 42, 0.9);
    }

    .btn-ghost {
      padding: 0.85rem 1.5rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--text-main);
      background: rgba(15, 23, 42, 0.8);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
      white-space: nowrap;
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 0.95);
      border-color: var(--accent);
      transform: translateY(-1px);
      box-shadow: 0 12px 35px rgba(15, 23, 42, 0.9);
    }

    .hero-trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 0.5rem;
      border-top: 1px solid rgba(148, 163, 184, 0.4);
      margin-top: 0.7rem;
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      padding-right: 0.6rem;
    }

    .trust-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle, var(--primary-soft), var(--primary));
      box-shadow: 0 0 12px rgba(249, 115, 22, 0.85);
    }

    .hero-side-card {
      align-self: stretch;
      display: flex;
      align-items: flex-end;
    }

    .hero-side-inner {
      margin-left: auto;
      max-width: 360px;
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.96));
      border-radius: var(--radius-xl);
      padding: 1.4rem 1.4rem 1.8rem;
      border: 1px solid rgba(148, 163, 184, 0.5);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(20px);
    }

    .hero-side-inner h3 {
      font-size: 1.1rem;
      margin-bottom: 0.4rem;
    }

    .hero-side-inner p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.9rem;
    }

    .hero-side-stats {
      display: flex;
      gap: 1.4rem;
      margin-bottom: 1rem;
    }

    .hero-stat {
      flex: 1;
    }

    .hero-stat strong {
      display: block;
      font-size: 1.1rem;
    }

    .hero-stat span {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--text-muted);
    }

    .hero-side-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.15);
      color: #bbf7d0;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      border: 1px solid rgba(22, 163, 74, 0.8);
    }

    .hero-side-badge span.dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle, #bbf7d0, #22c55e);
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
    }

    .hero-slider-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.75);
      border: 1px solid rgba(148, 163, 184, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      cursor: pointer;
      z-index: 2;
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.8);
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .hero-slider-control:hover {
      transform: translateY(-50%) scale(1.06);
      background: rgba(15, 23, 42, 0.93);
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.95);
    }

    .hero-slider-control.left {
      left: 1.25rem;
    }

    .hero-slider-control.right {
      right: 1.25rem;
    }

    .hero-dots {
      position: absolute;
      bottom: 1.75rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 2;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.6);
      border: 1px solid rgba(15, 23, 42, 0.7);
      cursor: pointer;
      transition: background 0.18s ease, transform 0.18s ease, width 0.18s ease, box-shadow 0.18s ease;
    }

    .hero-dot.active {
      width: 20px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      box-shadow: 0 0 16px rgba(56, 189, 248, 0.85);
    } */
     /* ================= HERO MAIN CONTAINER ================= */
#hero {
  position: relative;
  min-height: clamp(72vh, 86vh, 94vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Darker, crisper border to match footer */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
  background-color: #020617; /* Deep base color */
}

/* Ambient background motion - Subtle floating lights */
#hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.1), transparent 40%);
  animation: hero-float 22s ease-in-out infinite alternate;
  z-index: -4;
  will-change: transform;
  filter: blur(60px);
}

@keyframes hero-float {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-40px) scale(1.05); }
}

/* ================= SLIDER & BACKGROUND ================= */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.15); /* Cinematic zoom start */
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), transparent 50%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.3), rgba(2, 6, 23, 0.95));
  z-index: -2;
  pointer-events: none;
}

/* ================= LAYOUT (PRESERVED) ================= */
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4.2rem 1.5rem 5.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3.8rem;
  align-items: center;
  position: relative;
}

/* ================= MAIN CONTENT CARD ================= */
.hero-content {
  margin-top: 70px;
  max-width: 560px;
  position: relative;
  /* Premium Glass Effect */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(15, 23, 42, 0.6);
  border-radius: 24px;
  padding: 2.2rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1); 
  overflow: hidden;
}

/* Light sweep across main card */
.hero-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.03), transparent 70%);
  pointer-events: none;
}

/* ================= BADGE / LABEL ================= */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s infinite;
}

/* ================= TYPOGRAPHY ================= */
#hero h1 {
  font-size: clamp(2.3rem, 3.4vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3); 
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 2.2rem;
  line-height: 1.7;
  font-weight: 400;
}

/* ================= ACTIONS / BUTTONS ================= */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.btn-primary {
  position: relative;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  /* Rich Gradient */
  background: linear-gradient(135deg, var(--primary, #3b82f6), #f97316); 
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.5); 
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -5px rgba(59, 130, 246, 0.6);
  filter: brightness(1.1);
}

.btn-ghost {
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ================= TRUST STRIP ================= */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
}

/* ================= RIGHT SIDE CARD ("COOL" VERSION) ================= */
.hero-side-card {
  display: flex;
  align-items: flex-end;
  /* Optional float animation for entire group */
  animation: hero-float 6s ease-in-out infinite alternate;
}

.hero-side-inner {
  margin-left: auto;
  max-width: 360px;
  
  /* GLASSMOPRHISM BASE */
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  background: linear-gradient(
    165deg,
    rgba(30, 41, 59, 0.6) 0%,   /* Lighter top-left */
    rgba(15, 23, 42, 0.95) 100% /* Darker bottom-right */
  );
  
  border-radius: 24px;
  padding: 2rem;
  
  /* 3D LIGHTING BORDER */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.2); 
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  
  /* DEPTH & INNER GLOW */
  box-shadow: 
    0 20px 50px -10px rgba(0, 0, 0, 0.6), 
    inset 0 0 20px rgba(56, 189, 248, 0.05),
    0 0 30px rgba(56, 189, 248, 0.1);
    
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-side-inner:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 60px -10px rgba(0, 0, 0, 0.7),
    inset 0 0 30px rgba(56, 189, 248, 0.1),
    0 0 50px rgba(56, 189, 248, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Shimmer animation sweep */
.hero-side-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-25deg);
  animation: shine 6s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -100%; opacity: 0; }
  20% { opacity: 1; }
  40% { left: 200%; opacity: 0; }
  100% { left: 200%; opacity: 0; }
}

/* Inner Text of Side Card */
.hero-side-inner h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #fff;
  font-weight: 700;
}

.hero-side-inner p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0.9rem;
}

/* ================= SLIDER CONTROLS ================= */
.hero-slider-control {
  position: absolute;
  inset-block: 0;
  margin: auto 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.hero-slider-control:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.hero-slider-control.left { left: 1.5rem; }
.hero-slider-control.right { right: 1.5rem; }

/* ================= SLIDER DOTS ================= */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 28px; /* Standard pill shape */
  border-radius: 10px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
  transform: scale(1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

    /* ===== ABOUT ===== */
    #about {
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 50%), var(--bg-section);
      border-top: 1px solid rgba(15, 23, 42, 0.9);
      border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
      gap: 3rem;
      align-items: center;
    }

    .about-image-wrapper {
      position: relative;
    }

    .about-image-inner {
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.4);
      box-shadow: var(--shadow-soft);
      background: radial-gradient(circle at top, rgba(248, 250, 252, 0.06), transparent 45%), rgba(15, 23, 42, 0.96);
    }

    .about-image-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05);
    }

    .about-glow {
      position: absolute;
      inset: 0;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(248, 250, 252, 0.08);
      box-shadow: 0 0 40px rgba(56, 189, 248, 0.25);
      pointer-events: none;
      mix-blend-mode: screen;
    }

    .about-badge {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      padding: 0.6rem 0.9rem;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.8);
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      backdrop-filter: blur(16px);
    }

    .about-badge span {
      font-weight: 600;
      color: var(--text-main);
    }

    .about-badge-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: radial-gradient(circle, var(--primary-soft), var(--primary));
      box-shadow: 0 0 14px rgba(249, 115, 22, 0.9);
    }

    .about-content .section-tag {
      text-align: left;
    }

    .about-content h2 {
      font-size: 1.9rem;
      letter-spacing: -0.03em;
      margin-bottom: 0.8rem;
    }

    .about-content p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .about-list {
      margin: 1.2rem 0 1.4rem;
      display: grid;
      gap: 0.5rem;
    }

    .about-list-item {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.9rem;
      color: var(--text-main);
    }

    .about-list-icon {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: rgba(56, 189, 248, 0.15);
      border: 1px solid rgba(56, 189, 248, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
    }

    .about-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      margin-top: 0.5rem;
    }

    .about-link {
      font-size: 0.9rem;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      border-bottom: 1px dashed rgba(56, 189, 248, 0.5);
      padding-bottom: 0.05rem;
    }

    .about-link:hover {
      color: #7dd3fc;
      border-bottom-style: solid;
    }

    /* ===== CASES ===== */
    /* #cases {
      background: radial-gradient(circle at bottom, rgba(249, 115, 22, 0.16), transparent 55%), var(--bg-main);
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.7rem;
    }

    .case-card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.35rem 1.35rem;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .case-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 60%);
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
    }

    .case-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      margin-bottom: 0.9rem;
    }

    .case-card h3 {
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    .case-desc {
      font-size: 0.87rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .case-note {
      font-size: 0.82rem;
      color: #e5e7eb;
      margin-bottom: 0.9rem;
    }

    .case-card button {
      font-size: 0.82rem;
      padding: 0.55rem 1.1rem;
      border-radius: 999px;
      border: 1px solid rgba(249, 115, 22, 0.9);
      background: rgba(15, 23, 42, 0.9);
      color: var(--primary-soft);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .case-card button:hover {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #0b1120;
      border-color: transparent;
      box-shadow: 0 15px 40px rgba(15, 23, 42, 0.96);
      transform: translateY(-1px) scale(1.02);
    }

    .case-card:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);
      border-color: rgba(249, 115, 22, 0.7);
      background: rgba(15, 23, 42, 0.98);
    }

    .case-card:hover::before {
      opacity: 1;
    } */
     /* ================= SECTION CONTAINER ================= */
#cases {
  position: relative;
  /* Deepest dark background */
  background: #020617; 
  padding: 5rem 0;
  overflow: hidden;
}

/* Background Ambient Lighting (Subtle) */
#cases::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(249, 115, 22, 0.06), transparent 25%);
  pointer-events: none;
}

/* ================= GRID LAYOUT ================= */
.cases-grid {
  display: grid;
  /* Smart responsive grid */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

/* ================= CARD DESIGN ("Dark Glass") ================= */
.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  
  /* The Glass Effect */
  background: linear-gradient(
    180deg, 
    rgba(30, 41, 59, 0.4) 0%, 
    rgba(15, 23, 42, 0.8) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  
  border-radius: 24px;
  
  /* Delicate Borders */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* Highlight top edge */
  
  /* Depth Shadows */
  box-shadow: 
    0 4px 20px -5px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02); /* Inner rim */
    
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* --- Card Hover State --- */
.case-card:hover {
  transform: translateY(-8px); /* Smooth Lift */
  background: linear-gradient(
    180deg, 
    rgba(30, 41, 59, 0.5) 0%, 
    rgba(15, 23, 42, 0.95) 100%
  );
  /* The Orange Glow Border appears on hover */
  border-color: rgba(249, 115, 22, 0.5); 
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(249, 115, 22, 0.15); /* Orange ambient glow */
}

/* Spotlight sheen effect on hover */
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px circle at 50% -20%, 
    rgba(255, 255, 255, 0.1), 
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.case-card:hover::after {
  opacity: 1;
}

/* ================= ICON (STABLE & GLOWING) ================= */
.case-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px; /* Modern Soft Square */
  
  /* Dark, Embedded Look */
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5); /* Inner shadow for depth */
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #94a3b8; /* Muted initial color */
  
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

/* Hover Effect: STABLE (No Tilt), Just Brightness */
.case-card:hover .case-icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(15, 23, 42, 0.8));
  border-color: rgba(249, 115, 22, 0.5);
  color: #fb923c; /* Orange Text */
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.25); /* Outer Glow */
  transform: scale(1.05); /* Slight size increase only */
}

/* ================= TYPOGRAPHY (VISIBILITY FIXED) ================= */
.case-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff; /* Pure white */
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Shadow ensures readability */
}

.case-desc {
  font-size: 0.96rem;
  
  /* FIXED: Bright Soft White for maximum visibility */
  color: #e2e8f0; 
  
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-weight: 400;
  
  /* Shadow lifts text off the dark background */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.case-note {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8; /* Brighter Slate */
  margin-bottom: 1rem;
}

/* ================= BUTTON (MODERN PILL) ================= */
.case-card button {
  width: fit-content;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  
  /* Outline Style Default */
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #cbd5e1;
  
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card button:hover {
  /* Vibrant Gradient Fill */
  border-color: transparent;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  /* Shadow Glow */
  box-shadow: 0 10px 20px -5px rgba(234, 88, 12, 0.5);
  transform: translateY(-2px);
}

/* Arrow Animation */
.case-card button span {
  transition: transform 0.2s ease;
}

.case-card button:hover span {
  transform: translateX(4px);
}

    /* ===== PROGRAMS ===== */
    /* #programs {
      background: var(--bg-section);
      border-top: 1px solid rgba(15, 23, 42, 0.9);
      border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-bottom: 1.75rem;
    }

    .program-tile {
      background: rgba(15, 23, 42, 0.92);
      border-radius: var(--radius-lg);
      padding: 1.25rem;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
      transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
    }

    .program-icon {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      background: rgba(248, 250, 252, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      margin-bottom: 0.6rem;
    }

    .program-tile h3 {
      font-size: 0.95rem;
      margin-bottom: 0.3rem;
    }

    .program-tile p {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .program-tile:hover {
      border-color: rgba(56, 189, 248, 0.9);
      transform: translateY(-3px);
      background: radial-gradient(circle at top, rgba(56, 189, 248, 0.15), rgba(15, 23, 42, 0.96));
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
    }

    .programs-link {
      text-align: center;
      font-size: 0.9rem;
    }

    .programs-link a {
      color: var(--accent);
      border-bottom: 1px dashed rgba(56, 189, 248, 0.5);
    }

    .programs-link a:hover {
      color: #7dd3fc;
      border-bottom-style: solid;
    } */

    /* ================= SECTION CONTAINER ================= */
#programs {
  position: relative;
  /* Deep background matching the theme */
  background: #020617;
  padding: 4rem 0;
  
  /* Crisp, subtle dividers */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* Ambient Blue Glow (Background) */
#programs::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.03), transparent 60%);
  pointer-events: none;
}

/* ================= GRID LAYOUT ================= */
.programs-grid {
  display: grid;
  /* Slightly larger minimum width for better readability */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 0 0.5rem;
}

/* ================= TILE DESIGN ================= */
.program-tile {
  /* Glassmorphism */
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  border-radius: 16px;
  padding: 1.5rem;
  
  /* Subtle borders */
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* --- Hover State --- */
.program-tile:hover {
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.5);
  /* Cyan Glow Border */
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 
    0 15px 35px -5px rgba(2, 6, 23, 0.8),
    0 0 20px rgba(56, 189, 248, 0.15); /* Outer Glow */
}

/* Light Shine Effect on Hover */
.program-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right, 
    transparent, 
    rgba(255, 255, 255, 0.05), 
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
}

.program-tile:hover::after {
  left: 200%;
  transition: left 0.6s ease;
}

/* ================= ICON ================= */
.program-icon {
  width: 42px; /* Slightly larger */
  height: 42px;
  border-radius: 12px; /* Soft square */
  
  /* Dark Embedded Look */
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #94a3b8; /* Muted start */
  
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

/* Icon Glows on Card Hover */
.program-tile:hover .program-icon {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.8));
  border-color: rgba(56, 189, 248, 0.5);
  color: #38bdf8; /* Cyan Text */
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* ================= TYPOGRAPHY (High Visibility) ================= */
.program-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff; /* Bright White */
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.program-tile p {
  font-size: 0.9rem;
  color: #cbd5e1; /* Bright Grey / Soft White */
  line-height: 1.6;
  opacity: 1; /* Ensure full opacity */
}

/* ================= "VIEW ALL" LINK ================= */
.programs-link {
  text-align: center;
  margin-top: 1rem;
}

.programs-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  
  /* Glass Button Style */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.programs-link a:hover {
  background: rgba(56, 189, 248, 0.15); /* Cyan tint */
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
  transform: translateY(-2px);
}
    /* ===== GALLERY ===== */
    #gallery {
      background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), transparent 55%), var(--bg-main);
    }

    .gallery-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .gallery-tab {
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      font-size: 0.78rem;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.9);
      color: var(--text-muted);
      cursor: pointer;
      transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    }

    .gallery-tab.active {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #0b1120;
      border-color: transparent;
      box-shadow: 0 14px 35px rgba(15, 23, 42, 0.9);
      transform: translateY(-1px);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .gallery-item {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.4);
      box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.25s ease, filter 0.25s ease;
    }

    .gallery-item::after {
      content: "View";
      position: absolute;
      inset: auto 0 0 0;
      padding: 0.5rem 0.9rem;
      font-size: 0.75rem;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.92), transparent);
      color: var(--text-main);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .gallery-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
      border-color: rgba(56, 189, 248, 0.8);
    }

    .gallery-item:hover img {
      transform: scale(1.04);
      filter: saturate(1.1);
    }

    .gallery-item:hover::after {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-item.hidden {
      display: none;
    }

    .gallery-footer {
      text-align: center;
      margin-top: 1.75rem;
    }

    .gallery-footer button {
      font-size: 0.9rem;
      padding: 0.65rem 1.4rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.95);
      color: var(--text-main);
      transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    }

    .gallery-footer button:hover {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.96));
      border-color: rgba(56, 189, 248, 0.9);
      transform: translateY(-1px);
      box-shadow: 0 16px 45px rgba(15, 23, 42, 0.9);
    }

    /* Lightbox */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.9);
      backdrop-filter: blur(20px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 60;
    }

    .lightbox-overlay.open {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      max-width: 90vw;
      max-height: 80vh;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: 0 26px 75px rgba(0, 0, 0, 0.95);
      background: rgba(15, 23, 42, 0.98);
    }

    .lightbox-image {
      display: block;
      max-width: 90vw;
      max-height: 80vh;
      object-fit: contain;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 0.7rem;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
    }

    .lightbox-close {
      right: 0.7rem;
    }

    .lightbox-prev,
    .lightbox-next {
      top: 50%;
      transform: translateY(-50%);
    }

    .lightbox-prev {
      left: 0.7rem;
    }

    .lightbox-next {
      right: 0.7rem;
    }

    /* ===== TESTIMONIALS ===== */
    #testimonials {
      background: var(--bg-section);
      border-top: 1px solid rgba(15, 23, 42, 0.95);
      border-bottom: 1px solid rgba(15, 23, 42, 0.95);
    }

    .testimonials-wrapper {
      position: relative;
      overflow: hidden;
    }

    .testimonials-track {
      display: flex;
      transition: transform 0.6s ease;
    }

    .testimonial-slide {
      flex: 0 0 100%;
      padding: 0.4rem 0;
    }

    .testimonial-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.3rem;
    }

    .testimonial-card {
      background: rgba(15, 23, 42, 0.96);
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.2rem 1.25rem;
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .testimonial-card::before {
      content: "“";
      position: absolute;
      font-size: 3.5rem;
      line-height: 1;
      color: rgba(148, 163, 184, 0.2);
      right: 1rem;
      top: -0.5rem;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.65rem;
    }

    .testimonial-avatar {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      overflow: hidden;
      background: radial-gradient(circle at top, #f97316, #4f46e5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: #0b1120;
      font-weight: 600;
    }

    .testimonial-meta {
      font-size: 0.8rem;
    }

    .testimonial-meta h3 {
      margin-bottom: 0.1rem;
      font-size: 0.9rem;
    }

    .testimonial-meta span {
      color: var(--text-muted);
    }

    .testimonial-text {
      font-size: 0.86rem;
      color: var(--text-main);
    }

    .testimonials-controls {
      margin-top: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .testimonials-dots {
      display: flex;
      gap: 0.35rem;
    }

    .testimonials-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.6);
      cursor: pointer;
      transition: background 0.18s ease, transform 0.18s ease, width 0.18s ease;
    }

    .testimonials-dot.active {
      width: 20px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: translateY(-1px);
    }

    .testimonials-arrows {
      display: flex;
      gap: 0.6rem;
    }

    .testimonials-arrow {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .testimonials-arrow:hover {
      transform: translateY(-1px);
      background: rgba(15, 23, 42, 1);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
    }

    /* ===== DONATION ===== */
    #donation {
      background: radial-gradient(circle at top, rgba(249, 115, 22, 0.18), transparent 55%), var(--bg-main);
    }

    .donation-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: flex-start;
    }

    .donation-form-card {
      background: var(--bg-card);
      border-radius: var(--radius-xl);
      padding: 1.7rem 1.7rem 1.8rem;
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: var(--shadow-soft);
    }

    .donation-form-group {
      margin-bottom: 1rem;
    }

    .donation-form-group label {
      display: block;
      font-size: 0.82rem;
      margin-bottom: 0.35rem;
      color: var(--text-muted);
    }

    .donation-input,
    .donation-select {
      width: 100%;
      padding: 0.6rem 0.75rem;
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.96);
      color: var(--text-main);
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .donation-input:focus,
    .donation-select:focus {
      border-color: rgba(56, 189, 248, 0.9);
      box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
      background: rgba(15, 23, 42, 1);
    }

    .donation-row {
      display: flex;
      gap: 1rem;
    }

    .donation-row .donation-form-group {
      flex: 1;
    }

    .amount-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.4rem;
    }

    .amount-chip {
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.95);
      font-size: 0.8rem;
      cursor: pointer;
      color: var(--text-muted);
      transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    }

    .amount-chip:hover {
      border-color: rgba(249, 115, 22, 0.9);
      color: var(--primary-soft);
      transform: translateY(-1px);
    }

    .donation-type {
      display: flex;
      gap: 1.2rem;
      margin-top: 0.3rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .donation-type label {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      cursor: pointer;
    }

    .donation-type input[type="radio"] {
      accent-color: var(--primary);
    }

    .donation-submit {
      margin-top: 1.2rem;
    }

    .donation-submit .btn-primary {
      width: 100%;
      justify-content: center;
    }

    .donation-highlight {
      animation: donationHighlight 1.4s ease-out;
    }

    @keyframes donationHighlight {
      0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.9);
      }
      100% {
        box-shadow: 0 0 0 16px rgba(249, 115, 22, 0);
      }
    }

    .donation-aside {
      border-radius: var(--radius-xl);
      padding: 1.4rem 1.4rem 1.5rem;
      background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 55%), rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: var(--shadow-soft);
    }

    .donation-aside h3 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .donation-aside p {
      font-size: 0.87rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .donation-points {
      display: grid;
      gap: 0.4rem;
      margin: 0.4rem 0 0.7rem;
    }

    .donation-point {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.83rem;
      color: var(--text-main);
    }

    .donation-point-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.16);
      border: 1px solid rgba(34, 197, 94, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: #bbf7d0;
    }

    .donation-trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-top: 0.6rem;
      padding-top: 0.7rem;
      border-top: 1px dashed rgba(148, 163, 184, 0.6);
    }

    .donation-trust-item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .donation-trust-item-icon {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    /* ===== CTA STRIP ===== */
    #cta-strip {
      background: linear-gradient(120deg, var(--primary), var(--accent));
      color: #0b1120;
    }

    .cta-strip-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .cta-strip-text {
      max-width: 560px;
    }

    .cta-strip-text h2 {
      font-size: 1.6rem;
      letter-spacing: -0.03em;
      margin-bottom: 0.35rem;
    }

    .cta-strip-text p {
      font-size: 0.9rem;
      color: rgba(15, 23, 42, 0.9);
    }

    .cta-strip-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .cta-btn {
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
      border: 1px solid rgba(15, 23, 42, 0.9);
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.5);
    }

    .cta-btn.primary {
      background: #0b1120;
      color: #f9fafb;
    }

    .cta-btn.secondary {
      background: rgba(15, 23, 42, 0.04);
      color: #0b1120;
    }

    .cta-btn:hover {
      transform: translateY(-1px) scale(1.03);
      box-shadow: 0 26px 70px rgba(15, 23, 42, 0.75);
      background: #020617;
      color: #f9fafb;
    }

    /* ===== FOOTER ===== */
    /* #footer {
      background: #020617;
      border-top: 1px solid rgba(15, 23, 42, 0.95);
    }

    .footer-top {
      padding: 3rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.3fr;
      gap: 2.5rem;
      font-size: 0.88rem;
    }

    .footer-logo-text {
      margin-top: 0.45rem;
      color: var(--text-muted);
      max-width: 360px;
      font-size: 0.9rem;
    }

    .footer-heading {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 0.8rem;
      color: var(--text-muted);
    }

    .footer-links {
      display: grid;
      gap: 0.35rem;
    }

    .footer-links a {
      color: var(--text-main);
      font-size: 0.86rem;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-contact p {
      color: var(--text-muted);
      margin-bottom: 0.3rem;
    }

    .footer-contact a {
      color: var(--text-main);
    }

    .footer-contact a:hover {
      color: var(--accent);
    }

    .footer-socials {
      display: flex;
      gap: 0.55rem;
      margin-top: 0.7rem;
    }

    .footer-socials a {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: var(--text-main);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .footer-socials a:hover {
      transform: translateY(-1px);
      border-color: rgba(56, 189, 248, 0.9);
      background: radial-gradient(circle at top, rgba(56, 189, 248, 0.15), rgba(15, 23, 42, 1));
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
    }

    .footer-bottom {
      border-top: 1px solid rgba(15, 23, 42, 1);
      padding: 1rem 0 1.5rem;
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
    }

    .footer-bottom span {
      display: block;
      margin-top: 0.15rem;
    } */

    /* enhanced  */
    #footer {
  background: #020617;
  /* Made the border slightly more subtle for a cleaner look */
  border-top: 1px solid rgba(30, 41, 59, 0.6); 
  position: relative;
  z-index: 10;
}

.footer-top {
  /* Increased padding slightly for a premium feel */
  padding: 4rem 0 3rem; 
}

.footer-grid {
  display: grid;
  /* EXACT LAYOUT PRESERVED */
  grid-template-columns: 1.4fr 1fr 1.3fr; 
  gap: 3rem; /* Increased gap slightly to prevent cramping */
  font-size: 0.9rem;
}

.footer-logo-text {
  margin-top: 0.75rem;
  color: var(--text-muted);
  max-width: 360px;
  font-size: 0.95rem;
  line-height: 1.6; /* Better readability */
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  color: #fff; /* Brighter heading for better contrast */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem; /* Increased from 0.35rem so links don't touch */
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-decoration: none;
  /* Vital for the slide effect */
  display: inline-block; 
  width: fit-content;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  /* Modern slide-right effect on hover */
  transform: translateX(5px); 
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  width: 38px; /* Slightly larger for easier clicking */
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6); /* Slightly transparent */
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  /* Smoother transition timing */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.6);
  color: #fff;
  /* Enhanced glow effect */
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 1));
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(30, 41, 59, 0.6);
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

.footer-bottom span {
  display: block;
  margin-top: 0.5rem;
  opacity: 0.8;
}
        /* ===== FLOATING BUTTONS ===== */
    /* .floating-donate {
      position: fixed;
      right: 1.25rem;
      bottom: 1.25rem;
      width: 54px;
      height: 54px;
      border-radius: 999px;
      background: radial-gradient(circle at top, var(--primary-soft), var(--primary), var(--accent));
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 45;
      cursor: pointer;
      border: 2px solid rgba(15, 23, 42, 0.95);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .floating-donate span {
      font-size: 1.4rem;
      color: #0b1120;
    }

    .floating-donate:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 1);
    } */

    .scroll-top-btn {
      position: fixed;
      right: 1.35rem;
      bottom: 4.7rem;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--text-main);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, box-shadow 0.18s ease, background 0.18s ease;
      z-index: 45;
    }

    .scroll-top-btn.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-top-btn:hover {
      background: rgba(15, 23, 42, 1);
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.95);
    }

    /* ===== REVEAL ANIMATIONS ===== */
    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .reveal-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 960px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero-side-inner {
        max-width: 100%;
      }

      .hero-slider-control.left {
        left: 0.75rem;
      }

      .hero-slider-control.right {
        right: 0.75rem;
      }

      .hero-dots {
        bottom: 1.2rem;
      }

      .about-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .about-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
      }

      .donation-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .hero-inner {
        padding: 3rem 1.2rem 3.8rem;
      }

      .hero-content {
        padding: 1.4rem 1.3rem 1.5rem;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-primary,
      .btn-ghost {
        justify-content: center;
        width: 100%;
      }

      .hero-side-inner {
        padding: 1.2rem 1.2rem 1.4rem;
      }

      .hero-side-stats {
        gap: 0.9rem;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .donation-row {
        flex-direction: column;
      }

      .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .scroll-top-btn {
        right: 1.15rem;
        bottom: 4.5rem;
      }

      .floating-donate {
        right: 1.05rem;
        bottom: 1rem;
      }
    }

    @media (max-width: 560px) {
      .hero-slider-control {
        width: 34px;
        height: 34px;
      }

      .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-trust-strip {
        flex-direction: column;
      }

      .section-padding {
        padding: 3.5rem 0;
      }
    }
 