/* ============================================================
   THE INSPIRE INDIA - Main Stylesheet
   ============================================================
   EASY EDITING GUIDE:
   - Change colors in :root section below
   - Change fonts by updating --font-heading and --font-body
   - Adjust spacing with --section-padding
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700;800&display=swap');

/* ============================================================
   CSS VARIABLES - Edit these to change site colors/fonts
   ============================================================ */
:root {
  /* Primary Colors */
  --primary:        #E8451E;   /* Saffron Orange - main brand color */
  --primary-dark:   #C0391A;   /* Darker orange for hover */
  --primary-light:  #FF6B3D;   /* Lighter orange */

  /* Secondary Colors */
  --secondary:      #1B3A6B;   /* Deep Blue */
  --secondary-dark: #122B52;   /* Darker blue */
  --secondary-light:#2A5298;   /* Lighter blue */

  /* Accent */
  --accent:         #F7C948;   /* Gold Yellow */
  --accent-dark:    #D4A820;   /* Darker gold */
  --green:          #27AE60;   /* Green for success/nature */
  --green-dark:     #1E8449;

  /* Neutrals */
  --dark:           #1A1A2E;   /* Dark navy */
  --dark-gray:      #2C2C3E;
  --text-dark:      #2D3436;
  --text-light:     #636E72;
  --text-muted:     #B2BEC3;
  --border-color:   #E0E0E0;
  --white:          #FFFFFF;
  --off-white:      #F8F9FA;
  --light-gray:     #F0F2F5;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #E8451E 0%, #F7C948 100%);
  --grad-secondary: linear-gradient(135deg, #1B3A6B 0%, #2A5298 100%);
  --grad-hero:      linear-gradient(135deg, #1A1A2E 0%, #1B3A6B 50%, #2A5298 100%);
  --grad-dark:      linear-gradient(180deg, rgba(26,26,46,0.95) 0%, rgba(27,58,107,0.9) 100%);

  /* Typography */
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Poppins', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max:   1280px;
  --navbar-height:   80px;

  /* Effects */
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl:    0 30px 80px rgba(0,0,0,0.20);
  --shadow-color: 0 20px 40px rgba(232,69,30,0.25);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  /* Motion easing curves (Emil Kowalski design philosophy) */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  --transition:      transform 0.28s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.28s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.22s ease, color 0.22s ease, opacity 0.22s ease, border-color 0.22s ease;
  --transition-slow: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Prevent layout shift during load */
  background-color: var(--light-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { line-height: 1.8; color: var(--text-light); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: var(--section-padding); }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }

.bg-white { background: var(--white); }
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* Section Header */
.section-header {
  margin-bottom: 60px;
}
.section-header.text-center { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 69, 30, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(232, 69, 30, 0.2);
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.section-title span {
  color: var(--primary);
  position: relative;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}

.section-header.text-center .section-desc {
  margin: 0 auto;
}

/* Tricolor underline — saffron | white | green */
.title-underline {
  display: flex;
  gap: 4px;
  align-items: center;
  margin: 20px 0;
  width: fit-content;
}

.title-underline::before,
.title-underline::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: var(--radius-full);
}

.title-underline::before {
  width: 40px;
  background: var(--primary);      /* Saffron */
}

.title-underline::after {
  width: 20px;
  background: var(--green);        /* Green */
}

.section-header.text-center .title-underline {
  margin: 20px auto;
}

/* ============================================================
   NGO THEME ACCENTS
   ============================================================ */

/* Tricolor top-border card — for key info panels */
.card-tricolor {
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #FF9933 33%, #FFFFFF 33% 66%, #138808 66%) 1;
}

/* Impact number style */
.impact-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Quote / testimonial pull-quote */
.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--secondary);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  line-height: 1.8;
}

/* Cause badge */
.cause-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(232,69,30,0.1);
  color: var(--primary);
  border: 1px solid rgba(232,69,30,0.25);
}

/* Tricolor divider */
.tricolor-divider {
  display: flex;
  height: 5px;
  border-radius: var(--radius-full);
  overflow: hidden;
  width: 80px;
  margin: 0 auto;
}

.tricolor-divider::before,
.tricolor-divider::after {
  content: '';
  flex: 1;
}

.tricolor-divider {
  background: linear-gradient(90deg, #FF9933 33.33%, #FFFFFF 33.33% 66.66%, #138808 66.66%);
  border: 1px solid rgba(0,0,0,0.06);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.22s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97) !important;
  transition-duration: 0.08s;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s;
}

.btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232, 69, 30, 0.35);
}

.btn-primary:hover { background: var(--primary-dark); color: var(--white); box-shadow: 0 12px 32px rgba(232, 69, 30, 0.45); }

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(27, 58, 107, 0.35);
}

.btn-secondary:hover { background: var(--secondary-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: rgba(27,58,107,0.35);
}

.btn-outline:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

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

.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-outline:hover,
  .btn-outline-primary:hover { transform: translateY(-3px); }
}

.btn-lg { padding: 20px 48px; font-size: 1.05rem; }
.btn-sm { padding: 10px 24px; font-size: 0.875rem; }

.btn i { font-size: 1rem; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #1a2235 0%, #0b0f19 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s cubic-bezier(0.8, 0, 0.2, 1), visibility 0.6s;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
}

.modern-loader-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.modern-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--primary-light);
  border-bottom-color: var(--accent);
  animation: modern-spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.3);
}

.modern-loader-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: var(--gold);
  border-bottom-color: var(--gold);
  animation: modern-spin-reverse 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.modern-loader-logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 50%;
  animation: modern-pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
  background: white;
  padding: 5px;
}

.modern-loader-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.modern-loader-text span {
  color: var(--primary);
  display: inline-block;
  animation: text-glow 2s infinite alternate;
}

@keyframes modern-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes modern-spin-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes modern-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.9); opacity: 0.8; }
}

@keyframes text-glow {
  0% { text-shadow: 0 0 10px rgba(234,88,12,0.2); }
  100% { text-shadow: 0 0 25px rgba(234,88,12,0.8); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  transition: var(--transition);
  padding: 0;
}

#navbar.transparent {
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27,58,107,0.06);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  height: 70px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(232,69,30,0.25);
  transition: transform 0.32s cubic-bezier(0.23, 1, 0.32, 1);
  flex-shrink: 0;
  background: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .nav-logo:hover .nav-logo-img {
    transform: rotate(-5deg) scale(1.06);
  }
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  justify-content: center;
}

.nav-logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  transition: color 0.3s;
}

.nav-logo-text span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

#navbar.transparent .nav-logo-text strong,
#navbar.transparent .nav-logo-text span {
  color: var(--dark);
}

#navbar.transparent .nav-logo-text span {
  color: var(--text-light);
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

#navbar.transparent .nav-link {
  color: var(--dark);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(232,69,30,0.08);
}

#navbar.transparent .nav-link:hover {
  color: var(--primary);
  background: rgba(232,69,30,0.08);
}

.nav-link i { font-size: 0.7rem; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  min-width: 200px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Invisible bridge so the mouse doesn't lose hover over the 10px gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item i {
  width: 18px;
  color: var(--primary);
  font-size: 0.8rem;
}

.dropdown-item:hover {
  background: var(--light-gray);
  color: var(--primary);
  padding-left: 20px;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-donate-btn {
  background: var(--grad-primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232,69,30,0.3);
}

@media (hover: hover) and (pointer: fine) {
  .nav-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,69,30,0.45);
    color: var(--white);
  }
}

.nav-donate-btn:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.transparent .hamburger span { background: var(--dark); }

body.nav-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
body.nav-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); }

