:root {
  --peacock-blue: #005b96;
  --forest-green: #1e5631;
  --saffron: #ff9933;
  --navy: #000080;
  --white: #ffffff;
  --dark: #0f172a;
  --muted: #475569;
  --light-bg: #f5f8fb;
  --font-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", "Noto Sans Devanagari", Arial, sans-serif;
  color: #1f2937;
  background: var(--white);
  line-height: 1.6;
  font-size: calc(1rem * var(--font-scale));
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.access-links a,
.access-links button {
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  margin-left: 0.45rem;
  text-decoration: underline;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #dbe4ee;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-group img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-title h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
}

.site-title p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-wrap {
  background: linear-gradient(90deg, var(--forest-green), var(--peacock-blue));
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.4rem;
  padding: 0.75rem 0;
}

.main-nav {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 0.9rem 0.9rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.15);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 92%);
}

.hero h2 {
  font-size: clamp(1.45rem, 4vw, 2.4rem);
  margin: 0 0 0.8rem;
}

.btn {
  display: inline-block;
  background: var(--saffron);
  color: #1f2937;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

main {
  padding: 2rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.panel {
  background: var(--light-bg);
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  padding: 1rem;
}

.section-title {
  color: var(--navy);
  margin-top: 0;
}

img.responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.breadcrumb {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--peacock-blue);
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

th,
td {
  border: 1px solid #cbd5e1;
  padding: 0.75rem;
  text-align: left;
}

th {
  background: #e7eef7;
  color: var(--navy);
}

.org-list li {
  margin-bottom: 0.6rem;
}

form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0.65rem;
  margin-bottom: 0.9rem;
  font: inherit;
}

textarea {
  min-height: 120px;
}

.submit-btn {
  background: var(--forest-green);
  color: var(--white);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  background: var(--dark);
  color: #cbd5e1;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 2rem 0 1rem;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  color: #cbd5e1;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding: 0.85rem 0;
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 900px) {
  .grid-2,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-bottom: 0.6rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.8rem 0.2rem;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
