/* =====================================================
   MATA CHAKERI DEVI FOUNDATION — STYLESHEET
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --saffron: #E8780A;
  --saffron-light: #FF9A2E;
  --saffron-dark: #C0610A;
  --navy: #0A1628;
  --navy-mid: #1A2B4A;
  --navy-soft: #243660;
  --green: #2D7D46;
  --green-light: #3DAD5A;
  --white: #FFFFFF;
  --off-white: #F8F5F0;
  --light-bg: #F4F0EB;
  --text-dark: #1A1A2E;
  --text-mid: #444;
  --text-light: #888;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
  --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-accent: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

.section {
  padding: 96px 0;
}

.bg-light {
  background: var(--light-bg);
}

.mt-1 {
  margin-top: 24px;
}

.logo_image {
  width: 70px;
}

/* ── Page Loader ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-lotus {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
}

.loader-lotus span {
  width: 12px;
  height: 36px;
  background: var(--saffron);
  border-radius: 50px;
  display: block;
  animation: lotusWave 1.2s ease-in-out infinite;
}

.loader-lotus span:nth-child(2) {
  animation-delay: 0.1s;
}

.loader-lotus span:nth-child(3) {
  animation-delay: 0.2s;
}

.loader-lotus span:nth-child(4) {
  animation-delay: 0.3s;
}

.loader-lotus span:nth-child(5) {
  animation-delay: 0.4s;
}

.loader-lotus span:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes lotusWave {

  0%,
  60%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }

  30% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.loader-text {
  color: var(--saffron);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* =====================================================
   HEADER
   ===================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  background: transparent;
}

#main-header.scrolled,
#main-header.scrolled-important {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
  height: 68px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-emblem svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(232, 120, 10, 0.4));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  text-wrap: nowrap;
  margin-bottom: 10px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.89rem;
  font-weight: 600;
  color: var(--saffron);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

#main-header.scrolled .logo-name,
#main-header.scrolled-important .logo-name {
  color: var(--navy);
}

/* Desktop Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link .arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

#main-header.scrolled .nav-link,
#main-header.scrolled-important .nav-link {
  color: var(--navy-mid);
}

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

#main-header.scrolled .nav-link:hover,
#main-header.scrolled-important .nav-link:hover {
  background: var(--light-bg);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown:hover .nav-link .arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition);
  padding: 8px;
  border: 1px solid var(--border);
  z-index: 200;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown li a:hover {
  background: var(--light-bg);
  color: var(--saffron);
  padding-left: 22px;
}

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

.btn-donate {
  background: var(--saffron);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232, 120, 10, 0.35);
}

.btn-donate:hover {
  background: var(--saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 120, 10, 0.45);
}

/* Hamburger */
.hamburger {
  width: 36px;
  height: 36px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  padding: 4px;
  transition: background var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

#main-header.scrolled .hamburger span,
#main-header.scrolled-important .hamburger span {
  background: var(--navy);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

#main-header.scrolled .hamburger:hover,
#main-header.scrolled-important .hamburger:hover {
  background: var(--light-bg);
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile Nav — Left Slide Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav.open {
  transform: translateX(0);
}

/* Backdrop overlay */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.55);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}

.mobile-nav-backdrop.open {
  opacity: 1;
}

/* Drawer header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-brand svg {
  width: 36px;
  height: 36px;
}

.mobile-nav-brand span {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-mid);
  transition: all var(--transition);
}

.mobile-nav-close:hover {
  background: var(--saffron);
  color: var(--white);
}

.mobile-nav-list {
  padding: 12px 0 24px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 28px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  color: var(--saffron);
  background: var(--light-bg);
  border-left-color: var(--saffron);
}

.donate-mobile {
  margin: 12px 24px 0;
  background: var(--saffron);
  color: var(--white) !important;
  border-radius: 50px;
  text-align: center;
  padding: 14px !important;
  border-left: none !important;
}

/* Body scroll lock when drawer is open */
body.mobile-nav-open {
  overflow: hidden;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 28px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: color var(--transition);
  border-left: 3px solid transparent;
}