/* ============================================================
   HERO SECTION — Modern Light Animated
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f0f4ff;
}

/* ── Animated Aurora BG ── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%,  rgba(232,69,30,0.13)  0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%,  rgba(247,201,72,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 50% 50%,  rgba(27,58,107,0.07)  0%, transparent 70%),
    linear-gradient(155deg, #ffffff 0%, #f0f4ff 40%, #fef6ee 70%, #fffdf5 100%);
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

@keyframes aurora-drift {
  0%   { background-position: 0% 0%; filter: hue-rotate(0deg); }
  50%  { background-position: 100% 50%; filter: hue-rotate(8deg); }
  100% { background-position: 0% 100%; filter: hue-rotate(0deg); }
}

/* ── Floating Blob Lights ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 380px at 10% 70%,  rgba(247,201,72,0.12),  transparent),
    radial-gradient(circle 420px at 90% 20%,  rgba(232,69,30,0.10),   transparent),
    radial-gradient(circle 300px at 60% 90%,  rgba(42,82,152,0.08),   transparent);
  animation: blob-shift 14s ease-in-out infinite alternate;
}

@keyframes blob-shift {
  0%   { transform: scale(1)    translate(0,   0); }
  33%  { transform: scale(1.05) translate(30px, -20px); }
  66%  { transform: scale(0.97) translate(-20px, 30px); }
  100% { transform: scale(1)    translate(0,   0); }
}

/* ── Animated Grid Lines ── */
#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(27,58,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,58,107,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--navbar-height) + 40px);
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* ── Badge ── */
.hero-text .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(232,69,30,0.10), rgba(247,201,72,0.12));
  border: 1px solid rgba(232,69,30,0.25);
  color: var(--primary-dark);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(232,69,30,0.10), inset 0 1px 0 rgba(255,255,255,0.8);
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(232,69,30,0.10), inset 0 1px 0 rgba(255,255,255,0.8); }
  50%       { box-shadow: 0 6px 24px rgba(232,69,30,0.22), inset 0 1px 0 rgba(255,255,255,0.9); }
}

.hero-badge i { color: var(--accent); filter: drop-shadow(0 2px 4px rgba(247,201,72,0.6)); }

/* ── Title ── */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.13;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  position: relative;
  padding-bottom: 18px;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
  border-radius: 2px;
  animation: underline-expand 3s ease-in-out infinite;
}

@keyframes underline-expand {
  0%, 100% { opacity: 0.6; transform: scaleX(0.8); transform-origin: left; }
  50%       { opacity: 1;   transform: scaleX(1);   transform-origin: left; }
}

.hero-title .highlight-gold {
  background: linear-gradient(135deg, #F59E0B 0%, var(--primary) 50%, #F7C948 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  position: relative;
  display: inline-block;
  animation: gold-shimmer 4s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* ── Tagline ── */
.hero-tagline {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  opacity: 0.6;
}

/* ── Description ── */
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 560px;
}

/* ── CTA Buttons ── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

/* ── Stats ── */
.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  padding-top: 28px;
  border-top: 1px solid rgba(27,58,107,0.08);
  position: relative;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(27,58,107,0.08);
  border-radius: 16px;
  padding: 14px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(27,58,107,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 16px 0 0 16px;
}

.hero-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,58,107,0.10);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-number .suffix {
  -webkit-text-fill-color: var(--primary);
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-stat-label {
  font-size: 0.6rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.3;
}

/* ── 3D Scene ── */
.scene-3d {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  perspective: 1500px;
  width: 100%;
  height: 520px;
}

.dashboard-3d {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 100%;
  margin-left: auto;
  margin-right: 40px;
  transform-style: preserve-3d;
  animation: float-3d-dashboard 12s infinite cubic-bezier(0.37, 0, 0.63, 1);
  transform: rotateX(10deg) rotateY(-20deg);
}

@keyframes float-3d-dashboard {
  0%   { transform: rotateX(10deg)  rotateY(-20deg) translateY(0px); }
  25%  { transform: rotateX(15deg)  rotateY(-15deg) translateY(-15px); }
  50%  { transform: rotateX(5deg)   rotateY(-25deg) translateY(5px); }
  75%  { transform: rotateX(12deg)  rotateY(-30deg) translateY(-10px); }
  100% { transform: rotateX(10deg)  rotateY(-20deg) translateY(0px); }
}

/* ── Card Layers ── */
.layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 30px;
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.layer-bg {
  transform: translateZ(-80px) scale(0.9);
  background: linear-gradient(135deg, rgba(232,69,30,0.15), rgba(247,201,72,0.15));
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 40px 80px rgba(232,69,30,0.12);
  filter: blur(3px);
}

.layer-mid {
  transform: translateZ(-40px) scale(0.95);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 50px rgba(27,58,107,0.08);
}

.layer-front {
  transform: translateZ(0px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 36px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.9) inset,
    0 24px 48px rgba(27,58,107,0.10),
    0 2px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(255,255,255,1);
  display: flex;
  flex-direction: column;
}

/* ── Orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  opacity: 0.7;
}
.orb-1 {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--primary), #FF8C6B);
  top: -50px; right: -50px;
  transform: translateZ(-150px);
  animation: float-orb-light 6s infinite alternate;
}
.orb-2 {
  width: 220px; height: 220px;
  background: linear-gradient(135deg, var(--accent), #FBBF24);
  bottom: -80px; left: -80px;
  transform: translateZ(-100px);
  animation: float-orb-light 8s infinite alternate-reverse;
}
.orb-3 {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--secondary-light), #60A5FA);
  top: 50%; left: 50%;
  transform: translateZ(-200px);
  animation: float-orb-light 10s infinite alternate;
}

@keyframes float-orb-light {
  from { transform: translateZ(-150px) translateY(0)   scale(1); }
  to   { transform: translateZ(-150px) translateY(30px) scale(1.2); }
}

/* ── Floating Stat Cards ── */
.float-3d {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,1);
  border-radius: 20px;
  padding: 14px 22px;
  box-shadow:
    0 20px 40px rgba(27,58,107,0.12),
    0 4px 8px rgba(232,69,30,0.08),
    inset 0 1px 0 rgba(255,255,255,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
}

.float-3d:hover {
  transform: translateZ(100px) scale(1.12) !important;
  box-shadow: 0 40px 70px rgba(27,58,107,0.18), 0 8px 16px rgba(232,69,30,0.12);
}

.float-1 {
  top: 30px; right: -70px;
  transform: translateZ(60px);
  animation: hover-z-1 5s ease-in-out infinite;
}
.float-2 {
  bottom: 50px; left: -80px;
  transform: translateZ(90px);
  animation: hover-z-2 6s ease-in-out infinite alternate;
}

@keyframes hover-z-1 {
  0%, 100% { transform: translateZ(60px) translateY(0px); }
  50%       { transform: translateZ(60px) translateY(-14px); }
}
@keyframes hover-z-2 {
  0%, 100% { transform: translateZ(90px) translateY(0px); }
  50%       { transform: translateZ(90px) translateY(-18px); }
}

/* ── Card Icon ── */
.hero-card-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(232,69,30,0.08), rgba(247,201,72,0.10));
  border: 2px solid rgba(232,69,30,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(232,69,30,0.12);
  position: relative;
}

.hero-card-icon::after {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-bottom-color: var(--accent);
  animation: spin 3s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.hero-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── Progress Bars ── */
.hero-card-progress {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.progress-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.progress-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  width: 86px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.progress-bar {
  flex: 1;
  height: 7px;
  background: rgba(27,58,107,0.07);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(232,69,30,0.25);
  animation: progress-glow 3s ease-in-out infinite;
}

@keyframes progress-glow {
  0%, 100% { box-shadow: 0 0 8px  rgba(232,69,30,0.2); }
  50%       { box-shadow: 0 0 16px rgba(232,69,30,0.4); }
}

.progress-value {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 800;
  background: rgba(232,69,30,0.08);
  padding: 3px 9px;
  border-radius: 10px;
}

/* ── Float Card Numbers ── */
.hero-float-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.hero-float-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .scene-3d {
    justify-content: center;
    margin-top: 50px;
  }
  .dashboard-3d {
    margin: 0;
    transform: rotateX(5deg) rotateY(0deg) !important;
    animation: none;
  }
  .float-1 { right: -20px; }
  .float-2 { left: -20px; }
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.3s ease;
  user-select: none;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-4px);
  color: var(--primary);
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(27,58,107,0.25);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color 0.3s ease;
}

