/* ============================================================
   KISHANGANJ YOUTH CLUB — GLOBAL STYLESHEET
   Aesthetic: Civic-Tech / Bold Minimalism
   Fonts: Bebas Neue (display) + DM Sans (body)
   Theme: Deep forest green + warm amber accent on near-black
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:          #0c0f0a;
  --bg-2:        #111510;
  --bg-3:        #181d14;
  --surface:     #1e251a;
  --surface-2:   #252d20;
  --green:       #4ade80;
  --green-dim:   #22c55e;
  --green-dark:  #166534;
  --amber:       #fbbf24;
  --amber-dim:   #d97706;
  --red:         #f87171;
  --text:        #e8f0e4;
  --text-muted:  #8fa888;
  --text-dim:    #556650;
  --border:      rgba(74,222,128,0.12);
  --border-2:    rgba(74,222,128,0.22);
  --glass:       rgba(30,37,26,0.7);
  --glass-light: rgba(37,45,32,0.5);
  --shadow:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(74,222,128,0.15);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Bebas Neue', cursive;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ── 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);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.04em; line-height: 1.1; }
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; letter-spacing: 0.06em; }
p { color: var(--text-muted); line-height: 1.75; }

/* ── Layout Utilities ──────────────────────────────────────── */
.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* ── Section Headers ───────────────────────────────────────── */
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(74,222,128,0.08);
  border: 1px solid var(--border-2);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.section-heading { margin-bottom: 16px; }
.section-heading span { color: var(--green); }
.section-sub { max-width: 600px; margin-inline: auto; margin-bottom: 56px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-dim), var(--green));
  color: #0c0f0a;
  box-shadow: 0 4px 20px rgba(74,222,128,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,222,128,0.4);
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber-dim), var(--amber));
  color: #0c0f0a;
  box-shadow: 0 4px 20px rgba(251,191,36,0.3);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251,191,36,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(74,222,128,0.1);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5vw;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12,15,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(12,15,10,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-dim), var(--green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #0c0f0a;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--text);
}
.nav-logo-text span { color: var(--green); }

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

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(12,15,10,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .nav-link {
  padding: 12px 16px;
  display: block;
  width: 100%;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(34,197,94,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(251,191,36,0.04) 0%, transparent 60%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,222,128,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,222,128,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(74,222,128,0.06);
  border: 1px solid var(--border-2);
  border-radius: 40px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  color: var(--text);
  margin-bottom: 24px;
  line-height: 0.95;
}
.hero-title .line-2 { color: var(--green); display: block; }

.hero-desc {
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 40px;
  color: var(--text-muted);
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--green); }
.hero-stat-label { font-size: 0.82rem; color: var(--text-dim); letter-spacing: 0.05em; }

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-orb {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(74,222,128,0.15), rgba(34,197,94,0.05) 50%, transparent 70%);
  border: 1px solid rgba(74,222,128,0.1);
  position: relative;
  animation: orb-rotate 20s linear infinite;
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 1px solid rgba(74,222,128,0.15);
  animation: orb-rotate 12s linear infinite reverse;
}

.hero-orb::after {
  content: '';
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: rgba(74,222,128,0.12);
  box-shadow: 0 0 60px rgba(74,222,128,0.3);
  animation: orb-pulse 4s ease-in-out infinite;
}

@keyframes orb-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orb-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Floating badge in hero */
.hero-badge {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  animation: float-badge 6s ease-in-out infinite;
}
.hero-badge:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-badge:nth-child(2) { bottom: 25%; right: 8%; animation-delay: -2s; }
.hero-badge:nth-child(3) { top: 55%; left: 5%; animation-delay: -4s; }
.hero-badge .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.hero-badge .badge-dot.amber { background: var(--amber); }

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Scroll Indicator ──────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  color: var(--text-muted);
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(5px); } }
@keyframes scroll-dot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 18px; } }

/* ── Divider ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
  margin: 0;
}

/* ── Ticker / Marquee ──────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  flex-shrink: 0;
}
.ticker-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── About Preview ─────────────────────────────────────────── */
.about-preview {
  background: var(--bg-2);
}

.big-text {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  color: rgba(74,222,128,0.05);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(74,222,128,0.08), rgba(74,222,128,0.02));
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
}

