@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* Base */
:root {
  --gp-primary: #025e73;
  --gp-primary-soft: #e0f7fb;
  --gp-accent: #f4a226;
  --gp-dark: #062130;
  --gp-muted: #6b7280;
  --gp-bg-soft: #f4f7fb;
  --gp-radius-lg: 18px;
  --gp-radius-md: 12px;
  --gp-shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.18);
  --gp-shadow-card: 0 10px 25px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Nearby Places section */

.nearby-title {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  color: #0f4f63;
}

.nearby-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.nearby-card {
  width: 150px;
  max-width: 180px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  padding: 22px 10px 18px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nearby-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.nearby-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid #0f4f63;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.4rem;
  color: #0f4f63;
}

.nearby-label {
  font-size: 0.9rem;
  color: #0f4f63;
}


body {
  margin: 0;
  font-family: "Noto Sans Devanagari", "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f7fb;
  color: #111827;
}
.gov-logo-strip {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.gov-logo-strip img {
  transition: transform 0.2s ease;
}

.gov-logo-strip img:hover {
  transform: scale(1.06);
}


a {
  text-decoration: none;
}

/* Top bar */
.top-bar {
  background: #020817;
  color: #e5e7eb;
  font-size: 0.78rem;
  padding: 4px 0;
}

.top-bar .small {
  opacity: 0.9;
}

.top-bar-icons i {
  font-size: 0.9rem;
}

/* Tri-colour strip */
.tri-strip {
  height: 4px;
  background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
}

/* Navbar */
.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.navbar-brand-text {
  line-height: 1.1;
}

.navbar-brand-text .line-top {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.navbar-brand-text .line-bottom {
  font-weight: 700;
  font-size: 0.98rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-link.active {
  color: var(--gp-primary) !important;
}

.btn-gp-outline {
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.83rem;
}

/* Hero */
.hero-section {
  position: relative;
  padding-top: 70px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #04364b 0%, #081b2f 50%, #025e73 100%);
  color: #f9fafb;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-village-wide.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-tag i {
  font-size: 0.9rem;
}

.hero-title-main {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-title-main span {
  display: block;
}

.hero-title-main span.en {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.hero-subtitle {
  font-size: 0.95rem;
  max-width: 560px;
}

.hero-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge-pill {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-hero-primary {
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #f4a226;
  border-color: #f4a226;
  color: #111827;
}

.btn-hero-secondary {
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.9rem;
}

/* Hero right card */
.hero-leader-card {
  border-radius: var(--gp-radius-lg);
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--gp-shadow-soft);
  color: #e5e7eb;
}

.hero-leader-avatar {
  width: 94px;
  height: 94px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #f4a226;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: #a5f3fc;
}

/* Generic sections */
.section {
  padding: 48px 0;
}

.section-muted {
  background: var(--gp-bg-soft);
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.86rem;
  color: var(--gp-muted);
}

/* Cards */
.card-soft {
  border-radius: var(--gp-radius-lg);
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: var(--gp-shadow-card);
}

.card-soft-muted {
  background: #f9fafb;
  border-radius: var(--gp-radius-lg);
  border: 1px dashed #d1d5db;
}

/* Leader / member cards */
.leader-card,
.member-card {
  border-radius: var(--gp-radius-lg);
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.leader-card img,
.member-card img {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  object-fit: cover;
}

.member-card-role {
  font-size: 0.8rem;
  color: var(--gp-muted);
}

.member-card-footer {
  border-top: 1px solid #e5e7eb;
  font-size: 0.75rem;
  color: var(--gp-muted);
}

/* Service icons strip */
.service-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--gp-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gp-primary);
}

.service-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.service-text {
  font-size: 0.8rem;
  color: var(--gp-muted);
}

/* News / activities cards */
.news-card {
  border-radius: var(--gp-radius-lg);
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.news-card-top {
  padding: 14px 16px 10px;
  border-bottom: 1px solid #e5e7eb;
}

.news-card-body {
  padding: 12px 16px;
  font-size: 0.82rem;
}

.news-meta {
  font-size: 0.75rem;
  color: var(--gp-muted);
}

.news-card-footer {
  padding: 8px 16px;
  background: #eff6ff;
  font-size: 0.78rem;
}

/* Stats */
.stats-band {
  background: #04364b;
  color: #e5e7eb;
  padding: 28px 0;
}

.stats-card {
  border-radius: var(--gp-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.5);
  padding: 14px 16px;
}

.stats-number {
  font-size: 1.3rem;
  font-weight: 600;
}

.stats-label {
  font-size: 0.78rem;
  color: #cbd5f5;
}

/* QR section */
.qr-card {
  border-radius: var(--gp-radius-lg);
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.qr-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* Table */
.table-gp {
  font-size: 0.82rem;
}

.table-gp thead {
  background: #eff6ff;
}

/* Footer */
.footer {
  background: #020617;
  color: #e5e7eb;
  padding-top: 32px;
  margin-top: 40px;
}

.footer h6 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.footer a {
  color: #e5e7eb;
  font-size: 0.84rem;
}

.footer a:hover {
  color: #facc15;
}

.footer-bottom {
  border-top: 1px solid #111827;
  margin-top: 16px;
  padding-top: 10px;
  font-size: 0.78rem;
}

/* Gov logo ribbon */
.gov-ribbon {
  background: #f3f4f6;
  padding: 16px 0;
}

.gov-logo {
  height: 32px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.78rem;
}

/* Anim helper */
[data-aos] {
  transition-property: transform, opacity, box-shadow;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 60px;
    padding-bottom: 40px;
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-badges,
  .hero-actions {
    justify-content: center;
  }

  .hero-leader-card {
    margin-top: 18px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand-text .line-bottom {
    font-size: 0.86rem;
  }
}

/* lokpratinidhi */
.rep-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0f766e;
}

.rep-role {
  font-size: 0.85rem;
  color: #6b7280;
}

.rep-location {
  font-size: 0.8rem;
  color: #4b5563;
}
