/* ============================================================
   MUSKAN SMART DRIVE TRAINING — v6
   Logo colours used as accents only:
     Navy   #1B4F8A  — logo brand colour, used in highlights
     Orange #E8751A  — primary action colour
   Page theme: dark charcoal (#12181D) hero, cream sections
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #F7F4EE;
  color: #1C1C1E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.hidden { display: none !important; }

/* ---- Design tokens ---- */
:root {
  /* Brand from logo */
  --navy:        #1B4F8A;
  --navy-dim:    rgba(27,79,138,.1);
  --orange:      #E8751A;
  --orange-dark: #C05F10;
  --orange-dim:  rgba(232,117,26,.12);

  /* Page theme — same dark charcoal as previous version */
  --charcoal:    #12181D;
  --charcoal2:   #1C2530;
  --cream:       #F7F4EE;
  --stone:       #EDE8DF;
  --stone-dark:  #D9D3C8;
  --slate:       #5A6474;
  --white:       #FFFFFF;

  /* WhatsApp green */
  --wa-green:    #25D366;
  --wa-green-dk: #1BA94C;

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow:    0 1px 3px rgba(28,28,30,.07), 0 4px 16px rgba(28,28,30,.05);
  --shadow-lg: 0 4px 12px rgba(28,28,30,.12), 0 12px 32px rgba(28,28,30,.08);
  --max-w:     1060px;
  --nav-h:     76px;
}

.d-container { max-width: var(--max-w); margin: 0 auto; padding: 0 22px; }
.d-section       { padding: 76px 0; background: var(--cream); }
.d-section--alt  { padding: 76px 0; background: var(--stone); }
.d-section--dark { padding: 76px 0; background: var(--charcoal); }
/* Instructor section — dark but slightly lighter than pure charcoal */
.d-section--instructor { padding: 76px 0; background: var(--charcoal2); }

/* ============================================================
   NAV
   ============================================================ */
.d-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(18,24,29,.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.d-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.d-nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 22px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 24px;
}

/* ---- LOGO FIX ----
   The PNG has an off-white background — we contain it in a
   clean white pill so it reads clearly on the dark nav.
   No blend-mode hacks. Simple, honest, looks great.           */
.d-logo { display: flex; align-items: center; flex-shrink: 0; }
.d-logo-wrap {
  display: flex; align-items: center;
}
.d-logo-wrap img {
  height: 68px;
  width: auto;
  display: block;
}

.d-nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.d-nav-links li { list-style: none; }
.d-nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.55);
  padding: 7px 11px; border-radius: 6px;
  transition: color .2s, background .2s;
  display: block;
}
.d-nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }

.d-nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; flex-shrink: 0; }
.d-call-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 9px 16px; border-radius: 7px;
  transition: background .2s, transform .15s;
}
.d-call-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

.d-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.d-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.d-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.d-hamburger.open span:nth-child(2) { opacity: 0; }
.d-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO — dark charcoal, same as previous version
   ============================================================ */
.d-hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h)) 0 0;
  position: relative; overflow: hidden;
}
/* Subtle grid */
.d-hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(232,117,26,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,117,26,.03) 1px, transparent 1px);
  background-size: 44px 44px;
}
/* Glow blobs */
.d-hero::before {
  content: ''; position: absolute; top: -15%; right: -5%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(232,117,26,.1) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.d-hero::after {
  content: ''; position: absolute; bottom: 5%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,79,138,.12) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.d-hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 56px 22px 44px;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: center;
  position: relative; z-index: 1; flex: 1;
}
.d-hero-content { display: flex; flex-direction: column; }

.d-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 18px;
}
.d-hero-content h1 {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5.5vw, 70px);
  line-height: .95; letter-spacing: -.03em;
  color: #fff; margin-bottom: 18px;
}
.d-hero-content h1 em { font-style: normal; color: var(--orange); }
.d-hero-sub {
  font-size: 16px; color: rgba(255,255,255,.48);
  max-width: 440px; line-height: 1.72; margin-bottom: 28px;
}