.scroll-indicator:hover .scroll-mouse {
  border-color: var(--primary);
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

/* ============================================================
   IMPACT STRIP — Bold Open Layout
   ============================================================ */
.impact-strip {
  background: var(--grad-primary);
  padding: 80px 0 130px;
  position: relative;
  overflow: hidden;
}

/* BG Decor */
.impact-bg-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.impact-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
}
.impact-decor-circle.c1 {
  width: 600px; height: 600px;
  top: -280px; left: -200px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  animation: decor-pulse 9s ease-in-out infinite;
}
.impact-decor-circle.c2 {
  width: 400px; height: 400px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(0,0,0,0.07) 0%, transparent 70%);
  animation: decor-pulse 12s ease-in-out infinite reverse;
}
@keyframes decor-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.06); opacity: 1;   }
}
.impact-decor-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

/* Eyebrow */
.impact-eyebrow-wrap {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.impact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}
.impact-eyebrow::before,
.impact-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.40);
}

/* ── Grid: Stats + Dividers ── */
.impact-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  gap: 0;
}

/* ── Each Stat ── */
.impact-item {
  flex: 1;
  text-align: center;
  padding: 16px 24px 28px;
  position: relative;
  cursor: default;
  transition: transform 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-6px);
}

/* Icon */
.impact-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 14px;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.impact-item:hover .impact-icon-wrap {
  background: rgba(255,255,255,0.25);
  transform: rotate(-8deg) scale(1.1);
}

/* Number */
.impact-strip .impact-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  letter-spacing: -2px;
}
.impact-strip .impact-number .counter { display: inline; }
.impact-strip .impact-number .suffix {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: rgba(255,255,255,0.70);
  font-weight: 800;
  letter-spacing: 0;
}

/* Label */
.impact-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Animated accent line under each stat */
.impact-accent-line {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.50);
  border-radius: 2px;
  margin: 0 auto;
  transition: width 0.4s ease, background 0.4s ease;
}
.impact-item:hover .impact-accent-line {
  width: 70px;
  background: rgba(255,255,255,0.90);
}

/* Vertical Divider */
.impact-divider {
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.35), transparent);
  flex-shrink: 0;
  margin: 0 8px;
}

/* Bottom Wave */
.impact-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.impact-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}
.custom-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
.custom-section-divider .divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.2), transparent);
}
.custom-section-divider .divider-icon {
  margin: 0 20px;
  color: var(--primary);
  font-size: 1.2rem;
  background: rgba(234, 88, 12, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(234, 88, 12, 0.2);
}

/* ============================================================
   ABOUT SECTION — Modern Editorial Impact Canvas
   ============================================================ */
.about-canvas-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 50%, #ffffff 100%);
  padding: 90px 0 100px;
  overflow: hidden;
}

/* ── Ambient Background Lighting ── */
.canvas-ambient-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.canvas-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}

.canvas-glow-1 {
  top: 5%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 69, 30, 0.09) 0%, transparent 70%);
}

.canvas-glow-2 {
  bottom: 5%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(27, 58, 107, 0.07) 0%, transparent 70%);
}

.canvas-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 58, 107, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 58, 107, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 25%, transparent 80%);
}

/* ── Top Editorial Header ── */
.about-canvas-header {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.canvas-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(232, 69, 30, 0.2);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(232, 69, 30, 0.08);
}

.pulse-emerald-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.canvas-pill-tag i {
  color: var(--primary);
}

.canvas-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.18;
  letter-spacing: -0.6px;
  margin: 0;
}

.canvas-gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.canvas-desc-lead {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
}

.canvas-quick-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: 16px;
  padding: 12px 22px;
  box-shadow: 0 4px 18px rgba(27, 58, 107, 0.04);
}

.c-stat-item {
  display: flex;
  flex-direction: column;
}

.c-stat-item strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.c-stat-item span {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(27, 58, 107, 0.1);
}

/* ── Main Visual Showcase (Wide Cinema Slider) ── */
.canvas-visual-showcase {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.canvas-visual-showcase .about-img-wrapper.about-slider-container {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px -10px rgba(27, 58, 107, 0.18), 0 0 0 1px rgba(27, 58, 107, 0.08);
  background: #0f172a;
  height: 480px;
}

.canvas-visual-showcase .about-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.06);
  z-index: 1;
}

.about-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slide Overlay & Caption */
.about-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 65px 28px 26px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.55) 50%, transparent 100%);
  color: #fff;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

.about-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(232, 69, 30, 0.35);
}

.about-slide-caption {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  margin: 0;
  max-width: calc(100% - 320px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Slide Counter */
.about-slide-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 5;
}

.about-slide-counter span:first-child {
  color: var(--accent);
}

/* Floating Honor Badge on bottom right of slider */
.canvas-floating-pill-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 5;
  transition: transform 0.3s ease;
}

.canvas-floating-pill-badge:hover {
  transform: translateY(-3px);
}

.pill-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.pill-badge-text {
  display: flex;
  flex-direction: column;
}

.pill-badge-text strong {
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.2;
}

.pill-badge-text span {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Nav Buttons */
.about-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
}

.about-slider-container:hover .about-slider-nav {
  opacity: 1;
  pointer-events: auto;
}

.about-slider-nav.prev { left: 20px; }
.about-slider-nav.next { right: 20px; }

.about-slider-nav:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 25px rgba(232, 69, 30, 0.45);
}

/* Pagination Dots */
.about-slider-pagination {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 5;
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}

.about-dot.active {
  width: 24px;
  background: var(--accent);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(247, 201, 72, 0.6);
}

/* ── 3 Key Impact Pillars (Feature Grid) ── */
.canvas-pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.canvas-pillar-card {
  background: #ffffff;
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 8px 28px rgba(27, 58, 107, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.canvas-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 69, 30, 0.3);
  box-shadow: 0 18px 40px rgba(27, 58, 107, 0.09);
}

.pillar-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.pillar-card-orange .pillar-top-badge {
  background: rgba(232, 69, 30, 0.08);
  color: var(--primary);
}

