/* ============================================================
   NAMASKAR FOUNDATION — app.css
   Design: Space-tech meets grassroots warmth
   Colors: Deep cosmos + vibrant magenta + pure white
   Type:   Outfit (display) + Space Grotesk (body)
   ============================================================ */

/* === TOKENS === */
:root {
  --pink:        #E91E8C;
  --pink-light:  #FF4DB8;
  --pink-dark:   #B5116D;
  --pink-soft:   #FDF0F8;
  --blue:        #1E3A8A;
  --blue-mid:    #3B82F6;
  --blue-soft:   #EFF6FF;
  --cosmos:      #0A0E1A;
  --cosmos-mid:  #111827;
  --slate:       #1E293B;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --green:       #10B981;
  --amber:       #F59E0B;
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h:    72px;
}
h1,h2,h3,h4,h5{
  padding:0;
  margin:0,
}
/* === RESET === */
*, *::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(--slate); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

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

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.01em;
  transition: all var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--pink); color: var(--white); }
.btn--primary:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(233,30,140,.35); }
.btn--outline { background: transparent; color: var(--slate); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--pink); color: var(--pink); }
.btn--white { background: var(--white); color: var(--pink); font-weight: 700; }
.btn--white:hover { background: var(--pink-soft); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: white; }
.btn--lg { padding: 15px 36px; font-size: 1rem; }

