/* ===== ROOT VARIABLES - BLACK & WHITE THEME ===== */
:root {
  --primary: #037820;
  --primary-light: #50ae26;
  --primary-dark: #025020;
  --secondary: #333333;
  --accent: #fff;
  --gold: #888888;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #e8e8e8;
  --text: #1a1a1a;
  --text-light: #666666;
  --dark: #037820;
  --card-bg: rgba(255,255,255,0.98);
  --glass: rgba(255,255,255,0.15);
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 50px rgba(0,0,0,0.12);
  --shadow-dark: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* new page styles */




/* ended  */
/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.15); }
  50% { box-shadow: 0 0 0 20px rgba(0,0,0,0); }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}
@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}
@keyframes sketchIn {
  from { opacity: 0; transform: scale(0.95) rotate(-1deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: #fff;
}
.navbar-secondary {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: #fff;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .logo-text { color: var(--dark); }
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px; height: 48px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  animation: heartbeat 2s infinite;
  border: 2px solid var(--dark);
}

.logo-icon-footer {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  animation: heartbeat 2s infinite;
  border: 2px solid var(--dark);
}

.logo img {
  width: 160px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--accent); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--dark); }
.donate-btn {
  background: var(--dark);
  color: white !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  background: var(--primary-light);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 9;
}
.mobile-toggle span {
  width: 28px; height: 3px;
  background: rgb(0, 0, 0);
  border-radius: 3px;
  transition: var(--transition);
}
.navbar.scrolled .mobile-toggle span { background: var(--dark); }

/* ===== HERO BANNER ===== */
.hero-banner img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

/* ===== HERO SECTION - BLACK & WHITE ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: var(--primary);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0,0,0,0.03) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0,0,0,0.02) 0%, transparent 50%);
}
.hero-blob {
  position: absolute;
  width: 500px; height: 500px;
  background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.02));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob 8s ease-in-out infinite;
  top: -10%; right: -5%;
}
.hero-blob-2 {
  position: absolute;
  width: 350px; height: 350px;
  background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01));
  border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  animation: blob 10s ease-in-out infinite reverse;
  bottom: -10%; left: -5%;
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 30px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title span {
  color: var(--text-light);
  font-weight: 300;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: var(--transition);
  border: 2px solid var(--dark);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  background: white;
  color: var(--dark);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--dark);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}
.stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
}
.stat-item p {
  font-size: 14px;
  color: var(--text-light);
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
}
.hero-image-ring {
  position: absolute;
  inset: -20px;
  border: 2px dashed rgba(0,0,0,0.15);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.hero-image-ring-2 {
  position: absolute;
  inset: -40px;
  border: 2px dashed rgba(0,0,0,0.08);
  border-radius: 50%;
  animation: rotate 40s linear infinite reverse;
}
.hero-image {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
  filter: grayscale(30%);
}
.hero-float-card {
  position: absolute;
  background: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  border: 1px solid var(--light-gray);
}
.hero-float-card.card-1 {
  top: 10%; left: -20px;
  animation-delay: 0s;
}
.hero-float-card.card-2 {
  bottom: 15%; left: -10px;
  animation-delay: 1s;
}
.hero-float-card.card-3 {
  top: 50%; right: -30px;
  animation-delay: 2s;
}
.float-icon {
  width: 44px; height: 44px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
.float-text h4 { font-size: 18px; font-weight: 700; color: var(--dark); }
.float-text p { font-size: 12px; color: var(--text-light); }

/* ===== MARQUEE SECTION ===== */
.marquee-section {
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.marquee-item i { color: rgba(255,255,255,0.7); font-size: 18px; }
.marquee-section-2 {
  background: var(--primary-light);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track-2 {
  display: flex;
  width: max-content;
  animation: marqueeReverse 25s linear infinite;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-gray);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span { color: var(--text-light); font-weight: 300; }
.section-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 30px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.about-bg-shape {
  position: absolute;
  width: 500px; height: 500px;
  background: linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
  border-radius: 50%;
  top: -200px; right: -200px;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  filter: grayscale(20%);
}
.about-img-float {
  position: absolute;
  width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  z-index: 3;
  border: 4px solid white;
  filter: grayscale(20%);
}
.about-img-float.img-1 { bottom: -30px; left: -30px; }
.about-img-float.img-2 { top: -20px; right: -20px; width: 160px; }
.about-experience {
  position: absolute;
  bottom: -35px;
  right: -20px;
  background: var(--dark);
  color: white;
  padding: 24px 30px;
  border-radius: var(--radius);
  z-index: 4;
  box-shadow: var(--shadow-dark);
}
.about-experience h3 { font-size: 42px; font-weight: 800; }
.about-experience p { font-size: 14px; opacity: 0.9; }
.about-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.about-feature:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
  border-color: var(--dark);
}
.about-feature i {
  width: 40px; height: 40px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}
.about-feature span { font-weight: 600; font-size: 14px; }

/* ===== MISSION VISION CARDS ===== */
.mv-section {
  padding: 80px 30px;
  background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mv-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--dark);
  transform: scaleX(0);
  transition: var(--transition);
}
.mv-card:hover::before { transform: scaleX(1); }
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.mv-icon {
  width: 70px; height: 70px;
  background: var(--light-gray);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 24px;
  transition: var(--transition);
}
.mv-card:hover .mv-icon {
  background: var(--dark);
  color: white;
  transform: rotateY(360deg);
}
.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.mv-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== EVENTS SECTION ===== */
.events-section {
  padding: 100px 30px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.events-section .section-title { color: white; }
.events-section .section-title span { color: rgba(255,255,255,0.6); }
.events-section .section-desc { color: rgba(255,255,255,0.7); }
.events-section .section-label { background: rgba(255,255,255,0.1); color: white; }
.events-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.02) 0%, transparent 40%);
}
.event-swiper { padding-bottom: 60px !important; }
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.3) !important;
  width: 10px; height: 10px;
}
.swiper-pagination-bullet-active {
  background: white !important;
  width: 30px;
  border-radius: 5px;
}
.event-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.event-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.event-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: grayscale(30%);
}
.event-card:hover .event-img { transform: scale(1.1); filter: grayscale(0%); }
.event-date {
  position: absolute;
  top: 16px; left: 16px;
  background: white;
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 12px;
  text-align: center;
  min-width: 60px;
  font-weight: 700;
}
.event-date .day { font-size: 24px; font-weight: 800; display: block; }
.event-date .month { font-size: 12px; text-transform: uppercase; font-weight: 600; }
.event-body { padding: 24px; }
.event-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.event-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.event-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}
.event-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.event-btn:hover { gap: 12px; }

