* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #172033;
  background: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #edf0f5;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 25px;
  font-weight: 800;
  color: #1255c3;
  letter-spacing: -0.5px;
}

.logo span {
  color: #172033;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  color: #30394a;
}

.nav-links a:hover {
  color: #1255c3;
}

.nav-cta {
  background: #1255c3;
  color: #ffffff !important;
  padding: 11px 20px;
  border-radius: 8px;
}

/* ---------- Common ---------- */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.section-heading .eyebrow {
  color: #1255c3;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-heading p {
  margin: 0;
  color: #647084;
  font-size: 17px;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 65%);
  padding: 80px 0 70px;
}

.hero-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f0ff;
  color: #1255c3;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: #101828;
}

.hero h1 span {
  color: #1255c3;
}

.hero-text {
  color: #5e6878;
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: #1255c3;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0d46a5;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  color: #1255c3;
  border: 1px solid #cbd8ef;
}

.btn-secondary:hover {
  border-color: #1255c3;
}

.hero-image {
  background: #ffffff;
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(25, 60, 120, 0.12);
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
}

/* ---------- University Section ---------- */

.university-section {
  padding: 70px 0 80px;
  background: #ffffff;
}

.university-title {
  font-size: 16px;
  font-weight: 700;
  color: #647084;
  margin-bottom: 10px;
}

.university-heading {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 35px;
  color: #111827;
}

.university-heading span {
  color: #1255c3;
}

.university-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5eaf2;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.university-image img {
  width: 100%;
}

/* ---------- Programs ---------- */

.programs {
  background: #f7f9fc;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.program-card {
  background: #ffffff;
  padding: 28px;
  border: 1px solid #e4e9f1;
  border-radius: 14px;
  transition: 0.2s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(25, 60, 120, 0.09);
}

.program-number {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #e8f0ff;
  color: #1255c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.program-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.program-card p {
  margin: 0;
  color: #687386;
}

/* ---------- Why Us ---------- */

.why-us {
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.why-intro h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.2;
}

.why-intro p {
  color: #647084;
  font-size: 17px;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border: 1px solid #e5eaf2;
  border-radius: 12px;
  background: #ffffff;
}

.why-icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 10px;
  background: #e8f0ff;
  color: #1255c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.why-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.why-item p {
  margin: 0;
  color: #687386;
}

/* ---------- Learner Section ---------- */

.learners {
  background: #eaf1ff;
  overflow: hidden;
}

.learners-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.learners-copy h2 {
  margin: 0;
  color: #0d4db3;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -2px;
}

.learners-copy h3 {
  margin: 10px 0 8px;
  font-size: 30px;
  line-height: 1.15;
}

.learners-copy p {
  margin: 0;
  color: #5d687b;
  font-size: 17px;
}

.learners-image {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.learners-image img {
  width: 100%;
}

/* ---------- FAQ ---------- */

.faq {
  background: #f7f9fc;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e4e9f1;
  border-radius: 12px;
  padding: 22px 24px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: #687386;
}

/* ---------- CTA ---------- */

.final-cta {
  background: linear-gradient(135deg, #1255c3, #0d3e91);
  color: #ffffff;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 12px;
  font-size: 40px;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 25px;
  color: #dbe8ff;
}

.final-cta .btn {
  background: #ffffff;
  color: #1255c3;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #101828;
  color: #ffffff;
  padding: 35px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
}

.footer-contact {
  color: #b8c1d1;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #d6dce7;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-grid,
  .why-grid,
  .learners-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .learners-copy h2 {
    font-size: 55px;
  }
}

@media (max-width: 600px) {
  .nav-container {
    padding: 15px 18px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }

  .container,
  .hero-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 55px 0;
  }

  .hero {
    padding: 55px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
  }

  .section-heading h2,
  .university-heading,
  .why-intro h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .learners-copy h2 {
    font-size: 48px;
  }
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 170px;
    height: auto;
    display: block;
}
/* ===== LOGO FIX ===== */

.site-header {
    height: 86px;
    padding: 0;
}

.nav-container {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    width: 190px;
    height: 70px;
    overflow: hidden;
    text-decoration: none;
}

.logo img {
    display: block;
    width: 180px !important;
    height: auto !important;
    max-width: 180px !important;
    max-height: 65px !important;
    object-fit: contain;
}

.logo span {
    display: none;
}
/* LOGO SIZE FIX */
.site-header .logo {
    display: flex;
    align-items: center;
    width: 190px;
    height: 70px;
    overflow: hidden;
}

.site-header .logo img {
    display: block;
    width: 180px !important;
    height: 65px !important;
    max-width: 180px !important;
    max-height: 65px !important;
    object-fit: contain;
}
