:root {
  --primary: #0b2a5b;
  --primary-dark: #071c3f;
  --primary-foreground: #ffffff;
  --accent: #ff7a1a;
  --accent-foreground: #1a1300;
  --gold: #d4a017;
  --gold-light: #f3c44a;
  --india-green: #0a7c3a;
  --bg: #f6f7fb;
  --card: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;
  --destructive: #c1121f;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1f2937;
  background: var(--bg);
  line-height: 1.55
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  margin: 0
}

a {
  text-decoration: none
}

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

/* Utility bar */
.utility-bar {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  padding: 6px 0
}

.utility-bar a {
  color: #fff;
  opacity: .9
}

.utility-bar a:hover {
  color: var(--gold-light)
}

.utility-bar .util-links span {
  opacity: .4;
  margin: 0 8px
}

/* Header */
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border)
}

.satya {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--india-green);
  font-weight: 600;
  margin: 0
}

.site-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 2px
}

.site-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 2px 0 0
}

.search-wrap {
  position: relative
}

.search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted)
}

.search-wrap input {
  padding: 10px 14px 10px 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #f3f4f6;
  width: 280px;
  outline: none;
  font-size: 14px
}

.search-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, .2)
}

/* Emblem */
.emblem {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.emblem-sm {
  width: 40px;
  height: 40px;
  padding: 3px
}

.emblem-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.emblem-text {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 14px;
  line-height: 1
}

.emblem-sm .emblem-text {
  font-size: 10px
}

.emblem-sub {
  font-size: 8px;
  color: var(--india-green);
  font-weight: 700;
  letter-spacing: .1em;
  margin-top: 2px
}

/* Tricolor */
.tricolor-strip {
  height: 4px;
  background: linear-gradient(to bottom, var(--accent) 0, var(--accent) 33%, #fff 33%, #fff 66%, var(--india-green) 66%, var(--india-green) 100%)
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary) !important;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(212, 160, 23, .3)
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(212, 160, 23, .4);
  color: var(--primary)
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff;
  background: transparent;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: #fff
}

/* Nav */
.main-nav {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  z-index: 30
}

.main-nav .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap
}

.main-nav .nav-list a {
  color: #fff;
  padding: 14px 16px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: .2s
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
  background: var(--accent);
  color: var(--accent-foreground)
}

.nav-toggle {
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 16px;
  font-size: 16px
}

@media (max-width:767px) {
  .main-nav .nav-list {
    display: none;
    flex-direction: column
  }

  .main-nav .nav-list.open {
    display: flex
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 560px
}

@media (max-width:768px) {

  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 480px
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 42, 91, .92), rgba(11, 42, 91, .55), transparent)
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  max-width: 680px;
  margin-left: 10%
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 18px
}

.hero-title {
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  text-align: left
}

@media (max-width:768px) {
  .hero-title {
    font-size: 36px
  }
}

.hero-title .accent {
  color: var(--gold-light)
}

.hero-lead {
  font-size: 17px;
  opacity: .9;
  margin-bottom: 28px;
  max-width: 560px;
  text-align: left
}

.carousel-indicators {
  margin-bottom: 1.5rem
}

.carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .5)
}

.carousel-indicators .active {
  background: var(--gold-light)
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: .7
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1
}

/* Marquee */
.marquee-wrap {
  background: var(--accent);
  color: var(--accent-foreground);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold)
}

.marquee-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0
}

.marquee {
  overflow: hidden;
  flex: 1
}

.marquee-inner {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-size: 14px;
  font-weight: 500
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* Stats */
.stats-wrap {
  margin-top: 24px;
  position: relative;
  z-index: 10
}

.leaders {
  gap: 20px
}

.leader {
  display: flex;
  align-items: center;
  gap: 10px
}

.leader-photo {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), #f1c84b)
}

.leader-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--card);
  display: block;
  object-position: top;
}

.leader-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--india-green);
  font-weight: 700;
  margin: 0;
  line-height: 1.2
}

.leader-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.2
}

.stats-grid {
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(11, 42, 91, .15)
}

.stat {
  background: #fff;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border)
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary)
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 4px
}

/* Card panel */
.card-panel {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column
}

.panel-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 3px solid var(--accent)
}