/* ── Impact Counters ───────────────────────────────────────── */
.counters-section { background: var(--bg-3); }

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.counter-item {
  background: var(--bg-2);
  padding: 44px 32px;
  text-align: center;
  transition: var(--transition);
}
.counter-item:hover { background: var(--surface); }

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Activities / Project Cards ────────────────────────────── */
.activities-section { background: var(--bg); }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.activity-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.activity-card:hover {
  border-color: var(--border-2);
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.activity-img {
  height: 220px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: block;
}
/* real photograph */
.activity-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1),
              filter 0.4s ease;
  filter: saturate(0.88) brightness(0.92);
}
.activity-card:hover .activity-photo {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(0.96);
}
/* gradient scrim so badge + bottom text remain legible */
.activity-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(12,15,10,0.75) 0%, transparent 48%),
    linear-gradient(to bottom, rgba(12,15,10,0.25) 0%, transparent 35%);
  pointer-events: none;
}
/* fallback if image fails to load */
.activity-img--fallback {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-img--fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(74,222,128,0.03) 0px,
      rgba(74,222,128,0.03) 1px,
      transparent 1px,
      transparent 24px
    );
}
.activity-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: rgba(12,15,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-2);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--green);
}
.activity-body { padding: 24px; }
.activity-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 10px;
}
.activity-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 18px; }
.activity-meta { display: flex; justify-content: space-between; align-items: center; }
.activity-date {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.status-badge {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-family: var(--font-mono);
}
.status-active { background: rgba(74,222,128,0.12); color: var(--green); border: 1px solid rgba(74,222,128,0.2); }
.status-done { background: rgba(251,191,36,0.1); color: var(--amber); border: 1px solid rgba(251,191,36,0.2); }
.status-upcoming { background: rgba(147,51,234,0.1); color: #c084fc; border: 1px solid rgba(147,51,234,0.2); }

/* ── Mission Section ───────────────────────────────────────── */
.mission-section { background: var(--bg-2); }

.mission-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.step-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border-2);
  background: var(--glass-light);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(74,222,128,0.2);
  flex-shrink: 0;
  width: 48px;
  line-height: 1;
}

.step-content h4 { color: var(--text); margin-bottom: 8px; font-size: 1rem; letter-spacing: 1.5px; }
.step-content p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { background: var(--bg-3); }

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

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

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

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; margin-bottom: 2px; color: var(--text); }
.author-role { font-size: 0.78rem; color: var(--text-dim); }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

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

.footer-brand-desc { font-size: 0.875rem; color: var(--text-dim); margin: 16px 0 24px; line-height: 1.7; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--green); color: var(--green); background: rgba(74,222,128,0.08); }

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
.footer-link:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.60rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.footer-bottom a { color: var(--green); }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 50% 60% at 20% 60%, rgba(34,197,94,0.06) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,222,128,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,222,128,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-tag { margin-bottom: 16px; }
.page-hero-title { margin-bottom: 16px; }
.page-hero-title span { color: var(--green); }
.page-hero-sub { font-size: 1.05rem; max-width: 580px; }

/* ── About Page Specific ───────────────────────────────────── */
.working-model {
  position: relative;
  padding-left: 40px;
}

.working-model::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--green), transparent);
}

.model-step {
  position: relative;
  margin-bottom: 32px;
  padding-left: 30px;
}
.model-step::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(74,222,128,0.5);
}
.model-step h4 { color: var(--text); margin-bottom: 6px; }
.model-step p { font-size: 0.875rem; }

/* ── Projects Page ─────────────────────────────────────────── */
.project-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: rgba(74,222,128,0.1);
  border-color: var(--border-2);
  color: var(--green);
}

