/* ==========================================================================
   Vruksh Sanjeevani Abhiyan — Site Styles
   Palette pulled directly from the source PPTX (srgbClr values):
   Background sage: #CED8BE | Green heading: #729659 | Deep green: #468D4F
   Bright green: #00B050 | Brown/orange accent: #C57C4D
   Dark text: #3A2115 / #6D5F54 | Blue: #00B0F0 | Yellow: #FFC000
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

:root {
  --bg-sage: #CED8BE;
  --bg-sage-light: #DEE6D2;
  --bg-cream: #F4EFDE;
  --green-deep: #468D4F;
  --green-mid: #729659;
  --green-bright: #00B050;
  --brown-accent: #C57C4D;
  --text-dark: #2B2B1F;
  --text-brown: #3A2115;
  --text-muted: #6D5F54;
  --blue-accent: #00B0F0;
  --yellow-accent: #FFC000;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
  --radius: 18px;
  --font-body: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-sage);
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-body);
  margin: 0 0 .5em;
  line-height: 1.25;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-wrap {
  position: relative;
  width: 100%;
  padding: clamp(60px, 8vw, 100px) 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  scroll-margin-top: 110px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.alt-bg {
  background: var(--bg-sage-light);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green-mid);
  margin-bottom: .8em;
}

.section-title.brown {
  color: var(--brown-accent);
}

.section-title.deep {
  color: var(--green-deep);
}

/* -------------------------------- Custom Shapes for Titles -------------------------------- */
.shape-title-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
  margin-bottom: 1em;
}

.shape-small, .shape-large, .shape-medium {
  background: #E89E6E;
  color: var(--text-brown);
  padding: 0.4em 0.8em;
  border-radius: 12px;
  display: inline-block;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--brown-accent);
}

.shape-small {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.shape-large {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.shape-medium {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.initiative-title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  padding-left: .5em;
  border-left: 6px solid var(--green-bright);
}

.eyebrow {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: .5em;
  display: block;
}

/* -------- Decorative scalloped blob (recreated from PPT motif) -------- */
.blob {
  --size: 260px;
  width: var(--size);
  height: var(--size);
  background: var(--bg-cream);
  border-radius: 42% 58% 61% 39% / 45% 40% 60% 55%;
  box-shadow: var(--shadow-sm);
  position: absolute;
}

.blob::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: var(--bg-cream);
  border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
}

.quote-bubble {
  background: var(--bg-cream);
  border-radius: 28px;
  padding: 2.4em 2.6em;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow-wrap: break-word;
}

/* -------------------------------- Header / Nav -------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1em 4vw;
  background: rgba(206, 216, 190, .85);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: background .3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8em;
  font-weight: 700;
  color: var(--green-deep);
  min-width: 0;
}

.brand img {
  height: clamp(52px, 8.5vw, 80px);
  width: clamp(52px, 8.5vw, 80px);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  flex: none;
  background: #fff;
}

.brand span {
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  gap: 1.7em;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-brown);
  white-space: nowrap;
  padding: .3em .1em;
  border-bottom: 2px solid transparent;
  transition: .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-deep);
  border-color: var(--green-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .8em;
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .65em 1.4em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid var(--green-deep);
  cursor: pointer;
  transition: .2s;
}

.btn-solid {
  background: var(--green-deep);
  color: #fff;
}

.btn-solid:hover {
  background: var(--green-mid);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
}

.btn-outline:hover {
  background: var(--green-deep);
  color: #fff;
}

.btn-sm {
  padding: .45em 1em;
  font-size: .8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4em;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--green-deep);
  border-radius: 3px;
}

/* -------------------------------- Hero -------------------------------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(206, 216, 190, .4), rgba(206, 216, 190, .85)), var(--bg-sage);
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-panel {
  background: transparent;
  border-radius: 32px;
  padding: clamp(1.6em, 4vw, 2.6em) clamp(1.2em, 4vw, 2.2em);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-logo {
  width: clamp(130px, 26vw, 210px);
  height: clamp(130px, 26vw, 210px);
  margin: 0 auto 1.2em;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  background: #fff;
  border: 4px solid #fff;
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-quote {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #ffffff;
  max-width: 640px;
  margin: 1.4em auto;
  padding: 1.2em 1.6em;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 28px;
}

.hero-credit {
  margin-top: 1.4em;
  font-size: .9rem;
  color: #f0f0f0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-credit b {
  color: #ffffff;
}

/* -------------------------------- Mission / Vision -------------------------------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5em;
}

.mv-card {
  padding: 2em;
  border-radius: var(--radius);
}

.mv-card.mission {
  background: rgba(70, 141, 79, .12);
}

.mv-card.vision {
  background: rgba(0, 176, 80, .10);
}

.mv-card h3 {
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: var(--green-deep);
  text-transform: uppercase;
  margin-bottom: .7em;
  display: flex;
  align-items: center;
  gap: .4em;
}

.mv-card p {
  color: var(--text-brown);
}

.mv-card .icon {
  font-size: 2.4rem;
  margin-top: 1em;
}

.mv-clipart {
  font-size: 1.5rem;
  text-transform: none;
}

/* -------------------------------- Cards Grid (Situation / generic) -------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.6em;
}

.cards-grid.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.cards-grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6em;
  box-shadow: var(--shadow-sm);
  transition: .25s;
  overflow-wrap: break-word;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card h4 {
  color: var(--green-deep);
  font-size: 1.2rem;
}

.info-card p {
  font-size: 1.02rem;
}

.info-card .tag {
  display: inline-block;
  background: var(--brown-accent);
  color: #fff;
  font-size: .75rem;
  padding: .25em .8em;
  border-radius: 999px;
  margin-bottom: .7em;
  font-weight: 600;
}


/* -------------------------------- Icon rows (Green Assets) -------------------------------- */
.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4em;
  justify-content: center;
}

