*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black: #0b1f3f;
  --white: #ffffff;
  --dark-gray: #0b1f3f;
  --mid-gray: #1e3a66;
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-light: rgba(255, 255, 255, 0.75);
  --border: #1e3a66;
  --navy-dark: #0b1f3f;
  --navy-mid: #1e3a66;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11, 31, 63, 0.97);
  border-bottom: 1px solid var(--navy-mid);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}
.header-logo {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.header-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--white);
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icons a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.header-icons a:hover {
  color: var(--white);
}
.header-contact-btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1.5px solid var(--white);
  color: var(--white) !important;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-contact-btn:hover {
  background: var(--white);
  color: var(--black) !important;
}
.header-mob-icon {
  display: none;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--white);
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  text-decoration: none;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.header-mob-icon:hover {
  background: var(--white);
  color: var(--black) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #081529;
  z-index: 998;
  padding: 90px 32px 40px;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid var(--navy-mid);
  overflow-y: auto;
}
.mobile-nav.open {
  left: 0;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30, 58, 102, 0.4);
  transition: color 0.25s;
}
.mobile-nav a:hover {
  color: var(--white);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(0, 0, 0, 0.65);
}
.nav-overlay.visible {
  display: block;
}

/* ── PAGE HERO (CENTER ALIGNED + BRAND COLOR) ── */
.page-hero {
  margin-top: 70px;
  background: var(--navy-dark);
  padding: 90px 40px 70px;
  border-bottom: 1px solid var(--navy-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--navy-mid),
    rgba(255, 255, 255, 0.4),
    transparent
  );
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--navy-mid);
}
.breadcrumb {
  font-family: var(--font-main);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--font-main);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.15;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 16px;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  line-height: 1.8;
  margin: 0 auto;
}

/* ── ABOUT MAIN SECTION ── */
.about-section {
  background: var(--white);
  padding: 80px 40px;
  color: var(--black);
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}
.about-img-wrap {
  position: sticky;
  top: 90px;
}
.about-img {
  width: 100%;
  display: block;
  border: 2px solid var(--navy-mid);
}
.about-img-caption {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(11, 31, 63, 0.6);
  margin-top: 14px;
  text-align: center;
}
.about-img-caption span {
  color: var(--navy-mid);
}

/* ── ABOUT CONTENT ── */
.about-eyebrow {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--navy-mid);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-title {
  font-family: var(--font-main);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 24px;
}
.about-body {
  font-size: 15px;
  color: rgba(11, 31, 63, 0.75);
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-divider {
  width: 48px;
  height: 2px;
  background: var(--navy-mid);
  margin: 32px 0;
}

/* ── SUB HEADING ── */
.about-sub {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin: 32px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-sub::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-mid);
  flex-shrink: 0;
}

/* ── WHY LIST ── */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(11, 31, 63, 0.75);
  line-height: 1.7;
}
.why-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--navy-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── STAT CHIPS ── */
.stat-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
}
.chip {
  background: #f4f7fa;
  border: 1px solid rgba(30, 58, 102, 0.15);
  padding: 18px 22px;
  min-width: 110px;
  position: relative;
  overflow: hidden;
}
.chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--navy-mid);
}
.chip strong {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 900;
  color: var(--navy-mid);
  display: block;
  line-height: 1;
}
.chip span {
  font-family: var(--font-main);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(11, 31, 63, 0.6);
  margin-top: 6px;
  display: block;
}

/* ── MENTORSHIP BOX ── */
.mentorship-box {
  background: #f4f7fa;
  border: 1px solid rgba(30, 58, 102, 0.15);
  border-left: 3px solid var(--navy-mid);
  padding: 28px 28px;
  margin: 32px 0;
}
.mentorship-box h4 {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 16px;
}
.mentorship-box p {
  font-size: 14px;
  color: rgba(11, 31, 63, 0.75);
  line-height: 1.8;
  margin-bottom: 10px;
}
.mentorship-box p strong {
  color: var(--black);
}
.mentorship-box .promise {
  font-size: 13px;
  color: rgba(11, 31, 63, 0.55);
  font-style: italic;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(30, 58, 102, 0.15);
}

/* ── CTA BUTTONS ── */
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-gold:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  background: transparent;
  color: var(--navy-mid);
  border: 1.5px solid var(--navy-mid);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--navy-mid);
  color: var(--white);
}

/* ── FOOTER ── */
.footer-main {
  background: var(--navy-dark);
  border-top: 2px solid var(--navy-mid);
  padding: 56px 40px 48px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.footer-col-heading {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--navy-mid);
}
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-contact-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
.footer-contact-line strong {
  color: var(--white);
}
.footer-svg-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-svg-row a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--navy-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.25s;
  flex-shrink: 0;
}
.footer-svg-row a:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.footer-col-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col-links a:hover {
  color: var(--white);
}
.footer-nl-input-wrap {
  margin-bottom: 12px;
}
.footer-nl-input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--navy-mid);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
}
.footer-nl-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-nl-input-wrap input:focus {
  border-color: var(--white);
}
.footer-nl-btn {
  background: var(--navy-mid);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}
.footer-nl-btn:hover {
  background: var(--white);
  color: var(--navy-dark);
}
.footer-bottom-bar {
  background: #0b1f3f;
  padding: 18px 40px;
  border-top: 1px solid var(--navy-mid);
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-bottom-inner p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
  font-family: var(--font-main);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
  }
  .header-logo {
    grid-column: 2;
    justify-self: center;
  }
  .header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .header-icons {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .header-contact-btn {
    display: none;
  }
  .header-mob-icon {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 0 16px;
  }
  .page-hero {
    padding: 60px 20px 48px;
  }
  .about-section {
    padding: 60px 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap {
    position: static;
  }
  .about-img {
    max-width: 280px;
  }
  .stat-chips {
    gap: 10px;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-gold,
  .btn-outline {
    justify-content: center;
  }
  .footer-main {
    padding: 48px 20px 36px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-bar {
    padding: 16px 20px;
  }
}
@media (max-width: 480px) {
  .chip {
    min-width: 90px;
    padding: 14px 16px;
  }
  .chip strong {
    font-size: 20px;
  }
  .mentorship-box {
    padding: 20px 18px;
  }
}