.pillar-card-red .pillar-top-badge {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.pillar-card-navy .pillar-top-badge {
  background: rgba(27, 58, 107, 0.08);
  color: var(--secondary);
}

.canvas-pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.pillar-quote {
  font-size: 0.84rem;
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.pillar-detail {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pillar-footer-metric {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(27, 58, 107, 0.06);
}

/* ── Bottom Action Bar ── */
.canvas-bottom-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ffffff;
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: 22px;
  padding: 24px 32px;
  box-shadow: 0 10px 35px rgba(27, 58, 107, 0.05);
  position: relative;
  z-index: 1;
}

.action-bar-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fee2e2, #fed7aa);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.action-bar-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 4px 0;
}

.action-bar-text p {
  font-size: 0.86rem;
  color: var(--text-light);
  margin: 0;
}

.action-bar-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Responsive Overrides for Editorial Canvas ── */
@media (max-width: 1024px) {
  .about-canvas-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .canvas-pillars-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .canvas-bottom-action-bar {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .action-bar-text {
    flex-direction: column;
    text-align: center;
  }
  .action-bar-btns {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .about-canvas-section {
    padding: 65px 0;
  }
  .canvas-title {
    font-size: 1.95rem;
  }
  .canvas-quick-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .c-stat-divider {
    display: none;
  }
  .canvas-visual-showcase .about-img-wrapper.about-slider-container,
  .canvas-visual-showcase .about-slider {
    height: 350px;
  }
  .about-slide-caption {
    max-width: 100%;
    font-size: 0.84rem;
  }
  .canvas-floating-pill-badge {
    bottom: 12px;
    right: 12px;
    padding: 8px 12px;
  }
  .pill-badge-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .pill-badge-text strong {
    font-size: 0.8rem;
  }
  .pill-badge-text span {
    font-size: 0.65rem;
  }
  .action-bar-btns {
    flex-direction: column;
  }
  .action-bar-btns .btn,
  .action-bar-btns .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
}




/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  group: true;
}

@media (hover: hover) and (pointer: fine) {
  .program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
  }

  .program-card:hover .program-card-header img {
    transform: scale(1.08);
  }

  .program-card:hover .program-card-overlay {
    background: linear-gradient(to top, rgba(232,69,30,0.9) 0%, rgba(26,26,46,0.4) 100%);
  }

  .program-card:hover .program-card-icon {
    background: var(--primary);
    color: var(--white);
  }

  .program-card:hover .program-card-title {
    color: var(--primary);
  }

  .program-card:hover .program-card-link i {
    transform: translateX(4px);
  }
}

.program-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* moved to hover media query */

.program-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
  transition: var(--transition);
}

/* hover effects moved to @media (hover: hover) block above */

.program-card-icon {
  position: absolute;
  bottom: 16px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

/* moved to hover media query */

.program-card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}

.program-card-body {
  padding: 24px;
}

.program-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
  transition: color 0.3s;
}

/* moved to hover media query */

.program-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.program-card-link i { transition: transform 0.3s; }

/* moved to hover media query */

/* ============================================================
/* ============================================================
   CAMPAIGN / CTA BANNER (BENTO UI)
   ============================================================ */
.cta-banner {
  position: relative;
  background: #ffffff; /* Clean white background */
  padding: 120px 0;
  overflow: hidden;
  z-index: 1;
}

/* Soft glowing mesh background for the white theme */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 69, 30, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  animation: pulse 8s infinite alternate;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 58, 107, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  animation: pulse 8s infinite alternate-reverse;
}

.bento-hero-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.bento-hero-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
  width: 100%;
}

.bento-box {
  background-color: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s, border-color 0.4s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.bento-box:hover {
  transform: translateY(-5px);
  background-color: #111114;
  border-color: rgba(255,255,255,0.15);
}

/* Specific Grid Positions */
.bento-main {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(145deg, #1e293b, #000000);
}

.bento-qr {
  grid-column: span 1;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bento-bank-full {
  grid-column: span 1;
  grid-row: span 2;
  justify-content: flex-start;
}

.bento-note {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-apps {
  grid-column: span 2;
  grid-row: span 1;
  align-items: center;
  justify-content: center;
}

/* Interior Blur Gradients */
.bento-blur {
  position: absolute;
  filter: blur(90px);
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.b1 {
  width: 300px; height: 300px;
  background: rgba(56, 189, 248, 0.2);
  top: -100px; left: -100px;
}
.b2 {
  width: 250px; height: 250px;
  background: rgba(139, 92, 246, 0.25);
  bottom: -100px; right: -100px;
}

/* Main CTA Content */
.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
  z-index: 1;
}
.bento-badge i { color: #eab308; }

.bento-title {
  color: #fff;
  font-size: 3.8rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 20px;
  z-index: 1;
  letter-spacing: -1px;
}
.bento-gradient-text {
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-desc {
  color: #94a3b8;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 90%;
  z-index: 1;
}

.bento-actions {
  display: flex;
  gap: 16px;
  z-index: 1;
  flex-wrap: wrap;
}
.bento-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.primary-bento {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 20px rgba(255,255,255,0.15);
}
.primary-bento:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255,255,255,0.25);
  color: #000;
}
.secondary-bento {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.secondary-bento:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* QR Card */
.qr-label {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
  z-index: 1;
  letter-spacing: 0.5px;
}
.bento-qr-inner {
  background: #fff;
  padding: 18px;
  border-radius: 26px;
  margin-bottom: 24px;
  z-index: 1;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.bento-qr-inner::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 29px;
  background: linear-gradient(45deg, #38bdf8, #818cf8);
  z-index: -1;
  animation: qrPulse 3s infinite alternate;
}
@keyframes qrPulse {
  0% { opacity: 0.5; filter: blur(6px); }
  100% { opacity: 1; filter: blur(12px); }
}
.bento-qr-image {
  width: 170px;
  height: 170px;
  border-radius: 12px;
  display: block;
}
.bento-qr-account {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}

/* Bank Info Cards */
.bento-icon-header {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bento-icon-header i {
  color: #38bdf8;
  font-size: 1.2rem;
}

.bento-data-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mt-2 { margin-top: 24px; }
.bento-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
}
.bento-value {
  font-size: 1.15rem;
  color: #f1f5f9;
  font-weight: 700;
}
.bento-highlight {
  color: #38bdf8;
  font-family: monospace;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.upi-box-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 8px;
  transition: border-color 0.3s;
}
.upi-box-flex:hover {
  border-color: rgba(56, 189, 248, 0.4);
}
.bento-upi {
  font-family: monospace;
  color: #818cf8;
}
.bento-copy {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  transition: 0.2s;
  padding: 4px;
}
.bento-copy:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Note Box */
.bento-note {
  justify-content: center;
}
.note-content {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(234, 179, 8, 0.05);
  border: 1px solid rgba(234, 179, 8, 0.15);
  padding: 20px 24px;
  border-radius: 20px;
}
.note-icon {
  font-size: 1.5rem;
  color: #eab308;
}
.note-text {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}
.note-text strong {
  color: #eab308;
}

/* Apps Grid */
.bento-apps {
  grid-column: span 2;
  grid-row: span 1;
  align-items: center;
  justify-content: center;
}
.apps-mini-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
  margin-bottom: 20px;
  display: block;
}
.bento-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}
.b-app {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.b-app:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.15);
}

.app-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.app-img {
  height: 24px;
  max-width: 100%;
  object-fit: contain;
}
.upi-img {
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .bento-hero-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-main, .bento-note, .bento-apps {
    grid-column: span 2;
  }
  .bento-qr {
    grid-column: span 1;
    grid-row: span 2;
  }
  .bento-bank-full {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .bento-hero-container {
    grid-template-columns: 1fr;
  }
  .bento-box {
    grid-column: span 1 !important;
    grid-row: auto !important;
    padding: 24px;
  }
  .bento-title {
    font-size: 2.5rem;
  }
  .bento-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cta-qr-img { width: 160px; height: 160px; }
}

.cta-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 69, 30, 0.15);
  border: 1px solid rgba(232, 69, 30, 0.3);
  color: var(--accent);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(232, 69, 30, 0.2);
  align-self: flex-start;
}
@media (max-width: 900px) { .cta-banner-tag { align-self: center; } }

.cta-banner-tag i {
  animation: pulse 2s infinite;
}

.cta-banner-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-banner-desc {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-banner .btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.cta-banner .btn-outline:hover {
  background: var(--primary);
  color: white;
}

.cta-banner-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cta-banner-actions { justify-content: center; }
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }
}

.gallery-item-label {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.gallery-zoom {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  transition: background 0.3s;
}

.gallery-zoom:hover { background: var(--primary); }

/* ============================================================
   TESTIMONIALS / VOLUNTEER STORIES
   ============================================================ */
.testimonials-section { background: var(--off-white); }

.swiper-testimonials {
  padding: 20px 0 60px !important;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: auto;
}

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

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(232,69,30,0.2);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
  font-family: var(--font-body);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-left: auto;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section {
  background: linear-gradient(160deg, #fdf6f0 0%, #fff 45%, #f0f5ff 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.partners-section-bg-deco {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FF9933 33.33%, #ffffff 33.33% 66.66%, #138808 66.66%);
}

/* Section Header */
.partners-header {
  text-align: center;
  margin-bottom: 52px;
}

.partners-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin: 12px 0 14px;
  letter-spacing: -0.5px;
}

.partners-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Track area (full-bleed) */
.partners-track-area {
  margin: 0 0 48px;
  position: relative;
}

.partners-marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

.partners-marquee-wrapper::before,
.partners-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fdf6f0 0%, rgba(253,246,240,0.8) 50%, transparent 100%);
}

