/* =============================================
   A Baker Academy – Main Stylesheet
   ============================================= */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #6924ff;
  --primary-hover: #5518e0;
  --bg: #f5eeec;
  --bg-dark: #ecd8d4;
  --white: #ffffff;
  --dark: #141322;
  --text: #2d2d2d;
  --text-muted: #777777;
  --border: #e5dbd8;
  --shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  --radius: 8px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo image */
.logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== DECORATIVE SHAPES ===== */
.deco-wrap {
  position: relative;
  overflow: hidden;
}
.deco-wrap .wrap,
.deco-wrap > section,
.deco-wrap > div.wrap {
  position: relative;
  z-index: 2;
}
.dshape {
  position: absolute;
  background: var(--white);
  pointer-events: none;
  z-index: 0;
}
.dshape-tr1 {
  top: -16px;
  right: -16px;
  width: 150px;
  height: 115px;
  border-radius: 0 0 0 54px;
}
.dshape-tr2 {
  top: 58px;
  right: 116px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
}
.dshape-bl1 {
  bottom: 28px;
  left: -16px;
  width: 110px;
  height: 95px;
  border-radius: 0 38px 38px 0;
}
.dshape-bl2 {
  bottom: 72px;
  left: 96px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
/* Right-side variants for inner pages */
.dshape-rm1 {
  top: 60px;
  right: -16px;
  width: 100px;
  height: 85px;
  border-radius: 0 0 0 40px;
}
.dshape-rm2 {
  top: 110px;
  right: 78px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.dshape-lm1 {
  bottom: 50px;
  left: -16px;
  width: 90px;
  height: 80px;
  border-radius: 0 30px 30px 0;
}
.dshape-lm2 {
  bottom: 90px;
  left: 68px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

/* ===== SECTION WRAPPER ===== */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.22s;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
}
.btn-dark:hover {
  background: #2b2a40;
}
.btn-dark.full {
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
}
.btn-block {
  display: block;
  width: 100%;
}

/* ===== HOME HERO ===== */
.hero-section {
  padding: 76px 0 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-section h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}
.hero-section p {
  max-width: 510px;
  margin: 0 auto 38px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ===== CAREER ROUTES ===== */
.routes-section {
  padding: 62px 0 72px;
}
.routes-tagline {
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 52px;
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.route-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
.route-card:hover {
  box-shadow: var(--shadow);
}
.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card-icon i {
  font-size: 34px;
  color: var(--primary);
}
.route-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}
.route-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--dark);
  padding: 80px 0;
}
.testimonials-section .section-heading {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  max-width: 400px;
  margin: 0 auto 52px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.t-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
}
.t-card.featured {
  background: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 14px 44px rgba(107, 78, 255, 0.45);
}
.t-stars {
  color: #f5a623;
  font-size: 15px;
  margin-bottom: 10px;
}
.t-card.featured .t-stars {
  color: #ffd700;
}
.t-text {
  font-size: 12px;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 14px;
}
.t-card.featured .t-text {
  color: rgba(255, 255, 255, 0.9);
}
.t-author {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
}
.t-card.featured .t-author {
  color: var(--white);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11.5px;
  color: var(--text-muted);
}
.social-row {
  display: flex;
  gap: 22px;
}
.social-row a {
  color: var(--text-muted);
  font-size: 18px;
  transition: color 0.2s;
}
.social-row a:hover {
  color: var(--primary);
}

/* ===== ABOUT PAGE ===== */
.about-top-section {
  padding: 60px 0;
}
.about-intro-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow);
}
.about-intro-card img,
.about-photo-placeholder {
  width: 100%;
  height: 195px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #d5cece;
  display: block;
}
.about-intro-card h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.about-intro-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.vm-section {
  padding: 8px 0 60px;
}
.vm-card {
  background: var(--white);
  border-radius: 12px;
  padding: 34px 40px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.vm-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.vm-card p,
.vm-card li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.85;
}
.vm-card ul {
  padding-left: 22px;
  margin-top: 6px;
}
.vm-card li {
  list-style: disc;
  margin-bottom: 12px;
}

.founder-section {
  background: var(--bg-dark);
  padding: 80px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 52px;
  align-items: start;
}
.founder-grid img,
.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  background: #c8baba;
  display: block;
}
.founder-text h2 {
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 22px;
}
.founder-text h2 span {
  font-weight: 700;
  color: var(--primary);
}
.founder-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.88;
  margin-bottom: 18px;
  text-align: justify;
}

