:root {
  --navy: #0f2d67;
  --navy-deep: #0b2558;
  --gold: #d2a13a;
  --gold-soft: #f4e2bb;
  --ink: #1f2739;
  --muted: #627089;
  --line: #e6ecf6;
  --surface: #ffffff;
  --soft: #f7f9fe;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(16, 40, 84, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ink);
  font-family: "Public Sans", "Segoe UI", sans-serif;
  background: radial-gradient(1300px 700px at -8% -4%, #f3f7ff 0%, rgba(243, 247, 255, 0) 48%),
    radial-gradient(1200px 620px at 108% 105%, #f8f3e8 0%, rgba(248, 243, 232, 0) 45%),
    #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1310px, calc(100% - 44px));
  margin: 0 auto;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #c9d6ee;
  border-radius: 10px;
  background: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #12306d;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-overlay {
  display: none;
}

.mobile-nav-drawer {
  display: none;
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #12306d;
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 700;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 19px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: #152b5a;
  line-height: 1;
  border-bottom: 2px solid transparent;
  padding: 12px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--navy);
  border-color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: #143779;
}

.btn-outline {
  background: #fff;
  border-color: #d5ab55;
  color: var(--navy);
}

.btn-outline:hover {
  background: #fff9ee;
}

.btn-light {
  background: #fff;
  border-color: #9fb0d4;
  color: var(--navy);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.consult {
  margin-left: 6px;
  font-size: 15px;
  white-space: nowrap;
  padding: 11px 16px;
}

.consult img {
  width: 20px;
  height: 20px;
}

.hero {
  padding: 20px 0 14px;
}

.hero-grid {
  min-height: 540px;
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 44, 89, 0.1);
}

.hero-copy {
  padding: 66px 56px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, #fff 76%, rgba(255, 255, 255, 0.74) 100%);
}

.hero-copy h1,
h2,
.showcase-card h3,
.program-head h3,
.step h3,
.footer h3,
.cta-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: #0f2d67;
}

.title-line {
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  margin-top: 15px;
}

.hero-copy p {
  margin: 19px 0 34px;
  max-width: 545px;
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  line-height: 1.6;
  color: #2b3448;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 194px;
  padding: 13px 20px;
  font-size: 1.04rem;
}

.hero-actions .btn span {
  font-size: 1.1em;
  margin-left: 2px;
}

.hero-media {
  background-image: url("Header.png");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
}

.section {
  padding: 40px 0;
}

h2 {
  margin: 0;
  text-align: center;
  color: var(--navy);
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section > .container > .title-line {
  margin: 12px auto 0;
}

.program-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.program-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px;
  min-height: 262px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.program-head img {
  width: 74px;
  height: 74px;
}

.program-head h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2vw, 2rem);
  color: var(--navy);
  line-height: 1.03;
}

.program-head .meta {
  margin: 5px 0 0;
  color: #c99935;
  font-size: 1rem;
  font-weight: 600;
}

.program-card > p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.58;
  color: #30394c;
  min-height: 66px;
}

.program-card .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 20px;
  min-width: 154px;
  font-size: 0.94rem;
}

.why {
  background: linear-gradient(180deg, #fcfdff 0%, #fff 100%);
}

.feature-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.feature-grid article {
  text-align: center;
  padding: 24px 14px 22px;
  border-right: 1px solid var(--line);
}

.feature-grid article:last-child {
  border-right: 0;
}

.feature-grid img {
  margin: 0 auto 12px;
  width: 48px;
  height: 48px;
}

.feature-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.12;
}

.feature-grid p {
  margin: 10px 0 0;
  color: #404e66;
  font-size: 0.96rem;
  line-height: 1.56;
}

.process-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.step {
  text-align: center;
}

.step-icon {
  width: 98px;
  height: 98px;
  border-radius: 999px;
  margin: 0 auto 11px;
  display: grid;
  place-items: center;
}

.step-icon.navy {
  background: #f2f6ff;
}

.step-icon.gold {
  background: #fff8eb;
}

.step-icon img {
  width: 90px;
  height: 90px;
}

.step h3 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.step p {
  margin: 8px auto 0;
  max-width: 280px;
  color: #46536c;
  font-size: 1rem;
  line-height: 1.5;
}

.arrow {
  font-size: 2.1rem;
  color: #9cabc8;
}

.disclaimer {
  width: fit-content;
  margin: 22px auto 0;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f2f5fb;
  color: #4d5a72;
  font-size: 0.9rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  min-height: 335px;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  position: relative;
}

.showcase-card .media {
  background-size: cover;
  background-repeat: no-repeat;
}

.media-sim {
  background: linear-gradient(rgba(11, 34, 73, 0.16), rgba(11, 34, 73, 0.16)), url("sim.png");
  background-position: left 33% top 66%;
}

.media-job {
  background: linear-gradient(rgba(11, 34, 73, 0.16), rgba(11, 34, 73, 0.16)), url("placement.png");
  background-position: right 46% top 67%;
}

.showcase-card .copy {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-card h3 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 2.7rem);
  color: var(--navy);
  line-height: 0.98;
}

.showcase-card .copy .title-line {
  margin: 10px 0 14px;
}

.showcase-card p {
  margin: 0;
  color: #2f3a4d;
  font-size: 1.04rem;
  line-height: 1.62;
}

.placement-badge {
  width: 46px;
  height: 46px;
  position: absolute;
  right: 12px;
  bottom: 10px;
}

.about-testimonials {
  padding-top: 34px;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 22px;
}

.about-box,
.testimonial-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 22px;
}

.about-box h2,
.testimonial-box h2 {
  text-align: left;
  font-size: clamp(2rem, 2.3vw, 2.8rem);
}

.about-box .title-line,
.testimonial-box .title-line {
  margin: 11px 0 16px;
}