/* Trust stats bar */
.d-hero-trust {
  display: flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 16px 20px; margin-bottom: 30px; max-width: 340px;
}
.d-trust-item  { display: flex; flex-direction: column; align-items: center; flex: 1; }
.d-trust-num   { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 22px; color: var(--orange); letter-spacing: -.02em; }
.d-trust-label { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 2px; text-align: center; }
.d-trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,.09); flex-shrink: 0; }

/* Buttons */
.d-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.d-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  font-weight: 700; font-size: 14px;
  padding: 13px 24px; border-radius: var(--radius);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.d-btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,117,26,.4); }

/* WhatsApp button — always green, never orange */
.d-btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa-green); color: #fff;
  font-weight: 700; font-size: 14px;
  padding: 13px 24px; border-radius: var(--radius);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.d-btn-wa:hover { background: var(--wa-green-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

/* Hero course preview */
.d-course-preview { display: flex; flex-direction: column; gap: 12px; }
.d-preview-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg); padding: 18px; position: relative;
}
.d-preview-card--main { background: rgba(232,117,26,.08); border-color: rgba(232,117,26,.25); }
.d-preview-card--sm   { padding: 13px 14px; }
.d-preview-mini       { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.d-preview-badge {
  position: absolute; top: -10px; left: 14px;
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
}
.d-preview-emoji  { font-size: 22px; margin-bottom: 7px; }
.d-preview-name   { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 14px; color: #fff; }
.d-preview-price  { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 20px; color: var(--orange); letter-spacing: -.02em; }
.d-preview-note   { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 3px; }

.d-preview-instructor-link { display: block; }
.d-preview-instructor {
  display: flex; align-items: center; gap: 12px;
  background: rgba(27,79,138,.2);
  border: 1px solid rgba(27,79,138,.35);
  border-radius: var(--radius); padding: 12px 14px;
  transition: background .2s;
}
.d-preview-instructor-link:hover .d-preview-instructor { background: rgba(27,79,138,.35); }
.d-inst-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #0d3060);
  color: #fff; font-family: 'Inter Tight', sans-serif;
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 2px solid rgba(232,117,26,.4);
}
.d-inst-name { font-size: 13px; font-weight: 700; color: #fff; }
.d-inst-role { font-size: 11px; color: rgba(255,255,255,.4); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.d-section-head { max-width: 560px; margin: 0 auto 48px; text-align: center; }
.d-section-head--light { color: #fff; }
.d-eyebrow-sm {
  font-size: 11px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.d-eyebrow-sm--light { color: rgba(232,117,26,.75); }
.d-section-head h2 {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: clamp(28px, 4vw, 42px); letter-spacing: -.03em;
  color: #1C1C1E; line-height: 1.05;
}
.d-h2--light { color: #fff !important; }
.d-section-sub { font-size: 14px; color: var(--slate); margin-top: 10px; line-height: 1.7; }
.d-sub--light  { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 8px; }

/* ============================================================
   COURSES
   ============================================================ */
.d-courses { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.d-course {
  background: var(--white); border: 1px solid var(--stone-dark);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow); position: relative;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.d-course:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,117,26,.3); }
.d-course--featured { background: #FEF6EE; border-color: rgba(232,117,26,.25); }
.d-course--featured:hover { border-color: rgba(232,117,26,.5); }
.d-course-badge {
  position: absolute; top: -11px; left: 22px;
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; padding: 3px 12px; border-radius: 20px;
}
.d-course-header { display: flex; align-items: flex-start; gap: 12px; }
.d-course-emoji  { font-size: 26px; flex-shrink: 0; padding-top: 2px; }
.d-course-header h3 {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 18px; color: #1C1C1E; letter-spacing: -.02em;
}
.d-course-type  { font-size: 12px; color: var(--slate); margin-top: 2px; }
.d-course-price {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 36px; color: var(--charcoal); letter-spacing: -.04em;
}
.d-course--featured .d-course-price { color: var(--orange); }
.d-course-price-note {
  font-size: 13px; color: var(--slate); margin-top: -8px; font-weight: 400;
}

/* Own-car pricing tiers */
.d-own-car-tiers {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--stone); border-radius: var(--radius);
  padding: 12px 14px;
}
.d-own-car-tiers p { font-size: 12px; font-weight: 700; color: var(--slate); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .07em; }
.d-tier-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #1C1C1E;
  padding: 4px 0; border-bottom: 1px solid var(--stone-dark);
}
.d-tier-row:last-child { border-bottom: none; }
.d-tier-area { font-weight: 500; }
.d-tier-price { font-weight: 700; color: var(--orange); font-family: 'Inter Tight', sans-serif; font-size: 14px; }

.d-course-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.d-course-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--slate); }
.d-course-features li span { color: var(--orange); font-weight: 800; flex-shrink: 0; }

/* Enrol buttons — always WA green */
.d-btn-enrol {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wa-green); color: #fff;
  font-weight: 700; font-size: 14px; padding: 13px;
  border-radius: var(--radius); margin-top: 4px;
  transition: background .2s, transform .15s;
}
.d-btn-enrol:hover { background: var(--wa-green-dk); transform: translateY(-1px); }
.d-btn-enrol-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; border: 1.5px solid var(--stone-dark);
  color: var(--slate); font-weight: 600; font-size: 14px;
  padding: 13px; border-radius: var(--radius);
  transition: all .2s; margin-top: 4px;
}
.d-btn-enrol-outline:hover { border-color: var(--wa-green); color: var(--wa-green); background: rgba(37,211,102,.06); }