/* ── Mission Clean City Page ───────────────────────────────── */
.strategy-box {
  background: linear-gradient(135deg, rgba(74,222,128,0.06), rgba(74,222,128,0.02));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.strategy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.strategy-check {
  width: 28px;
  height: 28px;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.8rem;
}
.strategy-text strong { color: var(--text); font-size: 0.95rem; }
.strategy-text p { font-size: 0.85rem; margin-top: 3px; }

.impact-target {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.impact-target .icon { font-size: 1.3rem; flex-shrink: 0; }

/* ── Track Status Page ─────────────────────────────────────── */
.track-form {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  margin: 0 auto 40px;
}

.status-timeline {
  position: relative;
  padding-left: 36px;
}
.status-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), rgba(74,222,128,0.1));
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(74,222,128,0.5);
}
.timeline-item.pending::before { background: var(--amber); box-shadow: 0 0 10px rgba(251,191,36,0.5); }
.timeline-item.closed::before { background: var(--text-dim); box-shadow: none; }
.timeline-date {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 4px;
}
.timeline-title { color: var(--text); font-weight: 600; margin-bottom: 4px; }
.timeline-note { font-size: 0.85rem; color: var(--text-muted); }

/* ── Join Us Page ──────────────────────────────────────────── */
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(74,222,128,0.1);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.benefit-text h4 { color: var(--text); font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.benefit-text p { font-size: 0.85rem; }

/* ── Team Page ─────────────────────────────────────────────── */
.team-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--shadow-glow); }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 16px;
  border: 2px solid rgba(74,222,128,0.2);
}

.team-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--green); font-family: var(--font-mono); letter-spacing: 0.05em; margin-bottom: 14px; }
.team-bio { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

.team-social { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.team-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.team-social-btn:hover { border-color: var(--green); color: var(--green); }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.08);
}
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: var(--red); font-size: 0.78rem; margin-top: 4px; display: none; }
.form-error.visible { display: block; }
.form-success {
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green);
  font-size: 0.875rem;
  display: none;
  margin-top: 16px;
}
.form-success.visible { display: block; }

/* ── Volunteer (Login) Page ────────────────────────────────── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 40%, rgba(34,197,94,0.07) 0%, transparent 60%),
    var(--bg);
}

.auth-card {
  width: min(440px, 100%);
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 36px;
}
.auth-logo-mark {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-dim), var(--green));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #0c0f0a;
  margin: 0 auto 16px;
}
.auth-title { font-size: 1.8rem; font-family: var(--font-display); letter-spacing: 0.04em; margin-bottom: 6px; }
.auth-sub { font-size: 0.85rem; color: var(--text-muted); }

.auth-tabs { display: flex; background: var(--surface); border-radius: 8px; padding: 4px; margin-bottom: 28px; }
.auth-tab {
  flex: 1;
  padding: 8px;
  text-align: center;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.auth-tab.active { background: var(--bg-2); color: var(--text); }

.auth-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--border);
}
.auth-divider span { background: var(--glass); padding: 0 12px; position: relative; }

/* ── Admin Panel ───────────────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding-top: 90px;
}

.sidebar-section { margin-bottom: 8px; }
.sidebar-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px 4px;
  font-family: var(--font-mono);
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.sidebar-link:hover, .sidebar-link.active {
  color: var(--text);
  background: rgba(74,222,128,0.05);
  border-left-color: var(--green);
}
.sidebar-link .icon { font-size: 1rem; }

.admin-main {
  padding: 90px 40px 40px;
  background: var(--bg);
}

.admin-header { margin-bottom: 32px; }
.admin-title { font-size: 1.8rem; font-family: var(--font-display); letter-spacing: 0.04em; margin-bottom: 4px; }
.admin-sub { font-size: 0.875rem; color: var(--text-muted); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--border-2); }
.stat-card .label { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 8px; font-family: var(--font-mono); }
.stat-card .value { font-family: var(--font-display); font-size: 2rem; color: var(--text); line-height: 1; }
.stat-card .change { font-size: 0.75rem; margin-top: 6px; }
.change.up { color: var(--green); }
.change.down { color: var(--red); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-mono);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(74,222,128,0.04);
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(74,222,128,0.02); }
.data-table .name { color: var(--text); font-weight: 500; }

.table-wrap {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.table-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-title { font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* ── Animations ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Notification Toast ────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  z-index: 10000;
  transform: translateY(80px);
  opacity: 0;
  transition: var(--transition);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast .toast-msg { color: var(--text); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .grid-2, .grid-3, .mission-steps, .join-grid, .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-card { padding: 32px 24px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .filter-btn { font-size: 0.78rem; padding: 6px 14px; }


  /* ── MOBILE NAVBAR COMPACT DESIGN ── */