/* ===== TEAM SECTION ===== */
.team-section { padding: 100px 30px; background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--light-gray);
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--dark);
}
.team-img-wrap {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.team-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: var(--transition);
  filter: grayscale(30%);
}
.team-card:hover .team-img { transform: scale(1.1); filter: grayscale(0%); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social {
  display: flex;
  gap: 10px;
}
.team-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}
.team-social a:hover {
  background: white;
  color: var(--dark);
  transform: translateY(-3px);
}
.team-info { padding: 24px; text-align: center; }
.team-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-info p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}
.team-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--dark);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 30px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  padding: 80px 30px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: white;  display: inline-block; }
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
  background: white;
  color: var(--dark);
  transform: translateY(-3px);
}
.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: white;
  padding-left: 5px;
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-contact i {
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  font-size: 18px;
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.footer-bottom a { color: white; text-decoration: none; }

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 140px 30px 100px;
  background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.contact-info-card:hover {
  transform: translateX(10px);
  border-color: var(--dark);
}
.contact-info-icon {
  width: 60px; height: 60px;
  background: var(--dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-info-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--dark);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.map-container {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ===== GALLERY PAGE ===== */
.gallery-section {
  padding: 140px 30px 100px;
  background: var(--off-white);
}
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--light-gray);
  background: white;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.gallery-tab.active,
.gallery-tab:hover {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: grayscale(40%);
}
.gallery-item:hover img { transform: scale(1.15); filter: grayscale(0%); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.gallery-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--dark);
}
.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.video-card:hover .play-btn {
  background: var(--dark);
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-info { padding: 20px; }
.video-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.video-info p { font-size: 13px; color: var(--text-light); }

/* ===== PROGRAMS PAGE ===== */
.programs-section {
  padding: 140px 30px 100px;
  background: var(--off-white);
}
.program-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  display: grid;
  grid-template-columns: 300px 1fr;
  margin-bottom: 30px;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--dark);
}
.program-img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 250px;
  filter: grayscale(30%);
  transition: var(--transition);
}
.program-card:hover .program-img { filter: grayscale(0%); }
.program-content { padding: 30px; }
.program-tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.program-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.program-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.program-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.program-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}
.program-meta i { color: var(--dark); }