.panel-header h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0
}

.panel-header p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  margin: 2px 0 0
}

.panel-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px
}

.panel-footer {
  display: block;
  text-align: center;
  padding: 12px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary)
}

.panel-footer:hover {
  background: #f3f4f6;
  color: var(--primary)
}

/* Vertical marquee */
.vmarquee {
  position: relative;
  height: 340px;
  overflow: hidden;
  flex: 1
}

.vmarquee-inner {
  padding: 20px;
  animation: vmarquee 30s linear infinite
}

.vmarquee:hover .vmarquee-inner {
  animation-play-state: paused
}

@keyframes vmarquee {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-50%)
  }
}

.vmarquee-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none
}

.notice-item {
  border-left: 4px solid var(--accent);
  padding: 8px 14px;
  margin-bottom: 12px;
  border-radius: 0 6px 6px 0;
  transition: .2s
}

.notice-item:hover {
  background: #f6f7fb
}

/* Clickable notice wrapper (home page What's New widget + marquee) */
.notice-item-link {
  cursor: pointer
}

.notice-item-link .notice-title {
  transition: color .2s
}

.notice-item-link:hover .notice-title {
  color: var(--accent)
}

.marquee-inner a:hover {
  color: var(--gold-light);
  text-decoration: underline
}

.notice-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted)
}

.notice-tag {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(10, 124, 58, .15);
  color: var(--india-green)
}

.notice-tag.urgent {
  background: var(--destructive);
  color: #fff
}

.notice-title {
  font-size: 14px;
  font-weight: 500;
  margin: 6px 0 0;
  line-height: 1.4;
  white-space: normal;
  color: #1f2937
}

/* Tenders */
.tender-item {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  transition: .2s
}

.tender-item:hover {
  background: #f6f7fb
}

.tender-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 4px
}

.tender-id {
  font-family: monospace;
  color: var(--india-green);
  font-weight: 700
}

.tender-close {
  color: var(--destructive);
  font-weight: 600
}

.tender-title {
  font-size: 14px;
  font-weight: 500;
  margin: 4px 0;
  line-height: 1.4
}

.tender-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px
}

.tender-value {
  font-weight: 700;
  color: var(--primary)
}

.tender-dl {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer
}

/* VC */
.vc-body {
  padding: 20px
}

.vc-photo-wrap {
  position: relative;
  margin-bottom: 16px
}

.vc-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid var(--gold-light)
}

.vc-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0
}

.vc-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0 0 12px
}

.vc-quote {
  font-size: 14px;
  color: #374151;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  margin: 0 0 14px
}

.link-accent {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px
}

.link-accent:hover {
  color: var(--accent)
}

/* Services */
.services-section {
  background: #f3f4f6;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--india-green);
  font-weight: 700;
  margin: 0 0 8px
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary)
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: block;
  color: inherit;
  transition: .25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .03)
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 42, 91, .12);
  color: inherit
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 6px
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 48px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(11, 42, 91, .2)
}

.cta-banner h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  max-width: 480px;
  margin: 0
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 122, 26, .2);
  filter: blur(60px)
}

.cta-banner::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(10, 124, 58, .3);
  filter: blur(60px)
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: #fff
}

.site-footer h5 {
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 16px
}

.footer-text {
  font-size: 14px;
  opacity: .7;
  line-height: 1.6
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-links li {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 8px
}

.footer-links a {
  color: rgba(255, 255, 255, .8)
}

.footer-links a:hover {
  color: var(--gold-light)
}

.footer-links i {
  color: var(--gold-light);
  margin-right: 8px
}

.copyright {
  background: rgba(0, 0, 0, .25);
  padding: 14px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, .65)
}

/* Popup */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 42, 91, .7);
  backdrop-filter: blur(4px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn .25s ease
}

.popup {
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  animation: zoomIn .25s ease
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes zoomIn {
  from {
    transform: scale(.95);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.popup-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid var(--accent)
}

.popup-header h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0
}

.popup-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0
}

.popup-close {
  background: transparent;
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer
}

.popup-close:hover {
  background: rgba(255, 255, 255, .1)
}

.popup-body {
  padding: 22px;
  max-height: 55vh;
  overflow-y: auto
}

