@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;600;700;800;900&family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
  --saffron: #FF6600;
  --saffron-dk: #CC4400;
  --navy: #003580;
  --navy-dk: #002060;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --light-grey: #EEF2F7;
  --border: #C8D0DA;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --green: #138808;
  --link: #00338d;
  --danger: #C0392B;
  --gold: #D4A017;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', 'Noto Sans Devanagari', Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--saffron);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.3;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* TOP STRIP */
.top-strip {
  background: var(--saffron);
  height: 6px;
}

/* GOV BAR */
.gov-bar {
  background: var(--navy-dk);
  color: var(--white);
  padding: 6px 0;
  font-size: 12.5px;
  border-bottom: 2px solid var(--saffron);
}

.gov-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
}

.gov-bar-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFDD44;
}

.gov-bar-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gov-bar-links a {
  color: var(--white);
  font-size: 12px;
}

.gov-bar-links a:hover {
  color: #FFDD44;
  text-decoration: none;
}

.gov-bar-links .divider {
  color: rgba(255, 255, 255, 0.4);
}

.contact-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.contact-info i {
  color: var(--saffron);
  font-size: 11px;
}

/* EMBLEM BAR */
.emblem-bar {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  padding: 10px 0;
}

.emblem-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.emblem-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.emblem-img {
  height: 72px;
  width: auto;
}