.partners-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f0f5ff 0%, rgba(240,245,255,0.8) 50%, transparent 100%);
}

.partners-marquee {
  display: flex;
  gap: 28px;
  animation: marquee-scroll 32s linear infinite;
  width: max-content;
}

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

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  min-width: 160px;
  height: 100px;
  flex-shrink: 0;
  cursor: default;
}

.partner-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.partner-logo img {
  max-height: 46px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(90%);
  opacity: 0.65;
  transition: filter 0.38s ease, opacity 0.38s ease;
}

@media (hover: hover) and (pointer: fine) {
  .partner-logo:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(232,69,30,0.18);
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(145deg, #fff8f5, #fff);
  }
  .partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
  }
  .partner-logo:hover .partner-name {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats bar below marquee */
.partners-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 28px 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  max-width: 680px;
  margin: 0 auto;
}

.pstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.pstat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.pstat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pstat-div {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
  flex-shrink: 0;
  margin: 0 20px;
}

@media (max-width: 600px) {
  .partners-stats {
    padding: 20px 16px;
    gap: 0;
  }
  .pstat-div { margin: 0 10px; }
  .pstat-num { font-size: 1.5rem; }
}

@media (max-width: 400px) {
  .partners-stats { flex-direction: column; gap: 16px; }
  .pstat-div { width: 60px; height: 1.5px; margin: 0; }
}

/* ============================================================
   VIDEO IMPACT SECTION
   ============================================================ */
.video-impact-section { background: var(--dark); padding: 100px 0; }
.video-impact-section .section-tag { color: var(--primary); }
.video-impact-section .section-title { color: var(--white); }
.video-impact-section .section-title span { color: var(--gold); }
.video-impact-section .section-desc { color: rgba(255,255,255,0.65); }
.video-impact-section .title-underline::before { background: var(--primary); }
.video-impact-section .title-underline::after { background: var(--gold); }

.video-impact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.video-3d-card {
  width: 48%;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.video-3d-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(234, 88, 12, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(234, 88, 12, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.video-3d-card video {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transition: transform 0.5s;
}

.video-3d-card:hover video {
  transform: scale(1.02);
}

.v-3d-info {
  margin-top: 25px;
  text-align: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: color 0.3s;
}

.video-3d-card:hover .v-3d-info {
  color: var(--primary);
}

.v-3d-info i {
  color: var(--primary);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(234, 88, 12, 0.5));
}

@media (max-width: 992px) {
  .video-impact-grid {
    flex-direction: column;
    perspective: none;
  }
  .video-3d-card {
    width: 100%;
    transform: none !important;
  }
  .video-impact-grid:hover .video-3d-card {
    transform: none;
    filter: none;
  }
  .video-impact-grid .video-3d-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 60px rgba(234, 88, 12, 0.3) !important;
  }
  .v-3d-info {
    transform: none;
  }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  transition: var(--transition);
  position: relative;
}

/* team card hover effects grouped below */

.team-card-img {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .team-card:hover {
    transform: translateY(-8px);
  }

  .team-card:hover .team-card-img img {
    border-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(232,69,30,0.1), var(--shadow-lg);
  }

  .team-card:hover .team-card-social {
    opacity: 1;
    transform: scale(1);
  }
}

.team-card-social {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: scale(0.7);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s ease;
}

/* moved to hover media query */

.team-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-card-role {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 100px 0;
  position: relative;
  background: var(--light-gray);
}

.newsletter-inner {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 32px;
  padding: 70px 60px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

/* Glowing orbs in the background */
.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255,153,51,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-inner::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -20%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(19,136,8,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.nl-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.nl-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

.nl-title span {
  background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nl-desc {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.newsletter-form-wrap {
  position: relative;
  z-index: 5;
}

.newsletter-form {
  display: flex;
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #ffffff;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.nl-submit-btn {
  background: linear-gradient(90deg, #FF9933, #e8451e);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(232, 69, 30, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nl-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(232, 69, 30, 0.5);
}

.nl-privacy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 992px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 40px;
    text-align: center;
  }
  .nl-title {
    font-size: 2.2rem;
  }
  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }
  .newsletter-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 15px;
    border-radius: 50px;
  }
  .nl-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  /* Premium subtle glowing top line */
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.5), transparent) 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,69,30,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 46px;
  height: 46px;
  background: var(--white) url('../images/logo.png') center / contain no-repeat;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.footer-logo-text span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%; /* Changed to circles for a softer modern look */
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.05);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.social-link[title="WhatsApp"]:hover { background: #25D366; border-color: #25D366; }
.social-link[title="Pinterest"]:hover { background: #E60023; border-color: #E60023; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a i { font-size: 0.7rem; color: var(--primary); }

.footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,69,30,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  text-decoration: none;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  a.footer-contact-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.12);
  }
}

.footer-contact-text span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.footer-contact-text a,
.footer-contact-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer-contact-text a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-text a { color: var(--primary-light); }
.footer-bottom-text a:hover { color: var(--primary); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,69,30,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  #back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--grad-hero);
  background-size: cover;
  background-position: top center;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(27,58,107,0.75) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(232,69,30,0.08);
  border-radius: 50%;
  pointer-events: none;
}

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

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,69,30,0.2);
  border: 1px solid rgba(232,69,30,0.4);
  color: #FF8C6B;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.85rem;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--accent); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-label .required { color: var(--primary); }

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  font-family: var(--font-body);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232,69,30,0.08);
  outline: none;
}

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

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23636E72' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.form-check input { margin-top: 3px; accent-color: var(--primary); }

.form-check label {
  font-size: 0.875rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.6;
}

