.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center; align-items: center; gap: .65rem; flex-wrap: wrap;
  padding: .7rem 1rem;
  background: rgba(7, 18, 36, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-nav a {
  color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 999px; border: 1px solid transparent;
  transition: color .2s, border-color .2s, background .2s;
}
.site-nav a:hover, .site-nav a.is-active {
  color: var(--gold-light); border-color: rgba(232,201,106,.45); background: rgba(255,255,255,.06);
}
.site-nav__logo {
  display: inline-flex; align-items: center; padding: .15rem .35rem !important;
  border: none !important; background: transparent !important; border-radius: 8px !important;
}
.site-nav__logo img {
  height: 34px; width: auto; display: block;
}
.site-nav__logo:hover, .site-nav__logo.is-active {
  background: rgba(255,255,255,.06) !important;
  border-color: transparent !important;
}
body:has(.site-nav) .hero { padding-top: 3.5rem; }
.brand-logo {
  display: block;
  width: min(420px, 88vw);
  height: auto;
  margin-bottom: 1.1rem;
  animation: rise .9s ease both;
}
.brand-logo--footer {
  width: min(280px, 70vw);
  margin: 0 auto 1rem;
}

:root {
  --navy: #0b1f3a;
  --navy-mid: #163a63;
  --navy-soft: #1e4d7b;
  --gold: #c9a227;
  --gold-light: #e8c96a;
  --ink: #142033;
  --muted: #5a6578;
  --paper: #f7f4ee;
  --white: #ffffff;
  --line: rgba(201, 162, 39, 0.35);
  --shadow: 0 24px 60px rgba(11, 31, 58, 0.18);
  --radius: 18px;
  --max: 1120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans Gujarati", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(22, 58, 99, 0.08), transparent 50%),
    linear-gradient(180deg, #faf8f3 0%, #eef2f7 45%, #f7f4ee 100%);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(7,18,36,.92) 0%, rgba(11,31,58,.78) 48%, rgba(11,31,58,.45) 100%),
    linear-gradient(0deg, rgba(7,18,36,.85) 0%, transparent 42%);
}
.hero__pattern {
  position: absolute; inset: 0; z-index: -1; opacity: .08; pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 40%, rgba(232,201,106,.5) 50%, transparent 60%),
    repeating-linear-gradient(-18deg, transparent, transparent 18px, rgba(255,255,255,.04) 18px, rgba(255,255,255,.04) 19px);
}
.hero__inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
}
.hero__brand {
  font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(1.65rem, 3.8vw, 2.85rem);
  font-weight: 700; line-height: 1.35; max-width: 16ch;
  opacity: 0; animation: rise .9s ease .15s forwards;
}
.hero__rule {
  width: 4.5rem; height: 3px; margin: 1.35rem 0 1.1rem; border: none;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0; animation: rise .9s ease .3s forwards;
}
.hero__kicker {
  display: inline-block; font-size: .95rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: .65rem; opacity: 0; animation: rise .9s ease .4s forwards;
}
.hero__title {
  font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1.15; margin-bottom: .85rem;
  opacity: 0; animation: rise .9s ease .5s forwards;
}
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 34ch;
  color: rgba(255,255,255,.88);
  opacity: 0; animation: rise .9s ease .65s forwards;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem;
  opacity: 0; animation: rise .9s ease .8s forwards;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.55rem; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: 1.5px solid transparent;
  transition: transform .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, var(--gold), #d4af37); color: var(--navy); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.45); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.section { width: min(100% - 2.5rem, var(--max)); margin: 0 auto; padding: 5rem 0; }