/* ===== RESOURCES PAGE ===== */
.res-hero {
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.res-hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.res-hero p {
  max-width: 490px;
  margin: 0 auto 34px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.82;
}

.course-section {
  padding: 62px 0;
}
.course-section h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 36px;
}
.course-card {
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.course-banner {
  background: linear-gradient(130deg, #12103a 0%, #2e218a 55%, #6924ff 100%);
  padding: 32px 28px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 155px;
  gap: 16px;
  align-items: center;
  min-height: 190px;
}
.course-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.course-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
}
.course-banner h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 10px;
}
.course-author {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.course-banner-img,
.course-banner-placeholder {
  width: 155px;
  height: 155px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 44px;
}
.course-body {
  padding: 28px 32px;
  text-align: center;
}
.course-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.82;
  max-width: 440px;
  margin: 0 auto 26px;
}

.res-cta {
  padding: 46px 28px;
  text-align: center;
}
.res-cta p {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  max-width: 630px;
  margin: 0 auto;
  line-height: 1.5;
}

.res-cards-section {
  padding: 38px 0 72px;
}
.res-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.r-card {
  background: #ede5e3;
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
.r-card:hover {
  box-shadow: var(--shadow);
}
.r-card .card-icon i {
  font-size: 28px;
  color: var(--primary);
}
.r-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 4px;
}
.r-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}

/* ===== CONTACTS PAGE ===== */
.contacts-section {
  padding: 60px 0 72px;
  position: relative;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contacts-left h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-label .req {
  color: var(--primary);
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-input:focus {
  border-color: var(--primary);
}
.form-input::placeholder {
  color: #c5bfbf;
}
.phone-row {
  display: flex;
  gap: 8px;
}
.country-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  flex-shrink: 0;
}
.country-wrap .flag {
  font-size: 16px;
}
.country-wrap select {
  border: none;
  background: transparent;
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  color: var(--text);
}
.phone-row .form-input {
  flex: 1;
}

.contacts-right h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}
.contact-block {
  margin-bottom: 26px;
}
.contact-block h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-block p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== SERVICES PAGE ===== */
.services-hero {
  padding: 76px 0 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.services-hero h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 22px;
}
.services-hero p {
  max-width: 520px;
  margin: 0 auto 38px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.85;
}

.services-grid-section {
  padding: 60px 0 72px;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow);
}
.service-card .card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  align-items: center;
  display: flex;
}
.service-card .card-icon i {
  font-size: 32px;
  color: var(--primary);
}
.service-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 18px;
}

/* ===== INNER PAGE HERO HEADER (non-home) ===== */
.page-header {
  padding: 68px 0 52px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.page-header p {
  max-width: 500px;
  margin: 0 auto 34px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.82;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .routes-grid,
  .res-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .t-card.featured {
    transform: none;
  }
  .about-intro-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .course-banner {
    grid-template-columns: 1fr;
  }
  .services-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--border);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    padding: 12px 28px;
    display: block;
    border-bottom: 1px solid var(--border);
  }
  .hamburger {
    display: flex;
  }
  .navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .routes-grid,
  .res-cards-grid {
    grid-template-columns: 1fr;
  }
  .hero-section h1 {
    font-size: 26px;
  }
  .res-hero h1 {
    font-size: 26px;
  }
  .services-hero h1 {
    font-size: 26px;
  }
  .testimonials-section .section-heading {
    font-size: 22px;
  }
  .res-cta p {
    font-size: 18px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .dshape-tr1 {
    width: 100px;
    height: 80px;
  }
  .dshape-bl1 {
    width: 80px;
    height: 70px;
  }
}

/* =============================================
   HOME PAGE – ADDITIONAL SECTIONS
   ============================================= */

/* ===== HERO V2 (new home) ===== */
.hero-v2 {
  padding: 72px 0 68px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-tagline {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hero-v2 h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.28;
  max-width: 680px;
  margin: 0 auto 18px;
  color: var(--text);
}
.hero-v2 h1 span {
  color: var(--primary);
}
.hero-v2 .hero-sub {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.hero-v2 .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== HOW WE HELP ===== */
.how-section {
  background: var(--white);
  padding: 70px 0 76px;
}
.how-section .section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 620px;
  margin: 0 auto 12px;
}
.how-section .section-title strong {
  color: var(--primary);
}
.how-section .section-sub {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 14px;
}
.how-label {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 38px;
  margin-top: 6px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.how-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
.how-card:hover {
  box-shadow: var(--shadow);
}
.how-card .card-icon i {
  font-size: 32px;
  color: var(--primary);
}
.how-card .card-icon svg {
  width: 68px;
  height: 68px;
}
.how-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 12px 0 10px;
}
.how-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

/* ===== WHY STANDS OUT ===== */
.why-section {
  background: var(--bg);
  padding: 72px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
}
/* CSS Bar Chart */
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 160px;
  padding: 0 10px;
}
.bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--primary);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.bar:nth-child(1) {
  height: 40%;
  opacity: 0.4;
}
.bar:nth-child(2) {
  height: 58%;
  opacity: 0.55;
}
.bar:nth-child(3) {
  height: 72%;
  opacity: 0.65;
}
.bar:nth-child(4) {
  height: 88%;
  opacity: 0.8;
}
.bar:nth-child(5) {
  height: 100%;
  opacity: 1;
}
.why-text h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}
.why-text h2 span {
  color: var(--primary);
}
.why-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ===== ABOUT NIKE (home) ===== */
.home-about-section {
  background: var(--white);
  padding: 72px 0;
}
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: center;
}
.home-about-text h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.home-about-text h2 span {
  color: var(--primary);
}
.home-about-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.88;
  margin-bottom: 14px;
}
.home-about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