@media (max-width: 768px) {

  .navbar .nav-cta,
  .navbar .flex.gap-8 {
    display: none !important; /* Mobile navbar se Join Us button aur uske container ko fully hide karega */
  }
  
  /* 1. Navbar ki height aur padding kam karien */
  .navbar {
    padding: 10px 16px !important; /* Top/Bottom padding 16px se hata kar 10px ki */
    height: 60px;                  /* Ek standard fixed mobile height */
  }

  /* 2. Mobile me Logo Image ko chhota karein taaki navbar stretch na ho */
  .nav-logo-img {
    height: 30px !important;       /* Desktop par 38px tha, mobile par 30px perfectly clean lagega */
    padding: 2px !important;       /* Border padding ko bhi thoda kam kiya */
  }

  /* 3. Hamburger icon ka size aur alignment match karein */
  .hamburger {
    display: flex !important;       /* Mobile par iska flex hona zaroori hai */
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 28px !important;         /* Compact width */
    height: 18px !important;        /* Compact height */
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    z-index: 1002 !important;       /* Taaki clickable rahe */
  }
  
  .hamburger span {
    display: block !important;
    width: 100% !important;
    height: 3px !important;         /* Lines ki thickness */
    background-color: #4ade80 !important; /* Pure clear neon green color taaki dark theme par saaf dikhe */
    border-radius: 2px !important;
    transition: all 0.3s ease-in-out !important;
  }

  /* ── 4. CONTENT HIDE PROBLEM PERMANENT FIX ── */
  /* Aapka main header content ya body top se chipke na, isliye poore webpage ke 
     main container par navbar ki height ke barabar ka safe top space barha rahe hain */
  body {
    padding-top: 60px;             /* Exact navbar height jitna gap automatic add ho jayega */
  }
  
  /* Agar aapne body ki jagah kisi special hero/header section par wrapper lagaya hai, 
     toh aap uspar bhi padding-top: 70px ya 80px de sakte hain */

     /* ── 1. GENERAL BUTTON COMPACT SIZE ── */
  /* Agar aapne links ya buttons par standard .btn class lagayi hai */
  .btn, 
  button, 
  .mobile-menu .nav-cta,
  [class*="button"] { 
    padding: 10px 16px !important; /* Vertical padding ko kam kiya taaki button ki height choti ho jaye */
    font-size: 0.95rem !important;  /* Font size ko thoda chota kiya mobile ke liye */
    border-radius: 8px !important;  /* Corners ko clean design diya */
    width: 100% !important;         /* Full width rahega par sleek dikhega */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;            /* Icon aur text ke beech ka gap */
  }

  /* ── 2. HERO/MAIN HOME BUTTONS FIX ── */
  /* Jo buttons aane-saamne ya upar-niche bade dikh rahe hain unki vertical height control karne ke liye */
  .hero-buttons,
  .main-actions,
  .grid-2 {
    gap: 12px !important;          /* Buttons ke beech ka gap kam kiya */
    margin-top: 16px !important;   /* Pure section se upper gap maintain rakhne ke liye */
  }

  /* ── 3. BUTTONS KE ANDAR KE ICONS ── */
  /* Agar buttons ke andar logo ya icons (jaise user-plus, alert-triangle) bade hain */
  .btn svg,
  button svg {
    width: 18px !important;        /* Icons ka size chota kiya */
    height: 18px !important;
  }

  .button-container-class-name { 
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* Do barabar columns bana dega */
    gap: 10px !important;
  }

  /* 1. Buttons ke parent container (flex div) ko mobile par stack (column) karein */
  .page-hero .flex.gap-16.flex-wrap {
    display: flex !important;
    flex-direction: column !important; /* Buttons ko ek ke neeche ek line me layega */
    gap: 12px !important;              /* Dono ke beech ka gap kam kareya */
    margin-top: 24px !important;       /* Top spacing ko compact karega */
    width: 100% !important;
  }

  /* 2. Dono buttons (.btn-primary aur .btn-outline) ko sleek aur chhota karein */
  .page-hero .btn {
    width: 100% !important;            /* Mobile screen par full width stretch ho sakein */
    height: 46px !important;           /* Ekdum standard crisp height */
    padding: 0 16px !important;        /* Extra moti padding ko khatam kiya */
    font-size: 0.95rem !important;     /* Text size ko balanced kiya */
    display: inline-flex !important;
    align-items: center !important;     /* Icon aur text vertically ek line me center honge */
    justify-content: center !important; /* Content button ke bilkul beech me rahega */
    border-radius: 8px !important;     /* Corners ko perfect curve diya */
  }

  /* 3. Icons ka size aur unka alignment thik karein */
  .page-hero .btn svg {
    width: 18px !important;            /* Desktop par 22px tha, mobile par 18px perfect hai */
    height: 18px !important;
    margin: 0 !important;              /* Kisi bhi purane alignment shifting ko clear karega */
    flex-shrink: 0;
  }

  /* 1. Container ko mobile par flex-direction column (vertical list) karein */
  .section-sm .flex-center.gap-16.flex-wrap {
    display: flex !important;
    flex-direction: column !important; /* Buttons ko upar-neeche smoothly stack karega */
    gap: 12px !important;              /* Buttons ke beech ka vertical gap compact karega */
    width: 100% !important;
    max-width: 340px !important;       /* Buttons ko zyada lamba (stretch) hone se rokega */
    margin: 0 auto !important;         /* Buttons ko screen ke center me rakhega */
    padding: 0 16px !important;
  }

  /* 2. "Become a Volunteer" aur "Report an Issue" buttons ka size compact karein */
  .section-sm .btn-lg {
    width: 100% !important;            /* Pure inner container width me set rahega */
    height: 46px !important;           /* Pehle wale buttons ki tarah fixed crisp height */
    padding: 0 16px !important;        /* Thick padding hata kar simple aur neat layout */
    font-size: 0.95rem !important;      /* Text mobile grid ke hisab se balanced */
    display: inline-flex !important;
    align-items: center !important;     /* Icon aur text vertically center honge */
    justify-content: center !important; /* Content button ke bilkul beech me rahega */
    border-radius: 8px !important;     /* Rounded borders matching your theme */
    box-sizing: border-box !important;
  }

  /* 3. Buttons ke andar ke SVG Icons ka alignment fix karein */
  .section-sm .btn-lg svg {
    width: 16px !important;            /* Mobile scale layout */
    height: 16px !important;
    margin: 0 8px 0 0 !important;      /* Icon ke right side me text se perfect spacing */
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }

  /* ── MAIN CONTAINER CENTER LOCK ── */
  .activities-section .flex-between {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    margin-bottom: 36px !important;
    width: 100% !important;
  }

  /* Inner elements alignment parent */
  .activities-section .flex-between > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* ── 1. RECENT ACTIVITIES TAG KO CHHOTA KIYA ── */
  .activities-section .section-tag {
    font-size: 0.65rem !important;       /* Text size ko sleek aur chhota kiya */
    letter-spacing: 0.12em !important;   /* Professional spacing text clear dikhne ke liye */
    padding: 6px 14px !important;        /* Border padding compact ki */
    margin-bottom: 12px !important;      /* Heading se standard maintain gap */
    text-transform: uppercase !important;
    align-self: center !important;
  }

  /* ── 2. ON THE GROUND TEXT KO BADA AUR CENTER KIYA ── */
  .activities-section .section-heading {
    font-size: 3rem !important;        /* Pehle se bada aur solid display size */
    font-weight: 800 !important;         /* Heavy font styling for impact */
    line-height: 1.15 !important;
    text-align: center !important;       /* Center positioning lock */
    margin: 3px auto 6px auto !important;  /* Center layout margin spacing */
    width: 100% !important;
    max-width: 90% !important;           /* Mobile edge spacing breathing room */
  }

  /* ── 3. PILL BUTTON ALIGNMENT RESET ── */
  .activities-section .btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 140px !important;
    height: 40px !important;
    padding: 0 18px !important;
    font-size: 0.88rem !important;
    border-radius: 20px !important;
    margin: 8px 0 0 0 !important;        /* Heading se thoda unique clean gap */
  }

}



}

