html {
    scroll-behavior: smooth;
}

:root {
  --ink: #14241f;
  --deep: #0b3d31;
  --green: #12684f;
  --leaf: #6aa66a;
  --gold: #f0b64d;
  --ivory: #fbf6ea;
  --paper: #fffdf7;
  --sage: #e7efe3;
  --line: #d9e2d4;
  --muted: #63736b;
  --danger: #b45445;
  --blue: #395b80;
  --shadow: 0 24px 70px rgba(20, 36, 31, 0.12);
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(14px, 3vw, 44px);
  background: rgba(251, 246, 234, 0.93);
  border-bottom: 1px solid rgba(11, 61, 49, 0.12);
  backdrop-filter: blur(18px);
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    color:var(--deep);
    font-weight:750;
}

.brand-logo{
    width:58px;
    height:58px;
    object-fit:contain;
    flex-shrink:0;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.brand-text small{
    margin-top:4px;
    color:var(--muted);
    font-size:0.78rem;
    font-weight:600;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 3px;
}

.site-nav a {
  padding: 9px 10px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--deep);
  background: var(--sage);
}

.site-nav .portal-link {
  color: var(--ivory);
  background: var(--deep);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--deep);
  font-weight: 700;
}

.hero{
    position:relative;
    overflow:hidden;
    isolation:isolate;

    display:grid;
    grid-template-columns:minmax(0,760px);
    align-items:end;

    min-height:calc(100vh - 76px);

    padding:clamp(42px,7vw,92px)
            clamp(70px,7vw,92px)
            60px;
}

.hero-bg{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    opacity:0;

    transition:
        opacity 2s ease,
        transform 8s ease;

    transform:scale(1);

    z-index:-1;
    pointer-events:none;
}

.hero-bg-1{
    opacity: 1;
}

.hero-copy{
    position:relative;
    z-index:5;
    max-width:720px;
}

.eyebrow,
.role-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hindi-text {
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  font-weight: 760;
  line-height: 1.01;
}

h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 730;
  line-height: 1.12;
}

h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 1.18rem;
}

.hero p,
.page-hero p,
.statement-card p,
.login-intro p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero .eyebrow,
.hero h1,
.hero p {
  color: var(--ivory);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.hero p {
  max-width: 660px;
}

.hero .button.secondary {
  color: var(--ivory);
  background: rgba(251, 246, 234, 0.12);
  border-color: rgba(251, 246, 234, 0.5);
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(20, 36, 31, 0.14);
}

.button.primary {
  color: var(--ivory);
  background: var(--deep);
}

.button.secondary {
  color: var(--deep);
  background: var(--paper);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero-figure {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(11, 61, 49, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-figure figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--ivory);
  background: rgba(11, 61, 49, 0.86);
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.dash-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section,
.page,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 76px 0;
}

.split,
.portal-preview,
.contact-grid,
.page-links,
.principles,
.donate-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.statement-card,
.form-panel,
.login-panel,
.belief-grid article,
.leadership-card,
.work-card,
.dash-panel,
.contact-card,
.mission-card,
.event-card,
.gallery-note,
.donation-uses article,
.link-grid a {

    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(20,36,31,.07);

    transition: all .35s ease;

    cursor:pointer;
}

.statement-card:hover,
.belief-grid article:hover,
.leadership-card:hover,
.work-card:hover,
.contact-card:hover,
.mission-card:hover,
.event-card:hover,
.gallery-note:hover,
.donation-uses article:hover,
.link-grid a:hover{

    transform:translateY(-12px) scale(1.02);

    border-color:#12684f;

    box-shadow:
        0 30px 70px rgba(11,61,49,.18);
}

.number {
  display: block;
  margin-bottom: 28px;
  opacity: 0.7;
  font-weight: 800;
}

.work-card p,
.leadership-card p,
.belief-grid p,
.dash-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.link-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;

    align-items:stretch;
}

.link-grid a{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    padding:24px;
    height:100%;

    background:var(--paper);

    border:1px solid var(--line);
    border-radius:8px;

    box-shadow:0 14px 40px rgba(20,36,31,.07);

    transition:all .35s ease;

    cursor:pointer;
}

.link-grid a:hover{
    transform:translateY(-8px);
    background:#fff;
    border-color:#0b3d31;
    box-shadow:0 24px 60px rgba(20,36,31,.18);
}

.link-grid a:hover strong{
    color:#1f7a53;
}



.link-grid strong {
  color: var(--deep);
  font-size: 1.08rem;
}

.link-grid span {
  color: var(--muted);
  line-height: 1.55;
}



.page {
  padding: clamp(44px, 6vw, 90px) 0;
}

.page-hero {
  max-width: 900px;
  margin-bottom: 36px;
}

.page-hero.compact {
  max-width: 760px;
}

.belief-grid,
.leadership-grid,
.program-list,
.mission-layout,
.donation-uses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mission-layout {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.belief-grid article,
.work-card,
.leadership-card,
.form-panel,
.mission-card,
.donation-uses article {
  padding: 24px;
}

.mission-card {
  min-height: 260px;
}

.mission-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--deep);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 850;
}