.mobile-dropdown-toggle:hover {
  color: var(--saffron);
}

.mobile-arrow {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--off-white);
}

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

.mobile-dropdown li a {
  display: block;
  padding: 11px 48px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition);
}

.mobile-dropdown li a:hover {
  color: var(--saffron);
}

/* =====================================================
   BUTTONS (Global)
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 120, 10, 0.35);
}

.btn-primary:hover {
  background: var(--saffron-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(232, 120, 10, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}

.btn-ghost:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-saffron {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 120, 10, 0.4);
}

.btn-saffron:hover {
  background: var(--saffron-dark);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* =====================================================
   SECTION COMMON ELEMENTS
   ===================================================== */
.section-tag {
  display: inline-block;
  background: rgba(232, 120, 10, 0.12);
  color: var(--saffron);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--saffron);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/banner.jpeg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.88) 0%,
      rgba(26, 43, 74, 0.75) 50%,
      rgba(45, 125, 70, 0.55) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--saffron);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--green);
  bottom: 100px;
  left: -60px;
  animation-delay: 2s;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: var(--saffron-light);
  top: 30%;
  right: 15%;
  animation-delay: 4s;
}

.shape-4 {
  width: 80px;
  height: 80px;
  background: var(--white);
  bottom: 20%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes floatShape {

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

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 80px;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 120, 10, 0.2);
  border: 1px solid rgba(232, 120, 10, 0.4);
  color: var(--saffron-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--saffron-light);
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
  color: var(--saffron-light);
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--saffron);
  border-radius: 2px;
  transform-origin: left;
  animation: underlineGrow 1.2s ease 1.2s forwards;
  transform: scaleX(0);
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 700px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 6px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--saffron-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
  z-index: 2;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--saffron-light);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(6px);
    opacity: 0.3;
  }
}

@keyframes bounce {

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

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Image Collage */
.img-collage {
  position: relative;
  height: 500px;
}

.img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.img-main:hover img {
  transform: scale(1.06);
}

.img-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 42%;
}

.img-sm {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

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

.img-sm:hover img {
  transform: scale(1.06);
}

.img-badge {
  position: absolute;
  top: 50%;
  left: 62%;
  transform: translate(-50%, -50%);
  background: var(--saffron);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(232, 120, 10, 0.5);
  z-index: 5;
}

.img-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.img-badge-txt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* About text */
.about-content .section-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.about-para {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 28px;
  font-size: 1rem;
}

.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.mv-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 18px;
  border-left: 4px solid var(--saffron);
  transition: all var(--transition);
}

.mv-card:hover {
  background: var(--light-bg);
  transform: translateX(4px);
}

.mv-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.mv-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.mv-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.activities-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.activities-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.activities-list li {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(45, 125, 70, 0.06);
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
  transition: all var(--transition);
}

.activities-list li:hover {
  background: rgba(45, 125, 70, 0.12);
  color: var(--green);
  transform: translateX(6px);
}

/* =====================================================
   PROJECTS SECTION
   ===================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.project-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-icon {
  font-size: 2.5rem;
}

.project-body {
  padding: 24px;
}

.project-cat {
  display: inline-block;
  background: rgba(232, 120, 10, 0.12);
  color: var(--saffron);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.project-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.project-link:hover {
  gap: 10px;
}

/* =====================================================
   IMPACT SECTION
   ===================================================== */
.impact-section {
  position: relative;
  padding: 96px 0;
  background: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1600&q=80') center/cover no-repeat fixed;
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 43, 74, 0.92) 60%, rgba(45, 125, 70, 0.85) 100%);
}

.impact-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
}

.impact-section .container {
  position: relative;
  z-index: 2;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.impact-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.impact-card:hover {
  background: rgba(232, 120, 10, 0.15);
  border-color: rgba(232, 120, 10, 0.3);
  transform: translateY(-6px);
}

.impact-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
}

