:root {
  --navy: #031b3e;
  --navy2: #06142d;
  --green: #08765c;
  --green2: #006b54;
  --gold: #ffb000;
  --text: #101d38;
  --muted: #647084;
  --line: #e3e8ee;
  --soft: #f5f8fa;
  --white: #fff;
  --shadow: 0 16px 38px rgba(3, 27, 62, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Manrope, sans-serif;
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  color: #fff;
  background: var(--navy);
  font-size: 12px;
}
.topbar-inner,
.contact-strip,
.socials {
  display: flex;
  align-items: center;
}
.topbar-inner {
  justify-content: space-between;
  min-height: 42px;
}
.contact-strip {
  gap: 28px;
}
.contact-strip a,
.contact-strip span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.socials {
  gap: 16px;
}
.socials a {
  transition: 0.2s;
}
.socials a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.main-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 22px rgba(3, 27, 62, 0.08);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--green));
  clip-path: polygon(50% 0, 100% 25%, 87% 79%, 50% 100%, 13% 79%, 0 25%);
}
.logo-mark i {
  font-size: 23px;
}
.logo strong {
  display: block;
  color: #073d35;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 21px;
}
.logo small {
  display: block;
  color: #52606d;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.nav-wrap nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
}
.nav-wrap nav a {
  position: relative;
  padding: 32px 0;
}
.nav-wrap nav a:after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: 0.25s;
}
.nav-wrap nav a:hover,
.nav-wrap nav a.active {
  color: var(--green);
}
.nav-wrap nav a:hover:after,
.nav-wrap nav a.active:after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  transition: 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(3, 27, 62, 0.18);
}
.btn-gold {
  color: #08172d;
  background: var(--gold);
}
.btn-navy {
  color: #fff;
  background: var(--navy);
}
.btn-outline {
  border-color: #8d98aa;
  background: #fff;
}
.btn-green {
  color: #fff;
  background: var(--green);
}
.btn-green-outline {
  border-color: var(--green);
  color: var(--green);
}
.hero {
  overflow: hidden;
  background: radial-gradient(
    circle at 28% 12%,
    #fff 0,
    #f7fafc 48%,
    #edf4f6 100%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  align-items: center;
  min-height: 470px;
}
.hero-copy {
  padding: 50px 0;
}
.eyebrow {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
}
.hero h1 {
  margin: 12px 0 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 47px;
  line-height: 1.07;
  letter-spacing: -1.8px;
}
.hero h1 em {
  color: var(--green);
  font-style: normal;
}
.hero-copy > p {
  max-width: 480px;
  color: #344153;
  font-size: 14px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  margin: 23px 0 21px;
}
.trusted {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack img {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}
.avatar-stack img:first-child {
  margin-left: 0;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 470px;
}
.hero-blob {
  position: absolute;
  right: 70px;
  bottom: 0;
  width: 430px;
  height: 430px;
  border-radius: 48% 52% 50% 50%;
  background: var(--navy);
  box-shadow: inset 0 0 90px #0b3768;
}
.hero-person {
  position: absolute;
  right: 75px;
  bottom: 0;
  width: 425px;
  height: 440px;
  border-radius: 50% 50% 7px 7px;
  object-fit: cover;
  object-position: center 35%;
  mix-blend-mode: normal;
}
.feature-float {
  position: absolute;
  right: -12px;
  top: 58px;
  width: 226px;
  padding: 9px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}
.feature-float > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid #edf0f3;
}
.feature-float > div:last-child {
  border: 0;
}
.feature-float i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--green);
  background: #e5f5ef;
}
.feature-float > div:nth-child(2) i {
  color: #8a5b00;
  background: #fff0cb;
}
.feature-float > div:nth-child(3) i {
  color: #216bd7;
  background: #dceaff;
}
.feature-float > div:nth-child(4) i {
  color: #7c42d1;
  background: #ece1ff;
}
.feature-float b,
.feature-float small {
  display: block;
}
.feature-float b {
  font-size: 11px;
}
.feature-float small {
  color: #647084;
  font-size: 8px;
}
.services {
  color: #fff;
  background: linear-gradient(120deg, #031b3e, #06142d);
}
.service-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 18px;
  padding: 21px 0;
}
.service-intro span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}
.service-intro h2 {
  margin: 6px 0 14px;
  font-size: 24px;
  line-height: 1.25;
}
.service-intro i {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.service-cards article {
  min-height: 132px;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
  transition: 0.25s;
}
.service-cards article:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.service-cards article > i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 11px;
  border-radius: 50%;
  font-size: 20px;
  background: #a46c00;
}
.service-cards .green {
  background: #008d6b;
}
.service-cards .orange {
  background: #e65d00;
}
.service-cards .purple {
  background: #8144b6;
}
.service-cards .blue {
  background: #0d71d5;
}
.service-cards .pink {
  background: #d62a5d;
}
.service-cards h3 {
  margin: 0 0 5px;
  font-size: 14px;
}
.service-cards p {
  margin: 0;
  color: #c6cfdb;
  font-size: 12px;
}
.section {
  padding: 42px 0;
}
.course-layout {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 26px;
}
.section-copy h2,
.about-copy h2,
.section-title h2 {
  margin: 7px 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 29px;
  line-height: 1.2;
}
.section-copy p {
  color: var(--muted);
  font-size: 12px;
}
.green-text {
  color: var(--green);
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.course-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(3, 27, 62, 0.05);
  transition: 0.25s;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card-photo {
  position: relative;
}
.card-photo img {
  width: 100%;
  height: 106px;
  object-fit: cover;
}
.card-photo span,
.news-grid article > div > span {
  position: absolute;
  bottom: -2px;
  left: 10px;
  padding: 7px 11px;
  border-radius: 6px 6px 0 0;
  color: #fff;
  background: var(--green);
  font-size: 10px;
  font-weight: 800;
}
.orange-bg {
  background: #f1a000 !important;
}
.blue-bg {
  background: #1676d2 !important;
}
.purple-bg {
  background: #8652d3 !important;
}
.green-bg {
  background: #0b936a !important;
}
.card-body {
  padding: 14px;
}
.card-body h3 {
  min-height: 38px;
  margin: 0;
  font-size: 13px;
}
.card-body p {
  min-height: 38px;
  margin: 6px 0;
  color: var(--muted);
  font-size: 10px;
}
.card-body footer {
  display: flex;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 9px;
}
.stats {
  color: #fff;
  background: linear-gradient(90deg, #04715a, #00614d);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 18px 0;
}
.stats-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.stats-grid > div:last-child {
  border: 0;
}
.stats-grid i {
  font-size: 30px;
}
.stats-grid b,
.stats-grid em {
  font-size: 22px;
  font-style: normal;
}
.stats-grid small {
  display: block;
  font-size: 14px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.campus-card {
  position: relative;
}
.campus-card > img {
  width: 100%;
  height: 270px;
  border-radius: 10px;
  object-fit: cover;
}
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 25px rgba(3, 27, 62, 0.25);
  transform: translate(-50%, -50%);
}
.campus-card > div {
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 150px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}
.campus-card > div b,
.campus-card > div small {
  display: block;
}
.campus-card > div small {
  margin-top: 5px;
  font-size: 9px;
}
.campus-card > div i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
}
.gold-line {
  display: block;
  width: 45px;
  height: 2px;
  background: var(--gold);
}
.about-copy > p {
  color: var(--muted);
  font-size: 11px;
}
.about-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
  font-size: 9px;
}
.about-copy li i {
  margin-right: 6px;
  color: var(--green);
}
.testimonial {
  padding: 25px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #071d42, #001431);
  box-shadow: var(--shadow);
}
.testimonial > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}
.stars {
  margin: 10px 0;
  color: var(--gold);
}
blockquote {
  min-height: 95px;
  margin: 0;
  font-size: 13px;
}
.student {
  display: flex;
  align-items: center;
  gap: 10px;
}
.student img {
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}
.student b,
.student small {
  display: block;
}
.student b {
  font-size: 10px;
}
.student small {
  font-size: 8px;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 17px;
}
.dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #617087;
}
.dots button.active {
  background: #fff;
}
.news {
  padding-top: 10px;
}
.section-title {
  margin-bottom: 15px;
}
.news-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 22px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.news-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.news-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.news-grid article > div {
  position: relative;
  padding: 15px;
}
.news-grid article > div > span {
  top: -14px;
  bottom: auto;
}
.news-grid h3 {
  min-height: 45px;
  margin: 5px 0 12px;
  font-size: 12px;
}
.news-grid a {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}
.newsletter {
  align-self: stretch;
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff8ec, #fff);
}
.newsletter h2 {
  margin: 0;
}
.newsletter p {
  font-size: 11px;
}
.newsletter label {
  display: flex;
  height: 42px;
  margin-top: 18px;
}
.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  outline: 0;
}
.newsletter button {
  width: 44px;
  border: 0;
  border-radius: 0 6px 6px 0;
  color: #fff;
  background: var(--green);
}
.form-message {
  display: block;
  margin-top: 8px;
  color: var(--green);
}
.cta {
  background: #fff;
}
.cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 17px 25px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #ffc21a, #f5a300);
}
.cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 27px;
}
.cta h2,
.cta p {
  margin: 0;
}
.cta h2 {
  font-size: 19px;
}
.cta p {
  font-size: 10px;
}
footer {
  color: #d5dfeb;
  background: var(--navy2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding: 35px 0 26px;
}
.logo.light strong,
.logo.light small {
  color: #fff;
}
.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 12px;
}
.footer-grid > div > a {
  display: block;
  margin: 5px 0;
  color: #c4ceda;
  font-size: 15px;
}
.footer-grid p {
  font-size: 15px;
}
.footer-brand p {
  max-width: 230px;
}
.copyright {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
}
.copyright span:last-child {
  display: flex;
  gap: 18px;
}
.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
}
.back-top.show {
  display: block;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .nav-wrap nav {
    gap: 16px;
  }
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .course-layout {
    grid-template-columns: 1fr;
  }
  .section-copy {
    max-width: 520px;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial {
    grid-column: 1/-1;
  }
  .hero-blob {
    right: 0;
  }
  .hero-person {
    right: 10px;
  }
  .feature-float {
    right: -20px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .topbar {
    display: none;
  }
  .nav-wrap {
    min-height: 70px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-wrap nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(3, 27, 62, 0.15);
  }
  .nav-wrap nav.open {
    display: flex;
  }
  .nav-wrap nav a {
    padding: 12px;
  }
  .nav-wrap nav a:after {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-bottom: 15px;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-blob {
    right: 50%;
    width: 430px;
    transform: translateX(50%);
  }
  .hero-person {
    right: 50%;
    transform: translateX(50%);
  }
  .feature-float {
    right: 10px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .stats-grid > div {
    border: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .testimonial {
    grid-column: auto;
  }
  .news-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 26px, 1180px);
  }
  .logo strong {
    font-size: 17px;
  }
  .logo-mark {
    width: 42px;
    height: 42px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-blob {
    width: 340px;
    height: 360px;
  }
  .hero-person {
    width: 340px;
    height: 370px;
  }
  .feature-float {
    top: 20px;
    right: 0;
    width: 190px;
  }
  .feature-float > div {
    padding: 7px 0;
  }
  .service-cards,
  .course-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-copy ul {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    grid-template-columns: auto 1fr;
  }
  .cta-inner .btn {
    grid-column: 1/-1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copyright {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