.mission-card p,
.donation-uses p,
.event-card p,
.gallery-note p {
  color: var(--muted);
  line-height: 1.65;
}

.primary-mission {
  color: var(--ivory);
  background: var(--deep);
}

.primary-mission h2,
.primary-mission p {
  color: var(--ivory);
}

.principles {
  margin-top: 18px;
  padding: 32px;
  background: var(--deep);
  border-radius: 8px;
}

.principles h2,
.principles .eyebrow,
.principles li {
  color: var(--ivory);
}

.principles ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.leadership-section {
  margin-top: 44px;
}

.section-heading {
  margin-bottom: 18px;
}

.leadership-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
}

.portrait-space {
  width: 100%;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(18, 104, 79, 0.12), rgba(240, 182, 77, 0.28)),
    var(--sage);
  border: 1px dashed rgba(11, 61, 49, 0.28);
  border-radius: 8px;
}

.status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.status.active {
  color: var(--deep);
  background: var(--sage);
}

.status.upcoming {
  color: #603f08;
  background: #ffe3a5;
}

.status.complete {
  color: #1f3e5d;
  background: #dce8f5;
}

progress {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--sage);
}

progress::-webkit-progress-bar {
  background: var(--sage);
}

progress::-webkit-progress-value {
  background: var(--green);
}

progress::-moz-progress-bar {
  background: var(--green);
}

form {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 104, 79, 0.16);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
  font-style: normal;
}

.contact-card a {
  color: var(--green);
  font-weight: 700;
}

.event-board {
  display: grid;
  gap: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
}

.next-event {
  border-color: rgba(240, 182, 77, 0.7);
  box-shadow: var(--shadow);
}

.event-date {
  display: grid;
  gap: 2px;
  place-items: center;
  min-height: 104px;
  margin: 0;
  color: var(--deep);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-date span {
  font-size: 2.4rem;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
}

.gallery-item,
.gallery-note {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item {
  position: relative;
  background: var(--sage);
}

.gallery-item.large {
  grid-row: span 2;
  min-height: 536px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.crop-left img {
  object-position: 20% 50%;
}

.gallery-item.crop-center img {
  object-position: 50% 50%;
}

.gallery-item.crop-right img {
  object-position: 82% 50%;
}

.gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--ivory);
  background: rgba(11, 61, 49, 0.82);
  border-radius: 8px;
  font-weight: 750;
}

.gallery-note {
  display: grid;
  align-content: center;
  padding: 24px;
}

.donate-hero {
  align-items: center;
  grid-template-columns: 1fr;
  max-width: 880px;
}

.donate-hero > div > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.donation-uses {
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(11, 61, 49, 0.9), rgba(18, 104, 79, 0.8)),
    var(--deep);
}

.login-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  width: min(1080px, 100%);
}

.login-intro {
  display: grid;
  align-content: center;
  color: var(--ivory);
}

.login-intro .brand,
.login-intro .brand small,
.login-intro h1,
.login-intro p {
  color: var(--ivory);
}