/* ============================================================
   INSTRUCTOR — RAJKUMAR  (full standalone prominent section)
   ============================================================ */
.d-instructor-wrap {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 52px; align-items: start;
}
.d-instructor-identity {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center;
}
/* Large avatar ring — uses navy (logo brand colour) as ring accent */
.d-instructor-avatar {
  width: 116px; height: 116px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.06));
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 8px rgba(232,117,26,.12), 0 16px 40px rgba(0,0,0,.35);
  color: #fff; font-family: 'Inter Tight', sans-serif;
  font-weight: 800; font-size: 36px; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
}
.d-instructor-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px;
}
.d-instructor-name {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 34px; letter-spacing: -.03em; color: #fff; line-height: 1;
}
.d-instructor-title { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; margin-top: 4px; }

.d-instructor-details { display: flex; flex-direction: column; gap: 22px; }
.d-instructor-quote {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,.68); font-style: italic;
  border-left: 3px solid var(--orange); padding-left: 20px;
}

/* Stats — 3 items now (98% removed) */
.d-instructor-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}
.d-istat {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 8px; gap: 4px; background: rgba(255,255,255,.03);
}
.d-istat-num {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 26px; color: var(--orange); letter-spacing: -.02em; line-height: 1;
}
.d-istat-label { font-size: 11px; color: rgba(255,255,255,.38); text-align: center; line-height: 1.3; }

.d-instructor-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.d-tag {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.6); font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 20px;
}

/* Instructor WA CTA — green */
.d-instructor-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa-green); color: #fff;
  font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: var(--radius-lg);
  width: fit-content;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.d-instructor-wa:hover {
  background: var(--wa-green-dk); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
}

/* ============================================================
   WHY US
   ============================================================ */