.icon-pill {
  background: var(--white);
  border-radius: 999px;
  padding: 1em 1.6em;
  display: flex;
  align-items: center;
  gap: .7em;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--text-brown);
  font-size: 1.03rem;
}

.icon-pill .emoji {
  font-size: 1.6rem;
}

/* -------------------------------- Split layout (image + text) -------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 3em;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.split.reverse {
  direction: rtl;
}

.split.reverse>* {
  direction: ltr;
}

/* -------- Initiative / Abhiyan slide: smaller photo, decorative blob behind heading -------- */
.initiative-text-wrap {
  position: relative;
}

.initiative-blob {
  top: -30px;
  left: -40px;
  z-index: 0;
  opacity: .55;
}

.initiative-text {
  position: relative;
  z-index: 1;
}

.initiative-photo {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

/* -------------------------------- Kit boxes -------------------------------- */
.kit-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.6em;
}

.kit-box {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.kit-box .kit-box-head {
  background: var(--green-deep);
  color: #fff;
  padding: .9em 1.2em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6em;
}

.kit-box .kit-box-body {
  padding: 1.2em;
  color: var(--text-brown);
  font-size: 1.03rem;
}

.kit-box .kit-box-body li {
  margin-bottom: .5em;
  padding-left: 1.1em;
  position: relative;
}

.kit-box .kit-box-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 700;
}

/* -------------------------------- Quote / profile -------------------------------- */
.quote-block {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-brown);
}

.profile-card {
  display: flex;
  gap: 1.4em;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4em;
  box-shadow: var(--shadow-sm);
}

.profile-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex: none;
}

/* -------------------------------- 5-element grid (Majhi Vasundhara) -------------------------------- */
.vasundhara-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6em;
  flex-wrap: wrap;
}

.vasundhara-eyebrow {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6em;
}

.vasundhara-logo-inline {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  flex: none;
  box-shadow: var(--shadow-sm);
}

.vasundhara-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  display: inline-block;
  background: var(--bg-cream);
  padding: .35em .75em;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.vasundhara-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.4em;
}

.vasundhara-card {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.3em;
  box-shadow: var(--shadow-sm);
}

.vasundhara-card h5 {
  color: var(--green-deep);
  margin-bottom: .3em;
  font-size: 1.05rem;
}

.vasundhara-card.full {
  grid-column: 1 / -1;
}

/* -------------------------------- Table (Government policies) -------------------------------- */
.policy-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

table.policy-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 560px;
}