.form-success {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  color: var(--green-dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: none;
}

.form-error {
  background: rgba(232,69,30,0.1);
  border: 1px solid rgba(232,69,30,0.3);
  color: var(--primary-dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: none;
}

/* ============================================================
   DONATE PAGE
   ============================================================ */
.donate-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.amount-btn {
  padding: 18px 12px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  text-align: center;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--primary);
  background: rgba(232,69,30,0.06);
  color: var(--primary);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.lightbox-close:hover { background: var(--primary); }

/* ============================================================
   COOKIE BAR
   ============================================================ */
.cookie-bar-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 5000;
}

.cookie-bar {
  pointer-events: auto;
  position: relative;
  bottom: -150px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  max-width: 550px;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-bar.show { 
  bottom: 0; 
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-icon {
  font-size: 1.5rem;
  color: var(--primary-light, #ff8c00);
}

.cookie-bar p { 
  font-size: 0.9rem; 
  margin: 0; 
  line-height: 1.5;
  color: rgba(255,255,255,0.85); 
}

.cookie-bar a { 
  color: var(--primary-light, #ff8c00); 
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.cookie-bar a:hover {
  color: var(--primary, #ff7b00);
}

@media (max-width: 768px) {
  #cookie-bar-wrapper .container {
    padding: 0;
  }
  
  .cookie-bar {
    margin-bottom: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  #cookie-accept {
    width: 100%;
  }
}

/* ============================================================
   SWIPER OVERRIDES
   ============================================================ */
.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  width: 24px !important;
  border-radius: 3px !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  background: var(--white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 900 !important;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { gap: 40px; }
  .hero-visual { justify-content: center; }
  .hero-card-stack { width: 300px; height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 50px; }
  .about-img-wrapper img { height: 420px; }
}

/* ============================================================
   MOBILE DRAWER OVERLAY  (injected by JS)
   ============================================================ */
/* Mobile-only overlay — hidden globally */
.nav-overlay {
  display: none;
}

/* Drawer header and nav-cta — on desktop, these are fixed but hidden via visibility */
/* They're styled inside @media (max-width:900px) as drawer components */
.drawer-header {
  display: none; /* overridden to display:flex inside mobile media query */
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 25, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 996;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.nav-open .nav-overlay {
  opacity: 1;
}

@media (max-width: 900px) {
  :root { --section-padding: 70px 0; }

  /* ---- Hide desktop elements ---- */
  .hamburger { display: flex; }
  .nav-overlay { display: block; pointer-events: none; }
  body.nav-open .nav-overlay { pointer-events: auto; }

  /* ---- DRAWER PANEL — always display:flex, slide via transform+visibility ---- */
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100dvh;
    height: 100vh; /* fallback */
    background: var(--white);
    z-index: 997;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    padding-top: 72px;    /* space for drawer-header */
    padding-bottom: 80px; /* space for CTA footer */
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0.42s;
    box-shadow: -12px 0 60px rgba(0,0,0,0.18);
  }

  /* Drawer top bar (injected as sibling before nav-menu by JS) */
  .drawer-header {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 70px;
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0.42s;
  }

  body.nav-open .drawer-header {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0s;
  }

  .drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .drawer-logo img {
    height: 36px;
    width: 36px;
    object-fit: contain;
    border-radius: 50%;
  }

  .drawer-logo-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
  }

  .drawer-logo-text small {
    display: block;
    font-size: 0.55rem;
    font-weight: 500;
    color: #404040;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
  }

  .drawer-close:active { background: var(--primary); color: white; }

  /* Open state — slides in, visibility becomes immediate on open */
  body.nav-open .nav-menu {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0s;
  }

  /* Nav links inside drawer */
  .nav-link {
    color: var(--dark) !important;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    padding: 13px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(232,69,30,0.06) !important;
    color: var(--primary) !important;
  }

  /* Accordion dropdowns */
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: var(--off-white) !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .nav-item.mobile-open .dropdown-menu {
    max-height: 400px;
  }

  .dropdown-item {
    padding: 11px 20px 11px 36px;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0 !important;
    font-size: 0.875rem;
  }

  .nav-link .fa-chevron-down {
    transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.65rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-item.mobile-open .nav-link .fa-chevron-down {
    transform: rotate(180deg);
  }

  /* Donate button — fixed drawer footer, slides in with the panel */
  .nav-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    width: min(300px, 85vw);
    padding: 16px 20px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    z-index: 998;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0.42s;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  }

  body.nav-open .nav-cta {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0s;
  }

  /* Fix backdrop-filter containing block issue so .nav-cta stays at bottom of screen */
  body.nav-open #navbar,
  body.nav-open .nav-container {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none;
  }

  body.nav-open .nav-logo-text strong,
  body.nav-open .nav-logo-text span {
    color: var(--white) !important;
  }

  body.nav-open .nav-logo,
  body.nav-open .hamburger,
  body.nav-open .drawer-header {
    pointer-events: auto;
  }

  .nav-donate-btn { width: 100%; justify-content: center; }

  /* Add bottom padding to nav-menu so last items don't hide behind CTA */
  .nav-menu { padding-bottom: 80px; }

  /* ---- Layout ---- */
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: flex; justify-content: center; padding: 20px 0 40px; perspective: none; }
  .hero-card-stack { width: 280px; height: 400px; margin: 0 auto; transform: scale(0.95); transform-origin: top center; }
  .hero-float-1 { right: -20px; top: -10px; transform: scale(0.85); }
  .hero-float-2 { left: -20px; bottom: -10px; transform: scale(0.85); }

  .hero-title { font-size: clamp(1.9rem, 5vw, 2.8rem); }
  .hero-title .highlight-gold { font-size: clamp(1.6rem, 4vw, 2.3rem); }

  /* Impact — 4 in a row still ok at 900px */
  .impact-grid { flex-wrap: nowrap; }
  .impact-strip .impact-number { font-size: clamp(2rem, 4vw, 3.2rem); }
  .impact-item { padding: 12px 16px 22px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }

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

  .newsletter-inner { grid-template-columns: 1fr; gap: 30px; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 600px) {
  :root { --section-padding: 60px 0; }

  /* Preloader responsive overrides */
  #preloader { padding: 0 20px; text-align: center; }
  .modern-loader-wrapper { width: 90px; height: 90px; margin-bottom: 20px; }
  .modern-loader-logo { width: 50px; height: 50px; }
  .modern-loader-text { font-size: 1.3rem; letter-spacing: 1px; }

  /* 3D Dashboard height fix for mobile */
  .scene-3d { height: 600px; }
  .layer-front { padding: 30px 20px; }
  .hero-card-progress { gap: 12px; }
  .hero-card-desc { margin-bottom: 20px; }

  /* Newsletter responsive fixes */
  .newsletter-inner { padding: 30px 20px !important; }
  .newsletter-input { width: 100%; text-align: center; }
  .nl-privacy { font-size: 0.75rem; padding: 0 10px; line-height: 1.4; }
  .nl-title { font-size: 1.8rem !important; }

  /* Impact — 2×2 on small screens */
  .impact-grid {
    flex-wrap: wrap;
    gap: 0;
  }
  .impact-item {
    flex: 0 0 50%;
    padding: 28px 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .impact-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.12); }
  /* Hide vertical divider elements on mobile */
  .impact-divider { display: none; }
  .impact-strip .impact-number { font-size: 2.6rem; letter-spacing: -1px; }
  .impact-strip .impact-number .suffix { font-size: 1.8rem; }
  .impact-strip { padding: 60px 0 100px; }

  .programs-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 8px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn, .bento-btn { width: 100%; justify-content: center; }
  .bento-actions { flex-direction: column; width: 100%; }

  .hero-stat-number { font-size: 1.5rem; }
  .float-1 { right: 5px; animation: hover-mobile-1 4s ease-in-out infinite !important; }
  .float-2 { left: 5px; animation: hover-mobile-2 5s ease-in-out infinite alternate !important; }

  @keyframes hover-mobile-1 {
    0%, 100% { transform: scale(0.7) translateY(0px); }
    50% { transform: scale(0.7) translateY(-10px); }
  }
  @keyframes hover-mobile-2 {
    0%, 100% { transform: scale(0.7) translateY(0px); }
    50% { transform: scale(0.7) translateY(-15px); }
  }
  .btn { white-space: normal; text-align: center; max-width: 100%; padding: 12px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  .form-row { grid-template-columns: 1fr; }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }

  .about-actions { flex-direction: column; }
  .about-actions .btn { justify-content: center; }

  .section-title { letter-spacing: -0.01em; }

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

  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: calc(50% - 8px); }

  /* Page hero smaller on mobile */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Contact form card padding */
  .contact-form-card { padding: 28px 20px; }
  .form-card { padding: 24px 20px !important; }
  .donate-form-card { padding: 28px 20px !important; }

  /* Nav logo text smaller */
  .nav-logo-text strong { font-size: 0.95rem; line-height: 1.1; }
  .nav-logo-text span { display: block !important; visibility: visible !important; font-size: 0.55rem; letter-spacing: 1px; margin-top: 2px; }

  /* Logo smaller on mobile */
  .nav-logo-img { height: 38px; width: 38px; }
}

@media (max-width: 400px) {
  .nav-logo-text strong { font-size: 0.85rem; }
  .nav-logo-text span { font-size: 0.5rem; letter-spacing: 0.5px; }
  .nav-logo-img { height: 34px; width: 34px; }

  .hero-actions { gap: 10px; }
  .hero-title { font-size: 1.7rem; }
  .hero-title .highlight-gold { font-size: 1.4rem; }

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

  /* Impact grid — still 2×2 on tiny phones, tighter */
  .impact-item { padding: 20px 10px 18px; }
  .impact-strip .impact-number { font-size: 2rem; }
  .impact-strip .impact-number .suffix { font-size: 1.3rem; }
  .impact-icon-wrap { width: 42px; height: 42px; font-size: 1.1rem; margin-bottom: 14px; }

  /* Donate amounts 2 col */
  .donate-amounts { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Tab nav wraps */
  .tab-nav { gap: 6px; }
}

/* Modern Unique Login Button */
.nav-login-btn-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.nav-login-btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-login-btn-modern:hover {
  transform: translateY(-3px) scale(1.03);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.5);
}

.nav-login-btn-modern:hover::before {
  opacity: 1;
}

.nav-login-btn-modern i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-login-btn-modern:hover i {
  transform: scale(1.2);
}

.nav-login-btn-modern .btn-glow {
  position: absolute;
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  left: -70px;
  transform: skewX(-20deg);
  animation: btnShine 4s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes btnShine {
  0% { left: -70px; }
  20% { left: 120%; }
  100% { left: 120%; }
}

/* Adjust for sticky/scrolled navbar */
#navbar.scrolled .nav-login-btn-modern {
  background: #f1f5f9;
  color: #1e293b;
  border: 1px solid #cbd5e1;
}

#navbar.scrolled .nav-login-btn-modern:hover {
  color: #fff !important;
  border-color: transparent;
}



/* Modern Sticky Login Tab */
.sticky-login-wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

.sticky-login-tab {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95); /* Bright white base to contrast with orange */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #1a1a2e;
  text-decoration: none;
  padding: 12px;
  border-radius: 20px 0 0 20px;
  border: 1px solid rgba(232, 69, 30, 0.3);
  border-right: none;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: -5px 0 30px rgba(232, 69, 30, 0.15), inset 0 0 15px rgba(232, 69, 30, 0.05);
  position: relative;
  overflow: hidden;
  width: 65px;
  height: 65px;
}

.sticky-login-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 69, 30, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: 0;
}