@media (max-width: 480px) {
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat-num { font-size: 1.6rem; }
}

/* ============================================================
   TEAM PHOTO CARDS — Matches original design aesthetic
   Grayscale portrait cards with name, role, index number
   ============================================================ */

/* ── Photo Card (team.html full grid) ──────────────────────── */
.photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.215,0.61,0.355,1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.6), 0 0 30px rgba(74,222,128,0.08);
  border-color: var(--border-2);
}

/* Diagonal shine on hover */
.photo-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: none;
  z-index: 3; pointer-events: none;
}
.photo-card:hover::before { animation: card-shine 0.6s ease-out forwards; }

@keyframes card-shine {
  0%   { left: -100%; }
  100% { left: 150%;  }
}

/* Photo area */
.photo-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
  transition: filter 0.5s ease, transform 0.5s cubic-bezier(0.215,0.61,0.355,1);
  background: var(--surface-2);
}

.photo-card:hover .photo-card__img {
  filter: grayscale(0%) saturate(1.1) contrast(1.02);
  transform: scale(1.03);
}

/* SVG placeholder portrait (when no real photo) */
.photo-card__portrait {
  width: 100%;
  aspect-ratio: 3/4;
  display: contents;
  align-items: center;
  justify-content: stretch;
  overflow: hidden;
  position: relative;
}