.login-intro h1 {
  margin-top: 44px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.login-panel {
  padding: 28px;
}

.dash-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: #f4f0e4;
}

.dash-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100vh;
  padding: 22px;
  background: var(--deep);
}

.dash-sidebar .brand,
.dash-sidebar .brand small {
  color: var(--ivory);
}

.dash-sidebar .brand-mark {
  background: var(--gold);
  color: var(--deep);
}

.dash-sidebar nav {
  display: grid;
  gap: 6px;
}

.dash-sidebar nav a {
  padding: 11px 12px;
  color: rgba(251, 246, 234, 0.74);
  border-radius: 8px;
  font-weight: 700;
}

.dash-sidebar nav a:hover {
  color: var(--ivory);
  background: rgba(251, 246, 234, 0.1);
}

.dash-main {
  padding: clamp(18px, 4vw, 42px);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.dash-top h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.date-badge {
  padding: 11px 14px;
  color: var(--deep);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.dash-stats article {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dash-stats strong {
  color: var(--deep);
  font-size: 2rem;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dash-panel {
  padding: 22px;
}

.dash-panel.large {
  grid-column: span 2;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-head h2 {
  font-size: 1.35rem;
}

.work-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  color: var(--muted);
  font-weight: 700;
  border-top: 1px solid var(--line);
}

.stack-list,
.date-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stack-list li {
  padding: 11px 12px;
  color: var(--muted);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stack-list.compact {
  margin-top: 12px;
}

.date-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  color: var(--muted);
}

.date-list b {
  color: var(--deep);
}

.inline-form {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.chat-box {
  display: grid;
  gap: 10px;
  min-height: 140px;
  margin-bottom: 14px;
  padding: 14px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chat-box p {
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .split,
  .portal-preview,
  .contact-grid,
  .page-links,
  .principles,
  .donate-hero,
  .login-layout,
  .dash-body {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .mission-layout,
  .gallery-grid,
  .donation-uses,
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-row: auto;
    min-height: 320px;
  }

  .dash-sidebar {
    position: static;
    height: auto;
  }

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

@media (max-width: 660px) {
  .hero-actions,
  .dash-top,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .link-grid,
  .belief-grid,
  .leadership-grid,
  .program-list,
  .mission-layout,
  .event-card,
  .gallery-grid,
  .donation-uses,
  .dash-stats,
  .dash-grid,
  .work-row,
  .inline-form,
  .leadership-card {
    grid-template-columns: 1fr;
  }

  .dash-panel.large {
    grid-column: auto;
  }

  .hero {
    min-height: 560px;
  }
}

.mission-card h2,
.work-card h2,
.work-card h3,
.statement-card h2,
.link-grid strong{
    transition: color .35s ease;
}

.mission-card:hover h2,
.work-card:hover h2,
.work-card:hover h3,
.statement-card:hover h2,
.link-grid a:hover strong{
    color:#1d6a54;
}

.nav-main {
    display: flex;
    gap: 24px;
    align-items: center;
}

.menu-btn {
    background: #0a4b3f;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    padding: 24px;
    transition: right 0.3s ease;
    z-index: 999;
}

.sidebar.active {
    right: 0;
}

.sidebar a {
    display: block;
    margin: 16px 0;
    text-decoration: none;
}

.close-btn {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
}

/* ===== CULTURE & LITERATURE ===== */

.culture-hero {

    position: relative;

    min-height: calc(100vh - 76px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 80px 40px;

    text-align: center;

    overflow: hidden;

    isolation: isolate;
}

.culture-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(11, 61, 49, 0.25),
            rgba(11, 61, 49, 0.35)
        ),
        url("./images/Tribalart.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: -2;
}

.culture-hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at top right,
            rgba(240, 182, 77, 0.2),
            transparent 50%
        );

    z-index: -1;
}

.hero-content {

    max-width: 850px;
}

.hero-tag {

    color: var(--gold);

    letter-spacing: .18em;

    font-size: .85rem;

    font-weight: 800;

    margin-bottom: 16px;
}

.hero-description {

    color: #f7f7f7;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 28px;

    background: var(--gold);

    color: var(--deep);

    border-radius: 10px;

    font-weight: 800;

    transition: .3s ease;
}

.hero-btn:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.map-section,
.agriculture-section,
.horticulture-section,
.culture-section {

    width: min(1200px, calc(100% - 36px));

    margin: auto;

    padding: 90px 0;
}

.section-title {

    margin-bottom: 50px;
}

.section-title span {

    color: var(--gold);

    letter-spacing: .15em;

    font-weight: 800;
}

.section-title h2 {

    margin-top: 10px;
}

.map-layout {

    display: grid;

    grid-template-columns: 1.5fr .9fr;

    gap: 40px;

    align-items: start;
}

.map-card {

    background: var(--paper);

    border: 1px solid var(--line);

    border-radius: 18px;

    padding: 25px;

    box-shadow: var(--shadow);
}

.map-card img {

    width: 100%;

    max-width: 750px;

    margin: auto;

    transition: .4s ease;
}

.map-card:hover img {

    transform: scale(1.02);
}

.division-list {

    display: grid;

    gap: 18px;
}

.division-card {

    background: var(--paper);

    border: 1px solid var(--line);

    border-radius: 14px;

    padding: 22px;

    box-shadow: 0 10px 25px rgba(20,36,31,.08);

    transition: .3s ease;

    cursor: pointer;
}

.division-card:hover {

    transform: translateY(-8px);

    border-color: var(--green);
}

.division-card p {

    color: var(--muted);
}

.card-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.info-card {

    background: var(--paper);

    border: 1px solid var(--line);

    border-radius: 16px;

    padding: 28px;

    box-shadow: 0 14px 40px rgba(20,36,31,.08);

    transition: .3s ease;
}

.info-card:hover {

    transform: translateY(-10px);

    border-color: var(--green);
}

.info-card h3 {

    margin-bottom: 18px;
}

.info-card p {

    color: var(--muted);

    line-height: 1.8;
}

@media (max-width: 960px) {

    .map-layout,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .culture-hero {
        padding: 60px 24px;
    }
}

/* ===== HERO TEXT COLORS ===== */

.culture-hero .hero-content h1 {

    color: #ffffff !important;

    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);

    position: relative;

    z-index: 10;
}

.culture-hero .hero-description {

    color: #ffffff !important;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.culture-hero .hero-tag {

    color: #f0b64d !important;
}

.jharkhand-map {

    transition:
        transform 0.5s ease,
        filter 0.5s ease;

    cursor: pointer;
}

.jharkhand-map:hover {

    transform: scale(1.04);

    filter: drop-shadow(
        0 20px 40px rgba(11, 61, 49, 0.25)
    );
}

.section-title,
.info-card,
.division-card,
.map-card {

    opacity: 0;

    transform: translateY(40px);

    animation: fadeUp 0.8s ease forwards;
}

.info-card:nth-child(2),
.division-card:nth-child(2) {

    animation-delay: 0.15s;
}

.info-card:nth-child(3),
.division-card:nth-child(3) {

    animation-delay: 0.3s;
}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(40px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}

.stats-section {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    margin-top: 50px;
}

.stat-card {

    background: var(--paper);

    border: 1px solid var(--line);

    border-radius: 16px;

    padding: 30px;

    text-align: center;

    box-shadow: var(--shadow);
}

.stat-card h2 {

    color: var(--gold);

    font-size: 3rem;

    margin-bottom: 10px;
}

.stat-card p {

    color: var(--muted);
}

@media (max-width: 900px) {

    .stats-section {

        grid-template-columns: repeat(2, 1fr);

    }
}
.quote-section {

    width: min(1000px, calc(100% - 36px));

    margin: 0 auto 120px;

    padding: 60px;

    text-align: center;

    background: var(--deep);

    border-radius: 24px;

    color: white;

    box-shadow: var(--shadow);
}

.quote-section blockquote {

    font-size: 1.8rem;

    line-height: 1.7;

    margin: 0;

    font-style: italic;
}