.popup-notice {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px
}

.popup-notice:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.popup-notice-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.popup-footer {
  padding: 16px 22px;
  background: #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border)
}

/* Coming soon */
.coming-soon-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 153, 51, .12), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(19, 136, 8, .12), transparent 40%),
    #f7f6f1;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.coming-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #e8ecf5;
  border-radius: 18px;
  padding: 48px 36px;
  box-shadow: 0 18px 50px -20px rgba(26, 39, 86, .3);
  position: relative;
  overflow: hidden;
}

.coming-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff9933 0 33%, #fff 33% 66%, #138808 66%);
}

.coming-emblem {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 6px auto 18px;
  background: linear-gradient(135deg, #1a2756, #2b3f7f);
  color: #f2b705;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  box-shadow: 0 10px 24px -10px rgba(26, 39, 86, .55);
}

.coming-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff3e0;
  color: #c2570c;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.coming-title {
  font-family: "Playfair Display", serif;
  color: #1a2756;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.coming-desc {
  color: #475069;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.coming-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.coming-stats>div {
  background: #f6f5ef;
  border: 1px solid #ecebe1;
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 160px;
}

.coming-stats strong {
  display: block;
  color: #1a2756;
  font-size: .9rem;
}

.coming-stats span {
  color: #6b7388;
  font-size: .85rem;
}

/* --- MAIN CONTENT AREA (Subheader & Master Plan) --- */
/* Breadcrumbs */
.breadcrumbs {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs li a {
  color: #007bff;
  text-decoration: none;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 8px;
  color: #999;
}

/* Header Section */
.page-header {
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.page-header h1 {
  font-size: 2.2rem;
  color: #2c3e50;
}

/* PDF Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  background-color: #e74c3c;
  /* Red color for PDF */
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.download-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.download-btn img {
  height: 20px;
  margin-right: 10px;
  background: white;
  border-radius: 3px;
  padding: 2px;
}

/* Image Gallery Section */
.plan-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 30px;
}

.plan-image-wrapper {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.plan-image-wrapper h3 {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.2rem;
}

.plan-image-wrapper img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .slider-container {
    height: 300px;
  }

  .slider-caption h2 {
    font-size: 1.5rem;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }
}


.emblem {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 0.8rem;
  border: 2px solid #d4af37;
  flex-shrink: 0;
}

/* --- RESET & BASIC SETUP --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f4f4f4;
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- UTILITY BAR --- */
.utility-bar {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}

.utility-bar a {
  color: #fff;
  margin: 0 5px;
}

.utility-bar a:hover {
  color: #ffd700;
  text-decoration: underline;
}

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

.util-links span {
  color: rgba(255, 255, 255, 0.5);
}

/* --- HEADER & LOGO --- */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding-top: 10px;
  padding-bottom: 10px;
}



.site-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.site-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.satya {
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 2px;
}

/* --- LEADERS SECTION --- */
.leaders {
  border-left: 1px solid #eee;
  padding-left: 15px;
}

