﻿:root {
  --ink: #101416;
  --muted: #5a6467;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --line: #dce3dd;
  --green: #0b7a48;
  --green-dark: #073f30;
  --amber: #f2b84b;
  --blue: #2869b7;
  --shadow: 0 18px 50px rgba(10, 34, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #003f35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(0, 30, 26, 0.18);
}

.top-bar {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(16px, 4vw, 80px);
  background: #003f35;
}

.top-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.urdu-button {
  display: inline-flex;
  min-width: 100px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-family: Tahoma, "Noto Nastaliq Urdu", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.urdu-button.register {
  border: 2px solid #ffe568;
  background: linear-gradient(180deg, #ffed39 0%, #ffc20b 100%);
  color: #674200;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 5px 10px rgba(0, 0, 0, 0.22);
}

.urdu-button.login {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #0e8291 0%, #066574 100%);
  color: #ffdd46;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 5px 10px rgba(0, 0, 0, 0.18);
}

.brand-menu {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-block;
  color: #f7b327;
  font-family: Impact, "Arial Black", "Segoe UI Black", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 #7a4200,
    0 3px 0 #fff3a3,
    0 6px 12px rgba(0, 0, 0, 0.48);
  -webkit-text-stroke: 1px #ffdd67;
}

.brand-mark span {
  font-size: 0.72em;
  -webkit-text-stroke-width: 0.7px;
}

.brand-copy {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  background: #064b42;
  color: #fff;
  font-family: Tahoma, "Noto Nastaliq Urdu", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  scrollbar-width: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.24);
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  min-width: 104px;
  padding: 7px 16px 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(0, 0, 0, 0.18);
  color: #f7fff9;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 2px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  min-height: calc(100vh - 112px);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 6vw, 72px) clamp(16px, 4vw, 48px) 28px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 10px 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--panel);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 560px;
  margin: 28px 0 0;
}

.trust-strip div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.trust-strip dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.trust-strip dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.hero-media {
  min-width: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notice-band {
  margin: 0 clamp(16px, 4vw, 48px);
  padding: 18px;
  border: 1px solid rgba(242, 184, 75, 0.7);
  border-radius: 8px;
  background: #fff7e6;
}

.notice-band p {
  margin: 0;
  color: #49350b;
}

.section {
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 48px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.cluster-grid,
.update-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.topic-card,
.update-card {
  min-height: 238px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.topic-card p,
.update-card p {
  color: var(--muted);
}

.topic-card a {
  color: var(--blue);
  font-weight: 800;
}

.topic-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #e7f2ec;
  color: var(--green);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  background: #eef6f1;
}

.page-map {
  display: grid;
  gap: 10px;
}

.map-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) minmax(150px, 0.75fr);
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(11, 122, 72, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.map-row span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 900;
}

.map-row em {
  color: var(--muted);
  font-style: normal;
}

.table-section {
  background: var(--green-dark);
  color: #fff;
}

.table-section .eyebrow {
  color: var(--amber);
}

.responsive-table {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.06);
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-align: left;
  vertical-align: top;
}

td {
  color: rgba(255, 255, 255, 0.82);
}

.update-card time {
  color: var(--green);
  font-weight: 900;
}

.faq-section {
  padding-bottom: 112px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

summary {
  min-height: 56px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(16px, 4vw, 48px);
  background: #101416;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  max-width: 780px;
  margin: 0;
}

.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(16, 20, 22, 0.18);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 7px;
  background: #eef6f1;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 900;
}

.sticky-cta a:first-child {
  background: var(--green);
  color: #fff;
}

@media (max-width: 960px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cluster-grid,
  .update-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-row {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .map-row em {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 0;
  }

  .top-bar {
    min-height: 68px;
    gap: 12px;
    padding: 0 12px;
  }

  .top-actions {
    gap: 8px;
  }

  .urdu-button {
    min-width: 78px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .brand-menu {
    gap: 8px;
  }

  .brand-mark {
    font-size: 2.15rem;
  }

  .menu-button {
    width: 34px;
    height: 34px;
  }

  .site-nav {
    position: static;
    display: flex;
    min-height: 33px;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #064b42;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-width: 92px;
    padding: 7px 12px 8px;
    color: #f7fff9;
  }

  .hero {
    padding-top: 26px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .trust-strip,
  .cluster-grid,
  .update-grid {
    grid-template-columns: 1fr;
  }

  .topic-card,
  .update-card {
    min-height: auto;
  }

  .site-footer {
    display: block;
    padding-bottom: 96px;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 14px;
  }

  .sticky-cta {
    display: grid;
  }
}