.about-box p {
  margin: 0 0 22px;
  color: #2f3b4f;
  font-size: 1.04rem;
  line-height: 1.7;
}

.about-box .btn {
  padding: 10px 16px;
}

.testimonial-track {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
}

.arrow-btn img {
  width: 18px;
  height: 18px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quote {
  border: 1px solid #e7edf7;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.quote .stars {
  margin: 0;
  color: var(--gold);
  letter-spacing: 1.4px;
}

.quote .text {
  margin: 8px 0;
  color: #2f3c4f;
  font-size: 0.9rem;
  line-height: 1.48;
}

.quote .name {
  margin: 0;
  color: #132e66;
  font-weight: 700;
  font-size: 0.9rem;
}

.quote .role {
  margin: 2px 0 0;
  color: #738099;
  font-size: 0.8rem;
}

.cta-band {
  margin-top: 12px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  background: radial-gradient(680px 260px at 97% 8%, rgba(216, 171, 80, 0.26), rgba(216, 171, 80, 0) 45%),
    linear-gradient(96deg, #0d2a66 0%, #122f6f 48%, #173b88 100%);
  color: #fff;
}

.cta-wrap {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-copy img {
  width: 56px;
  height: 56px;
}

.cta-copy h2 {
  margin: 0;
  text-align: left;
  color: #fff;
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 1;
}

.cta-copy p {
  margin: 7px 0 0;
  color: #ecf3ff;
  font-size: 1.06rem;
}

.cta-wrap .btn-gold {
  min-width: 220px;
  padding: 12px 20px;
  font-size: 1.02rem;
}

.footer {
  background: var(--navy-deep);
  color: #d8e4ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr 1.2fr;
  gap: 18px;
  padding: 22px 0 18px;
}

.footer-brand img {
  width: 210px;
}

.footer-brand p {
  margin: 10px 0;
  color: #ccdcff;
  line-height: 1.52;
  max-width: 300px;
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-lockup img {
  width: 48px;
  height: 48px;
}

.footer-lockup h3 {
  margin: 0;
  line-height: 0.95;
  font-size: 2.7rem;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(226, 236, 255, 0.56);
  background: rgba(235, 243, 255, 0.1);
  display: grid;
  place-items: center;
}

.socials img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.42));
}

.footer h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.65rem;
}

.footer section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer a,
.footer p {
  margin: 0;
  color: #d8e5ff;
  line-height: 1.44;
  font-size: 0.88rem;
}

.footer p img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
  vertical-align: -7px;
  margin-right: 10px;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.42));
}

.copyright {
  border-top: 1px solid rgba(229, 239, 255, 0.18);
  text-align: center;
  color: #d5e3ff;
  font-size: 0.8rem;
  line-height: 1.44;
  padding: 10px 10px 14px;
}

@media (min-width: 1161px) {
  .nav-links {
    display: flex;
  }

  .consult {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-nav-panel,
  .mobile-menu-overlay,
  .mobile-drawer,
  .mobile-nav-overlay,
  .mobile-nav-drawer {
    display: none !important;
  }
}

@media (max-width: 1160px) {
  .container {
    width: min(1310px, calc(100% - 34px));
  }

  .nav-wrap {
    min-height: 78px;
  }

  .nav-links {
    display: none;
  }

  .consult {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(9, 20, 44, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    z-index: 89;
  }

  .mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100vh;
    background: #fff;
    border-left: 1px solid #e5ecf7;
    box-shadow: -12px 0 28px rgba(12, 28, 61, 0.16);
    transform: translateX(102%);
    opacity: 0.98;
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s ease;
    z-index: 90;
  }

  .mobile-nav-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-drawer-head {
    min-height: 82px;
    padding: 16px 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9effa;
    gap: 10px;
  }

  .mobile-drawer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .mobile-drawer-brand img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .mobile-drawer-brand span {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
    color: #12306d;
    white-space: nowrap;
  }

  .mobile-drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid #d0dbef;
    border-radius: 10px;
    background: #fff;
    color: #12306d;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-nav-links {
    padding: 8px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
  }

  .mobile-nav-links a {
    font-size: 15px;
    color: #15305f;
    font-weight: 600;
    padding: 13px 18px;
    border-bottom: 1px solid #edf2fb;
    position: relative;
  }

  .mobile-nav-links a.active {
    color: var(--navy);
  }

  .mobile-nav-links a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    border-radius: 0 4px 4px 0;
    background: var(--gold);
  }

  .mobile-drawer-foot {
    margin-top: auto;
    padding: 14px 16px 18px;
    border-top: 1px solid #ecf2fc;
  }

  .mobile-drawer-foot .mobile-consult-link {
    width: 100%;
    min-height: 46px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    background: var(--gold);
    color: #fff;
  }

  .brand-text {
    font-size: 1.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 46px 32px;
  }

  .hero-media {
    min-height: 320px;
  }

  .program-grid,
  .showcase-grid,
  .dual-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .arrow {
    display: none;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
  }

  .cta-copy {
    flex-direction: column;
  }

  .cta-copy h2 {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1310px, calc(100% - 20px));
  }

  .brand-text {
    font-size: 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-copy p {
    font-size: 1.06rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-card .media {
    min-height: 230px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .socials a {
    width: 40px;
    height: 40px;
  }

  .socials img {
    width: 24px;
    height: 24px;
  }

  .footer p img {
    width: 24px;
    height: 24px;
    vertical-align: -6px;
    margin-right: 9px;
  }

  .mobile-nav-links a {
    font-size: 14px;
    padding: 12px 16px;
  }

  .mobile-drawer-brand span {
    font-size: 1.36rem;
  }

  .mobile-drawer-foot {
    padding: 12px 14px 16px;
  }
}
