/* =========================================================================
   Bhrashtachar Mukt Jharkhand — Component & layout styles
   Pure hand-written CSS on top of Bootstrap 5. No framework build step.
   ========================================================================= */

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; }

/* ---- Accent strip (forests + the golden bird) --------------------------- */
.accent-strip {
  display: flex;
  height: 6px;
}
.accent-strip span { flex: 1; }
.accent-strip span:nth-child(1),
.accent-strip span:nth-child(3) { background: var(--primary-700); }
.accent-strip span:nth-child(2) { background: var(--accent-400); }

/* ---- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(219, 240, 224, 0.8);
}
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-name-hi {
  font-family: var(--font-hindi);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
}
.brand-name-hi .b1 { color: var(--ink); }
.brand-name-hi .b2 { color: var(--primary-600); }
.brand-name-en {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--primary-600);
}
.site-nav .nav-link {
  color: var(--primary-800);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.85rem;
  border-radius: 0.6rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--primary-700);
  background: var(--primary-50);
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  border-radius: 0.85rem;
  font-weight: 600;
  padding: 0.62rem 1.35rem;
  transition: background-color 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary-700);
  border-color: var(--primary-700);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-800);
  border-color: var(--primary-800);
  color: #fff;
}
.btn-accent {
  background: var(--accent-600);
  border-color: var(--accent-600);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(234, 67, 12, 0.55);
}
.btn-accent:hover, .btn-accent:focus {
  background: var(--accent-700);
  border-color: var(--accent-700);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(234, 67, 12, 0.6);
}
.btn-primary { box-shadow: 0 8px 20px -10px rgba(17, 63, 36, 0.5); }
.btn-lg { padding: 0.8rem 1.6rem; font-size: 1rem; }
.btn-outline-primary {
  color: var(--primary-700);
  border-color: var(--primary-200);
  background: #fff;
}
.btn-outline-primary:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
  color: var(--primary-800);
}

/* ---- Badges / pills ----------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--primary-200);
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pill .dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}
.pill .dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--accent-500);
  opacity: 0.75;
  animation: ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.pill .dot::after {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-500);
}
@keyframes ping {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

.badge-identity {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.badge-anonymous { background: var(--primary-50); color: var(--primary-700); }
.badge-identified { background: var(--accent-50); color: var(--accent-700); }

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
}
.hero-glow::before {
  top: -140px; left: 50%;
  width: 42rem; height: 24rem;
  transform: translateX(-50%);
  background: rgba(185, 225, 196, 0.45);
}
.hero-glow::after {
  right: -100px; bottom: -60px;
  width: 20rem; height: 20rem;
  background: rgba(254, 205, 170, 0.4);
}
.hero h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hero .highlight { color: var(--accent-600); }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary-700);
}
.trust-chip i { color: var(--primary-500); }

/* ---- Cards -------------------------------------------------------------- */
.card-soft {
  background: #fff;
  border: 1px solid var(--primary-100);
  border-radius: 1.25rem;
  box-shadow: 0 1px 2px rgba(17, 63, 36, 0.04), 0 8px 24px -18px rgba(17, 63, 36, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
}
a.card-soft:hover,
.card-soft.hoverable:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(17, 63, 36, 0.28);
  border-color: var(--primary-300);
}
.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 1.35rem;
}

/* ---- Stats -------------------------------------------------------------- */
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-800);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-500);
}

/* ---- Section helpers ---------------------------------------------------- */
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.section-heading {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.bg-soft { background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%); }
.bg-primary-band { background: var(--primary-900); color: #fff; }
.bg-primary-band .section-heading,
.bg-primary-band h2, .bg-primary-band h3 { color: #fff; }

/* ---- Report cards / tag chips ------------------------------------------ */
.report-meta { font-size: 0.8rem; color: var(--primary-500); }

/* Structured report card */
.report-card { padding: 0; overflow: hidden; }
.report-card-body { padding: 1.35rem 1.35rem 1.1rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.report-time { font-size: 0.78rem; color: var(--muted); white-space: nowrap; }
.report-title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 0.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a:hover .report-title { color: var(--primary-700); }
.report-metabar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.meta-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-700);
}
.meta-loc i { color: var(--primary-500); }
.amount-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-700);
  background: var(--accent-50);
  border: 1px solid var(--accent-200);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  white-space: nowrap;
}
.type-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.type-chip i { font-size: 0.72rem; }
.type-bribe { color: var(--accent-700); background: var(--accent-50); }
.type-general { color: #0c6b64; background: #e3f6f3; }

.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary-600);
  background: var(--primary-50);
  border-radius: 0.55rem;
  padding: 0.22rem 0.6rem;
  margin-bottom: 0.75rem;
}
.cat-chip i { font-size: 0.68rem; opacity: 0.8; }
.report-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.report-card-foot {
  padding: 0.75rem 1.35rem;
  border-top: 1px solid var(--primary-100);
  background: linear-gradient(180deg, #fff 0%, var(--primary-50) 140%);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-700);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin: 0.15rem 0.15rem 0 0;
  cursor: pointer;
  transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.tag-chip:hover { background: var(--primary-100); }
.tag-chip.active {
  background: var(--primary-700);
  color: #fff;
  border-color: var(--primary-700);
}

/* Filter toolbar */
.filter-bar {
  background: #fff;
  border: 1px solid var(--primary-100);
  border-radius: 1.25rem;
  padding: 1.25rem;
}
.form-control, .form-select {
  border-color: var(--primary-200);
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 0.2rem rgba(53, 144, 84, 0.15);
}
.input-icon {
  position: relative;
}
.input-icon i {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  color: var(--primary-400);
}
.input-icon .form-control { padding-left: 2.5rem; }

/* ---- Steps timeline ----------------------------------------------------- */
.step-row { display: flex; gap: 1rem; }
.step-num {
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--primary-700);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- Footer ------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--primary-100);
  background: #fff;
}
/* Only style plain footer links — never buttons (they keep their own colours). */
.site-footer a:not(.btn) { color: var(--primary-600); font-size: 0.9rem; }
.site-footer a:not(.btn):hover { color: var(--primary-800); }
.site-footer .btn-primary,
.site-footer .btn-accent { color: #fff !important; }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-500);
}