.leader {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.leader-photo {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leader-text p {
  margin-bottom: 0;
  line-height: 1.2;
}

.leader-title {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leader-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* --- TRICOLOR STRIP --- */
.tricolor-strip {
  height: 4px;
  background: linear-gradient(to right, #ff9933 33%, #ffffff 33%, #ffffff 66%, #138808 66%);
}



/* Breadcrumbs */
.breadcrumbs {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumbs li {
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--primary-color);
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Page Title */
.page-header h1 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.page-header h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  /* लाइन की लंबाई */
  height: 4px;
  /* लाइन की मोटाई */
  background-color: #e67e22;
  /* आपकी थीम का ऑरेंज रंग */
  border-radius: 2px;
}



/* --- FOOTER STYLES --- */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  margin-top: auto;
}

.site-footer h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
  .leaders {
    display: none;
  }

  .site-title {
    font-size: 1rem;
  }

  .site-header .container {
    flex-direction: column;
    text-align: center;
  }

  .site-header .d-flex {
    flex-direction: column;
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-list.collapsed {
    display: none;
  }

  .byelaws-intro {
    font-size: 0.95rem;
  }
}

/* ===== 125%+ ZOOM FIX — इसे CSS के सबसे नीचे जोड़ें ===== */

/* ===== 1366x768 LAPTOP FIX ===== */
@media (max-width: 1400px) {

  /* Header elements compact */
  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .emblem {
    width: 54px !important;
    height: 54px !important;
  }

  .emblem-text {
    font-size: 12px !important;
  }

  .site-title {
    font-size: 18px !important;
    letter-spacing: 0 !important;
  }

  .site-sub {
    font-size: 11px !important;
  }

  .satya {
    font-size: 9px !important;
    letter-spacing: .15em !important;
  }

  /* Search box shrink */
  .search-wrap input {
    width: 200px !important;
    max-width: 200px !important;
    min-width: 140px !important;
    padding: 8px 10px 8px 32px !important;
    font-size: 13px !important;
  }

  /* Leader photos slightly smaller */
  .leader-photo {
    width: 46px !important;
    height: 46px !important;
  }

  .leader-name {
    font-size: 12px !important;
  }

  .leader-title {
    font-size: 9px !important;
  }

  .leaders {
    gap: 12px !important;
    padding-left: 10px !important;
  }

  /* Nav items compact */
  .main-nav .nav-list a {
    padding: 12px 12px !important;
    font-size: 13px !important;
  }
}

/* High zoom pe horizontal scroll band karo */
html {
  overflow-x: hidden;
}

/* Header row ko wrap allow karo */
.site-header .d-flex,
.site-header .row,
.site-header .container>div,
.site-header [class*="col"],
.site-header [class*="flex"] {
  flex-wrap: wrap !important;
  gap: 8px;
}

/* Search box ko shrinkable banao */
.search-wrap {
  flex-shrink: 1;
  min-width: 0;
}

.search-wrap input {
  width: 100% !important;
  max-width: 260px;
  min-width: 160px;
}

/* Leaders section ko shrinkable banao */
.leaders {
  flex-shrink: 1;
  min-width: 0;
}

.leader-photo {
  width: 48px !important;
  height: 48px !important;
  flex-shrink: 0;
}

/* Emblem ko shrinkable banao */
.emblem {
  flex-shrink: 0;
}

/* Nav items ko compact banao high zoom pe */
.main-nav .nav-list {
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.main-nav .nav-list::-webkit-scrollbar {
  display: none;
}

.main-nav .nav-list a {
  padding: 12px 12px !important;
  font-size: 13px !important;
}

/* ===== ZOOM LEVEL BREAKPOINTS ===== */

/* ~150% zoom (effective ~1280px on 1920 screen) */
@media (max-width: 900px) {
  .leaders {
    display: none !important;
  }

  .search-wrap input {
    max-width: 220px;
    min-width: 140px;
  }

  .main-nav .nav-list a {
    padding: 12px 10px !important;
    font-size: 12.5px !important;
  }
}

/* ~175% zoom (effective ~1100px on 1920 screen) */
@media (max-width: 700px) {
  .search-wrap {
    display: none !important;
  }

  .main-nav .nav-list a {
    padding: 11px 9px !important;
    font-size: 12px !important;
  }

  .site-title {
    font-size: 18px !important;
  }

  .emblem {
    width: 52px !important;
    height: 52px !important;
  }
}

/* ~200% zoom (effective ~960px on 1920 screen) — mobile nav activate */
@media (max-width: 500px) {
  .nav-toggle {
    display: block !important;
  }

  .main-nav .nav-list {
    display: none !important;
    flex-direction: column !important;
    overflow-x: visible !important;
  }

  .main-nav .nav-list.open {
    display: flex !important;
  }

  .main-nav .nav-list li {
    width: 100%;
  }

  .main-nav .nav-list a {
    padding: 12px 20px !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .site-header .d-flex,
  .site-header .row {
    flex-direction: column !important;
    text-align: center;
    align-items: center !important;
  }

  .site-title {
    font-size: 16px !important;
  }

  .emblem {
    width: 48px !important;
    height: 48px !important;
  }
}

/* ~250%+ zoom */
@media (max-width: 300px) {
  .site-title {
    font-size: 14px !important;
  }

  .emblem {
    width: 40px !important;
    height: 40px !important;
  }

  .emblem-text {
    font-size: 9px !important;
  }

  .satya {
    font-size: 9px !important;
  }

  .site-sub {
    font-size: 11px !important;
  }

  .utility-bar {
    font-size: 10px !important;
  }
}


/* ===== Schemes dropdown ===== */
.nav-dropdown {
  position: relative;
}

.main-nav .nav-list .nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: .65em;
  margin-left: 5px;
  transition: transform .25s ease;
  display: inline-block;
}

.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: fixed;
  /* fixed so the nav-list overflow:auto can't clip it */
  min-width: 248px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px -12px rgba(11, 42, 91, .35), 0 4px 12px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.97);
  transform-origin: top left;
  transition: opacity .2s ease, transform .2s cubic-bezier(.2, .8, .3, 1), visibility .2s;
  z-index: 1000;
  overflow: hidden;
}

/* accent strip on top of the menu */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold-light));
}