.site-title-hi {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.site-title-en {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.site-tagline {
  font-size: 11.5px;
  color: var(--saffron);
  font-weight: 600;
  margin-top: 2px;
}

.cm-block {
  text-align: center;
  flex: 0 0 auto;
}

.cm-photo-wrap {
  width: 80px;
  height: 96px;
  border: 3px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 4px;
  background: linear-gradient(135deg, #e8edf5, #c8d5e8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cm-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cm-label {
  font-size: 10px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.emblem-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.partner-logo-sm {
  height: 56px;
  width: auto;
}

/* NAV */
.main-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--saffron);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.main-nav .container {
  display: flex;
  align-items: stretch;
  height: 46px;
  position: relative;
}

.nav-list {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-item {
  position: relative;
}

.nav-item>a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 13px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
  gap: 4px;
}

.nav-item>a:hover,
.nav-item>a.active {
  background: var(--saffron);
  color: var(--white);
  text-decoration: none;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--saffron);
  box-shadow: var(--shadow);
  z-index: 999;
}

.dropdown a {
  display: block;
  padding: 9px 14px;
  color: var(--text);
  font-size: 12.5px;
  border-bottom: 1px solid #eee;
  transition: background .15s;
}

.dropdown a:hover {
  background: var(--light-grey);
  color: var(--navy);
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  color: white;
  font-size: 20px;
  align-items: center;
}

/* MARQUEE */
.marquee-bar {
  background: #FFF9E6;
  border-bottom: 2px solid #FFD580;
  padding: 6px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
}

.marquee-label {
  background: var(--saffron);
  color: white;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  margin-right: 14px;
  flex-shrink: 0;
}

.marquee-track {
  overflow: hidden;
  flex: 1;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 500;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(100%)
  }

  100% {
    transform: translateX(-100%)
  }
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 46px);
  min-height: 520px;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.slide.active {
  opacity: 1;
}

.slide-1 {
  background: url('../images/modi.png?v=639072302910635033') center top/cover no-repeat;
}

.slide-2 {
  background: url('../images/service-goat.png') center/cover no-repeat;
}

.slide-3 {
  background: url('../images/woman-loan.png') center/cover no-repeat;
}

.slide-4 {
  background: url('../images/save-girl.png') center/cover no-repeat;
}

.slide-5 {
  background: url('../images/Community.png') center/cover no-repeat;
}

.slide-6 {
  background: url('../images/anual.png?v=639072290740352731') center/cover no-repeat;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: white;
  background: rgba(0, 35, 102, 0.88);
  backdrop-filter: blur(10px);
  padding: 45px 40px;
  border-radius: 8px;
  border-left: 8px solid var(--saffron);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.slide-badge {
  display: inline-block;
  background: var(--saffron);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-hi {
  font-size: 58px;
  font-weight: 700;
  font-family: 'Noto Sans Devanagari', sans-serif;
  line-height: 1.3;
  margin-bottom: 14px;
  text-shadow: none;
}

.slide-en {
  font-size: 18px;
  opacity: .85;
  margin-bottom: 16px;
}

.slide-points {
  margin-bottom: 22px;
}

.slide-points li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  opacity: .9;
}

.slide-points li::before {
  content: '✓';
  background: rgba(255, 255, 255, 0.2);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.slide-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-apply {
  background: var(--saffron);
  color: white;
  border: none;
  padding: 13px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-apply:hover {
  background: var(--saffron-dk);
}

.btn-learn {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.btn-learn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.slide-art {
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slide-art-inner {
  width: 360px;
  height: 440px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  background: rgba(0, 0, 0, 0.25);
}

.slide-art-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
  transition: background .2s;
}

.slider-arrow:hover {
  background: var(--saffron);
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: background .2s;
}

.slider-dot.active {
  background: var(--saffron);
  transform: scale(1.2);
}

/* SECTIONS */
.section {
  padding: 40px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-navy {
  background: var(--navy);
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: 22px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--saffron);
}

.section-navy .section-header h2 {
  color: white;
}

.section-header .hi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 24px;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 13.5px;
}

.section-navy .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-text h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 13.5px;
}

.about-box {
  background: var(--light-grey);
  border-left: 4px solid var(--saffron);
  padding: 20px;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.about-stat:last-child {
  margin-bottom: 0;
}

.about-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  min-width: 70px;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--navy-dk);
  color: white;
  text-decoration: none;
}

.btn-saffron {
  display: inline-block;
  background: var(--saffron);
  color: white;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}

.btn-saffron:hover {
  background: var(--saffron-dk);
  color: white;
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
}

/* SCHEME CARDS */
.schemes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.scheme-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  transition: box-shadow .2s, transform .2s;
  overflow: hidden;
}

.scheme-card:hover {
  box-shadow: 0 4px 18px rgba(0, 53, 128, 0.15);
  transform: translateY(-2px);
}

.scheme-card-head {
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scheme-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.scheme-card-head h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.scheme-card-head p {
  font-size: 12px;
  opacity: .7;
  margin-top: 2px;
}

.scheme-card-body {
  padding: 14px;
}

.scheme-card-body p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.scheme-badge {
  display: inline-block;
  background: #E8F0FE;
  color: var(--navy);
  font-size: 11px;
  padding: 2px 8px;
  margin-bottom: 10px;
  font-weight: 600;
}

.scheme-card-footer {
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scheme-card-footer a {
  font-size: 12px;
  color: var(--link);
}

.btn-apply-sm {
  background: var(--saffron);
  color: white;
  border: none;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}

.btn-apply-sm:hover {
  background: var(--saffron-dk);
}

/* IMPACT STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 38px;
  font-weight: 700;
  color: var(--saffron);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  opacity: .85;
}

.stat-sublabel {
  font-size: 11px;
  opacity: .6;
  margin-top: 3px;
}

/* ACTIVITIES */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.activity-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s;
}

.activity-card:hover {
  box-shadow: var(--shadow);
}

.activity-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.activity-img-1 {
  background: linear-gradient(135deg, #E8F4FD, #BDD7F5);
}

.activity-img-2 {
  background: linear-gradient(135deg, #FEF9E7, #FDEBD0);
}

.activity-img-3 {
  background: linear-gradient(135deg, #EAFAF1, #C3E8D5);
}

.activity-body {
  padding: 14px;
}

.activity-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.activity-body p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.activity-footer {
  padding: 8px 14px 12px;
  border-top: 1px solid var(--border);
}

.activity-footer a {
  font-size: 12px;
  color: var(--link);
  font-weight: 600;
}

/* FEATURED SCHEME */
.featured-scheme {
  background: linear-gradient(135deg, #EEF5FF 0%, #F8EFE6 100%);
  border: 1px solid var(--border);
  padding: 28px;
}

.fs-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.fs-icon {
  width: 70px;
  height: 70px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  color: white;
}

.fs-title h3 {
  font-size: 20px;
  color: var(--navy);
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.fs-title p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}

.fs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.fs-detail h4 {
  font-size: 14px;
  color: var(--navy);
  border-left: 3px solid var(--saffron);
  padding-left: 10px;
  margin-bottom: 10px;
}

.fs-list {
  padding-left: 0;
}

.fs-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fs-list li::before {
  content: '▸';
  color: var(--saffron);
  flex-shrink: 0;
  margin-top: 2px;
}

.fs-process {
  background: white;
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 20px;
}

.fs-process h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 12px;
  border-left: 3px solid var(--saffron);
  padding-left: 10px;
}

.process-steps {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 12px 8px;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--saffron);
  font-size: 18px;
}

.process-step:last-child::after {
  display: none;
}

.step-num {
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 6px;
}

.process-step p {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.event-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
}

.event-date-strip {
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-day {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.event-mon {
  font-size: 12px;
  opacity: .75;
}

.event-time {
  font-size: 11px;
  margin-top: 2px;
}

.event-body {
  padding: 14px;
}

.event-body h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 700;
}

.event-body p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.event-location {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}

.event-footer {
  border-top: 1px solid var(--border);
  padding: 8px 14px;
  display: flex;
  gap: 8px;
}

/* NEWS */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

.news-main {
  border: 1px solid var(--border);
  overflow: hidden;
}

.news-img {
  height: 180px;
  background: linear-gradient(135deg, #E8F4FD, #C5D8F7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.news-body {
  padding: 16px;
}

.news-body h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.news-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.news-meta {
  display: flex;
  gap: 14px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.news-sidebar-item {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

.news-sidebar-item:last-child {
  border-bottom: none;
}

.news-sidebar-item:hover {
  background: var(--light-grey);
}

.news-sidebar-item h5 {
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 600;
}

.news-sidebar-item span {
  font-size: 11px;
  color: var(--text-muted);
}

/* PARTNERS */
.partners-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.partner-logo-item img {
  height: 80px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: transform .2s;
}

.partner-logo-item:hover img {
  transform: scale(1.08);
}

.partner-box {
  border: 1px solid var(--border);
  padding: 14px 24px;
  background: var(--white);
  text-align: center;
  min-width: 130px;
  transition: box-shadow .2s;
}

.partner-box:hover {
  box-shadow: var(--shadow);
}

.partner-box .partner-icon {
  font-size: 30px;
  margin-bottom: 6px;
}

.partner-box p {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* FOOTER */
.site-footer {
  background: #0b1a35;
  color: rgba(255, 255, 255, 0.85);
  border-top: 4px solid var(--saffron);
}

.footer-main {
  padding: 36px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-col p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col ul li {
  margin-bottom: 7px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: color .15s;
}

.footer-col ul li a:hover {
  color: var(--saffron);
  text-decoration: none;
}

.footer-col ul li a::before {
  content: '▸ ';
  color: var(--saffron);
  font-size: 10px;
}

.footer-contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 9px;
}

.footer-contact-item i {
  color: var(--saffron);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .2s;
}

.footer-social a:hover {
  background: var(--saffron);
}

.footer-bottom {
  background: #07101f;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-bottom p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 14px;
}

.footer-bottom-links a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--saffron);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4)
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65)
  }
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: white;
  width: 100%;
  max-width: 640px;
  position: relative;
  margin: auto;
  animation: slide-in .3s ease;
}

@keyframes slide-in {
  from {
    transform: translateY(-20px);
    opacity: 0
  }

  to {
    transform: none;
    opacity: 1
  }
}

.modal-header {
  background: var(--navy);
  color: white;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 15px;
  font-weight: 700;
}

.modal-header span {
  font-size: 12px;
  opacity: .7;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.step-progress {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}

.step-tab {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
}

.step-tab.active {
  color: var(--navy);
  border-bottom-color: var(--saffron);
  background: white;
}

.step-tab.done {
  color: var(--green);
  border-bottom-color: var(--green);
}

.step-tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--border);
  color: white;
  font-size: 10px;
  margin-right: 3px;
}

.step-tab.active .step-tab-num {
  background: var(--saffron);
}

.step-tab.done .step-tab-num {
  background: var(--green);
}

.modal-body {
  padding: 18px 22px;
  max-height: 62vh;
  overflow-y: auto;
}

.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.form-group label .req {
  color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: white;
  outline: none;
  transition: border .2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.form-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--light-grey);
  border-left: 4px solid var(--saffron);
  padding: 6px 10px;
  margin-bottom: 12px;
}

.step-note {
  background: #FFF9E6;
  border: 1px solid #FFD580;
  border-left: 4px solid var(--gold);
  padding: 10px 14px;
  font-size: 12.5px;
  color: #6b4c00;
  margin-bottom: 14px;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.payment-card {
  border: 2px solid var(--border);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s;
}

.payment-card.selected {
  border-color: var(--saffron);
  background: #FFF5EE;
}

.pay-logo {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.pay-logo span {
  font-size: 20px;
  margin-right: 4px;
}

.qr-placeholder {
  width: 100px;
  height: 100px;
  margin: 8px auto;
  background: #f0f0f0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.qr-placeholder i {
  font-size: 28px;
  color: var(--navy);
}

.upi-id {
  font-size: 11px;
  color: var(--text-muted);
  word-break: break-all;
  margin-top: 4px;
}

.doc-upload-item {
  border: 1px dashed var(--border);
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-upload-item label {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.doc-upload-item input[type="file"] {
  display: none;
}

.doc-upload-btn {
  background: var(--light-grey);
  border: 1px solid var(--border);
  padding: 5px 12px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}

.review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 14px;
}

.review-table th {
  background: var(--navy);
  color: white;
  padding: 8px 12px;
  text-align: left;
  font-size: 12px;
}

.review-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.review-table tr:nth-child(even) td {
  background: var(--off-white);
}

.review-table .label-cell {
  font-weight: 600;
  color: var(--text-muted);
  width: 40%;
}

.declaration-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  padding: 12px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.check-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12.5px;
  margin-bottom: 10px;
}

.check-row input {
  margin-top: 3px;
  flex-shrink: 0;
}

.modal-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off-white);
}

.modal-footer .btn-back {
  background: none;
  border: 1px solid var(--border);
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-muted);
}

.modal-footer .btn-next {
  background: var(--navy);
  color: white;
  border: none;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}

.modal-footer .btn-next:hover {
  background: var(--navy-dk);
}

.modal-footer .btn-submit {
  background: var(--green);
  color: white;
  border: none;
  padding: 9px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.success-message {
  text-align: center;
  padding: 20px;
}

.success-icon {
  font-size: 56px;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
}

.success-message h3 {
  font-size: 20px;
  color: var(--green);
  margin-bottom: 8px;
}

.success-message p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* PRINT FORM OVERLAY */
#printFormOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  overflow-y: auto;
  padding: 20px;
}

#printFormOverlay.open {
  display: block;
}