/* Info strip below photo */
.photo-card__info {
  padding: 16px 18px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.photo-card__text { flex: 1; min-width: 0; }

.photo-card__name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.photo-card__role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.photo-card__index {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 12px;
  align-self: flex-start;
  margin-top: 2px;
}

/* ── Full team page grid ────────────────────────────────────── */
.photo-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Home page team preview (3 cards row) ───────────────────── */
.photo-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* ── Team page intro (left-aligned, like original) ──────────── */
.team-page-intro {
  margin-bottom: 64px;
}
.team-page-intro .section-tag { margin-bottom: 12px; }
.team-page-intro h1 {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.team-page-intro p {
  max-width: 460px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Home team section wrapper ──────────────────────────────── */
.home-team-section {
  background: var(--bg-2);
}
.home-team-header {
  text-align: center;
  margin-bottom: 8px;
}
.home-team-header h2 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.home-team-header p { color: var(--text-muted); font-size: 0.9rem; max-width: 540px; margin-inline: auto; margin-bottom: 24px; }

/* ── SVG Icon system — replaces all emojis ──────────────────── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  width: 1em; height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.icon-sm  { font-size: 1rem;   }
.icon-md  { font-size: 1.4rem; }
.icon-lg  { font-size: 1.8rem; }
.icon-xl  { font-size: 2.4rem; }

/* Card icon with icon inside */
.card-icon .icon svg { stroke: var(--green); }

/* Feature icon box */
.feat-icon {
  width: 52px; height: 52px;
  background: rgba(74,222,128,0.08);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feat-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.feat-icon-sm {
  width: 40px; height: 40px;
  background: rgba(74,222,128,0.08);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon-sm svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Inline text icon */
.inline-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
}
.inline-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Social link icons */
.social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.team-social-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Hero eyebrow live dot */
.live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Step card with icon */
.step-icon {
  width: 44px; height: 44px;
  background: rgba(74,222,128,0.08);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.step-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Ticker icon */
.ticker-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* Strategy check icon */
.check-icon {
  width: 28px; height: 28px;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Impact target icon */
.impact-icon {
  width: 38px; height: 38px;
  background: rgba(74,222,128,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.impact-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Scroll mouse */
.scroll-mouse { border-color: rgba(74,222,128,0.3); }
.scroll-mouse::after { background: var(--green); opacity: 0.5; }

/* Responsive photo grid */
@media (max-width: 900px) {
  .photo-grid-full  { grid-template-columns: repeat(2, 1fr); }
  .photo-grid-home  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .photo-grid-full  { grid-template-columns: 1fr; }
  .photo-grid-home  { grid-template-columns: 1fr; }
}

/* ── NAVBAR LOGO IMAGE STYLING ── */
.nav-logo-img {
  height: 38px;          /* Logo ki height ko navbar ke hisab se set kiya */
  width: auto;           /* Width apne aap automatic maintain rahegi */
  object-fit: contain;   /* Logo bina pichke ya stretch hue perfectly fit hoga */
  display: inline-block;
  vertical-align: middle;
  
}

/* Logo aur Text ke beech thodi si dori (gap) dene ke liye */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;             /* Logo aur KISHANGANJ YOUTH CLUB text me perfect gap */
}