.d-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.d-why-item { display: flex; flex-direction: column; gap: 10px; }
.d-why-icon {
  width: 52px; height: 52px; background: rgba(232,117,26,.1);
  border-radius: var(--radius); border: 1px solid rgba(232,117,26,.2);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.d-why-item h4 { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 16px; color: #1C1C1E; letter-spacing: -.01em; }
.d-why-item p  { font-size: 13.5px; color: var(--slate); line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.d-faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; }
.d-faq-item { border-bottom: 1px solid var(--stone-dark); }
.d-faq-q {
  width: 100%; text-align: left; padding: 17px 0;
  font-size: 14px; font-weight: 600; color: #1C1C1E;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color .2s;
}
.d-faq-q:hover { color: var(--orange); }
.d-faq-q span  { font-size: 20px; font-weight: 300; color: var(--orange); flex-shrink: 0; }
.d-faq-a { padding: 0 0 17px; font-size: 13.5px; color: var(--slate); line-height: 1.72; }

/* ============================================================
   ENROL / CONTACT
   ============================================================ */
.d-enrol-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 560px; margin: 0 auto 18px; }
.d-enrol-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; border-radius: var(--radius-lg);
  text-decoration: none; transition: transform .22s;
}
.d-enrol-card:hover { transform: translateY(-3px); }
.d-enrol-wa   { background: rgba(37,211,102,.08); border: 1.5px solid rgba(37,211,102,.28); color: #4ADE80; }
.d-enrol-call { background: var(--orange-dim); border: 1.5px solid rgba(232,117,26,.3); color: var(--orange); }
.d-enrol-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.d-enrol-sub   { font-size: 12px; opacity: .6; }
.d-batches-note { text-align: center; font-size: 13px; color: rgba(255,255,255,.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.d-footer { background: var(--charcoal); padding: 44px 0 28px; }
.d-footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 20px; flex-wrap: wrap;
}
/* Footer logo — same white pill treatment as nav */
.d-footer-brand-block { display: flex; align-items: center; gap: 14px; }
.d-footer-logo-wrap {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.d-footer-logo-wrap img { height: 68px; width: auto; display: block; }
.d-footer-brand { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 4px; }
.d-footer-sub   { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.7; }
.d-footer-links { display: flex; flex-direction: column; gap: 7px; text-align: right; }
.d-footer-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
.d-footer-links a:hover { color: #fff; }
.d-footer-admin { color: rgba(255,255,255,.2) !important; font-size: 11px !important; margin-top: 6px; }
.d-footer-copy  { font-size: 12px; color: rgba(255,255,255,.22); }

/* ============================================================
   FLOATING WA
   ============================================================ */
.d-wa-fab {
  position: fixed; bottom: 22px; right: 22px; width: 54px; height: 54px;
  background: var(--wa-green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.d-wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(16px); }
.fade-in.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 800px) {
  .d-hamburger { display: flex; }
  .d-nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--charcoal);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; transform: translateX(100%);
    transition: transform .35s ease; z-index: 999;
  }
  .d-nav-links.open { transform: translateX(0); }
  .d-nav-links li   { width: 100%; text-align: center; }
  .d-nav-links a    { font-size: 20px; padding: 14px; color: rgba(255,255,255,.75); }

  .d-hero-inner   { grid-template-columns: 1fr; padding: 40px 20px 32px; gap: 28px; }
  .d-hero-visual  { display: none; }
  .d-hero-content h1 { font-size: 44px; }
  .d-hero-ctas    { flex-direction: column; }
  .d-btn-primary, .d-btn-wa { width: 100%; justify-content: center; }
  .d-hero-trust   { max-width: 100%; }

  .d-instructor-wrap { grid-template-columns: 1fr; gap: 32px; }
  .d-instructor-identity { flex-direction: row; text-align: left; align-items: flex-start; }
  .d-instructor-stats    { grid-template-columns: repeat(3, 1fr); }
  .d-instructor-wa       { width: 100%; justify-content: center; }

  .d-courses      { grid-template-columns: 1fr; }
  .d-why-grid     { grid-template-columns: 1fr; }
  .d-enrol-options { grid-template-columns: 1fr; }

  .d-footer-inner { flex-direction: column; }
  .d-footer-links { text-align: left; }
  .d-footer-brand-block { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 480px) {
  .d-instructor-identity  { flex-direction: column; align-items: center; text-align: center; }
  .d-instructor-tags      { justify-content: center; }
}