/* === SECTION UTILITIES === */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--cosmos); line-height: 1.2;
}
.section-title--center { text-align: center; }
.text-accent { color: var(--pink); }
.section-header {
  display: flex; align-items: center; gap: 20px;
  justify-content: center; margin-bottom: 56px;
}
.section-divider {
  flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--border));
  max-width: 200px;
}
.section-header .section-divider:last-child {
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--navbar-h); background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.navbar__brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.navbar__brand-text { display: flex; flex-direction: column; line-height: 1; }
.navbar__brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 0.9375rem;
  letter-spacing: 0.06em; color: var(--cosmos);
}
.navbar__brand-sub {
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--pink); text-transform: uppercase;
}
.navbar__nav { display: flex; align-items: center; gap: 6px; }
.navbar__link {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  padding: 6px 10px; border-radius: 8px; transition: all var(--transition);
}
.navbar__link:hover, .navbar__link.active { color: var(--pink); background: var(--pink-soft); }
.navbar__cta { flex-shrink: 0; padding: 9px 22px; font-size: 0.875rem; }
.navbar__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 4px; border-radius: 8px;
}
.navbar__hamburger span {
  display: block; width: 22px; height: 2px; background: var(--cosmos);
  border-radius: 2px; transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
 .hero {
  min-height: 60vh;
  padding: calc(var(--navbar-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;

  background-image: url('/images/banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero__bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero__bg-orb--1 {
  width: 600px; height: 600px; top: -100px; right: -100px;
background: radial-gradient(circle, rgb(0 0 0), #000000ba 70%);
}
.hero__bg-orb--2 {
  width: 400px; height: 400px; bottom: 0; left: -80px;
  background: radial-gradient(circle, rgba(59,130,246,.2), transparent 70%);
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero__eyebrow {
  display: inline-block; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.hero__headline {
  font-family: "Outfit", sans-serif !important;
  /* font-family: var(--font-display); */
   font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.05; color: var(--white);
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero__headline--accent {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}
.hero__desc {
  font-size: 1.0625rem; color: rgba(255,255,255,.65); max-width: 460px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__tagline {
  font-size: 0.8125rem; color: rgba(255,255,255,.35);
  letter-spacing: 0.05em; font-style: italic;
}
/* Hero Visual */
.hero__visual {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  position: relative;
}
.hero__globe {
  width: 340px; height: 340px; position: relative;
  border-radius: 50%; background: radial-gradient(circle at 35% 35%, #1a2a6c, #0a0e1a);
  box-shadow: 0 0 80px rgba(233,30,140,.3), inset 0 0 60px rgba(59,130,246,.15);
  border: 1px solid rgba(255,255,255,.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero__globe::before {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 60%, rgba(233,30,140,.3) 80%, transparent);
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__rocket-wrap {
  animation: float 4s ease-in-out infinite; z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.hero__satellite {
  position: absolute; top: 30px; right: -20px;
  animation: orbit 10s linear infinite;
}
@keyframes orbit {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(20px) translateY(-20px); }
  50% { transform: translateX(0) translateY(-40px); }
  75% { transform: translateX(-20px) translateY(-20px); }
  100% { transform: translateX(0) translateY(0); }
}
.hero__play-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1); color: white; padding: 12px 24px;
  border-radius: 50px; font-size: 0.875rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.hero__play-btn:hover { background: rgba(255,255,255,.18); }
.hero__play-btn svg { background: var(--pink); border-radius: 50%; padding: 5px; width: 32px; height: 32px; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  /* background: var(--white);  */
  padding: 0;
  /* box-shadow: var(--shadow-lg);  */
  position: relative; z-index: 10;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); margin-top: -40px;
  background: var(--white);
}
.stats__item {
  display: flex;  align-items: center; justify-content: center;
  gap: 4px; padding: 18px 20px; text-align: center;
  border-right: 1px solid var(--border); transition: background var(--transition);
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: var(--pink-soft); }
.stats__icon { margin-bottom: 8px; }
.stats__number {
  font-family: var(--font-display); font-size:45px; font-weight: 700;
  color: var(--pink); line-height: 1;
}
.stats__label { font-size: 0.8125rem; color: var(--muted); font-weight: 500; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 100px 0; background: var(--off-white); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about__media { position: relative; }
.about__img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 180px; gap: 12px; }
.about__img { border-radius: var(--radius); overflow: hidden; }
.about__img--main { grid-column: 1 / 3; }
.about__img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.about__img-placeholder--1 { background: linear-gradient(135deg, #1E3A8A, #312E81); }
.about__img-placeholder--2 { background: linear-gradient(135deg, #0F172A, #1E3A8A); }
.about__img-placeholder--3 { background: linear-gradient(135deg, #064E3B, #065F46); }
.about__badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--pink); color: white; border-radius: 50%;
  width: 130px; height: 130px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 8px 32px rgba(233,30,140,.45); animation: pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 8px 32px rgba(233,30,140,.45); }
  50% { box-shadow: 0 12px 48px rgba(233,30,140,.6); }
}
.about__badge-number { font-family: var(--font-display); font-size: 2.25rem; font-weight: 900; line-height: 1; }
.about__badge-text { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.04em; opacity: 0.9; line-height: 1.4; }
.about__content { display: flex; flex-direction: column; gap: 20px; }
.about__text { font-size: 1rem; color: var(--muted); line-height: 1.75; }
.about__text strong { color: var(--cosmos); }
.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about__pillar {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; font-weight: 500; color: var(--slate);
  background: var(--white); padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); transition: all var(--transition);
}
.about__pillar:hover { border-color: var(--pink); background: var(--pink-soft); }

/* ============================================================
   CORE OBJECTIVES
   ============================================================ */
.objectives { padding: 100px 0; background: var(--white); }
.objectives__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.objectives__card {
  text-align: center; padding: 36px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: all var(--transition); cursor: default;
}
.objectives__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.objectives__icon {
  width: 64px; height: 64px; border-radius: 16px; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 20px;
}
.objectives__icon--pink  { background: var(--pink-soft); }
.objectives__icon--blue  { background: var(--blue-soft); }
.objectives__icon--green { background: #ECFDF5; }
.objectives__icon--amber { background: #FFFBEB; }
.objectives__title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--cosmos); margin-bottom: 10px; }
.objectives__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { padding: 100px 0; background: var(--cosmos); }
.programs .section-title { color: var(--white); }
.programs .section-divider { background: linear-gradient(90deg, transparent, rgba(255,255,255,.2)); }
.programs .section-divider:last-child { background: linear-gradient(90deg, rgba(255,255,255,.2), transparent); }
.programs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.programs__card { border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); transition: all var(--transition); }
.programs__card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.5); border-color: rgba(233,30,140,.4); }
.programs__card-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
}
.programs__card-img--1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.programs__card-img--2 { background: linear-gradient(135deg, #0a1628, #1a3a5c); }
.programs__card-img--3 { background: linear-gradient(135deg, #0d1b2a, #1b4332); }
.programs__card-img--4 { background: linear-gradient(135deg, #1a0533, #2d1b69); }
.programs__card-body { padding: 24px; }
.programs__card-title { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.programs__card-desc { font-size: 0.8125rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 16px; }
.programs__card-link { font-size: 0.8125rem; font-weight: 600; color: var(--pink); transition: gap var(--transition); }
.programs__card-link:hover { text-decoration: underline; }

/* ============================================================
   WORKSHOPS
   ============================================================ */
.workshops { padding: 100px 0; background: var(--off-white); }
.workshops__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.workshops__group {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.workshops__group-title {
  font-family: var(--font-display); font-size: 0.8125rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 2px solid;
}
.workshops__group-title--pink { color: var(--pink); border-color: var(--pink-soft); }
.workshops__group-title--blue { color: var(--blue-mid); border-color: var(--blue-soft); }
.workshops__items { display: flex; flex-direction: column; gap: 16px; }
.workshops__item { display: flex; align-items: center; gap: 14px; }
.workshops__item-icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.workshops__item-icon--pink { background: var(--pink-soft); }
.workshops__item-icon--blue { background: var(--blue-soft); }
.workshops__item span { font-size: 0.9rem; font-weight: 500; color: var(--slate); }

/* ============================================================
   ECOSYSTEM
   ============================================================ */
.ecosystem { padding: 100px 0; background: var(--white); }
.ecosystem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ecosystem__block {
  padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.ecosystem__block--featured {
  background: linear-gradient(135deg, var(--cosmos), #1a2a6c);
  border-color: transparent;
}
.ecosystem__block--featured .ecosystem__block-title { color: var(--white); }
.ecosystem__block--featured .ecosystem__item strong { color: var(--white); }
.ecosystem__block--featured .ecosystem__item span { color: rgba(255,255,255,.6); }
.ecosystem__block-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--cosmos); margin-bottom: 24px; line-height: 1.35;
}
.ecosystem__items { display: flex; flex-direction: column; gap: 20px; }
.ecosystem__item { display: flex; align-items: flex-start; gap: 14px; }
.ecosystem__item div { display: flex; flex-direction: column; gap: 2px; }
.ecosystem__item strong { font-size: 0.9rem; font-weight: 700; color: var(--cosmos); }
.ecosystem__item span { font-size: 0.8125rem; color: var(--muted); line-height: 1.5; }
.ecosystem__partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ecosystem__partner-logo {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 10px; border-radius: 10px; border: 1px solid var(--border);
  text-align: center; transition: all var(--transition);
}
.ecosystem__partner-logo:hover { border-color: var(--pink); background: var(--pink-soft); }
.ecosystem__partner-logo span { font-size: 0.65rem; font-weight: 600; color: var(--muted); line-height: 1.3; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 100px 0; background: var(--off-white); }
.gallery__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.gallery__item { display: flex; flex-direction: column; gap: 10px; }
.gallery__img {
  height: 180px; border-radius: var(--radius); position: relative;
  overflow: hidden; cursor: pointer; transition: transform var(--transition);
}
.gallery__img:hover { transform: scale(1.03); }
.gallery__img:hover .gallery__overlay { opacity: 1; }
.gallery__img--rocket   { background: linear-gradient(135deg, #FF6B35, #FF8C42); }
.gallery__img--workshop { background: linear-gradient(135deg, #3B82F6, #60A5FA); }
.gallery__img--internship { background: linear-gradient(135deg, #E91E8C, #F472B6); }
.gallery__img--library  { background: linear-gradient(135deg, #10B981, #34D399); }
.gallery__img--tree     { background: linear-gradient(135deg, #22C55E, #4ADE80); }
.gallery__img--parliament { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }
.gallery__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery__label { font-size: 0.8125rem; font-weight: 600; color: var(--slate); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer__cta-band {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 60px 0;
}
.footer__cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.footer__cta-content { display: flex; align-items: center; gap: 20px; }
.footer__cta-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white); line-height: 1.25;
}
.footer__cta-title strong { display: block; }
.footer__cta-sub { font-size: 0.9rem; color: rgba(255,255,255,.7); margin-top: 6px; }
.footer__cta-actions { display: flex; flex-wrap: wrap; gap: 14px; flex-shrink: 0; }
.footer__main { background: var(--cosmos-mid); padding: 72px 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer__logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer__logo-name {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 0.9375rem; letter-spacing: 0.06em; color: var(--white);
}
.footer__logo-sub {
  display: block; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--pink); text-transform: uppercase;
}
.footer__desc { font-size: 0.875rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all var(--transition);
}
.footer__social:hover { background: var(--pink); color: white; }
.footer__col-title {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px; letter-spacing: 0.04em;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links li a {
  font-size: 0.875rem; color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer__links li a:hover { color: var(--pink); }
.footer__contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer__contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: rgba(255,255,255,.45);
}
.footer__contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--pink); }
.footer__newsletter-desc { font-size: 0.875rem; color: rgba(255,255,255,.45); margin-bottom: 16px; line-height: 1.6; }
.footer__newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.footer__newsletter-input {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 12px 16px; font-size: 0.875rem; color: white;
  outline: none; transition: border-color var(--transition); width: 100%;
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,.3); }
.footer__newsletter-input:focus { border-color: var(--pink); }
.footer__newsletter-btn { width: 100%; justify-content: center; border-radius: 8px; }
.footer__bottom { background: var(--cosmos); padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8125rem; color: rgba(255,255,255,.25);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,.25); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--pink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .objectives__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__tagline { text-align: center; }
  .hero__visual { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__badge { right: 20px; }
  .workshops__columns { grid-template-columns: 1fr; }
  .ecosystem__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item { border-bottom: 1px solid var(--border); }
  .footer__cta-inner { flex-direction: column; text-align: center; }
  .footer__cta-content { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .navbar__nav { display: none; flex-direction: column; position: fixed; top: var(--navbar-h); left: 0; right: 0; background: white; padding: 20px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); gap: 4px; }
  .navbar__nav.open { display: flex; }
  .navbar__link { padding: 12px 16px; border-radius: 10px; }
  .navbar__hamburger { display: flex; }
  .navbar__cta { display: none; }
  .programs__grid { grid-template-columns: 1fr 1fr; }
  .objectives__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--navbar-h) + 40px); }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .programs__grid { grid-template-columns: 1fr; }
  .objectives__grid { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .ecosystem__partners { grid-template-columns: repeat(2, 1fr); }
  .footer__cta-actions { flex-direction: column; width: 100%; }
  .footer__cta-actions .btn { justify-content: center; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === ACCESSIBILITY === */
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.p-0{
  padding:0!important
}

.custom-row{
    display:flex;
  
}

.custom-col{
    flex:1;
    text-align: left;
    padding:10px 10px;
    
 
}
.text-dark{
  color:#000
}

.custom-col svg{
      width: 69px !important;
}

.custom-row{
    display:flex;
    gap:20px;
}

.custom-col{
    flex:1;
}

@media (max-width:768px){
    .custom-row{
        flex-direction:column;
         gap: 0px;
    }
 
    
}

.objectives__card svg{
  width: 35px;
}

.ecosystem__partners svg{
    width: 70px;
    height: 60px;
}


:root {
  --pink: #E91E8C; --pink-dark: #B5116D; --pink-soft: #FDF0F8;
  --cosmos: #0A0E1A; --slate: #1E293B; --muted: #64748B;
  --border: #E2E8F0; --white: #FFFFFF; --off-white: #F8FAFC;
  --font-d: 'Outfit', sans-serif; --font-b: 'Space Grotesk', sans-serif;
  --r: 12px; --rl: 20px; --tr: 0.25s cubic-bezier(.4,0,.2,1);
  --shadow: 0 4px 20px rgba(0,0,0,.1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-b); color: var(--slate); background: var(--off-white); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== NAVBAR (simplified) ===== */
.nav { position: sticky; top: 0; z-index: 100; height: 64px; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 24px; gap: 16px; }
.nav__brand { display: flex; align-items: center; gap: 9px; }
.nav__logo-text span:first-child { display: block; font-family: var(--font-d); font-weight: 800; font-size: .875rem; letter-spacing: .06em; color: var(--cosmos); }
.nav__logo-text span:last-child { display: block; font-size: .55rem; font-weight: 700; letter-spacing: .14em; color: var(--pink); text-transform: uppercase; }
.nav__back { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .875rem; font-weight: 600; color: var(--muted); padding: 7px 16px; border-radius: 50px; border: 1.5px solid var(--border); transition: all var(--tr); }
.nav__back:hover { color: var(--pink); border-color: var(--pink); }
.nav__back svg { width: 14px; height: 14px; }

/* ===== PAGE HEADER ===== */
.page-header { background: var(--cosmos); padding: 64px 24px 56px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(233,30,140,.2), transparent 65%); top: -150px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.page-header__eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.page-header__title { font-family: var(--font-d); font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; color: #fff; letter-spacing: -.02em; margin-bottom: 12px; }
.page-header__title span { color: var(--pink); }
.page-header__sub { font-size: 1rem; color: rgba(255,255,255,.5); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ===== FILTER TABS ===== */
.filters { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 64px; z-index: 90; }
.filters__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.filters__inner::-webkit-scrollbar { display: none; }
.filter-btn { flex-shrink: 0; font-family: var(--font-b); font-size: .875rem; font-weight: 500; color: var(--muted); padding: 14px 18px; border-radius: 0; background: none; border: none; border-bottom: 2.5px solid transparent; cursor: pointer; transition: all var(--tr); white-space: nowrap; }
.filter-btn:hover { color: var(--slate); }
.filter-btn.active { color: var(--pink); border-bottom-color: var(--pink); font-weight: 700; }
.filters__count { margin-left: auto; flex-shrink: 0; font-size: .8125rem; color: var(--muted); padding: 0 8px; white-space: nowrap; }
.filters__view { display: flex; gap: 4px; padding: 10px 0; }
.view-btn { width: 34px; height: 34px; border-radius: 8px; border: 1.5px solid var(--border); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all var(--tr); }
.view-btn.active, .view-btn:hover { background: var(--pink-soft); border-color: var(--pink); color: var(--pink); }

/* ===== MAIN LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.main { padding: 40px 0 80px; }

/* ===== ALBUM MODE ===== */
.albums-section { margin-bottom: 56px; }
.albums-section__title { font-family: var(--font-d); font-size: 1.125rem; font-weight: 700; color: var(--cosmos); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.albums-section__title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.albums-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.album-card { background: var(--white); border-radius: var(--rl); overflow: hidden; border: 1px solid var(--border); transition: all var(--tr); cursor: pointer; }
.album-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.album-card__thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.album-card__thumb-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; height: 100%; gap: 2px; }
.album-card__thumb-item { background: #ddd; overflow: hidden; }
.album-card__thumb-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.album-card:hover .album-card__thumb-item img { transform: scale(1.06); }
.album-card__thumb-item:first-child { grid-row: 1 / 3; }
.album-card__badge { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.65); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; backdrop-filter: blur(6px); }
.album-card__body { padding: 16px 20px 20px; }
.album-card__category { font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--pink); margin-bottom: 4px; }
.album-card__title { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--cosmos); margin-bottom: 6px; }
.album-card__meta { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.album-card__meta span { display: flex; align-items: center; gap: 4px; }
.album-card__meta svg { width: 13px; height: 13px; }

/* ===== MASONRY PHOTO GRID ===== */
.photo-grid-wrap { display: none; }
.photo-grid-wrap.active { display: block; }
.albums-wrap { display: block; }
.albums-wrap.hidden { display: none; }

.photo-grid { columns: 4; column-gap: 14px; }
.photo-item { break-inside: avoid; margin-bottom: 14px; position: relative; border-radius: var(--r); overflow: hidden; cursor: pointer; background: var(--border); }
.photo-item img { width: 100%; display: block; transition: transform .4s ease; }
.photo-item:hover img { transform: scale(1.04); }
.photo-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%); opacity: 0; transition: opacity var(--tr); display: flex; align-items: flex-end; padding: 14px; }
.photo-item:hover .photo-item__overlay { opacity: 1; }
.photo-item__overlay-label { color: #fff; font-size: .8rem; font-weight: 600; }

/* ===== COLOR PLACEHOLDERS (no real photos needed) ===== */
.ph { width: 100%; display: block; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img-wrap { position: relative; max-width: 90vw; max-height: 85vh; border-radius: 12px; overflow: hidden; }
.lightbox__img { max-width: 90vw; max-height: 80vh; object-fit: contain; display: block; border-radius: 12px; }
.lightbox__close { position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; background: rgba(255,255,255,.12); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; transition: background var(--tr); }
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__prev, .lightbox__next { position: fixed; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255,255,255,.1); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; transition: background var(--tr); }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.2); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__caption { position: fixed; bottom: 0; left: 0; right: 0; text-align: center; padding: 20px; color: rgba(255,255,255,.7); font-size: .875rem; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); }
.lightbox__counter { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ===== ALBUM DETAIL VIEW ===== */
.album-detail { display: none; }
.album-detail.open { display: block; }
.album-detail__back { display: inline-flex; align-items: center; gap: 8px; font-size: .875rem; font-weight: 600; color: var(--muted); cursor: pointer; padding: 8px 0; margin-bottom: 24px; transition: color var(--tr); border: none; background: none; }
.album-detail__back:hover { color: var(--pink); }
.album-detail__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.album-detail__info .eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 6px; }
.album-detail__title { font-family: var(--font-d); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--cosmos); margin-bottom: 8px; }
.album-detail__meta { display: flex; gap: 16px; font-size: .875rem; color: var(--muted); }
.album-detail__meta span { display: flex; align-items: center; gap: 5px; }

/* ===== LAZY LOAD PLACEHOLDER ===== */
.photo-ph { background: var(--border); border-radius: var(--r); break-inside: avoid; margin-bottom: 14px; }

/* ===== SEARCH BAR ===== */
.search-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 24px; }
.search-bar__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 12px; }
.search-input-wrap { flex: 1; position: relative; max-width: 400px; }
.search-input { width: 100%; border: 1.5px solid var(--border); border-radius: 50px; padding: 9px 16px 9px 40px; font-family: var(--font-b); font-size: .875rem; outline: none; transition: border-color var(--tr); background: var(--off-white); color: var(--slate); }
.search-input:focus { border-color: var(--pink); background: var(--white); }
.search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search-icon svg { width: 16px; height: 16px; }
.sort-select { font-family: var(--font-b); font-size: .875rem; border: 1.5px solid var(--border); border-radius: 8px; padding: 9px 14px; outline: none; background: var(--off-white); color: var(--slate); cursor: pointer; transition: border-color var(--tr); }
.sort-select:focus { border-color: var(--pink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) { .photo-grid { columns: 3; } }
@media (max-width: 768px) {
  .photo-grid { columns: 2; }
  .albums-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
@media (max-width: 480px) {
  .photo-grid { columns: 2; column-gap: 8px; }
  .photo-item { margin-bottom: 8px; }
}

/* Upload section */
.upload-area { border: 2px dashed var(--border); border-radius: var(--rl); padding: 48px; text-align: center; cursor: pointer; transition: all var(--tr); margin-bottom: 32px; }
.upload-area:hover, .upload-area.dragover { border-color: var(--pink); background: var(--pink-soft); }
.upload-area__icon { color: var(--muted); margin: 0 auto 12px; }
.upload-area__title { font-family: var(--font-d); font-weight: 700; color: var(--cosmos); margin-bottom: 4px; }
.upload-area__sub { font-size: .875rem; color: var(--muted); }
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 22px; border-radius: 50px; font-family: var(--font-b); font-weight: 600; font-size: .875rem; transition: all var(--tr); cursor: pointer; border: none; }
.btn--primary { background: var(--pink); color: #fff; }
.btn--primary:hover { background: var(--pink-dark); }