.print-form-wrap {
  background: white;
  max-width: 700px;
  margin: 20px auto;
}

.print-controls {
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.print-controls h4 {
  font-size: 14px;
}

.print-controls-btns {
  display: flex;
  gap: 10px;
}

.print-btn {
  background: var(--saffron);
  color: white;
  border: none;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}

.close-print-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}

#printFormContent {
  padding: 28px 36px 36px;
  font-family: 'Noto Sans', sans-serif;
  position: relative;
}

/* GOVT PRINT FORM */
.pf-header {
  border-bottom: 3px double var(--navy);
  padding-bottom: 14px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 14px;
}

.pf-emblem-ph {
  width: 75px;
  height: 75px;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}

.pf-title {
  text-align: center;
}

.pf-title .gov-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.pf-title .org-name {
  font-size: 13px;
  color: var(--text-muted);
  margin: 3px 0;
}

.pf-title .form-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid var(--navy);
  display: inline-block;
  padding: 3px 18px;
  margin-top: 6px;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.pf-ref-box {
  width: 80px;
  height: 75px;
  border: 2px solid var(--navy);
  font-size: 9px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
}

.pf-ref-box strong {
  font-size: 11px;
  color: var(--navy);
  word-break: break-all;
}

.pf-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  background: var(--off-white);
  padding: 8px 12px;
}