.impact-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--saffron-light);
  line-height: 1;
  margin-bottom: 8px;
}

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

/* =====================================================
   FEATURED EVENT SECTION
   ===================================================== */
.event-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.event-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.event-showcase:hover .event-img-wrap img {
  transform: scale(1.04);
}

.event-date-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--saffron);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232, 120, 10, 0.5);
}

.event-month {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.event-year {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
}

.event-details {
  padding: 40px 48px 40px 0;
}

.event-tag {
  display: inline-block;
  background: rgba(45, 125, 70, 0.12);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.event-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 600;
}

.event-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.event-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  background: var(--white);
  border: 2px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
}

/* Masonry grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--light-bg);
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover span {
  font-size: 2rem;
}

/* Gallery hidden filter */
.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: opacity 0.15s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--saffron);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
}

.t-quote {
  position: absolute;
  top: 28px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--saffron);
  opacity: 0.2;
}

.t-text {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.t-avatar {
  font-size: 2.4rem;
}

.t-author strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.t-author span {
  display: block;
  font-size: 0.82rem;
  color: var(--saffron);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.15);
  transition: all var(--transition);
}

.t-dot.active,
.t-dot:hover {
  background: var(--saffron);
  transform: scale(1.4);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1560439514-4e9645039924?w=1600&q=80') center/cover no-repeat;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.93), rgba(45, 125, 70, 0.85));
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 28px 28px;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-title em {
  color: var(--saffron-light);
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

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

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '›';
  color: var(--saffron);
  font-size: 1rem;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-contact li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
}

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

.newsletter-btn {
  background: var(--saffron);
  color: var(--white);
  width: 48px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background var(--transition);
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: var(--saffron-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

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

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 500;
  transition: all var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--saffron);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 120, 10, 0.45);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
}

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

.scroll-top:hover {
  background: var(--saffron-dark);
  transform: translateY(-3px);
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Stagger for grid children */
.projects-grid .project-card:nth-child(2),
.impact-grid .impact-card:nth-child(2),
.hero-stats .stat-card:nth-child(2) {
  transition-delay: 0.1s;
}

.projects-grid .project-card:nth-child(3),
.impact-grid .impact-card:nth-child(3),
.hero-stats .stat-card:nth-child(3) {
  transition-delay: 0.2s;
}

.projects-grid .project-card:nth-child(4),
.impact-grid .impact-card:nth-child(4),
.hero-stats .stat-card:nth-child(4) {
  transition-delay: 0.3s;
}

.projects-grid .project-card:nth-child(5),
.impact-grid .impact-card:nth-child(5) {
  transition-delay: 0.4s;
}

.projects-grid .project-card:nth-child(6) {
  transition-delay: 0.5s;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet — ≤ 1024px */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav-backdrop {
    display: block;
    z-index: 3;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
  }

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

  .img-collage {
    height: 380px;
  }

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

  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .event-showcase {
    grid-template-columns: 1fr;
  }

  .event-details {
    padding: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

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

/* Mobile — ≤ 768px */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .section {
    padding: 64px 0;
  }

  .header-inner {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

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

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

  .event-showcase {
    border-radius: var(--radius-lg);
  }

  .event-name {
    font-size: 1.5rem;
  }

  .event-btns {
    flex-direction: column;
  }

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

  .gallery-item.wide {
    grid-column: span 2;
  }

  .testimonial-card {
    padding: 32px 28px;
  }

  .t-text {
    font-size: 0.95rem;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Small mobile — ≤ 480px */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-num {
    font-size: 1.2rem;
  }

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

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

  .gallery-item.wide {
    grid-column: span 1;
  }

  .img-collage {
    height: 300px;
  }

  .img-secondary {
    display: none;
  }

  .img-badge {
    left: auto;
    right: -16px;
    top: auto;
    bottom: -16px;
    transform: none;
  }

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

  .cta-title {
    font-size: 1.8rem;
  }
}
.pt-4 {
  padding-top: 1rem;
}