table.policy-table th {
  background: var(--green-deep);
  color: #fff;
  padding: .9em;
  text-align: center;
  font-size: 1.03rem;
}

table.policy-table td {
  padding: .85em 1em;
  border-bottom: 1px solid #e3e3d8;
  text-align: center;
  font-size: 1rem;
}

table.policy-table tr:nth-child(even) td {
  background: #EFF4E7;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6em;
  align-items: center;
  justify-content: center;
  margin-top: 1.6em;
}

.logo-row img {
  height: 64px;
  width: auto;
}

/* -------------------------------- Steps (How to use) -------------------------------- */
.steps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin: 0 auto;
}

.step-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2em;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.step-card img {
  border-radius: 12px;
  margin-bottom: 1em;
  height: auto;
  width: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  margin-right: .5em;
}

/* -------------------------------- Benefits -------------------------------- */
.benefit-list li {
  display: flex;
  gap: .7em;
  margin-bottom: .9em;
  align-items: flex-start;
  font-size: 1.03rem;
}

.benefit-list li::before {
  content: "✔";
  color: var(--green-bright);
  font-weight: 700;
}

/* -------------------------------- Testimonials slider -------------------------------- */
.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: 2em auto 0;
}

.testimonial-track {
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2em 2.4em;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-brown);
  overflow-wrap: break-word;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  color: var(--green-deep);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: .6em;
  margin-top: 1.2em;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--bg-sage);
  cursor: pointer;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--green-deep);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--green-deep);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrow.prev {
  left: -52px;
}

.testimonial-arrow.next {
  right: -52px;
}

@media (max-width: 900px) {
  .testimonial-arrow.prev {
    left: -8px;
  }

  .testimonial-arrow.next {
    right: -8px;
  }

  .testimonial-slide {
    padding: 1.8em 1.4em;
  }
}

/* -------------------------------- Contact / Footer -------------------------------- */
#contact {
  background: var(--green-deep);
  color: #fff;
  min-height: auto;
  padding: 70px 6vw 40px;
}

#contact .section-title {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2.5em;
  align-items: center;
}

.contact-list li {
  margin-bottom: .8em;
  display: flex;
  gap: .6em;
  align-items: center;
}

.qr-box {
  background: #fff;
  padding: 1em;
  border-radius: 14px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: .75rem;
  text-align: center;
}

.download-row {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 1.6em;
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5em;
  font-size: .8rem;
  opacity: .85;
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 1.2em;
}

/* ==========================================================================
   Responsive — Tablet & below: nav collapses to hamburger dropdown.
   (7 nav items no longer fit inline once the header drops below ~1024px,
   so the hamburger takes over here instead of only on phones.)
   ========================================================================== */
@media (max-width: 1024px) {
  .split.reverse {
    direction: ltr;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-sage);
    flex-direction: column;
    align-items: stretch;
    padding: 1.2em 6vw;
    gap: 1em;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .3s ease, opacity .25s ease;
  }

  .nav-links.open {
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
  }

  .nav-links a {
    padding: .6em .2em;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .hamburger {
    display: flex;
  }
}

/* ==========================================================================
   Responsive — Phone
   ========================================================================== */
@media (max-width: 680px) {

  .brand span {
    display: none;
  }

  .logo-row img {
    height: 46px;
  }

  .nav-actions .btn span.txt {
    display: none;
  }

  .profile-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-arrow.prev {
    left: -4px;
  }

  .testimonial-arrow.next {
    right: -4px;
  }
}

.vasundhara-icon-circle {
  font-size: 2.2rem;
  background: #f4efde;
  color: var(--green-deep);
  border-radius: 50%;
  flex: none;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 3px solid white;
}

/* ==========================================================================
   Responsive — Small phone
   ========================================================================== */
@media (max-width: 420px) {

  .hero-panel {
    padding: 1.2em 1em;
    border-radius: 22px;
  }

  .quote-bubble {
    padding: 1.6em 1.4em;
  }

  .mv-card {
    padding: 1.4em;
  }

  .step-card img {
    max-height: 220px;
  }

  .testimonial-slide {
    padding: 1.4em 1.1em;
  }

  .btn {
    padding: .6em 1.1em;
    font-size: .85rem;
  }
}