.pf-section-title {
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.pf-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 12.5px;
}

.pf-table td {
  border: 1px solid #aaa;
  padding: 7px 10px;
  vertical-align: top;
}

.pf-table .pf-label {
  font-weight: 700;
  color: var(--text-muted);
  background: #F8F8F8;
  width: 35%;
  font-size: 11.5px;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.pf-declaration {
  border: 2px solid var(--navy);
  padding: 14px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.8;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.pf-declaration h5 {
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 6px;
  text-align: center;
}

.pf-sign-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.pf-sign-box {
  text-align: center;
}

.pf-sign-line {
  border-top: 1px solid var(--text);
  padding-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 40px;
}

.pf-stamp-box {
  width: 100px;
  height: 100px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 10px;
  color: var(--border);
  text-align: center;
}

.pf-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  font-size: 72px;
  font-weight: 900;
  color: rgba(0, 53, 128, 0.04);
  pointer-events: none;
  white-space: nowrap;
  font-family: 'Noto Sans Devanagari', sans-serif;
  z-index: 0;
}

.pf-footer-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  padding: 6px 14px;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .schemes-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .news-grid {
    grid-template-columns: 1fr
  }

  .pf-header {
    grid-template-columns: 60px 1fr
  }

  .pf-ref-box {
    display: none
  }
}