.nav-dropdown.open>.nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.main-nav .nav-dropdown-menu li a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  color: #1f2937 !important;
  padding: 11px 14px !important;
  margin-top: 2px;
  font-size: 14px !important;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: none !important;
  border-radius: 8px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.main-nav .nav-dropdown-menu li:first-child a {
  margin-top: 4px;
}

.main-nav .nav-dropdown-menu li a i {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 42, 91, .08);
  border-radius: 8px;
  transition: background .18s ease, color .18s ease;
}

.main-nav .nav-dropdown-menu li a:hover {
  background: var(--primary) !important;
  color: #fff !important;
  transform: translateX(2px);
}

.main-nav .nav-dropdown-menu li a:hover i {
  background: var(--accent);
  color: var(--accent-foreground);
}

/* On collapsed/mobile nav, render the submenu inline instead of floating */
@media (max-width: 767.98px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: hidden;
    transform: none;
    display: none;
    min-width: 0;
    padding: 4px 0 8px;
    background: rgba(255, 255, 255, .06);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open>.nav-dropdown-menu {
    display: block;
    visibility: visible;
  }

  .main-nav .nav-dropdown-menu li a {
    color: #fff !important;
    padding: 11px 24px !important;
    border-radius: 0;
  }

  .main-nav .nav-dropdown-menu li a i {
    background: rgba(255, 255, 255, .15);
    color: #fff;
  }

  .main-nav .nav-dropdown-menu li a:hover {
    transform: none;
    background: rgba(255, 255, 255, .12) !important;
  }
}

/* ===== LEADERS 125% ZOOM FIX ===== */

/* 1920px screen pe 125% zoom = ~1536px effective */
@media (max-width: 200px) {
  .leaders {
    display: none !important;
  }
}

/* about.css */

.services-section {
  padding: 90px 25px;
  background:
    linear-gradient(180deg,
      #f7f9fc,
      #edf2f8);
}

.services-title {
  text-align: center;
  margin-bottom: 65px;
}

.services-title h2 {
  font-size: 44px;
  font-weight: 900;
  color: #0b2345;
}

.services-title span {
  color: #c79b2b;
}

/* /* 6 BOX IN ONE LINE  */

.services-grid {

  max-width: 1700px;

  margin: auto;

  display: grid;

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

  gap: 20px;

}

.service-card {

  height: 310px;

  perspective: 1800px;

  text-decoration: none;

  display: block;

}

.card {

  position: relative;

  width: 100%;
  height: 100%;

  transform-style: preserve-3d;

  transition:
    transform .9s ease;

}

.service-card:hover .card {

  transform:
    rotateY(180deg);

}

.front,
.back {

  position: absolute;

  inset: 0;

  border-radius: 30px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  padding: 25px;

  overflow: hidden;

  backface-visibility: hidden;

  -webkit-backface-visibility: hidden;

}

/* /* FRONT  */

.front {

  background: #fff;

  z-index: 2;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, .08);

}

.front::before {

  content: "";

  position: absolute;

  top: -120px;

  right: -120px;

  width: 260px;

  height: 260px;

  background:

    radial-gradient(rgba(229, 193, 92, .3),
      transparent);

}

/* /* BACK  */