.sticky-login-tab:hover {
  width: 200px;
  background: #fff;
  box-shadow: -10px 0 40px rgba(232, 69, 30, 0.4);
  border-color: rgba(232, 69, 30, 0.8);
}

.sticky-login-tab:hover::before {
  left: 100%;
  transition: left 0.8s ease;
}

.sticky-login-icon {
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #E8451E; /* Primary Orange */
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: floatIcon 3s ease-in-out infinite;
}

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

.sticky-login-tab:hover .sticky-login-icon {
  transform: scale(1.1) rotate(-5deg);
  animation: none;
  color: #C0391A;
  text-shadow: 0 0 15px rgba(232, 69, 30, 0.6);
}

.sticky-login-text {
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-left: 15px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1.05rem;
  z-index: 1;
  color: #E8451E;
}

.sticky-login-tab:hover .sticky-login-text {
  opacity: 1;
  transform: translateX(0);
}

.sticky-login-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(232, 69, 30, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.sticky-login-tab:hover .sticky-login-glow {
  opacity: 1;
  width: 300px;
  height: 300px;
  animation: pulseUltra 2s infinite alternate;
}

@keyframes pulseUltra {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Member Login Button Styles */
.nav-login-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .nav-login-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232,69,30,0.2);
  }
}

.nav-login-btn:active {
  transform: scale(0.97);
}

#navbar.transparent .nav-login-btn {
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}

#navbar.transparent .nav-login-btn:hover {
  background: var(--white);
  color: var(--primary);
}

/* ====================================================
   BIRTHDAY SECTION
   ==================================================== */
.birthday-section {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 240, 245, 0.5) 0%, rgba(240, 248, 255, 0.5) 100%);
  overflow: hidden;
}

.birthday-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.birthday-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.birthday-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  flex-shrink: 0;
}

.birthday-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(232, 69, 30, 0.2);
  position: relative;
  z-index: 2;
  border: 8px solid white;
}

.birthday-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(232, 69, 30, 0.4) 0%, transparent 60%);
  z-index: 1;
  border-radius: 50%;
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.birthday-text-box {
  flex-grow: 1;
}

.birthday-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
  color: #d11a2a;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 154, 158, 0.3);
}

.birthday-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.birthday-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.birthday-message {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 25px;
}

.birthday-from {
  background: rgba(255,255,255,0.7);
  padding: 15px 25px;
  border-radius: 15px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  display: inline-block;
}

.birthday-from p {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
}

.birthday-from strong {
  display: block;
  margin-top: 5px;
  color: var(--primary);
  font-size: 1.1rem;
}

.birthday-confetti {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff9a9e"/><circle cx="80" cy="50" r="3" fill="%23fecfef"/><circle cx="40" cy="80" r="2" fill="%23ffeb3b"/><path d="M10 50 L15 55 L20 50 Z" fill="%23ff9a9e"/><path d="M70 20 L75 25 L80 20 Z" fill="%23ffeb3b"/></svg>');
  background-repeat: repeat;
  background-size: 150px 150px;
  opacity: 0.8;
  z-index: 1;
  animation: confetti-fall 20s linear infinite;
}

@keyframes confetti-fall {
  0% { background-position: 0 0; }
  100% { background-position: 0 300px; }
}