@media(max-width:700px) {
  .hamburger {
    display: flex
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--navy-dk);
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    z-index: 999;
    height: auto
  }

  .nav-list.open {
    display: flex
  }

  .nav-item>a {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 4px solid var(--saffron)
  }

  .emblem-bar .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px
  }

  .about-grid,
  .schemes-grid,
  .activities-grid,
  .events-grid {
    grid-template-columns: 1fr
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .payment-grid {
    grid-template-columns: 1fr
  }









  .pf-sign-row {
    grid-template-columns: 1fr
  }

  .fs-grid {
    grid-template-columns: 1fr
  }
}

/* SCHEME CARD IMAGE */
.scheme-card-img {
  height: 180px;
  overflow: hidden;
  background: #eef2f7;
}

.scheme-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.scheme-card:hover .scheme-card-img img {
  transform: scale(1.06);
}

/* === MOBILE HERO LANDSCAPE OVERRIDE === */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vw;
    min-height: 220px;
    max-height: 350px;
  }

  .slide {
    padding: 0 16px;
    justify-content: flex-start;
  }

  .slide-content {
    max-width: 58%;
    padding: 12px;
    background: rgba(0, 35, 102, 0.85);
    border-left: 4px solid var(--saffron);
  }

  .slide-badge {
    font-size: 9px;
    padding: 2px 6px;
    margin-bottom: 3px;
    letter-spacing: 0;
  }

  .slide-hi {
    font-size: clamp(14px, 4.5vw, 24px);
    margin-bottom: 4px;
    font-weight: 700;
  }

  .slide-en {
    font-size: clamp(9px, 2.5vw, 12px);
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .slide-points {
    display: none !important;
  }

  .slide-actions {
    gap: 6px;
  }

  .btn-apply {
    padding: 6px 10px;
    font-size: 11px;
  }

  .btn-learn {
    display: none !important;
  }

  .slide-art {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32%;
    max-width: 140px;
    display: flex;
    justify-content: flex-end;
  }

  .slide-art-inner {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    font-size: 40px;
  }

  .slider-arrow {
    width: 24px;
    height: 24px;
    font-size: 10px;
    opacity: 0.6;
    border: none;
  }

  .slider-arrow.slider-prev {
    left: 2px;
  }

  .slider-arrow.slider-next {
    right: 2px;
  }

  .slider-dots {
    bottom: 5px;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }
}


/* === MOBILE HEADER LAYOUT === */
@media (max-width: 768px) {
  .gov-bar {
    padding: 4px 0;
  }

  .gov-bar .container {
    justify-content: center;
    text-align: center;
  }

  .contact-info {
    display: none;
  }

  .gov-bar-links {
    display: none;
  }

  .gov-bar-links span:first-child {
    display: none;
  }

  /* Hide Welcome Guest! on mobile */

  .emblem-bar {
    padding: 6px 0;
  }

  .emblem-bar .container {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
  }

  .emblem-left {
    gap: 8px;
  }

  .emblem-img {
    height: 48px;
    /* scale down India emblem */
  }

  .site-title-hi {
    font-size: 16px;
  }

  .site-title-en {
    font-size: 9px;
    line-height: 1.1;
  }

  .site-tagline {
    display: none;
    /* Hide tagline on mobile */
  }

  .cm-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cm-photo-wrap {
    width: 45px;
    height: 55px;
    margin-bottom: 2px;
    border-width: 2px;
  }

  .cm-label {
    font-size: 8px;
  }

  .emblem-right .partner-logo-sm {
    height: 45px;
    /* scale down Rajasthan seal */
  }
}

/* === MOBILE AUTH NAV === */
@media (max-width: 768px) {
  .mobile-auth {
    display: flex !important;
    align-items: center;
    font-size: 13px;
    color: white;
  }

  .mobile-auth a {
    color: white;
    text-decoration: none;
    font-weight: 600;
  }
}