/* ===== EESHA AGRAWAL - OFFICIAL WEBSITE ===== */
/* Indian Tricolor Theme: Saffron, White, Green */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&family=Noto+Serif+Devanagari:wght@400;600&display=swap');

:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C38;
  --saffron-deep: #E55A00;
  --green: #138808;
  --green-light: #1aaa0a;
  --green-dark: #0d6b06;
  --white: #FFFFFF;
  --off-white: #FFF8F0;
  --cream: #FFF3E8;
  --ashoka-blue: #000080;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #777777;
  --shadow: rgba(0,0,0,0.12);
  --shadow-deep: rgba(0,0,0,0.22);
  --tricolor-gradient: linear-gradient(135deg, #FF6B00 0%, #FF6B00 33%, #ffffff 33%, #ffffff 66%, #138808 66%, #138808 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TRICOLOR TOP BAR ===== */
.tricolor-bar {
  height: 5px;
  background: linear-gradient(to right, var(--saffron) 33.3%, var(--white) 33.3%, var(--white) 66.6%, var(--green) 66.6%);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 5px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.logo-emblem {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(255,107,0,0.35);
}

.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.logo-text span {
  font-size: 10px;
  font-weight: 500;
  color: var(--saffron);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron);
  background: rgba(255,107,0,0.08);
}

.nav-links .btn-join {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(19,136,8,0.3);
}

.nav-links .btn-join:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green)) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(19,136,8,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  padding-top: 73px;
  background: linear-gradient(160deg, var(--cream) 0%, #fff 40%, #f0faf0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(19,136,8,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(19,136,8,0.1));
  border: 1px solid rgba(255,107,0,0.25);
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 600;
  color: var(--saffron-deep);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}

.role-chip {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.role-chip.saffron { background: rgba(255,107,0,0.12); color: var(--saffron-deep); border: 1px solid rgba(255,107,0,0.2); }
.role-chip.green { background: rgba(19,136,8,0.1); color: var(--green-dark); border: 1px solid rgba(19,136,8,0.2); }
.role-chip.blue { background: rgba(0,0,128,0.08); color: var(--ashoka-blue); border: 1px solid rgba(0,0,128,0.15); }

.hero-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 500px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: white;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,0,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--green);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(19,136,8,0.3);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: 20px; bottom: 20px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--green) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  opacity: 0.15;
  animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.hero-img-frame img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: linear-gradient(160deg, #fff3e8 0%, #ffe0c3 40%, #d4f0d4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 2px dashed rgba(255,107,0,0.3);
}

.hero-img-placeholder .monogram {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-img-placeholder p {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
  padding: 0 20px;
}

/* Stat chips on hero image */
.hero-stat {
  position: absolute;
  z-index: 2;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat.stat-1 { bottom: 30px; left: -30px; }
.hero-stat.stat-2 { top: 40px; right: -30px; }

.stat-icon { font-size: 22px; }
.stat-val { font-size: 17px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.stat-label { font-size: 10px; color: var(--text-light); font-weight: 500; }

/* ===== SECTION BASICS ===== */
section { padding: 90px 0; }

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

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  height: 1.5px;
  width: 30px;
  background: var(--saffron);
  opacity: 0.4;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-eyebrow { justify-content: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== ABOUT SECTION ===== */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff3e8, #e8f5e8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border: 2px dashed rgba(255,107,0,0.25);
}

.about-img-placeholder .monogram {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(19,136,8,0.08));
  border: 2px solid rgba(255,107,0,0.12);
  z-index: -1;
}

.about-tricolor-stripe {
  position: absolute;
  top: 20px; left: -10px;
  width: 5px; height: 60%;
  background: linear-gradient(to bottom, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green) 66%);
  border-radius: 3px;
}

.about-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.highlight-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px;
  border-left: 4px solid;
  transition: transform 0.2s;
}

.highlight-card:hover { transform: translateY(-3px); }
.highlight-card.saffron-border { border-color: var(--saffron); }
.highlight-card.green-border { border-color: var(--green); }

.highlight-card .icon { font-size: 22px; margin-bottom: 6px; }
.highlight-card h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.highlight-card p { font-size: 12px; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ===== WORK SECTION ===== */
#work { background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%); }

.work-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0;
  justify-content: center;
}

.work-tab {
  padding: 9px 22px;
  border-radius: 25px;
  border: 1.5px solid #e0e0e0;
  background: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.25s;
}

.work-tab.active, .work-tab:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: white;
  box-shadow: 0 4px 14px rgba(255,107,0,0.3);
}

.work-tab.active-green, .work-tab.green-tab:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  box-shadow: 0 4px 14px rgba(19,136,8,0.3);
}

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

.work-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.work-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream), #e8f5e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}

.work-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}

.work-card.saffron-card .work-card-img::after { background: var(--saffron); }
.work-card.green-card .work-card-img::after { background: var(--green); }

.work-card-body { padding: 20px; }
.work-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tag-saffron { color: var(--saffron); }
.tag-green { color: var(--green); }
.tag-blue { color: var(--ashoka-blue); }