/* ---- Misc --------------------------------------------------------------- */
.divider-dot::before { content: "•"; margin: 0 0.5rem; color: var(--primary-300); }
.text-muted-soft { color: var(--muted); }
[hidden] { display: none !important; }

/* ---- Filter sidebar polish --------------------------------------------- */
.filter-bar { box-shadow: 0 1px 2px rgba(17,63,36,.04), 0 12px 30px -22px rgba(17,63,36,.3); }
.filter-bar .form-label { color: var(--muted-strong); margin-bottom: 0.35rem; }
#tag-cloud {
  max-height: 224px;
  overflow-y: auto;
  padding-right: 4px;
  margin-top: 0.25rem;
}
#tag-cloud::-webkit-scrollbar { width: 6px; }
#tag-cloud::-webkit-scrollbar-track { background: transparent; }
#tag-cloud::-webkit-scrollbar-thumb { background: var(--primary-200); border-radius: 999px; }
.tag-chip span { opacity: 0.6; font-weight: 700; margin-left: 0.15rem; }

/* Result summary bar */
#result-count { font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before { color: var(--primary-300); }
.breadcrumb-item a { color: var(--primary-600); }

/* ---- Initiative / Founder ---------------------------------------------- */
.founder-card {
  background: #fff;
  border: 1px solid var(--primary-100);
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 1px 2px rgba(17,63,36,.04), 0 18px 40px -24px rgba(17,63,36,.35);
}
.founder-photo {
  width: 180px;
  height: 180px;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 999px;
  border: 5px solid #fff;
  box-shadow: 0 0 0 3px var(--primary-200), 0 14px 30px -12px rgba(17,63,36,.5);
}
.founder-domain {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-600);
  text-decoration: none;
}
.founder-domain:hover { color: var(--accent-700); text-decoration: underline; }

.slogan-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-700);
  letter-spacing: -0.01em;
}
.slogan-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  height: 100%;
  padding: 0.7rem 0.9rem;
  background: #fff;
  border: 1px solid var(--primary-100);
  border-radius: 0.85rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.slogan-item:hover {
  border-color: var(--primary-200);
  box-shadow: 0 10px 24px -18px rgba(17,63,36,.4);
  transform: translateY(-2px);
}
.slogan-item i {
  color: var(--primary-600);
  font-size: 1.05rem;
  line-height: 1.5;
  flex: none;
}
.slogan-item span {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

.founder-bio {
  max-width: 60rem;
  border-top: 1px solid var(--primary-100);
}
.founder-bio p {
  color: var(--muted-strong);
  font-size: 1.04rem;
  line-height: 1.95;
  margin-bottom: 1.1rem;
}
.founder-bio p:last-child { margin-bottom: 0; }

/* ---- Hero news strip (horizontal scroll) ------------------------------- */
.hero-news {
  border-left: 3px solid var(--primary-100);
  padding-left: 1.25rem;
}
.hero-news-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 0.9rem;
  margin: 0 -0.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.hero-news-scroll::-webkit-scrollbar { height: 8px; }
.hero-news-scroll::-webkit-scrollbar-track { background: transparent; }
.hero-news-scroll::-webkit-scrollbar-thumb { background: var(--primary-200); border-radius: 999px; }
.hero-news-card {
  flex: 0 0 15rem;
  max-width: 15rem;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--primary-100);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(17, 63, 36, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.hero-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px -18px rgba(17, 63, 36, 0.35);
  border-color: var(--primary-300);
  color: inherit;
}
.hero-news-img { height: 140px; background: #eaf2ec; }
.hero-news-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-news-body { padding: 0.8rem 0.9rem 1rem; }
.hero-news-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-news-note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-news-source { font-size: 0.68rem; font-weight: 600; color: var(--primary-600); }
.hero-news-hint { font-size: 0.78rem; font-weight: 500; color: var(--primary-500); }

/* ---- In-the-news carousel ---------------------------------------------- */
.news-carousel {
  max-width: 760px;
  border: 1px solid var(--primary-100);
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17,63,36,.04), 0 22px 50px -28px rgba(17,63,36,.4);
}
.news-figure {
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, #eaf2ec 100%);
  padding: 0.5rem;
}
.news-figure img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}
.news-caption {
  padding: 1.1rem 1.5rem 2.4rem;
  border-top: 1px solid var(--primary-100);
  background: #fff;
}
.news-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 0.25rem; }
.news-note { font-size: 0.9rem; color: var(--muted); margin: 0 0 0.5rem; }
.news-source {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-600);
  background: var(--primary-50);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}