/* ===== CAREER ROUTE INCLUDES ===== */
.includes-section {
  background: var(--bg);
  padding: 72px 0;
}
.includes-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 36px;
}
.includes-section h2 span {
  color: var(--primary);
}
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.include-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.include-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}
.include-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.include-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--white);
  padding: 76px 0 80px;
}
.faq-section h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 50px;
  color: var(--text);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  cursor: pointer;
  gap: 16px;
}
.faq-q span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.faq-q i {
  font-size: 14px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q i {
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding: 0 4px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.85;
}
.faq-item.open .faq-a {
  display: block;
}

/* ===================================================
   ADD THIS TO THE BOTTOM OF YOUR styles.css
   =================================================== */

/*
  ============================================================
  PATCH — Find and REPLACE the entire "NAV DROPDOWN" block
  in your styles.css with this version.
  
  The key change: REMOVE the :hover CSS rule entirely.
  The dropdown is now controlled 100% by JS via main.js.
  ============================================================
*/

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dd-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}
.nav-dropdown.open .dd-arrow {
  transform: rotate(180deg);
}

/* IMPORTANT: NO :hover rule here — JS controls open/close */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  min-width: 180px;
  padding: 8px 0;
  z-index: 9999;
  border: 1px solid var(--border);
}
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}
.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background: #f0ebff;
  color: var(--primary);
}

/* Mobile */
@media (max-width: 640px) {
  .nav-dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--primary);
    border-radius: 0;
    padding: 0;
    background: #faf7ff;
    z-index: auto;
  }
  .dropdown-menu li a {
    padding: 11px 36px;
  }
  .nav-dropdown > a {
    justify-content: space-between;
    padding-right: 28px;
  }
}

/* ===== TRAINING PAGE ===== */
.training-hero {
  padding: 76px 0 64px;
  position: relative;
  z-index: 1;
}
.training-hero .tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.training-hero h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  max-width: 700px;
  margin: 0 auto 20px;
  text-align: center;
}
.training-hero h1 span {
  color: var(--primary);
}
.training-hero .lead {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.82;
  text-align: center;
}
.training-hero .lead strong {
  color: var(--text);
}
.training-hero .explore-label {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 32px;
}
.training-hero .explore-label span {
  color: var(--primary);
}

/* Training career cards */
.training-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 16px;
}
.training-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  transition: box-shadow 0.2s;
}
.training-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}
.training-card .tc-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
}
.training-card .tc-icon i {
  font-size: 34px;
  color: var(--primary);
}
.training-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.training-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .training-cards {
    grid-template-columns: 1fr;
  }
  .training-hero h1 {
    font-size: 26px;
  }
}

/* ===== CAREER SERVICES PAGE ===== */
.cs-hero {
  padding: 72px 0 58px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cs-hero h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
}
.cs-hero h1 span {
  color: var(--primary);
}
.cs-hero p {
  max-width: 540px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.82;
}

.cs-main-cards {
  padding: 60px 0;
  background: var(--white);
}
.cs-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cs-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  background: var(--bg);
  transition: box-shadow 0.2s;
}
.cs-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}
.cs-card .cs-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 16px;
}
.cs-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.cs-card > p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 16px;
}
.cs-card ul {
  padding-left: 18px;
  margin-top: 8px;
}
.cs-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
  list-style: disc;
}
.cs-card ul li strong {
  color: var(--text);
}

/* Other services grid */
.other-services {
  padding: 64px 0 80px;
  background: var(--bg);
}
.other-services h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.other-services .os-sub {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 42px;
}
.os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.os-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.os-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.os-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.os-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.os-item a {
  display: inline-block;
  padding: 9px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
  margin-top: 4px;
}
.os-item a:hover {
  background: var(--primary-hover);
}

@media (max-width: 900px) {
  .cs-cards-grid {
    grid-template-columns: 1fr;
  }
  .os-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .os-grid {
    grid-template-columns: 1fr;
  }
  .cs-hero h1 {
    font-size: 26px;
  }
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .bar-chart {
    height: 120px;
  }
  .home-about-grid {
    grid-template-columns: 1fr;
  }
  .home-about-img {
    max-height: 340px;
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 640px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
  .hero-v2 h1 {
    font-size: 26px;
  }
  .hero-v2 .btn-group {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .faq-q span {
    font-size: 13px;
  }
}