.section__head { margin-bottom: 2.5rem; max-width: 36rem; }
.section__label {
  display: inline-block; font-size: .85rem; font-weight: 700;
  letter-spacing: .14em; color: var(--navy-soft); margin-bottom: .55rem;
}
.section__title {
  font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: .65rem;
}
.section__desc { color: var(--muted); font-size: 1.05rem; }
.welcome__panel {
  position: relative; padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(247,244,238,.92));
  border: 1px solid rgba(22,58,99,.08); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.welcome__panel::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--navy-soft));
}
.welcome__quote {
  font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.85; color: var(--navy); font-weight: 500;
}
.welcome__meta {
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  font-size: .95rem; color: var(--muted); font-weight: 600;
}
.welcome__open {
  font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 600; color: var(--navy); line-height: 1.6; margin-bottom: 1.5rem;
}
.guest-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem 1.5rem;
  margin: 0 0 1.75rem;
}
.guest-list li {
  position: relative;
  padding: .55rem 0 .55rem 1.15rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(22,58,99,.06);
}
.guest-list li::before {
  content: "";
  position: absolute; left: 0; top: 1.05rem;
  width: .45rem; height: .45rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.welcome__close {
  font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600; color: var(--navy); line-height: 1.75;
  padding-top: 1.25rem; border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .guest-list { grid-template-columns: 1fr; }
}
.inspire {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  position: relative;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,244,238,.94));
  border: 1px solid rgba(22,58,99,.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.inspire::before {
  content: "";
  position: absolute; inset: 0 auto 0 0; width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--navy-soft));
}
.inspire__photo {
  width: clamp(96px, 16vw, 128px);
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(11,31,58,.18);
  background: var(--navy);
}
.inspire__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.inspire__label {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy-soft); margin-bottom: .45rem;
}
.inspire__name {
  font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 700; color: var(--navy); line-height: 1.35;
  margin-bottom: .25rem;
}
.inspire__role {
  color: var(--muted); font-weight: 600; font-size: .98rem;
  margin-bottom: .55rem;
}
.inspire__salute {
  font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600; color: var(--navy); line-height: 1.5;
}
.inspire__salute em {
  font-style: normal;
  color: var(--gold);
  background: linear-gradient(135deg, #b8891a, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 560px) {
  .inspire {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .inspire::before { inset: 0 0 auto 0; width: auto; height: 4px; }
}
.profile {
  display: grid; grid-template-columns: .95fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.profile__visual { position: relative; }
.profile__frame {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow); background: var(--navy);
}
.profile__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .6s ease;
}
.profile__frame:hover img { transform: scale(1.03); }
.profile__accent {
  position: absolute; inset: auto -12px -12px auto; width: 42%; aspect-ratio: 3/4;
  border-radius: 16px; overflow: hidden; border: 4px solid var(--paper);
  box-shadow: 0 16px 40px rgba(11,31,58,.25); z-index: 2;
}
.profile__accent img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.profile__glow {
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.35), transparent 70%);
  top: -40px; left: -40px; z-index: -1; animation: pulse 4s ease-in-out infinite;
}
.profile__name {
  font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--navy); font-weight: 700; line-height: 1.3; margin-bottom: .35rem;
}
.profile__role {
  display: inline-block; margin-top: .35rem; padding: .35rem .9rem;
  background: rgba(22,58,99,.08); color: var(--navy-mid);
  border-radius: 999px; font-weight: 600; font-size: .98rem;
}
.profile__honor { margin-top: 1.25rem; font-size: 1.15rem; color: var(--ink); font-weight: 600; }
.profile__note { margin-top: .85rem; color: var(--muted); font-size: 1.02rem; }
.profile__thumbs { display: flex; gap: .65rem; margin-top: 1.75rem; }
.profile__thumbs button {
  width: 64px; height: 64px; border-radius: 12px; overflow: hidden;
  border: 2px solid transparent; padding: 0; cursor: pointer; background: none; opacity: .7;
  transition: opacity .2s, border-color .2s, transform .2s;
}
.profile__thumbs button.is-active,
.profile__thumbs button:hover { opacity: 1; border-color: var(--gold); transform: translateY(-2px); }
.profile__thumbs img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 55%, #1a456e 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.band::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.22), transparent 68%);
  pointer-events: none;
}
.band .section__label { color: var(--gold-light); }
.band .section__title { color: var(--white); }
.band .section__desc { color: rgba(255,255,255,.72); }
.grid-ports { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
.port-item {
  display: flex; gap: .85rem; align-items: flex-start; padding: 1rem 1.1rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; backdrop-filter: blur(6px);
  transition: background .25s, transform .25s, border-color .25s;
}
.port-item:hover {
  background: rgba(255,255,255,.1); border-color: rgba(232,201,106,.45); transform: translateY(-2px);
}
.port-item__num {
  flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700; color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.port-item__text { font-size: .98rem; line-height: 1.55; font-weight: 500; }
.port-item__en {
  display: block; margin-top: .2rem; font-size: .78rem; font-weight: 400; color: rgba(255,255,255,.55);
}
.duties { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.duty {
  position: relative; padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  background: var(--white); border-radius: 16px; border: 1px solid rgba(22,58,99,.08);
  box-shadow: 0 10px 30px rgba(11,31,58,.06); transition: transform .25s, box-shadow .25s; overflow: hidden;
}
.duty::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--navy-soft); transition: background .25s;
}
.duty:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(11,31,58,.12); }
.duty:hover::before { background: var(--gold); }
.duty__title { font-weight: 600; font-size: 1.05rem; color: var(--navy); line-height: 1.55; }
.traits { display: flex; flex-wrap: wrap; gap: .75rem; }
.trait {
  padding: .7rem 1.15rem; background: rgba(22,58,99,.06); border: 1px solid rgba(22,58,99,.1);
  border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--navy-mid);
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.trait:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.vision {
  margin-top: 2.25rem; padding: clamp(1.75rem, 3vw, 2.5rem); border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11,31,58,.97), rgba(22,58,99,.95)),
    url("images/cm-formal.png") center/cover;
  background-blend-mode: multiply; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.vision::before {
  content: "\201C"; position: absolute; top: -.35rem; left: 1rem;
  font-family: "Noto Serif Gujarati", serif; font-size: 7rem; line-height: 1;
  color: rgba(232,201,106,.25); pointer-events: none;
}
.vision p {
  position: relative; font-family: "Noto Serif Gujarati", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem); font-weight: 600; line-height: 1.7; max-width: 36ch;
  color: #fff;
}
.vision span {
  display: block; margin-top: 1rem; font-family: "Noto Sans Gujarati", sans-serif;
  font-size: .98rem; font-weight: 600; color: #fff;
}
footer {
  padding: 2.5rem 0 3rem; text-align: center; color: var(--muted); font-size: .95rem;
  border-top: 1px solid rgba(22,58,99,.08); background: rgba(255,255,255,.45);
}
footer strong {
  display: block; color: var(--navy); font-family: "Noto Serif Gujarati", serif;
  font-size: 1.1rem; margin-bottom: .35rem;
}
.footer-live {
  display: inline-block;
  margin-top: 1rem;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.45;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(24, 119, 242, .28);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.footer-live:hover {
  background: #0f5fcc;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24, 119, 242, .34);
}
.footer-live strong { color: #fff; }
/* Light backgrounds: bold is black/readable */
strong {
  font-weight: 800;
  color: #000;
  display: inline;
  white-space: inherit;
}
.hero strong,
.hero__title strong,
.hero__brand strong,
.btn strong,
.menu-modal strong {
  color: inherit;
  font-weight: inherit;
}
/* Dark backgrounds: bold stays white */
.hero__lead strong,
.edu-badge strong,
.vision strong,
.vision span strong,
.vision-banner strong,
.sk-office strong,
.band strong {
  color: #fff;
  font-weight: 800;
}
.fact > strong {
  font-weight: 700;
  color: var(--navy-soft);
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.15); opacity: 1; }
}
@media (max-width: 900px) {
  .profile { grid-template-columns: 1fr; gap: 2rem; }
  .profile__visual { max-width: 380px; margin: 0 auto; }
  .grid-ports, .duties { grid-template-columns: 1fr; }
  .hero__brand { max-width: none; }
}
@media (max-width: 560px) {
  .hero__inner { padding: 4.5rem 0 3.25rem; }
  .section { padding: 3.5rem 0; }
  .profile__accent { width: 38%; inset: auto -8px -8px auto; }
  .profile__thumbs button { width: 56px; height: 56px; }
}
.fab-menu {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  min-width: 3.1rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border: none;
  border-radius: 999px 0 0 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 1.1rem .7rem;
  font-family: "Noto Sans Gujarati", sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 28px rgba(11,31,58,.28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.fab-menu:hover { transform: translateY(-50%) translateX(-3px); box-shadow: 0 16px 34px rgba(11,31,58,.34); }
.fab-menu svg { width: 1.05rem; height: 1.05rem; display: block; transform: rotate(90deg); }
.fab-menu[aria-expanded="true"] {
  background: var(--navy);
  color: var(--gold-light);
  transform: translateY(-50%) translateX(-3px);
}
.menu-modal {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: 1.25rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.menu-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.menu-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(7,18,36,.62);
  backdrop-filter: blur(6px);
}
.menu-modal__panel {
  position: relative;
  width: min(100%, 420px);
  max-height: min(82vh, 640px);
  overflow: auto;
  border-radius: 22px;
  background: linear-gradient(160deg, #fffefb, #f4f1ea);
  border: 1px solid rgba(22,58,99,.1);
  box-shadow: 0 28px 70px rgba(7,18,36,.35);
  padding: 1.35rem 1.25rem 1.25rem;
  transform: translateY(16px) scale(.98);
  transition: transform .28s ease;
}
.menu-modal.is-open .menu-modal__panel { transform: none; }
.menu-modal__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1rem; padding: 0 .35rem .85rem;
  border-bottom: 1px solid rgba(22,58,99,.08);
}
.menu-modal__title {
  font-family: "Noto Serif Gujarati", serif;
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
}
.menu-modal__close {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid rgba(22,58,99,.12);
  background: rgba(255,255,255,.8);
  color: var(--navy); cursor: pointer; font-size: 1.25rem; line-height: 1;
}
.menu-modal__list {
  list-style: none; display: grid; gap: .4rem;
}
.menu-modal__list a {
  display: block;
  padding: .85rem 1rem;
  border-radius: 14px;
  font-weight: 600; font-size: 1.02rem;
  color: var(--ink);
  border: 1px solid transparent;
  background: rgba(255,255,255,.55);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.menu-modal__list a:hover {
  background: rgba(11,31,58,.06);
  border-color: rgba(201,162,39,.45);
  color: var(--navy);
  transform: translateX(3px);
}
.menu-modal__list a.is-current {
  background: linear-gradient(135deg, rgba(201,162,39,.18), rgba(201,162,39,.08));
  border-color: rgba(201,162,39,.4);
  color: var(--navy);
}
body.modal-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