.back {

  transform:
    rotateY(180deg);

  background:

    linear-gradient(135deg,
      #081f3d,
      #173e6f);

  color: white;

  z-index: 5;

}

/* /* BIG ICON  */

.icon {

  width: 135px;
  height: 135px;

  border-radius: 36px;

  display: flex;

  align-items: center;

  justify-content: center;

  background:

    linear-gradient(135deg,
      #ba8a16,
      #f0d17d);

  margin-bottom: 24px;

  box-shadow:
    0 25px 60px rgba(185, 138, 22, .45);

  transition: .5s;

}

.icon svg {

  width: 78px !important;

  height: 78px !important;

  stroke-width: 1.6;

  color: #fff;

}

.service-card:hover .icon {

  transform:
    translateY(-8px) scale(1.06);

}

/* /* TEXT  */

.front h3 {

  font-size: 20px;

  font-weight: 800;

  color: #0b2345;

  margin: 0;

}

.front p {

  margin-top: 10px;

  font-size: 14px;

  color: #7a8698;

}

.back h4 {

  font-size: 25px;

  margin-bottom: 15px;

  color: white;

}

.back p {

  font-size: 15px;

  line-height: 1.8;

  text-align: center;

  max-width: 220px;

  color: white;

  opacity: 1;

}

.btn {

  margin-top: 24px;

  padding: 14px 34px;

  border-radius: 50px;

  background: #ddb14b;

  color: #0b2345;

  font-weight: 800;

}

/* /* RESPONSIVE  */

@media(max-width:1300px) {

  .services-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

}

@media(max-width:768px) {

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

  .services-title h2 {
    font-size: 30px;
  }

  .service-card {
    height: 260px;
  }

  .icon {
    width: 100px;
    height: 100px;
  }

  .icon svg {
    width: 58px !important;
    height: 58px !important;
  }

}


/* मोबाइल के लिए सेटिंग */
@media (max-width: 768px) {
  .nav-toggle {
    display: block !important;
  }

  .main-nav .nav-list {
    display: none !important;
    /* शुरुआत में छिपा हुआ */
    flex-direction: column;
    width: 100%;
  }

  /* जब JS क्लास 'open' जोड़ेगा, तो यह दिखेगा */
  .main-nav .nav-list.open {
    display: flex !important;
  }
}

.gold-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #cfa149, #edae3f);
  border-radius: 2px;
}

.gold-line-center {
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stat-number {
  background: linear-gradient(135deg, #cfa149, #edae3f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.compact-table th,
.compact-table td {
  padding: 10px 14px !important;
  font-size: 13px !important;
  vertical-align: middle;
}

.compact-table th {
  font-size: 12px !important;
  padding: 8px 14px !important;
}

.compact-table .phase-badge {
  font-size: 11px !important;
  padding: 2px 10px !important;
}

.compact-table .phase-title {
  font-size: 13px !important;
  margin-top: 4px !important;
}

.compact-table .date-text {
  font-size: 12px !important;
}

.compact-table .detail-text {
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.history-table tbody tr {
  transition: background 0.2s ease;
}

.history-table tbody tr:hover {
  background-color: #fdf9f0 !important;
}

.vision-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(207, 161, 73, 0.2);
}

.vision-card:hover .icon-box {
  background: linear-gradient(135deg, #cfa149, #edae3f) !important;
  color: white !important;
}

.vision-card:hover .icon-box i {
  color: white !important;
}

.about-visual {
  position: relative;
  background: linear-gradient(135deg, #102a43 0%, #243b53 50%, #1a3a5c 100%);
  border-radius: 1rem;
  overflow: hidden;
  min-height: 420px;
}

@media(min-width:1024px) {
  .about-visual {
    min-height: 500px;
  }
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 2px;
  bottom: 2px;
  border: 2px solid rgba(207, 161, 73, 0.3);
  border-radius: 1rem;
  z-index: 1;
  pointer-events: none;
}

.about-visual-icon {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(207, 161, 73, 0.1);
  border: 1px solid rgba(207, 161, 73, 0.2);
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #cfa149, #edae3f);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(207, 161, 73, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(207, 161, 73, 0.5);
}

*/ .bg-warm {
  background-color: #faf7f2;
}

.bg-soft {
  background-color: #eef2f7;
}

.bg-deep {
  background: linear-gradient(135deg, #102a43 0%, #1a3a5c 50%, #102a43 100%);
}