.news-carousel .carousel-control-prev,
.news-carousel .carousel-control-next { width: 12%; }
.news-carousel .carousel-control-prev-icon,
.news-carousel .carousel-control-next-icon {
  background-color: rgba(14, 36, 24, 0.55);
  border-radius: 50%;
  padding: 1.1rem;
  background-size: 45% 45%;
}
.news-carousel .carousel-indicators { margin-bottom: 0.55rem; }
.news-carousel .carousel-indicators [data-bs-target] {
  width: 26px;
  height: 5px;
  border-radius: 999px;
  background-color: var(--primary-200);
  border: 0;
  opacity: 1;
}
.news-carousel .carousel-indicators .active { background-color: var(--primary-700); }

/* ---- Admin panel (jh-adm.html only) ------------------------------------ */
.admin-filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-500);
  min-width: 3.2rem;
}
.admin-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.admin-tab {
  border: 1px solid var(--primary-100);
  background: #fff;
  color: var(--primary-700);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.admin-tab:hover { border-color: var(--primary-300); }
.admin-tab.active { background: var(--primary-700); border-color: var(--primary-700); color: #fff; }
.admin-count {
  display: inline-block;
  min-width: 1.4rem;
  padding: 0 0.35rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  font-variant-numeric: tabular-nums;
}
.admin-tab.active .admin-count { background: rgba(255, 255, 255, 0.22); }
.admin-status {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
}
.admin-status-pending { color: #9a6a00; background: #fff4d6; }
.admin-status-approved { color: var(--primary-700); background: var(--primary-50); }
.admin-status-rejected { color: #b42318; background: #fee4e2; }
/* =========================================================
   Full-report modal (opened from a report card)
   ========================================================= */

.report-modal {
  border: 1px solid var(--primary-100);
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px -20px rgba(17, 63, 36, 0.45);
}

.report-modal .modal-header,
.report-modal .modal-footer {
  border-color: var(--primary-100);
}

.report-modal .modal-header {
  background: linear-gradient(180deg, #fff 0%, var(--primary-50) 200%);
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  gap: 0.5rem;
}

.report-modal .modal-body {
  padding: 1.5rem;
}

.report-modal-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--primary-100);
  border-radius: 1rem;
}

@media (max-width: 575.98px) {
  .report-modal-meta { grid-template-columns: 1fr; }
}

.report-modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.report-modal-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-500);
}

.report-modal-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
}

/* The card clamps the excerpt to 3 lines — here it is shown in full. */
.report-modal-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted-strong);
  white-space: pre-wrap;
  margin-bottom: 1.25rem;
}

/* Cards open the modal, so show they are interactive. */
.report-card.is-clickable { cursor: pointer; }

.report-card.is-clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(17, 63, 36, 0.28);
  border-color: var(--primary-300);
}

.report-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-700);
}

.report-card.is-clickable:hover .report-read-more { color: var(--accent-600); }

/* =========================================================
   Language Switcher — our own EN/हिंदी select.
   (Replaced the Google Translate gadget and all the CSS that
   used to hide its injected banner, tooltips and branding.)
   ========================================================= */

.language-nav-item {
    display: flex;
    align-items: center;
}

.language-switcher {
    display: flex;
    align-items: center;
    height: 100%;
}

.lang-select {
    width: 105px;
    min-width: 105px;
    height: 34px;

    padding: 0.25rem 0.6rem;

    border: 1px solid var(--primary-100);
    border-radius: 0.45rem;

    background: #fff;
    color: var(--ink);

    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;

    outline: none;
    cursor: pointer;

    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-select:hover {
    border-color: var(--primary-300);
}

.lang-select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 2px var(--primary-50);
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 991.98px) {

    .language-nav-item {
        width: 100%;
        margin-top: 0.5rem;
    }

    .language-switcher {
        width: 100%;
    }

    .lang-select {
        width: 120px;
        min-width: 120px;
        height: 34px;
    }
}
/* ---- Responsive tweaks -------------------------------------------------- */
@media (max-width: 575.98px) {
  .hero h1 { font-size: 2rem; }
  .news-figure { height: 320px; }
  .news-caption { padding: 0.9rem 1.1rem 2.2rem; }
  .founder-bio p { font-size: 0.98rem; line-height: 1.85; }
  .section { padding: 3rem 0; }
  .section-tight { padding: 2.25rem 0; }
  .stat-value { font-size: 1.6rem; }
  .report-card-body { padding: 1.15rem; }
  .report-card-foot { padding: 0.65rem 1.15rem; }
  .slogan-heading { font-size: 1.25rem; }
}