/* ===== TEAM PAGE ===== */
.team-page-section {
  padding: 140px 30px 20px;
  background: var(--off-white);
}
.team-category {
  margin-bottom: 60px;
}
.team-category-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.team-category-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--light-gray), transparent);
}

/* ===== ABOUT PAGE ===== */
.about-page-section {
  padding: 140px 30px 100px;
  background: var(--off-white);
}
.about-page-hero {
  background: var(--dark);
  padding: 160px 30px 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.about-page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
}
.about-page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}
.founder-message {
  background: white;
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow);
  margin: 60px 0;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
  border: 1px solid var(--light-gray);
}
.founder-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: grayscale(30%);
}
.founder-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.founder-content .role {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.founder-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.founder-signature {
  font-family: 'Georgia', serif;
  font-size: 28px;
  color: var(--dark);
  margin-top: 20px;
}
.registration-details {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 50px;
  color: white;
  margin-top: 60px;
}
.registration-details h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.reg-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.reg-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}
.reg-card i {
  font-size: 36px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.reg-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.reg-card p { font-size: 14px; opacity: 0.8; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card { grid-template-columns: 1fr; }
  .program-img { height: 250px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-message { grid-template-columns: 1fr; text-align: center; }
  .founder-img { max-width: 200px; margin: 0 auto; }
  .reg-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 350px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 40px 40px;
    
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .nav-link {
    color: var(--text) ;
    
    border-bottom: 1px solid var(--light-gray);
    font-size: 16px;
  }
  
  .mobile-toggle { display: flex; }
  .navbar.scrolled .mobile-toggle span { background: var(--dark); z-index: 99; }
  .hero-title { font-size: 36px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .about-img-float { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 24px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE TRANSITION ===== */
.page-wrapper {
  animation: fadeInUp 0.6s ease;
}




/* custom css */
 :root {
    --crimson: var(--primary);
    --crimson-dark: #000000;
    --crimson-light: #1f1f1f;
    --gold: #D4A017;
    --gold-light: #F2C94C;
    --cream: #FDF8F0;
    --charcoal: #1A1A1A;
    --warm-gray: #F5F0E8;
    --text-muted: #6B6257;
    --white: #FFFFFF;
    --green-accent: #2D6A4F;
  }
/* ── INITIATIVES ── */
  .initiatives { padding: 100px 5%; background: var(--cream); position: relative; overflow: hidden; }
  .initiatives-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: auto auto; gap: 24px; margin-top: 60px; }
  .init-card {
    border-radius: 24px; overflow: hidden; position: relative;
    cursor: pointer; transition: all 0.4s;
  }
  .init-card:hover { transform: scale(1.02); }
  .init-card.large { grid-row: span 2; }
  .init-img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: transform 0.6s; }
  .init-card.large .init-img { min-height: 580px; }
  .init-card:hover .init-img { transform: scale(1.08); }
  .init-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.2) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
  }
  .init-tag { display: inline-block; background: var(--crimson); color: white; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; width: fit-content; }
  .init-overlay h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
  .init-overlay p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }


@media (max-width: 900px) {
  .initiatives-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .init-card.large { grid-row: span 1; }
}


/* contact page */
/* ===== CONTACT PAGE MOBILE FIX ===== */

/* Cards padding too wide on small screens */
@media (max-width: 768px) {
  .contact-section {
    padding: 100px 16px 60px;
  }

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

  .contact-info-card {
    padding: 20px;
    gap: 14px;
  }

  .contact-info-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .contact-info-text h4 {
    font-size: 15px;
  }

  .contact-info-text p {
    font-size: 13px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-container iframe {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 90px 12px 50px;
  }

  .contact-info-card {
    padding: 16px;
    border-radius: 12px;
  }

  .contact-form {
    padding: 20px 14px;
    border-radius: 12px;
  }
}