@media (max-width: 768px) {
  .birthday-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .birthday-from {
    text-align: left;
    width: 100%;
  }
  .birthday-title {
    font-size: 2.5rem;
  }
  .birthday-img {
    width: 250px;
    height: 250px;
  }
  .birthday-image-wrapper {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* ULTRA MODERN BIRTHDAY SECTION */
.birthday-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding: 100px 0;
}

.birthday-ultra-modern {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.b-visual {
  position: relative;
}

.b-blob {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, var(--primary) 0%, #ff7e5f 100%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph 8s ease-in-out infinite alternate;
  opacity: 0.15;
  z-index: 1;
}

@keyframes morph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.b-img-box {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transform: rotate(-3deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.b-img-box:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 40px 70px rgba(232, 69, 30, 0.2);
}

.b-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border: 10px solid white;
}

.b-tag {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(232, 69, 30, 0.2);
  transform: rotate(5deg);
  z-index: 3;
}

.b-content {
  padding-left: 20px;
}

.b-subtitle {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.b-subtitle::after {
  content: '';
  position: absolute;
  right: -70px;
  top: 50%;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.b-title {
  font-size: 4rem;
  font-weight: 900;
  color: #1e293b;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.b-title .highlight-text {
  background: linear-gradient(135deg, var(--primary) 0%, #ff7e5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.b-desc {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 40px;
}

.b-signature {
  display: flex;
  align-items: center;
  gap: 20px;
}

.b-sig-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.b-sig-text strong {
  display: block;
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 5px;
}

.b-sig-text span {
  font-size: 0.95rem;
  color: #94a3b8;
}

@media (max-width: 991px) {
  .birthday-ultra-modern {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .b-subtitle::after {
    display: none;
  }
  .b-img-box {
    max-width: 450px;
    margin: 0 auto;
    transform: rotate(0);
  }
  .b-tag {
    right: 10px;
  }
  .b-content {
    padding-left: 0;
  }
  .b-title {
    font-size: 3rem;
  }
  .b-signature {
    justify-content: center;
  }
}

/* ====================================================
   BIRTHDAY BACKGROUND ANIMATIONS (BALLOONS & SPARKLES)
   ==================================================== */
.b-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Balloons */
.b-balloon {
  position: absolute;
  width: 45px;
  height: 55px;
  background: var(--primary);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  opacity: 0.6;
  animation: floatUp 15s linear infinite;
  box-shadow: inset -10px -10px 15px rgba(0,0,0,0.1);
}
.b-balloon::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid var(--primary);
}
.b-balloon::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 1px;
  height: 25px;
  background: rgba(0,0,0,0.2);
}

.balloon1 { left: 10%; background: #ff7e5f; animation-duration: 18s; animation-delay: 1s; transform: scale(1.1); }
.balloon1::before { border-bottom-color: #ff7e5f; }
.balloon2 { left: 85%; background: #feb47b; animation-duration: 22s; animation-delay: 4s; width: 35px; height: 45px; }
.balloon2::before { border-bottom-color: #feb47b; }
.balloon3 { left: 50%; background: #ff9a9e; animation-duration: 14s; animation-delay: 0s; width: 60px; height: 75px; }
.balloon3::before { border-bottom-color: #ff9a9e; }
.balloon4 { left: 25%; background: #a18cd1; animation-duration: 20s; animation-delay: 7s; }
.balloon4::before { border-bottom-color: #a18cd1; }

@keyframes floatUp {
  0% { transform: translateY(120vh) rotate(-10deg); opacity: 0; }
  10% { opacity: 0.7; }
  50% { transform: translateY(50vh) rotate(10deg); }
  90% { opacity: 0.7; }
  100% { transform: translateY(-20vh) rotate(-10deg); opacity: 0; }
}

/* Sparkles */
.b-sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #f1c40f;
  border-radius: 50%;
  animation: sparkleTwinkle 3s ease-in-out infinite;
  box-shadow: 0 0 10px #f1c40f, 0 0 20px #f1c40f;
}

.sparkle1 { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle2 { top: 60%; left: 80%; animation-delay: 0.5s; width: 10px; height: 10px; }
.sparkle3 { top: 35%; left: 60%; animation-delay: 1.2s; }
.sparkle4 { top: 80%; left: 25%; animation-delay: 0.8s; }
.sparkle5 { top: 15%; left: 85%; animation-delay: 2s; width: 5px; height: 5px; }

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Falling Confetti Layer */
.b-confetti-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 50 L15 55 L20 50 Z" fill="%23ff9a9e"/><path d="M70 20 L75 25 L80 20 Z" fill="%23ffeb3b"/><circle cx="30" cy="80" r="2" fill="%23a18cd1"/><circle cx="90" cy="60" r="3" fill="%23ff7e5f"/></svg>');
  background-size: 150px 150px;
  animation: confettiFall 20s linear infinite;
  opacity: 0.35;
}

@keyframes confettiFall {
  0% { background-position: 0 -300px; }
  100% { background-position: 0 300px; }
}

/* ====================================================
   BIRTHDAY BANNER SECTION (BLUE THEME)
   ==================================================== */
.birthday-banner-section {
  position: relative;
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  padding: 80px 0 150px 0;
  overflow: hidden;
  color: white;
  margin-top: 50px;
}

/* Torn paper effect at the bottom */
.torn-paper-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-23.64V0Z" fill="%23ffffff"/></svg>');
  background-size: cover;
  background-position: center bottom;
  z-index: 10;
}

.birthday-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
  gap: 40px;
}

.bb-visual {
  position: relative;
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone Frame */
.bb-phone-frame {
  position: relative;
  width: 260px;
  height: 450px;
  border: 8px solid #333;
  border-radius: 40px;
  background: transparent;
  box-shadow: 20px 20px 40px rgba(0,0,0,0.3);
  transform: rotate(-10deg);
  z-index: 2;
}
.bb-phone-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 32px;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.2);
  pointer-events: none;
}

/* The Person Image */
.bb-person-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(1.3);
  width: 140%;
  height: auto;
  z-index: 3;
  /* Masking the bottom so it doesn't cross the phone border */
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 95%);
}

/* Glowing Rings */
.bb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border: 4px solid rgba(0, 242, 254, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 20px #00f2fe, inset 0 0 20px #00f2fe;
  transform: translate(-50%, -50%) rotateX(75deg) rotateY(-10deg);
  z-index: 4;
}
.bb-ring-1 {
  animation: spinRing 8s linear infinite;
}
.bb-ring-2 {
  width: 400px;
  height: 400px;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
  transform: translate(-50%, -50%) rotateX(70deg) rotateY(10deg);
  animation: spinRingReverse 12s linear infinite;
}

@keyframes spinRing {
  0% { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg); }
}
@keyframes spinRingReverse {
  0% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
  100% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
}

.bb-name-cursive {
  position: absolute;
  right: -50px;
  top: 30%;
  font-family: 'Brush Script MT', 'Comic Sans MS', cursive;
  font-size: 3.5rem;
  line-height: 0.8;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  transform: rotate(-5deg);
  z-index: 5;
}
.bb-name-cursive span {
  font-size: 2.5rem;
  margin-left: 30px;
}

/* Text Section */
.bb-text-box {
  flex: 1.2;
  min-width: 300px;
  padding-left: 40px;
}

.bb-title {
  font-family: 'Georgia', serif;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 20px;
}
.bb-title strong {
  font-size: 6rem;
  font-weight: 800;
  display: block;
}

.bb-subtitle {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 15px;
  color: #e0f2fe;
}

.bb-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
}

.bb-date {
  position: absolute;
  bottom: -40px;
  right: 0;
  text-align: right;
  color: #004dff;
  font-family: 'Georgia', serif;
  z-index: 11;
}
.bb-date .day {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.bb-date .month {
  font-size: 1.5rem;
}

/* Decorations */
.bb-decorations {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bb-cake {
  position: absolute;
  font-size: 6rem;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
  animation: floatUpDown 6s ease-in-out infinite alternate;
}
.cake-1 { top: 20%; right: 10%; }
.cake-2 { bottom: 20%; left: 35%; animation-delay: -3s; transform: scale(0.7); font-size: 4rem;}

@keyframes floatUpDown {
  0% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(20px) rotate(-5deg); }
}

.bb-balloon {
  position: absolute;
  width: 100px;
  height: 120px;
  background: rgba(255,255,255,0.1);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  box-shadow: inset 10px 10px 20px rgba(255,255,255,0.2);
}
.bb-bal-1 { top: -20px; left: 10%; }
.bb-bal-2 { top: 30%; left: -30px; transform: scale(0.6); }
.bb-bal-3 { top: 10%; right: 30%; transform: scale(0.8); }

@media (max-width: 991px) {
  .birthday-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .bb-text-box {
    padding-left: 0;
    margin-top: 50px;
  }
  .bb-name-cursive {
    right: 0;
    bottom: -40px;
    top: auto;
  }
  .bb-date {
    position: relative;
    bottom: 0;
    text-align: center;
    color: white;
    margin-top: 30px;
  }
  .bb-title strong {
    font-size: 4rem;
  }
  .cake-1, .cake-2 {
    opacity: 0.5;
  }
}

/* Mobile Login modifications */
@media (max-width: 900px) {
    .sticky-login-wrapper {
        display: none !important;
    }
    
    .mobile-login-item {
        display: block !important;
        margin: 20px 20px 30px; /* Add breathing room inside the drawer */
        padding: 0;
        border: none;
    }

    .mobile-login-item a.nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: var(--grad-primary);
        color: var(--white) !important;
        padding: 14px 20px;
        border-radius: var(--radius-full);
        font-size: 1.1rem;
        font-weight: 700;
        box-shadow: var(--shadow-color);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-decoration: none;
        transition: var(--transition);
        border: none;
    }

    .mobile-login-item a.nav-link i {
        font-size: 1.25rem;
    }

    .mobile-login-item a.nav-link:active {
        transform: scale(0.96);
        box-shadow: none;
    }
}

.mobile-login-item {
    display: none;
}