.work-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 8px;
}

.work-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
#gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, var(--cream), #e8f5e8);
}

.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: 1; }
.gallery-item:nth-child(2) { aspect-ratio: 1; }
.gallery-item:nth-child(3) { aspect-ratio: 1; }
.gallery-item:nth-child(4) { aspect-ratio: 1; }
.gallery-item:nth-child(5) { aspect-ratio: 1; }
.gallery-item:nth-child(6) { grid-column: 3 / 5; aspect-ratio: 2/1; }

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

.gallery-item .gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  min-height: 160px;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-overlay span {
  color: white;
  font-size: 13px;
  font-weight: 500;
}

/* Instagram Feed */
.instagram-section {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,107,0,0.04), rgba(19,136,8,0.04));
  border-radius: 24px;
  border: 1px solid rgba(255,107,0,0.1);
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.instagram-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.insta-post {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, var(--cream), #e8f5e8);
}

.insta-post img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.insta-post:hover img { transform: scale(1.08); }

.insta-post-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; background: linear-gradient(135deg, #fff3e8, #e8f5e8);
}

.insta-live-badge {
  position: absolute;
  top: 6px; right: 6px;
  background: linear-gradient(135deg, #E1306C, #F58529);
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

/* ===== PRESS SECTION ===== */
#press { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }

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

.press-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  border-left: 4px solid var(--saffron);
  text-decoration: none;
  color: inherit;
  display: block;
}

.press-card:nth-child(even) { border-left-color: var(--green); }

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.11);
}

.press-source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.press-card:nth-child(even) .press-source { color: var(--green); }

.press-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.press-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.press-date {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.press-media {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  padding: 32px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.press-media p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  flex-basis: 100%;
}

.media-logo {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid #eee;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.2s;
  text-decoration: none;
}

.media-logo:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(255,107,0,0.04);
}

/* ===== JOIN US ===== */
#joinus { background: var(--white); }

.join-hero {
  background: linear-gradient(135deg, var(--saffron) 0%, #FF8C38 50%, var(--green) 100%);
  border-radius: 28px;
  padding: 70px 60px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.join-hero::before {
  content: '॥ भारत माता की जय ॥';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  opacity: 0.04;
  font-family: 'Noto Serif Devanagari', serif;
  white-space: nowrap;
  pointer-events: none;
  color: white;
}

.join-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}

.join-hero p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.join-form {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.join-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.join-form input, .join-form select, .join-form textarea {
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s;
}

.join-form input::placeholder, .join-form select option, .join-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.join-form input:focus, .join-form select:focus, .join-form textarea:focus {
  border-color: white;
  background: rgba(255,255,255,0.25);
}

.join-form select option { background: var(--saffron); }

.join-form textarea { resize: none; height: 100px; margin-bottom: 14px; }

.btn-white {
  background: white;
  color: var(--saffron-deep);
  padding: 13px 40px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

/* Volunteer Cards */
.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.volunteer-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.volunteer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.volunteer-card .v-icon { font-size: 36px; margin-bottom: 12px; }
.volunteer-card h4 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.volunteer-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ===== CONTACT SECTION ===== */
#contact { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-info p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-items { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.contact-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.contact-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-icon.saffron { background: rgba(255,107,0,0.1); }
.contact-icon.green { background: rgba(19,136,8,0.1); }
.contact-icon.blue { background: rgba(0,0,128,0.08); }

.contact-detail h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--text-dark); font-weight: 500; text-decoration: none; }

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

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #E1306C, #F58529);
  color: white;
}

.social-btn.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(225,48,108,0.4);
}

.contact-form-wrap {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-mid); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid #e5e5e5;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
}

.form-group textarea { resize: none; height: 110px; }

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

.btn-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--saffron-deep), #c44800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}

/* ===== FOOTER ===== */
footer {
  background: #0f0f0f;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-tricolor {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, var(--saffron) 33%, white 33%, white 66%, var(--green) 66%);
  border-radius: 2px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--saffron); }

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

.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-bottom .footer-ashoka { font-size: 18px; }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-roles { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-img-frame { width: 320px; }
  .hero-stat.stat-1 { left: 0; }
  .hero-stat.stat-2 { right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-feed-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 60px 24px 40px; }
  .join-hero { padding: 48px 24px; }
  .join-form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .instagram-feed-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3; aspect-ratio: 1; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .instagram-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: 1; }
}

/* ===== ACHIEVEMENT TICKER ===== */
.ticker-wrap {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  padding: 12px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  animation: ticker 35s linear infinite;
  width: max-content;
}

.ticker-inner span {
  font-size: 13px;
  font-weight: 500;
  padding: 0 40px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.ticker-inner span::after {
  content: ' ⟡ ';
  color: rgba(255,255,255,0.5);
}

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

/* Ashoka Chakra watermark */
.ashoka-watermark {
  position: absolute;
  opacity: 0.03;
  font-size: 300px;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
