:root {
  --navy: #07111f;
  --navy-2: #0c1a2e;
  --ink: #e8eef8;
  --muted: #93a4bd;
  --cyan: #00a8ff;
  --gold: #ffc400;
  --red: #e11d2e;
  --card: rgba(12, 26, 46, 0.72);
  --line: rgba(0, 168, 255, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --urdu: "Noto Nastaliq Urdu", "Noto Sans Arabic", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--navy);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(0, 168, 255, 0.18), transparent 55%),
    radial-gradient(700px 420px at 100% 0%, rgba(255, 196, 0, 0.08), transparent 50%),
    linear-gradient(180deg, #07111f 0%, #091525 40%, #07111f 100%);
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  min-width: 0;
  flex: 1;
}

.brand span {
  min-width: 0;
}

.nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-short {
  display: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan);
}

.brand small {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(0, 168, 255, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}

.btn-cyan {
  background: linear-gradient(180deg, #33bbff, var(--cyan));
  color: #041018;
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.28);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 56px 0 28px;
}

.kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

h1,
h2 {
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.urdu {
  font-family: var(--urdu);
  font-size: 1.25rem;
  color: #d7e6ff;
  direction: rtl;
  margin: 16px 0 0;
}

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.hero-card img.cover {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-card .badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(7, 17, 31, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  backdrop-filter: blur(12px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 36px 0;
}

.pillars span,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #cfe8ff;
  font-size: 13px;
  font-weight: 700;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 196, 0, 0.08);
  border: 1px solid rgba(255, 196, 0, 0.25);
  color: #ffe9a8;
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(12, 26, 46, 0.8);
  color: #fff;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.social:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.shorts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.short-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.short-card iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  display: block;
  background: #000;
}

.short-card .cap {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .hero,
  .grid-2,
  .grid-3,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card img.cover {
    min-height: 320px;
  }

  .nav-links {
    display: none;
  }

  .nav-inner {
    gap: 8px;
    padding: 10px 0;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 12px;
    box-shadow: none;
  }

  .btn-full {
    display: none;
  }

  .btn-short {
    display: inline;
  }

  .shorts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .nav-cta {
    padding: 7px 10px;
    font-size: 11px;
  }
}
