/* ============================================================
   Ask U Training - Stylesheet
   Clean, professional, fully responsive (Flexbox + Grid)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; color: #1a2030; line-height: 1.6; background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Theme: dark navy · medium blue · light blue · teal green · dark pink */
  --navy:       #0d2540;   /* dark navy blue   - headings, footer, dark anchor  */
  --blue:       #1e7fc4;   /* medium blue      - primary buttons, links         */
  --sky:        #4ab8e8;   /* light blue       - icons, secondary accents       */
  --green:      #1a9b74;   /* teal green       - benefit icons, positive marks  */
  --green-dark: #157a5c;   /* deeper teal      - green hover                    */
  --amber:      #be2267;   /* dark pink        - CTAs, border accents           */
  --amber-dark: #9e1c56;   /* deeper pink      - hover state                    */
  --light:      #f4f7fa;   /* clean light grey background                       */
  --mid:        #e6ecf2;   /* mid grey dividers                                  */
  --white:      #ffffff;
  --text:       #1a2030;   /* near-black text                                   */
  --muted:      #5a6270;   /* dark grey muted text                              */
  --border:     #e2d0db;   /* light rose-pink  - gives pink cast to borders     */
  --shadow-sm:  0 2px 8px rgba(13,37,64,.07);
  --shadow-md:  0 6px 24px rgba(13,37,64,.12);
  --shadow-lg:  0 12px 48px rgba(13,37,64,.16);
  --radius:     12px;
  --radius-sm:  8px;
  --trans:      .3s ease;
  --max-w:      1200px;
  --nav-h:      96px;
}

/* ── Container ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Section spacing ──────────────────────────────────────── */
.section { padding: 96px 0; scroll-margin-top: var(--nav-h); }
/* Space for hero overlap logo circle */

/* ── Placeholder image blocks ─────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #dde6f0, #c8d6e5);
  border: 2px dashed #a4b8cc;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #6b7280;
  font-size: .72rem; font-style: italic; line-height: 1.4;
  padding: 8px;
}
.logo-placeholder       { width: 160px; height: 62px; }
.logo-img-placeholder   { width: 48px;  height: 48px; border-radius: 8px; flex-shrink: 0; }
.accred-placeholder     { width: 130px; height: 90px; }
.footer-logo-placeholder{ width: 150px; height: 54px; margin-bottom: 16px; }
.small-placeholder      { width: 80px;  height: 52px; }

/* ── Image replacement - keeps layout intact when images are added ── */
/* These rules fire when you swap a placeholder <div> for a real <img> */
.nav-logo img            { width: auto; height: 155px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.hero-accred-logo img    { width: 100%; height: 100%; object-fit: contain; }
.hero-accred-items > img { width: auto; max-width: 220px; height: 110px; object-fit: contain; flex-shrink: 0; }
.footer-logos            { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; width: 100px; height: 66px; padding: 10px 14px; border-radius: 0 28% 0 28%; background: radial-gradient(ellipse at center, #ffffff 20%, #9aa5b4 100%); box-shadow: 0 4px 20px rgba(0,0,0,.22); overflow: visible; }
.footer-logos img        { height: auto; width: 120px; max-width: none; object-fit: contain; }
.footer-brand > img      { max-width: 160px; height: 54px; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-accred-logos img { max-width: 100px; height: 60px; object-fit: contain; background: #fff; border-radius: 8px; padding: 6px 8px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; border: 2px solid transparent;
  transition: all var(--trans); white-space: nowrap; line-height: 1;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary  { background: var(--blue);  color: #fff; border-color: var(--blue);  }
.btn-primary:hover  { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,127,196,.35); }
.btn-secondary{ background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-secondary:hover{ background: rgba(255,255,255,.15); border-color: #fff; }
.btn-outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover  { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-nav      { background: var(--amber); color: #fff; border-color: var(--amber); padding: 10px 20px; font-size: 1rem; }
.btn-nav:hover{ background: var(--amber-dark); border-color: var(--amber-dark); }
.btn-white    { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover{ background: transparent; color: #fff; }
.btn-amber    { background: var(--amber); color: #fff; border-color: var(--amber); }
.btn-amber:hover{ background: var(--amber-dark); border-color: var(--amber-dark); }

/* ── Section tag (label chip) ─────────────────────────────── */
.section-tag {
  display: table; margin-left: auto; margin-right: auto; margin-bottom: 12px;
  background: rgba(30,127,196,.12); color: #0d5a8e;
  border: 1.5px solid #1e7fc4;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px;
}
.section-tag.light { background: rgba(255,255,255,.2); color: #fff; }

/* ── Section header block ─────────────────────────────────── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-header p  { color: var(--muted); font-size: 1.05rem; }

/* ── Chevron SVG ──────────────────────────────────────────── */
.chevron { width: 15px; height: 15px; flex-shrink: 0; transition: transform var(--trans); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
/* Skip to content link — visible only on focus */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--blue); color: #fff;
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: 0.95rem; z-index: 9999;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  overflow: visible;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header.nav-hidden { transform: translateY(-100%); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; position: relative;
  max-width: 100%; padding: 0 32px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0; text-decoration: none;
  padding: 4px 12px 4px 0;
  margin-left: -34px;
}
.nav-logo-img {
  height: 104px; width: auto; max-width: 360px;
  object-fit: contain; display: block;
}
@media (max-width: 1100px) {
  .nav-logo-img { height: 100px; max-width: 320px; }
  .nav-logo { margin-left: -8px; }
}
@media (max-width: 480px) {
  .nav-logo-img { height: 66px; max-width: 220px; }
}

/* Nav menu */
.nav-menu {
  display: flex; align-items: center; gap: 2px;
}
.nav-item { position: relative; }

.nav-link,
.dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; color: var(--text);
  font-weight: 500; font-size: 1rem;
  border-radius: 6px; border: none; background: none;
  transition: color var(--trans);
  white-space: nowrap;
  position: relative;
}

/* Sliding underline on hover (desktop only) */
.nav-link::after,
.dropdown-toggle::after {
  content: ''; position: absolute; bottom: 4px; left: 14px;
  right: 14px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.nav-link:hover::after,
.dropdown-toggle:hover::after { transform: scaleX(1); }

/* Split nav (Link + Toggle button + Dropdown) */
.nav-item-split {
  display: flex; align-items: center; flex-wrap: wrap;
}
/* On mobile the dropdown goes position:static so it must fill its own row */
.nav-item-split > .dropdown { flex-basis: 100%; width: 100%; }
.nav-toggle-btn { background: none; border: none; padding: 10px; cursor: pointer; color: var(--text); display: none; }
.nav-courses-label { cursor: default; }
.nav-courses-label:hover { color: var(--text) !important; }
.nav-courses-label::after { display: none; }

.nav-link:hover,
.dropdown-toggle:hover { color: var(--blue); }

/* Open chevron on hover (desktop only) */
@media (min-width: 901px) {
  .has-dropdown:hover > .dropdown-toggle .chevron,
  .has-dropdown:hover > .nav-toggle-btn .chevron { transform: rotate(180deg); }
}

/* Dropdown - desktop hover */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 290px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--trans), visibility var(--trans), transform var(--trans);
  z-index: 200; overflow: hidden;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* Nested Dropdown - expands downward on click (desktop & mobile) */
.dropdown-submenu {
  position: static;
  opacity: 1; visibility: visible; transform: none;
  box-shadow: none; border: none; border-radius: 0;
  min-width: 0; background: rgba(13,37,64,.04);
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.has-submenu { position: relative; }
.has-submenu > a { display: flex; justify-content: space-between; align-items: center; }
.has-submenu > a .chevron { width: 12px; height: 12px; transition: transform var(--trans); }
/* Open state - expand down, left accent border, rotate arrow */
.has-submenu.open > .dropdown-submenu { max-height: 400px; border-left: 3px solid var(--blue); }
.has-submenu.open > a .chevron { transform: rotate(180deg); }
.dropdown li a {
  display: block; padding: 12px 20px;
  font-size: 1rem; color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--trans), color var(--trans), padding-left var(--trans);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light); color: var(--blue); padding-left: 26px; }
/* Indent course links inside a submenu - must come AFTER .dropdown li a to override padding shorthand */
.dropdown-submenu li a { padding-left: 32px; }

/* ── Mega Menu - full-width desktop dropdown ─────────────── */
@media (min-width: 901px) {
  /* Escape the <li> so dropdown can span full nav width */
  #qualDropdown { position: static; }
  #qualDropdown > .mega-menu {
    position: absolute; top: 100%; left: 0; width: 100%;
    min-width: unset;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-radius: 0 0 12px 12px;
    border-top: 3px solid var(--blue);
    padding: 0; gap: 0;
  }
  .mega-col {
    padding: 20px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  /* Remove right border on every 4th column, remove bottom border on last row */
  .mega-col:nth-child(4n) { border-right: none; }
  .mega-col:nth-last-child(-n+4) { border-bottom: none; }
  /* Hide the + indicator for headers with no sub-courses */
  .mega-col:not(:has(.mega-course-list)) .mega-col-header::after { content: none; }
  .mega-col-header {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .7px;
    color: var(--navy) !important; background: transparent !important;
    padding: 0 0 10px !important; margin-bottom: 10px;
    border-bottom: 2px solid var(--blue) !important; border-right: none;
    cursor: pointer;
  }
  .mega-col-expand { display: none; } /* expand button hidden on desktop - hover reveals sub-list */
  .mega-col-header:hover { color: var(--blue) !important; padding-left: 0 !important; background: transparent !important; }
  .mega-course-list {
    list-style: none;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  /* Reveal on hover - no click needed on desktop */
  .mega-col:hover > .mega-course-list { max-height: 500px; }
  .mega-course-list li a {
    display: block; padding: 7px 0 !important;
    font-size: 1rem !important; line-height: 1.4;
    color: var(--muted) !important; border-bottom: none !important; background: transparent !important;
  }
  .mega-course-list li a:hover { color: var(--blue) !important; padding-left: 6px !important; background: transparent !important; }
  /* Scrollable list for long columns (e.g. Diploma Training) */
  .mega-col-diploma:hover > .mega-course-list {
    max-height: 186px; /* ~6 items */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) var(--light);
  }
  .mega-col-diploma:hover > .mega-course-list::-webkit-scrollbar { width: 4px; }
  .mega-col-diploma:hover > .mega-course-list::-webkit-scrollbar-track { background: var(--light); border-radius: 4px; }
  .mega-col-diploma:hover > .mega-course-list::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
}

/* Mobile: mega menu stacks vertically - each category is a collapsible accordion */
@media (max-width: 900px) {
  .mega-menu { display: block !important; }
  .mega-col { display: block; border-right: none; }
  .mega-col-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 24px !important;
    font-size: .75rem !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: .5px;
    color: var(--blue) !important; background: rgba(30,127,196,.06) !important;
    border-bottom: 1px solid var(--border) !important; border-left: 3px solid var(--blue);
  }
  /* Expand span - shows on mobile as the accordion toggle */
  .mega-col-expand {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 400; line-height: 1;
    color: var(--blue); flex-shrink: 0; margin-left: auto; padding-left: 12px;
    transition: transform 0.2s ease; pointer-events: all;
  }
  .mega-col.open > .mega-col-header > .mega-col-expand { transform: rotate(45deg); }
  .mega-col-header:hover { padding-left: 24px !important; }
  .mega-course-list {
    list-style: none;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .mega-col.open > .mega-course-list { max-height: 500px; }
  .mega-course-list li a {
    padding: 10px 24px 10px 36px !important; font-size: 1rem !important;
    border-bottom: 1px solid var(--border) !important;
    color: var(--text) !important; background: transparent !important;
  }
  .mega-course-list li a:hover { padding-left: 40px !important; }
  /* Scrollable list for long columns on mobile */
  .mega-col-diploma.open > .mega-course-list {
    max-height: 240px; /* ~6 items */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) rgba(0,0,0,0.05);
  }
}

/* Nav CTA item */
.nav-cta-item { margin-left: 8px; }

/* Burger button - hidden on desktop */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 9px;
  border-radius: 6px; transition: background var(--trans);
  z-index: 1100;
}
.burger:hover { background: var(--light); }
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.45); z-index: 999;
}
.nav-overlay.open { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 110vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
}

/* Slideshow layer */
.hero-slideshow { position: absolute; inset: 0; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }

/* When you add a real <img> or <picture> inside a slide it fills automatically */
.slide picture {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
}
.slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
@media (min-width: 1025px) {
  .slide img { transform: scale(1.22); }
  .hero { align-items: flex-start; }
  .hero-content { padding-top: calc(var(--nav-h) + 80px); }
}
/* Fallback gradient backgrounds shown until real images are added */
.slide-bg-fallback {
  position: absolute; inset: 0;
}
.slide-1-bg { background: linear-gradient(135deg, #061828 0%, #0d2540 45%, #1e5a8a 80%, #4ab8e8 100%); }


/* Dark overlay for readability */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,24,40,.55) 0%, rgba(6,24,40,.3) 60%, rgba(6,24,40,.1) 100%);
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  padding-top: 12px; padding-bottom: 32px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  margin-top: 40px;
  background: rgba(190,34,103,.9); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 4px; margin-bottom: 22px;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.6rem); color: #fff;
  font-weight: 800; line-height: 1.12; max-width: 100%;
  text-shadow: 0 2px 12px rgba(0,0,0,.6), 0 1px 4px rgba(0, 0, 0, 0.368);
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}
.hero-title-group {
  display: block;
  width: 100%;
  margin-bottom: 28px;
}
.hero-title-group h1 { margin-bottom: 12px; }
/* Hero badge — index: left of h1 / inner pages: top center */
.hero-title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 16px;
}
.hero-title-row h1 { margin-bottom: 0; }
/* Inner page hero: badge sits in flow, centered */
.course-hero-content .hero-logo-badge {
  margin: 8px auto 12px;
  width: 180px;
  height: 116px;
}
/* Inner page hero: pill centered below badge, above h1 — desktop, tablet & mobile */
.course-hero-content .course-level-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.hero-logo-badge {
  width: 260px;
  height: 170px;
  border-radius: 0 28% 0 28%;
  background: radial-gradient(ellipse at center, #ffffff 20%, #9aa5b4 100%);
  border: none;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-logo-badge img {
  width: 400px; height: auto; display: block; flex-shrink: 0;
}
@media (max-width: 900px) {
  .hero-logo-badge { width: 200px; height: 130px; }
  .hero-logo-badge img { width: 300px; }
  .hero-title-row { gap: 20px; }
}
@media (max-width: 560px) {
  .hero-title-row { flex-direction: column; align-items: center; gap: 18px; }
  .hero-logo-badge { width: 180px; height: 118px; }
  .hero-logo-badge img { width: 260px; }
}
.hero-text {
  color: #ffffff;
  font-size: 20px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.663), 0 1px 3px rgba(0, 0, 0, 0.734);
  transition: opacity 0.4s ease;
}

.hero-content > .hero-sub {
  color: rgba(255,255,255,.85); font-size: clamp(.95rem, 2vw, 1.18rem);
  max-width: 580px; margin-bottom: 38px; line-height: 1.75;
}
/* ── Hero Course Search ───────────────────────────────────── */
.hero-search { position: relative; width: 100%; max-width: 520px; margin-bottom: 12px; }
.hero-search-box {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.97); border-radius: 12px;
  padding: 0 18px;
  border-radius: 50px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.25);
}
.hero-search-box .search-icon { width: 18px; height: 18px; color: #5a6270; flex-shrink: 0; }
.hero-search-input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 18px 0; font-size: 1rem; color: #1a2030; font-family: inherit;
}
.hero-search-input::placeholder { color: #8a94a0; }
.hero-search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  list-style: none; overflow: hidden; z-index: 200;
}
.hero-search-results[hidden] { display: none; }
.hero-search-results li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px; color: #1a2030; gap: 14px;
  transition: background 0.18s ease;
  border-bottom: 1px solid #f0f0f0;
}
.hero-search-results li:last-child a { border-bottom: none; }
.hero-book-btn { margin-top: 18px; margin-bottom: 28px; }
.hero-search-results li a:hover { background: #f4f7fa; }
.result-name { font-size: 0.9rem; font-weight: 500; }
.result-cat {
  font-size: 0.75rem; color: #1e7fc4; white-space: nowrap; flex-shrink: 0;
  background: rgba(30,127,196,0.1); padding: 3px 9px; border-radius: 20px;
}
.search-no-results { padding: 14px 18px; color: #5a6270; font-size: 0.9rem; }

/* Slide indicators */
.hero-indicators { display: flex; gap: 8px; margin-bottom: 0; }
.indicator {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.38); border: none; padding: 0;
  cursor: pointer; transition: all var(--trans);
}
.indicator.active { background: #fff; width: 28px; border-radius: 5px; }
.indicator:hover:not(.active) { background: rgba(255,255,255,.65); }

/* ── Hero accreditation trust strip ──────────────────────── */
.hero-accred {
  position: absolute; bottom: 80px; right: 40px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  justify-content: flex-end;
}
.hero-accred-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.45); white-space: nowrap;
}
.hero-accred-items {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.hero-accred-logo {
  height: 110px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  padding: 3px 6px;
}
@media (max-width: 768px) {
  .hero-accred { bottom: 16px; right: 16px; gap: 10px; }
  .hero-accred-logo { height: 60px; max-width: 160px; }
  .hero-accred-items img[alt="AoHT Member"] { height: 90px; width: 90px; }
}

/* ============================================================
   ACCREDITATIONS (positioned after hero / partnership banner)
   ============================================================ */
.accreditations { background: #fff; }
.accred-grid {
  display: flex; gap: 32px; justify-content: center; align-items: flex-start;
  flex-wrap: wrap;
}
.accred-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center; max-width: 150px;
}
.accred-item p     { font-size: .8rem; color: var(--text); font-weight: 600; line-height: 1.4; }
.accred-item small { font-size: .72rem; color: var(--muted); }


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--light); position: relative; overflow: hidden; }

/* Geometric background shapes */
.about::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 42px solid rgba(30,127,196,.07);
  pointer-events: none;
  z-index: 0;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 32px solid rgba(233,30,140,.06);
  pointer-events: none;
  z-index: 0;
}
.about-grid {
  display: flex; gap: 40px; align-items: flex-start;
  position: relative; z-index: 1;
}
.about-content {
  flex: 1 1 400px;
  padding-left: 24px;
  border-left: 4px solid var(--blue);
}
.about-content h2 { font-size: clamp(1.75rem, 3vw, 2.3rem); color: var(--navy); line-height: 1.22; margin-bottom: 20px; }
.about-content p  { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.about-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.about-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 28px; padding-top: 24px;
}
.about-stat-pill {
  flex: 1; display: flex; flex-direction: column;
  padding-right: 20px;
}
.about-stat-pill + .about-stat-pill {
  padding-left: 20px; border-left: 1px solid var(--border);
}
.about-stat-pill:last-child { padding-right: 0; }
.about-stat-pill strong { font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.about-stat-pill span   { font-size: .73rem; color: var(--muted); font-weight: 500; margin-top: 3px; }

.about-features {
  flex: 1 1 380px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  align-self: flex-start;
  margin-top: 60px;
}
.feature-card {
  background: #fff; padding: 24px 20px;
  border-radius: var(--radius);
  border-top: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card--blue { border-top-color: #1e7fc4; }
.feature-card--teal { border-top-color: #1a9b74; }
.feature-card--navy { border-top-color: #0d2540; }
.feature-card--pink { border-top-color: #e91e8c; }
.feature-card--blue .feature-icon { background: rgba(30,127,196,.1); }
.feature-card--teal .feature-icon { background: rgba(26,155,116,.1); }
.feature-card--navy .feature-icon { background: rgba(13,37,64,.08); }
.feature-card--pink .feature-icon { background: rgba(233,30,140,.1); }
.feature-card--blue .feature-icon svg { stroke: #1e7fc4; }
.feature-card--teal .feature-icon svg { stroke: #1a9b74; }
.feature-card--navy .feature-icon svg { stroke: #0d2540; }
.feature-card--pink .feature-icon svg { fill: #e91e8c; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: .93rem; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.feature-card p  { font-size: 1rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   COURSES PAGE
   ============================================================ */
.courses-hero-bg {
  background: linear-gradient(135deg, #061828 0%, #0d2540 40%, #1e7fc4 80%, #4ab8e8 100%);
}

.catalogue-section {
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.catalogue-section .container {
  position: relative;
  z-index: 1;
}
.cat-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.page-circles-wrap {
  position: relative;
  overflow: hidden;
}
.page-circles-wrap > .container,
.page-circles-wrap > section > .container {
  position: relative;
  z-index: 1;
}
.cat-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 28px solid;
  display: block;
}
@media (max-width: 640px) {
  .cat-deco { display: none; }
}

.cat-intro {
  font-size: 1rem; color: var(--muted); line-height: 1.75;
  margin-bottom: 24px; max-width: 860px;
  text-align: center; margin-left: auto; margin-right: auto;
}
.cat-intro a { color: var(--blue); font-weight: 600; text-decoration: none; }
.cat-intro a:hover { color: var(--navy); }
.cat-page-footer {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cat-page-footer > p {
  font-size: 1rem; color: var(--muted); margin-bottom: 14px;
}
.cat-page-footer > p a { color: var(--blue); font-weight: 600; text-decoration: none; }
.cat-page-footer > p a:hover { color: var(--navy); }
.cat-page-footer-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 12px; font-size: 1rem;
}
.cat-page-footer-links a { color: var(--blue); font-weight: 600; text-decoration: none; }
.cat-page-footer-links a:hover { color: var(--navy); }
.cat-page-footer-links span { color: var(--border); }

.cat-filters {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.cat-search-wrap { position: relative; }
.cat-search-wrap svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; stroke: var(--muted); fill: none; pointer-events: none;
}
.cat-search-input {
  width: 100%; padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--border); border-radius: 50px;
  font-size: .95rem; color: var(--navy); background: var(--light);
  transition: border-color .2s; box-sizing: border-box;
}
.cat-search-input:focus { outline: none; border-color: var(--blue); }
.cat-filter-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-filter-tag {
  padding: 7px 16px; border-radius: 20px;
  border: 1.5px solid var(--border);
  background: #fff; font-size: .8rem; font-weight: 600;
  color: var(--muted); cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.cat-filter-tag:hover { border-color: var(--navy); color: var(--navy); }
.cat-filter-tag.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.cat-results-bar {
  font-size: 1rem; color: var(--muted); font-weight: 600; margin-bottom: 20px;
}
.cat-no-results {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
  font-size: .95rem; color: var(--muted);
}

/* Course card grid */
.cg-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1100px) { .cg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .cg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cg-grid { grid-template-columns: 1fr; } }

.cg-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .2s, box-shadow .2s; cursor: pointer;
}
.cg-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cg-card--visible { opacity: 1 !important; transform: none !important; }
.cg-card-accent { height: 5px; flex-shrink: 0; }
.cg-pink   { background: #e91e8c; }
.cg-yellow { background: #f59e0b; }
.cg-green  { background: #16a34a; }
.cg-orange { background: #ea580c; }
.cg-blue   { background: #1e7fc4; }
.cg-red    { background: #dc2626; }
.cg-purple { background: #7c3aed; }

.cg-section-heading {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 14px;
  margin: 32px 0 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--border);
  font-size: 1.1rem; font-weight: 800; color: var(--navy);
}
.cg-section-heading:first-child { margin-top: 0; }
.cg-section-heading-thumb {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.cg-section-heading-label { flex: 1; }
.cg-cpd-badge {
  font-size: .65rem; font-weight: 700; letter-spacing: .06em;
  color: #fff; background: var(--blue);
  padding: 3px 8px; border-radius: 20px;
  flex-shrink: 0; text-transform: uppercase;
}

.cg-card-body { padding: 14px 16px; flex: 1; }
.cg-cat-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); display: block; margin-bottom: 6px;
}
.cg-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 6px; }
.cg-card-desc { font-size: .78rem; color: var(--muted); line-height: 1.55; margin: 0; }
.cg-card-footer { padding: 0 16px 14px; }
.cg-more-btn {
  font-size: .78rem; font-weight: 700; color: var(--blue);
  background: none; border: 1px solid rgba(30,127,196,.3);
  padding: 5px 14px; border-radius: 20px; cursor: pointer;
  transition: background .15s, color .15s;
}
.cg-more-btn:hover { background: var(--blue); color: #fff; }

/* Course card — bullet list (custom admin courses) */
.cg-card-bullets {
  list-style: none; margin: 8px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 5px;
}
.cg-card-bullets li {
  font-size: .76rem; color: var(--muted); line-height: 1.45;
  padding-left: 18px; position: relative;
}
.cg-card-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 5px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); opacity: .55;
}

/* Course card — category badge in footer */
.cg-cat-badge {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; padding: 3px 9px; border-radius: 20px;
  color: #fff; opacity: .85;
}
.cg-cat-badge.cg-blue   { background: #1e7fc4; }
.cg-cat-badge.cg-purple { background: #7c3aed; }
.cg-cat-badge.cg-orange { background: #ea580c; }
.cg-cat-badge.cg-pink   { background: #e91e8c; }
.cg-cat-badge.cg-green  { background: #16a34a; }
.cg-cat-badge.cg-yellow { background: #b45309; }
.cg-cat-badge.cg-red    { background: #dc2626; }

.cg-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }

/* Course card — trainer block */
.cg-card-trainer {
  margin-top: 12px; padding: 10px 12px;
  background: rgba(30,127,196,.05); border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  display: flex; flex-direction: column; gap: 3px;
}
.cg-trainer-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); }
.cg-trainer-name  { font-size: .8rem; font-weight: 600; color: var(--text); }
.cg-trainer-contact { font-size: .75rem; color: var(--muted); text-decoration: none; }
.cg-trainer-contact:hover { color: var(--blue); }

/* Modal — trainer block */
.modal-trainer {
  flex-direction: column; gap: 4px;
  margin-bottom: 16px; padding: 12px 14px;
  background: rgba(30,127,196,.05); border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
}
.modal-trainer-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); }
.modal-trainer-name  { font-size: .95rem; font-weight: 600; color: var(--text); }
.modal-trainer a { font-size: .85rem; color: var(--muted); text-decoration: none; }
.modal-trainer a:hover { color: var(--blue); }

/* Modal bullet list */
.modal-bullets {
  list-style: none; margin: 0 0 16px; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.modal-bullets li {
  font-size: .9rem; color: var(--text); padding-left: 22px; position: relative; line-height: 1.5;
  overflow-wrap: break-word; word-break: break-word; min-width: 0;
}
.modal-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--blue);
}

/* Course modal */
.course-modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(6,18,36,.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.course-modal-overlay.open { opacity: 1; pointer-events: all; }
.course-modal {
  background: #fff; border-radius: 16px; padding: 36px;
  max-width: 680px; width: 100%; position: relative;
  max-height: 90vh; overflow-y: auto; overflow-x: hidden;
  transform: translateY(18px); transition: transform .2s;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.course-modal-overlay.open .course-modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.5rem;
  color: var(--muted); cursor: pointer; padding: 4px 9px; border-radius: 6px;
  line-height: 1; transition: background .15s;
}
.modal-close:hover { background: var(--light); color: var(--navy); }
.modal-cat-badge {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
  background: rgba(30,127,196,.1); color: var(--blue);
  border: 1px solid rgba(30,127,196,.22);
}
.course-modal h2 { font-size: 1.2rem; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 12px; }
.course-modal p  { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-enquire { background: #e91e8c; color: #fff; border-color: #e91e8c; }
.btn-enquire:hover { background: #c4186f; border-color: #c4186f; transform: translateY(-2px); }

/* ============================================================
   CTA STRIP
   ============================================================ */

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
/* ── BENEFITS OF LEARNING ─────────────────────────────────── */
.learn-benefits {
  background: linear-gradient(140deg, #061828 0%, var(--navy) 45%, #0d3a5c 100%);
  position: relative; overflow: hidden;
}
.learn-benefits::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(74,184,232,.05); pointer-events: none;
}
.learn-benefits::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(74,184,232,.07); pointer-events: none;
}
.lb-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.lb-header h2 { color: #fff; }
.lb-header p { color: rgba(255,255,255,.72); font-size: 1.05rem; }
.lb-inline-link { color: var(--blue-light, #4ab8e8); text-decoration: underline; text-underline-offset: 3px; }
.lb-inline-link:hover { color: #fff; }
.lb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lb-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 32px 28px;
  transition: background .25s, border-color .25s, transform .25s;
}
.lb-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(74,184,232,.4);
  transform: translateY(-4px);
}
.lb-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(74,184,232,.15);
  display: flex; align-items: center; justify-content: center;
  margin-left: auto; margin-bottom: 18px;
}
.lb-icon-wrap svg { width: 22px; height: 22px; stroke: #4ab8e8; }
.lb-item h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.lb-item p { color: rgba(255,255,255,.68); font-size: 0.92rem; line-height: 1.65; margin: 0; }
.lb-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.lb-footer p { color: rgba(255,255,255,.65); font-size: 0.95rem; }
.lb-cta-link { color: #4ab8e8; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.lb-cta-link:hover { color: #fff; }
@media (max-width: 900px) {
  .lb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lb-grid { grid-template-columns: 1fr; }
  .lb-item { padding: 24px 20px; }
}

.why-us { background: var(--light); position: relative; overflow: hidden; }
/* Top-right circle for the merged why-us + cta-strip area */
.why-us::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 42px solid rgba(30,127,196,.07);
  pointer-events: none;
  z-index: 0;
}
/* No bottom circle on why-us - cta-strip handles it */
.why-us::after { display: none; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.why-us-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-us-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-us-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #4ab8e8);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-us-icon svg { width: 24px; height: 24px; stroke: #fff; }
.why-us-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 10px; line-height: 1.3;
}
.why-us-card p {
  font-size: .875rem; color: var(--muted); line-height: 1.7; margin: 0;
}
@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-us-grid { grid-template-columns: 1fr; }
}

.cta-strip {
  background: var(--light);
  position: relative; overflow: hidden;
  padding: 0 0 80px;
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; z-index: 1;
  text-align: center;
  gap: 0;
}
.cta-strip-accent {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--blue), #4ab8e8);
  border-radius: 2px;
  margin-bottom: 28px;
}
.cta-strip-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-strip-inner p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.cta-strip-links {
  font-size: 1rem; color: var(--muted); margin: 0;
}
.cta-strip-links a {
  color: var(--blue); text-decoration: none; font-weight: 600;
  transition: color .2s;
}
.cta-strip-links a:hover { color: var(--navy); }
.why-us-footer {
  text-align: center; margin-top: 40px;
  font-size: 1rem; color: var(--muted);
}
.why-us-footer a {
  color: var(--blue); font-weight: 600; text-decoration: none;
  transition: color .2s;
}
.why-us-footer a:hover { color: var(--navy); }

/* ============================================================
   FUNDING
   ============================================================ */
.funding {
  background: linear-gradient(140deg, #061828 0%, var(--navy) 40%, var(--blue) 100%);
  position: relative; overflow: hidden;
  position: relative; overflow: hidden;
}
.funding::after {
  content: '';
  position: absolute; bottom: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(74,184,232,.06);
  pointer-events: none;
}
.funding-grid { display: flex; gap: 80px; align-items: center; position: relative; z-index: 1; }

.funding-content { flex: 1 1 380px; }
.funding-content h2 { font-size: clamp(1.75rem, 3vw, 2.3rem); color: #fff; line-height: 1.22; margin-bottom: 16px; }
.funding-content > p { color: rgba(255,255,255,.78); line-height: 1.8; margin-bottom: 28px; }
.funding-note { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.65; margin-bottom: 28px !important; }

.funding-split {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,.1); padding: 24px 28px;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.15);
  margin: 28px 0;
}
.funding-amount { display: flex; flex-direction: column; align-items: center; flex: 1; }
.percent { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }
.label { font-size: .68rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.funding-plus { font-size: 1.8rem; color: rgba(255,255,255,.3); font-weight: 300; }

.funding-benefits { flex: 1 1 340px; }
.benefit {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.benefit:last-child { border-bottom: none; }
.benefit-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(26,155,116,.25); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 16px; height: 16px; stroke: var(--green); }
.benefit h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.benefit p  { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.55; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--light); position: relative; overflow: hidden; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 22px;
  position: relative; z-index: 1;
}

.contact-card {
  background: #fff; border-radius: var(--radius);
  padding: 36px 26px; text-align: center;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-avatar {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--offwhite);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  border: 3px solid var(--border);
}
.contact-avatar[data-initials]::after {
  content: attr(data-initials);
}
.contact-avatar img {
  width: 120%; height: 120%;
  object-fit: cover; object-position: center top;
  display: block;
  margin: -10%;
  
}
.contact-card h3    { font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.contact-role       { font-size: .72rem; color: var(--sky); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.contact-links      { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.contact-link {
  display: flex; align-items: center; gap: 9px; justify-content: center;
  font-size: 1rem; color: var(--muted);
  transition: color var(--trans);
}
.contact-link:hover { color: var(--blue); }
.contact-link svg   { width: 15px; height: 15px; stroke: currentColor; flex-shrink: 0; }

.contact-other {
  background: #fff; border-radius: var(--radius);
  padding: 36px 26px; border: 1px solid var(--border);
}
.contact-other h3   { font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 14px; }
.contact-other > p  { color: var(--muted); font-size: 1rem; margin-bottom: 10px; }
.contact-other ul   { margin: 4px 0 16px; display: flex; flex-direction: column; gap: 6px; }
.contact-other ul li {
  font-size: 1rem; color: var(--text);
  padding-left: 16px; position: relative;
}
.contact-other ul li::before { content: '•'; position: absolute; left: 2px; color: var(--green); }
.contact-other-sub  { font-size: 1rem; color: var(--muted); margin-bottom: 22px !important; }
.contact-other .btn { width: 100%; }

/* ============================================================
   GEOMETRIC SHAPES - MOBILE SCALE DOWN
   ============================================================ */
@media (max-width: 640px) {
  .about::before,  .home-cats::before, .why-us::before,
  .cta-strip::before, .funding::before, .contact::before
                  { width: 120px; height: 120px; border-width: 16px; top: -30px; right: -30px; }
  .about::after,  .home-cats::after,  .why-us::after,
  .cta-strip::after,  .funding::after,  .contact::after
                  { width: 90px;  height: 90px;  border-width: 12px; bottom: -25px; left: -25px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #071528; color: rgba(255,255,255,.75); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p       { font-size: 1rem; line-height: 1.65; }
.footer-tagline       { color: rgba(255,255,255,.9); font-weight: 500; margin-bottom: 6px; }
.footer-sub           { color: rgba(255,255,255,.55); font-size: .78rem !important; margin-bottom: 20px; }
.footer-accred-logos  { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-links h4,
.footer-contact h4 {
  color: #fff; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
.footer-links ul     { display: flex; flex-direction: column; gap: 9px; }
.footer-links ul li a { font-size: 1rem; color: rgba(255,255,255,.6); transition: color var(--trans); }
.footer-links ul li a:hover { color: #fff; }

.footer-contact p     { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 12px; line-height: 1.5; }
.footer-contact a     { color: rgba(255,255,255,.8); transition: color var(--trans); }
.footer-contact a:hover{ color: #fff; }

.footer-coverage {
  padding: 44px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; gap: 40px; align-items: stretch;
}
.footer-coverage-left { flex: 0 0 calc(50% - 20px); }
.footer-coverage-left h4 {
  color: #fff; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px;
}
.footer-coverage-left > p {
  font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.55; margin-bottom: 14px;
}
.footer-coverage-chips {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.footer-coverage-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 4px 11px;
  font-size: .75rem; color: rgba(255,255,255,.7);
}
.footer-coverage-chip svg { width: 12px; height: 12px; flex-shrink: 0; }
.footer-cities-label {
  font-size: .72rem; color: rgba(255,255,255,.4); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 10px;
}
.footer-cities-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px 12px;
}
.footer-cities-list li { font-size: .8rem; color: rgba(255,255,255,.6); }
.footer-map {
  flex: 0 0 calc(50% - 20px); min-height: 240px;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.footer-map .leaflet-container {
  width: 100%; height: 100%; min-height: 240px;
  background: #e8e0d8;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: .78rem; color: rgba(255,255,255,.38); flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   RESPONSIVE - Tablet (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-coverage { gap: 28px; }
  .footer-coverage-left { flex: 0 0 42%; }
}

/* ============================================================
   RESPONSIVE - Tablet (769px–1024px)
   ============================================================ */
@media (min-width: 640px) and (max-width: 1400px) {
  .hero { min-height: 55vh; align-items: center; }
  .hero-content { padding-top: 20px; padding-bottom: 100px; }
  .slide img { object-position: center 60%; }
  .hero-accred {
    position: absolute; bottom: 16px;
    left: 50%; transform: translateX(-50%);
    right: auto;
    justify-content: center;
  }
  .hero-accred-logo { height: 70px; }
  .hero-accred-items > img { height: 70px; }
  .hero-badge { display: block; text-align: center; }
  .hero-content h1 { max-width: 100%; }
  .hero-title-group { width: 100%; }
}

/* ============================================================
   RESPONSIVE - Mobile (≤768px)
   ============================================================ */
@media (max-width: 1100px) {

  :root { --nav-h: 84px; }

  /* Logo on mobile */
  .nav-logo { margin-left: -28px; padding-top: 10px; }

  .burger { display: flex; }

  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: min(85vw, 360px); height: 100vh;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 84px 0 40px; gap: 0; overflow-y: auto;
    box-shadow: -4px 0 32px rgba(0,0,0,.16);
    z-index: 1000; transition: right .35s cubic-bezier(.4,0,.2,1);
  }
  .nav-menu.open { right: 0; }

  .nav-item { width: 100%; }
  .nav-link,
  .dropdown-toggle {
    padding: 15px 24px; font-size: .95rem;
    border-radius: 0; border-bottom: 1px solid var(--border);
    justify-content: space-between; width: 100%;
  }
  .nav-link::after,
  .dropdown-toggle::after { display: none; }

  .has-dropdown:hover .dropdown { opacity: 0; visibility: hidden; transform: translateY(-8px); }
  .has-dropdown:hover .chevron  { transform: none; }

  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .32s ease;
    background: var(--light);
  }

  /* Open dropdowns (Top level & Nested) */
  .has-dropdown.open > .dropdown,
  .has-submenu.open > .dropdown {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* Rotate arrows when open (Specific to level) */
  .has-dropdown.open > .nav-toggle-btn .chevron,
  .has-dropdown.open > .dropdown-toggle .chevron,
  .has-submenu.open > .submenu-toggle .chevron {
    transform: rotate(180deg);
  }

  .dropdown li a {
    padding: 12px 24px 12px 44px;
    border-bottom: 1px solid var(--border); font-size: 1rem;
  }
  .dropdown li a:hover { padding-left: 50px; }

  /* Show the toggle button on mobile (hidden by default on desktop) */
  .nav-toggle-btn { display: flex; align-items: center; padding: 15px 18px; border-bottom: none; }
  .nav-item-split .nav-link { flex: 1; width: auto; border-bottom: none; }
  .nav-item-split { border-bottom: 1px solid var(--border); }

  /* Extra indent for course links inside a category on mobile */
  .dropdown-submenu li a { padding-left: 64px; }

  .nav-cta-item { padding: 16px 24px; border-bottom: none; }
  .nav-cta-item .btn { width: 100%; justify-content: center; }

}

@media (max-width: 900px) {

  .about-grid { flex-direction: column; gap: 44px; }
  .about-content { border-left: none; padding-left: 0; border-top: 4px solid var(--blue); padding-top: 20px; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .about-stats { gap: 0; }

  .funding-grid { flex-direction: column; gap: 50px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-coverage { flex-direction: column; }
  .footer-coverage-left, .footer-map { flex: 0 0 auto; width: 100%; }

  .hero-content    { text-align: left; }
  .hero-content h1 { max-width: 100%; }
  .hero-title-group { width: 100%; }
  .hero-content > .hero-sub { max-width: 100%; }
  .hero-badge      { margin-top: 0; }
  .hero-search     { max-width: 100%; margin-top: 32px; }
  .hero-title-group { margin-top: 32px; }
  .slide img        { object-position: center top; }
  .hero-overlay     { background: linear-gradient(to bottom, rgba(6,24,40,.55) 0%, rgba(6,24,40,.45) 50%, rgba(6,24,40,.85) 100%); }

  .cta-strip-actions { flex-direction: column; align-items: center; }

  .hero-accred {
    position: static;
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 20px; justify-content: center;
    transform: none; left: auto;
  }
  .hero-accred-logo { height: 52px; }
  .hero-accred-items { justify-content: center; }

}


/* ============================================================
   RESPONSIVE - Small mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .funding-split { flex-direction: column; gap: 20px; }
  .funding-plus  { display: none; }

  .accred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; justify-items: center; }

  .hero { min-height: 62vh; }
  .hero-search-input { font-size: 0.95rem; }
  .hero-content { text-align: center; }
  .hero-title-group { margin-left: auto; margin-right: auto; }
  /* More space above pink bar, badge closer to it */
  .hero-content { padding-top: 0; }
  .hero-badge { margin-top: 20px; margin-bottom: 14px; }
  .hero-title-row { gap: 12px; }
  .hero-title-group h1 { margin-top: 20px; margin-bottom: 4px; font-size: 2.4rem; }
  .hero-text { margin-top: -8px; }
}



/* ============================================================
   SHARED INNER-PAGE HERO (about, faq, news, courses, etc.)
   ============================================================ */
.course-hero {
  position: relative;
  height: 74vh; min-height: 580px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.course-hero-media {
  position: absolute; inset: 0;
}
.course-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.course-hero-img-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #061828 0%, #0d2540 50%, #1e7fc4 100%);
}
.course-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,16,36,.88) 0%, rgba(6,16,36,.5) 50%, rgba(6,16,36,.2) 100%);
  z-index: 1;
}
.contact-page-hero .cat-deco-circle {
  z-index: 2;
}
.course-hero-content {
  position: relative; z-index: 3;
  padding-bottom: 52px; width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.65);
  margin-bottom: 18px; flex-wrap: wrap;
  padding-top: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color var(--trans); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: rgba(255,255,255,.9); }
.course-hero-content h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem); color: #fff;
  font-weight: 800; line-height: 1.15; max-width: 780px;
  margin-bottom: 14px;
}
.course-hero-sub {
  color: rgba(255,255,255,.8); font-size: clamp(.9rem, 1.6vw, 1.1rem);
  max-width: 600px; margin-bottom: 30px; line-height: 1.7;
}
.course-level-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.course-level-badge .badge {
  background: var(--sky); color: #fff;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 14px; border-radius: 20px;
}
.course-level-badge .approved {
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.75);
}
@media (max-width: 900px) {
  .course-hero { height: auto; min-height: unset; padding: var(--nav-h) 0 44px; }
  .course-hero-content .breadcrumb { padding-top: 20px; }
}
@media (max-width: 600px) {
  .course-hero { height: auto; min-height: unset; padding: var(--nav-h) 0 36px; align-items: flex-end; }
  .course-hero-content { padding-bottom: 0; padding-top: 0; }
  .course-hero-content .breadcrumb { padding-top: 20px; }
}

/* =======================================================
   CONTACT PAGE
   ======================================================= */

.contact-page-hero {
  position: relative;
  height: 74vh; min-height: 580px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.contact-page-hero::before,
.contact-page-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 28px solid;
  pointer-events: none;
  z-index: 2;
}
.contact-page-hero::before {
  width: 380px; height: 380px;
  top: -80px; left: -100px;
  border-color: rgba(74,184,232,.12);
}
.contact-page-hero::after {
  width: 300px; height: 300px;
  bottom: 40px; right: -80px;
  border-color: rgba(190,34,103,.10);
}
@media (max-width: 1024px) {
  .contact-page-hero {
    height: auto; min-height: unset;
    padding: var(--nav-h) 0 44px;
    align-items: flex-end;
  }
  .contact-page-hero .course-hero-content { padding-bottom: 0; }
}
.contact-page-hero .course-hero-content {
  text-align: center;
}
.contact-page-hero .breadcrumb {
  justify-content: center;
}
.contact-page-hero .course-hero-content h1,
.contact-page-hero .course-hero-sub {
  margin-left: auto; margin-right: auto;
}
@media (max-width: 600px) {
  .contact-page-hero .breadcrumb { padding-top: 28px; }
}
.contact-page-hero .course-hero-img-fallback {
  background: linear-gradient(135deg, #061828 0%, #0d2540 45%, #be2267 85%, #d84488 100%);
}

.contact-page-section {
  background: var(--light);
  padding: 96px 0;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: flex-start;
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 {
  font-size: 1.55rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.65;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 7px;
}
.form-group label span { color: var(--amber); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,127,196,.12);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}
.form-group select { cursor: pointer; }

/* ── Custom Select ──────────────────────────────────────── */
.cs-wrap {
  position: relative;
  width: 100%;
  outline: none;
}
.cs-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  cursor: pointer;
  transition: border-color var(--trans), box-shadow var(--trans);
  user-select: none;
}
.cs-wrap:focus .cs-trigger,
.cs-wrap.open .cs-trigger {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,127,196,.12);
  background: #fff;
}
.cs-value { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--muted); }
.cs-value.selected { color: var(--text); }
.cs-arrow {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  transition: transform var(--trans);
}
.cs-wrap.open .cs-arrow { transform: rotate(180deg); }
.cs-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  z-index: 500;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.cs-wrap.open .cs-dropdown { display: block; }
.cs-group-label {
  padding: 10px 14px 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
  border-top: 1px solid var(--border);
}
.cs-group-label:first-child { border-top: none; }
.cs-option {
  padding: 10px 14px 10px 22px;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  transition: background var(--trans);
}
.cs-option:hover,
.cs-option:focus { background: #f0f7ff; }
.cs-option.active { background: #e6f2fb; color: var(--blue); font-weight: 600; }
.cs-option-other { font-style: italic; color: var(--muted); padding-left: 14px; }
.cs-divider { height: 1px; background: var(--border); margin: 4px 0; }
.form-submit {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-submit .btn {
  padding: 14px 36px;
  font-size: .95rem;
}
.form-note {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-info-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.contact-avatar-lg {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.35);
  color: #fff; font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card-header h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.contact-info-card-header p  { color: rgba(255,255,255,.65); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-info-body { padding: 18px 22px; display: flex; flex-direction: column; gap: 12px; }
.contact-info-row {
  display: flex; align-items: center; gap: 12px;
  font-size: .875rem; color: var(--text);
}
.contact-info-row svg { width: 16px; height: 16px; stroke: var(--blue); flex-shrink: 0; }
.contact-info-row a { color: var(--text); transition: color var(--trans); }
.contact-info-row a:hover { color: var(--blue); }

.other-courses-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius);
  padding: 28px 26px;
  color: #fff;
}
.other-courses-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.other-courses-card p  { color: rgba(255,255,255,.75); font-size: .875rem; line-height: 1.65; margin-bottom: 14px; }
.other-courses-card ul { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.other-courses-card ul li {
  color: rgba(255,255,255,.85); font-size: 1rem;
  padding-left: 16px; position: relative;
}
.other-courses-card ul li::before {
  content: "›"; position: absolute; left: 2px; color: var(--sky); font-weight: 700;
}
.other-courses-card .btn { width: 100%; justify-content: center; }

/* ── Contact section header ── */
.contact-section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }

/* ── What Happens Next ── */
.contact-next {
  background: linear-gradient(140deg, #061828 0%, var(--navy) 45%, #0d3a5c 100%);
  position: relative; overflow: hidden;
}
.contact-next::before {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(74,184,232,.05); pointer-events: none;
}
.cn-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.cn-header h2 { color: #fff; }
.cn-header p { color: rgba(255,255,255,.7); }
.cn-steps {
  display: flex; align-items: flex-start;
  gap: 0; max-width: 960px; margin: 0 auto;
}
.cn-step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
}
.cn-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--amber); color: #fff;
  font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 20px;
  box-shadow: 0 0 0 6px rgba(190,34,103,.2);
}
.cn-step-body h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.cn-step-body p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin: 0; }
.cn-link { color: #4ab8e8; text-decoration: underline; text-underline-offset: 3px; }
.cn-link:hover { color: #fff; }
.cn-connector {
  width: 48px; flex-shrink: 0;
  height: 2px; background: rgba(255,255,255,.15);
  margin-top: 26px; align-self: flex-start;
}
@media (max-width: 768px) {
  .cn-steps { flex-direction: column; align-items: center; gap: 0; }
  .cn-step { flex-direction: row; text-align: left; align-items: flex-start; padding: 0 0 32px 0; width: 100%; max-width: 480px; gap: 20px; }
  .cn-step-num { margin-bottom: 0; flex-shrink: 0; }
  .cn-connector { width: 2px; height: 32px; margin: 0 0 0 25px; align-self: auto; }
}

.contact-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.contact-strip-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: var(--radius);
  background: var(--light); border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.contact-strip-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-strip-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(98,53,168,.12);
  display: flex; align-items: center; justify-content: center;
}
.contact-strip-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-strip-item h3 { font-size: 1rem; color: var(--navy); font-weight: 700; margin-bottom: 5px; }
.contact-strip-item p  { font-size: 1rem; color: var(--muted); line-height: 1.55; }
.contact-strip-item a  { color: var(--blue); font-size: 1rem; font-weight: 600; transition: color var(--trans); }
.contact-strip-item a:hover { color: var(--navy); }

@media (max-width: 960px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-sidebar { flex-direction: row; flex-wrap: wrap; }
  .contact-info-card { flex: 1 1 280px; }
  .other-courses-card { flex: 1 1 280px; }
}
@media (max-width: 768px) {
  .contact-strip-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-sidebar { flex-direction: column; }
}

/* =======================================================
   404 PAGE
   ======================================================= */

.error-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}
.error-inner { max-width: 560px; }
.error-code {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  opacity: .12;
  letter-spacing: -4px;
  margin: 0 0 -32px;
  display: block;
}
.error-inner h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--navy);
  margin: 0 0 16px;
}
.error-inner p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 36px;
}
.error-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* =======================================================
   FAQ PAGE
   ======================================================= */

/* Hero background */
.faq-hero-bg {
  background: linear-gradient(135deg, #061828 0%, #0d2540 40%, #1e5a8a 75%, #1e7fc4 100%);
}

/* ── FAQ section wrapper ── */
.faq-section {
  background: var(--light);
  padding: 72px 0 96px;
}

/* ── Category quick-nav ── */
.faq-cat-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 64px;
}
.faq-cat-nav a {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: .8rem; font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.faq-cat-nav a:hover {
  background: var(--amber); color: #fff; border-color: var(--amber);
}

/* ── Category block ── */
.faq-category {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.faq-category-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--amber);
}
.faq-category-title svg {
  width: 20px; height: 20px; stroke: var(--amber); flex-shrink: 0;
}
.faq-category-title svg text {
  fill: var(--amber);
}

/* ── Individual FAQ item (details/summary) ── */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.faq-item[open] {
  box-shadow: 0 4px 18px rgba(190,34,103,.1);
  border-left-color: var(--amber-dark);
}

.faq-question {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px;
  font-size: .97rem; font-weight: 600; color: var(--navy);
  cursor: pointer;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
/* Chevron arrow */
.faq-question::after {
  content: '';
  width: 9px; height: 9px; flex-shrink: 0;
  border-right: 2.5px solid var(--amber);
  border-bottom: 2.5px solid var(--amber);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.faq-item[open] > .faq-question::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-question:hover { color: var(--amber); }

.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  font-size: .93rem; color: var(--text); line-height: 1.75; margin-top: 16px; margin-bottom: 0;
}
.faq-answer ul {
  margin: 12px 0 0 0; padding-left: 20px;
}
.faq-answer ul li {
  font-size: .93rem; color: var(--text); line-height: 1.75; margin-bottom: 4px;
}
.faq-answer ul li::marker { color: var(--blue); }

.faq-cta-link {
  display: inline-block; margin-top: 14px;
  font-size: 1rem; font-weight: 600;
  color: var(--blue); text-decoration: none;
}
.faq-cta-link:hover { text-decoration: underline; }

/* ── Course durations ── */
.faq-duration-intro {
  font-size: .93rem; color: var(--muted); margin-bottom: 24px;
}
.faq-duration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.faq-duration-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--amber);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.faq-duration-card:hover {
  box-shadow: 0 6px 22px rgba(190,34,103,.12);
  border-top-color: var(--amber-dark);
}
.faq-duration-level {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .7px; color: var(--amber);
  background: rgba(190,34,103,.08);
  padding: 4px 12px; border-radius: 20px;
  display: inline-block; align-self: center;
}
.faq-duration-time {
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
}

/* ── Still have questions CTA ── */
.faq-still-questions {
  background: linear-gradient(135deg, #061828 0%, #0d2540 60%, #1e7fc4 100%);
  border-radius: 14px;
  padding: 52px 48px;
  text-align: center;
  color: #fff;
  display: flex; flex-direction: column; align-items: center;
}
.faq-still-questions h2 {
  font-size: 1.8rem; font-weight: 800; margin-bottom: 12px;
}
.faq-still-questions p {
  color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 28px;
}

/* ── FAQ section header ── */
.faq-section-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }

/* ── Duration card course link ── */
.faq-duration-desc {
  font-size: .78rem; color: var(--muted); margin-top: 4px;
}
.faq-duration-desc a {
  color: var(--blue); text-decoration: none; font-weight: 600;
}
.faq-duration-desc a:hover { text-decoration: underline; }

/* ── FAQ still-questions actions ── */
.faq-still-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.faq-outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.faq-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.faq-cta-section { padding-top: 0; }

/* ── FAQ Stats Strip ── */
.faq-stats-strip {
  background: linear-gradient(140deg, #061828 0%, var(--navy) 45%, #0d3a5c 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.faq-stats-strip::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(74,184,232,.05); pointer-events: none;
}
.faq-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}
.faq-stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.faq-stat-item:last-child { border-right: none; }
.faq-stat-num {
  font-size: 2.4rem; font-weight: 900; color: #fff;
  letter-spacing: -.02em; line-height: 1;
  margin-bottom: 8px;
}
.faq-stat-label {
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .06em;
}
.faq-stats-sub {
  text-align: center; color: rgba(255,255,255,.6); font-size: .92rem;
}
.faq-stats-link {
  color: #4ab8e8; font-weight: 600; text-decoration: underline; text-underline-offset: 3px;
}
.faq-stats-link:hover { color: #fff; }

/* ── FAQ responsive ── */
@media (max-width: 768px) {
  .faq-section { padding: 48px 0 72px; }
  .faq-cat-nav { margin-bottom: 40px; }
  .faq-duration-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-still-questions { padding: 40px 24px; }
  .faq-still-questions h2 { font-size: 1.4rem; }
  .faq-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .faq-stat-item:nth-child(3), .faq-stat-item:nth-child(4) { border-bottom: none; }
}
@media (max-width: 480px) {
  .faq-duration-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .faq-question { padding: 16px 18px; font-size: .92rem; }
  .faq-answer { padding: 0 18px 18px; }
}


/* =======================================================
   ABOUT PAGE
   ======================================================= */

.about-hero-bg {
  background: linear-gradient(135deg, #061828 0%, #0d2540 40%, #1e7fc4 70%, #4ab8e8 100%);
}

.about-section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--amber); margin-bottom: 10px;
}
.about-section-header { text-align: center; margin-bottom: 52px; }
.about-section-header h2 { font-size: clamp(1.6rem,3vw,2.2rem); color: var(--navy); margin-bottom: 12px; }
.about-section-header p  { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* Intro */
.about-intro-section { padding: 80px 0; background: #fff; }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: center;
}
.about-intro-text h2 { font-size: clamp(1.5rem,3vw,2.1rem); color: var(--navy); margin: 10px 0 20px; }
.about-intro-text p  { color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.about-intro-text a:not(.btn)  { color: var(--blue); font-weight: 600; text-decoration: none; }
.about-intro-text a:not(.btn):hover { text-decoration: underline; }
.about-intro-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.team-bio a  { color: var(--blue); font-weight: 600; text-decoration: none; }
.team-bio a:hover { text-decoration: underline; }
.about-intro-stats { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 16px; }
.about-stat {
  background: var(--light); border: 1px solid var(--border);
  border-top: 3px solid var(--amber); border-radius: 10px;
  text-align: center;
  padding: 28px 18px; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.about-stat-num   { font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.about-stat-label { font-size: .82rem; color: var(--muted); font-weight: 500; }

/* Team */
.about-team-section { padding: 80px 0; background: var(--light); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.team-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(6,24,40,.06);
  display: flex; flex-direction: column; align-items: stretch;
}
.team-avatar-wrap {
  width: 200px; height: 200px; border-radius: 50%;
  overflow: hidden; border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(6,24,40,.18);
  background: linear-gradient(135deg, #0d2540 0%, #1e7fc4 100%);
  margin: 36px auto 0; flex-shrink: 0;
}
.team-avatar-wrap img { display: none; }
.team-avatar-wrap[data-photo] {
  background-repeat: no-repeat;
  background-size: 130%;
  background-position: center;
}
.team-card-body { padding: 28px; }
.team-card-header { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--amber); }
.team-card-header h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: .8rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; }
.team-bio p { font-size: .92rem; color: var(--text); line-height: 1.78; margin-bottom: 12px; }
.team-bio p:last-child { margin-bottom: 0; }
.team-course-list { margin: 8px 0 12px 0; padding-left: 18px; }
.team-course-list li { font-size: .92rem; color: var(--text); line-height: 1.75; margin-bottom: 3px; }
.team-course-list li::marker { color: var(--amber); }
.team-mission {
  font-style: italic; color: var(--muted) !important;
  border-left: 3px solid var(--amber); padding-left: 14px; margin-top: 16px !important;
}
.team-bio-placeholder { color: var(--muted) !important; font-style: italic; }
.team-contact {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.team-contact-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 500; color: var(--navy); text-decoration: none;
  transition: color var(--trans);
}
.team-contact-link svg { width: 16px; height: 16px; stroke: var(--amber); flex-shrink: 0; }
.team-contact-link:hover { color: var(--blue); }

/* Who we work with & courses we offer (merged section) */
.about-offer-section { padding: 80px 0; background: #fff; }

.about-partners-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 52px; justify-content: center;
}
.about-partner-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 40px; padding: 8px 16px;
  font-size: .875rem; font-weight: 500; color: var(--navy);
}
.about-partner-chip svg { width: 15px; height: 15px; stroke: var(--blue); flex-shrink: 0; }

.about-offer-courses-header { text-align: center; margin-bottom: 32px; }
.about-offer-courses-header h3 { font-size: clamp(1.2rem,2vw,1.5rem); font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.about-offer-courses-header p  { font-size: .95rem; color: var(--muted); }

.about-offer-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.about-offer-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border: 1px solid var(--border);
  border-radius: 0 22% 0 22%;
  padding: 32px 24px; text-decoration: none;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  background: #fff; overflow: hidden;
}
.about-offer-card:hover { box-shadow: 0 10px 32px rgba(233,30,140,.13); transform: translateY(-3px); border-color: #e91e8c; }
.about-offer-card-img {
  width: 86px; height: 86px; border-radius: 50%;
  background-size: cover; background-position: center;
  margin-bottom: 18px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.about-offer-card h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.about-offer-card p  { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.about-offer-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 700; color: var(--blue);
  margin-top: auto;
}
.about-offer-card-link svg { width: 15px; height: 15px; transition: transform .2s; }
.about-offer-card:hover .about-offer-card-link svg { transform: translateX(3px); }
/* Centre orphaned 7th card — 3-col desktop */
.about-offer-cards .about-offer-card:nth-child(7):last-child { grid-column: 2; }


/* E-portfolio */
.about-eportfolio-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #061828 0%, #0d2540 60%, #1e5a8a 100%);
}
.about-section-header--light h2 { color: #fff; }
.section-tag--light { background: rgba(255,255,255,.15); color: #fff; }
.about-eportfolio-inner { display: flex; align-items: center; gap: 48px; justify-content: center; }
.about-eportfolio-icon {
  flex-shrink: 0; width: 110px; height: 110px;
  background: rgba(255,255,255,.12); border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.about-eportfolio-icon svg { width: 48px; height: 48px; stroke: #fff; }
.about-eportfolio-text h2 { font-size: clamp(1.4rem,2.5vw,1.9rem); color: #fff; margin: 8px 0 16px; }
.about-eportfolio-text p  { color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 12px; }
.about-eportfolio-text strong { color: #fff; }

/* Funding */
.about-funding-section { padding: 80px 0; background: var(--light); }
.about-funding-inner { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.about-funding-text h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.about-funding-text p  { font-size: .93rem; color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.about-funding-highlights { display: flex; flex-direction: column; gap: 14px; }
.funding-highlight-card {
  background: #fff; border: 1px solid var(--border);
  border-left: 4px solid var(--amber); border-radius: 8px;
  padding: 16px 18px; display: flex; align-items: center; gap: 14px;
}
.funding-highlight-card svg { width: 20px; height: 20px; stroke: var(--amber); flex-shrink: 0; }
.funding-highlight-card p  { font-size: 1rem; color: var(--text); line-height: 1.5; margin: 0; }


/* CTA */
.about-cta-section { padding: 80px 0; background: var(--light); }
.about-cta-inner {
  background: linear-gradient(135deg, #061828 0%, #0d2540 55%, #be2267 100%);
  border-radius: 14px; padding: 60px 48px; text-align: center; color: #fff;
}
.about-cta-inner h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; margin-bottom: 14px; }
.about-cta-inner p  { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.about-cta-buttons  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 6px; font-size: 1rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,.6); color: #fff; background: transparent;
  text-decoration: none; transition: border-color var(--trans), background var(--trans);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* About responsive */
@media (max-width: 1100px) {
  .about-offer-cards { grid-template-columns: repeat(2, 1fr); }
  .about-offer-cards .about-offer-card:nth-child(7):last-child { grid-column: 1 / -1; justify-self: center; width: calc(50% - 10px); }
}
@media (max-width: 900px) {
  .about-intro-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-stats   { grid-template-columns: repeat(2,1fr); }
  .team-grid           { grid-template-columns: 1fr; }
  .about-funding-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-eportfolio-inner { flex-direction: column; gap: 28px; text-align: center; }
}
@media (max-width: 600px) {
  .about-intro-section, .about-team-section, .about-offer-section,
  .about-eportfolio-section, .about-funding-section,
  .about-cta-section { padding: 52px 0; }
  .about-offer-cards   { grid-template-columns: 1fr; }
  .about-offer-cards .about-offer-card:nth-child(7):last-child { grid-column: 1; justify-self: unset; width: 100%; }
  .about-intro-stats   { grid-template-columns: repeat(2,1fr); }
  .about-intro-text    { text-align: center; }
  .about-intro-text .section-tag { display: block; margin: 0 auto 10px; }
  .about-intro-ctas    { flex-direction: column; align-items: center; }
  .about-intro-ctas .btn { text-align: center; width: 100%; }
  .about-cta-inner     { padding: 40px 24px; }
  .about-partners-chips { justify-content: center; }
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-section { padding: 80px 0; background: var(--light); }
.news-section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.news-tag--blue {
  background: rgba(30,127,196,.12);
  color: #1e7fc4;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}

/* News card */
.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--amber);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6,24,40,.06);
  display: flex; flex-direction: column;
}

.news-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}

.news-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}

.news-tag {
  display: inline-block;
  background: rgba(190,34,103,.1);
  color: var(--amber);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  padding: 4px 12px; border-radius: 20px;
}

.news-date {
  font-size: .8rem; color: var(--muted); font-weight: 600;
}

.news-title {
  font-size: 1.4rem; font-weight: 800; color: var(--navy);
  margin-bottom: 12px; line-height: 1.3;
}

.news-intro {
  font-size: .93rem; color: var(--text); line-height: 1.75;
}

.news-card-body {
  padding: 24px 28px;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 32px;
}
@media (max-width: 700px) {
  .news-card-body { grid-template-columns: 1fr; }
}

/* Theme block inside article */
.news-theme h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--amber);
}

.news-theme h3 svg {
  width: 18px; height: 18px; stroke: var(--amber); flex-shrink: 0;
}

.news-theme p {
  font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 8px;
}

.news-theme ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}

.news-theme ul li {
  font-size: 1rem; color: var(--text); line-height: 1.65;
  padding-left: 18px; position: relative;
}

.news-theme ul li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--amber); border-radius: 50%;
}

.news-card-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
}

/* Stay updated CTA bar */
.news-cta-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(135deg, #061828 0%, #0d2540 60%, #1e5a8a 100%);
  border-radius: 14px; padding: 36px 40px;
  color: #fff;
}

.news-cta-text h3 {
  font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 6px;
}

.news-cta-text p {
  font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.65;
}


@media (max-width: 600px) {
  .news-section { padding: 52px 0; }
  .news-card-header, .news-card-body { padding: 20px; }
  .news-card-footer { padding: 16px 20px 24px; }
  .news-cta-bar { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}

/* ── NEWS: Relevant Training Section ────────────────────────── */
.news-training {
  background: linear-gradient(140deg, #061828 0%, var(--navy) 45%, #0d3a5c 100%);
  position: relative; overflow: hidden;
}
.news-training::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(74,184,232,.05); pointer-events: none;
}
.nt-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.nt-header h2 { color: #fff; }
.nt-header p { color: rgba(255,255,255,.7); font-size: 1rem; }
.nt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nt-card {
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  transition: background .25s, border-color .25s, transform .25s;
}
.nt-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(74,184,232,.45);
  transform: translateY(-4px);
}
.nt-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(74,184,232,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nt-icon svg { width: 20px; height: 20px; stroke: #4ab8e8; }
.nt-card h3 { color: #fff; font-size: 1rem; margin: 0; }
.nt-card p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.6; margin: 0; flex: 1; }
.nt-link {
  display: flex; align-items: center; gap: 6px;
  color: #4ab8e8; font-size: 1rem; font-weight: 600;
  margin-top: 4px;
}
.nt-link svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .nt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .nt-grid { grid-template-columns: 1fr; } }

/* ── Homepage Category Cards ─────────────────────────────────────────────── */
.home-cats {
  background: #fff;
  position: relative; overflow: hidden;
}
.hc-header { text-align: center; margin-bottom: 48px; }

/* Course category section shapes */
.home-cats::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 42px solid rgba(124,58,237,.05);
  pointer-events: none;
  z-index: 0;
}
.home-cats::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 260px; height: 260px;
  border: 32px solid rgba(22,163,74,.05);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* CTA strip shapes */
/* Bottom-left circle for the merged why-us + cta-strip area */
.cta-strip::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 42px solid rgba(233,30,140,.06);
  pointer-events: none;
  z-index: 0;
}
/* No top circle on cta-strip - why-us handles it */
.cta-strip::after { display: none; }

/* Funding section shapes (white/light on dark bg) */
.funding::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 42px solid rgba(255,255,255,.05);
  pointer-events: none;
  z-index: 0;
}
.funding::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 260px; height: 260px;
  border: 32px solid rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Contact section shapes */
.contact::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 24px solid rgba(30,127,196,.06);
  pointer-events: none;
  z-index: 0;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -35px; left: -35px;
  width: 130px; height: 130px;
  border: 18px solid rgba(124,58,237,.05);
  border-radius: 50%;
  pointer-events: none;
}

.home-cats .container {
  max-width: 1560px;
  padding: 0 40px;
}
.hc-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 28px;
  position: relative; z-index: 1;
  padding-top: 16px;
}

/* Each card spans 2 of 8 cols → 4 per row */
.hc-card {
  grid-column: span 2;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.hc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 52px rgba(6,24,40,.22), inset 0 0 0 3px var(--amber);
  border-color: transparent;
}

/* Centre the 3 cards in row 2 (cols 2-3, 4-5, 6-7 of 8) */
.hc-card:nth-child(5) { grid-column: 2 / 4; }
.hc-card:nth-child(6) { grid-column: 4 / 6; }
.hc-card:nth-child(7) { grid-column: 6 / 8; }

/* Full rows (12 cards) — override centering offset */
.hc-grid--full .hc-card:nth-child(5),
.hc-grid--full .hc-card:nth-child(6),
.hc-grid--full .hc-card:nth-child(7) { grid-column: span 2; }

/* CPD section: 6 cards — centre the 2 cards in row 2 (cols 3-5, 5-7 of 8) */
#courses-preview .hc-card:nth-child(5) { grid-column: 3 / 5; }
#courses-preview .hc-card:nth-child(6) { grid-column: 5 / 7; }

/* Accredited courses section — blue gradient background */
#accredited-courses {
  background: linear-gradient(140deg, #061828 0%, var(--navy) 40%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
#accredited-courses .section-tag,
.contact-next .section-tag { background: rgba(255,255,255,.15); color: #fff; }
#accredited-courses .hc-header h2,
#accredited-courses .hc-header p { color: rgba(255,255,255,.9); }

/* Image — top ~46% of circle */
.hc-img {
  width: 100%;
  flex: 0 0 46%;
  background-size: 120%;
  background-position: center;
  position: relative;
  transition: transform .5s ease;
}
.hc-card:hover .hc-img { transform: scale(1.08); }
.hc-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.25) 100%);
}

/* Badge over image */
.hc-badge {
  display: block;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.hc-card--purple .hc-badge { background: #7c3aed; }
.hc-card--orange  .hc-badge { background: #ea580c; }
.hc-card--pink    .hc-badge { background: #e91e8c; }
.hc-card--green   .hc-badge { background: #16a34a; }
.hc-card--yellow  .hc-badge { background: #b45309; }
.hc-card--red     .hc-badge { background: #dc2626; }
.hc-card--blue    .hc-badge { background: #1e7fc4; }

/* Text body — remaining 54% */
.hc-body {
  padding: 10px 12% 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}
.hc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
  transition: color .3s ease;
  text-align: center;
}
.hc-card:hover .hc-title { color: var(--amber); }
.hc-desc {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 8px;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}
.hc-link svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform .2s ease; }
.hc-link:hover { color: var(--navy); }
.hc-link:hover svg { transform: translateX(3px); }

/* Large tablet / small desktop — 3 per row */
@media (max-width: 1400px) {
  .home-cats .container { padding: 0 24px; }
  .hc-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .hc-card               { grid-column: span 2; width: 100%; }
  .hc-card:nth-child(5)  { grid-column: span 2; }
  .hc-card:nth-child(6)  { grid-column: span 2; }
  .hc-card:nth-child(7)  { grid-column: 3 / 5; justify-self: center; }
  /* CPD 6-card grid: 3+3 — no centering needed */
  #courses-preview .hc-card:nth-child(5) { grid-column: span 2; justify-self: unset; }
  #courses-preview .hc-card:nth-child(6) { grid-column: span 2; justify-self: unset; }
  .hc-img  { flex: 0 0 34%; }
  .hc-body { padding: 6px 11% 20px; }
  .hc-title { font-size: 1.2rem; margin-top: 8px; }
  .hc-desc  { display: -webkit-box; font-size: .88rem; }
  .hc-link  { font-size: .88rem; }
}

/* iPad Air (1180px) & iPad Mini (1133px) landscape + iPad Pro portrait (1024px) — 2 per row */
@media (max-width: 1180px) {
  .hc-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hc-card,
  .hc-card:nth-child(5),
  .hc-card:nth-child(6)  { grid-column: span 1; width: 100%; justify-self: unset; }
  .hc-card:nth-child(7)  { grid-column: 1 / -1; justify-self: center; width: calc(50% - 12px); }
  #courses-preview .hc-card:nth-child(5),
  #courses-preview .hc-card:nth-child(6) { grid-column: span 1; justify-self: unset; }
  .hc-img  { flex: 0 0 46%; }
  .hc-body { padding: 16px 10% 32px; }
  .hc-title { font-size: 1.65rem; }
  .hc-desc  { display: -webkit-box; font-size: 1rem; }
  .hc-link  { font-size: 1rem; }
}

/* Tablet portrait / large phone — 2 per row */
@media (max-width: 900px) {
  .hc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hc-card,
  .hc-card:nth-child(5),
  .hc-card:nth-child(6)  { grid-column: span 1; width: 100%; justify-self: unset; }
  .hc-card:nth-child(7)  { grid-column: 1 / -1; justify-self: center; width: calc(50% - 10px); }
  #courses-preview .hc-card:nth-child(5),
  #courses-preview .hc-card:nth-child(6) { grid-column: span 1; justify-self: unset; }
  .hc-img  { flex: 0 0 42%; }
  .hc-body { padding: 14px 10% 28px; }
  .hc-title { font-size: 1.45rem; }
  .hc-desc  { display: -webkit-box; font-size: .88rem; }
  .hc-link  { font-size: .92rem; }
}

/* Surface Duo landscape (541–740px) — 2 per row, tuned sizing */
@media (min-width: 541px) and (max-width: 740px) {
  .hc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hc-card,
  .hc-card:nth-child(5),
  .hc-card:nth-child(6)  { grid-column: span 1; width: 100%; justify-self: unset; }
  .hc-card:nth-child(7)  { grid-column: 1 / -1; justify-self: center; width: calc(50% - 8px); }
  #courses-preview .hc-card:nth-child(5),
  #courses-preview .hc-card:nth-child(6) { grid-column: span 1; justify-self: unset; }
  .hc-img  { flex: 0 0 44%; }
  .hc-body { padding: 12px 8% 24px; justify-content: space-between; }
  .hc-title { font-size: .95rem; }
  .hc-desc  { display: -webkit-box; font-size: .72rem; flex: unset; }
  .hc-link  { font-size: .72rem; margin-top: 6px; }
}

/* Surface Duo & narrow tablets portrait (≤540px) — single column */
@media (max-width: 540px) {
  .hc-grid { grid-template-columns: 1fr; gap: 16px; }
  .hc-card,
  .hc-card:nth-child(5),
  .hc-card:nth-child(6),
  .hc-card:nth-child(7) { grid-column: 1; justify-self: unset; width: 100%; max-width: 100%; }
  #courses-preview .hc-card:nth-child(5),
  #courses-preview .hc-card:nth-child(6) { grid-column: 1; }
  .hc-img  { flex: 0 0 42%; }
  .hc-body { padding: 18px 12% 30px; justify-content: space-between; }
  .hc-title { font-size: 1.5rem; }
  .hc-desc  { display: -webkit-box; font-size: 1rem; flex: unset; }
  .hc-link  { font-size: .95rem; margin-top: 10px; }
}

/* Mobile — single column */
@media (max-width: 480px) {
  .hc-grid { grid-template-columns: 1fr; gap: 16px; }
  .hc-card,
  .hc-card:nth-child(5),
  .hc-card:nth-child(6),
  .hc-card:nth-child(7) { grid-column: 1; justify-self: unset; width: 100%; max-width: 100%; }
  #courses-preview .hc-card:nth-child(5),
  #courses-preview .hc-card:nth-child(6) { grid-column: 1; }
  .hc-img  { flex: 0 0 44%; }
  .hc-body { padding: 20px 12% 32px; justify-content: space-between; }
  .hc-title { font-size: 1.4rem; }
  .hc-desc  { display: -webkit-box; font-size: .95rem; flex: unset; }
  .hc-link  { font-size: .92rem; margin-top: 10px; }
}

/* iPhone & 430px Android (390–430px) */
@media (max-width: 430px) {
  .hc-img  { flex: 0 0 44%; }
  .hc-body { padding: 18px 11% 30px; }
  .hc-title { font-size: 1.15rem; }
  .hc-desc  { display: -webkit-box; font-size: .8rem; }
  .hc-link  { font-size: .8rem; }
}

/* 411–412px Android (Pixel 3a etc) */
@media (max-width: 412px) {
  .hc-title { font-size: 1.1rem; }
  .hc-desc  { font-size: .78rem; }
  .hc-link  { font-size: .78rem; }
}

/* Small phones (Z Flip, SE etc ≤390px) */
@media (max-width: 390px) {
  .hc-img  { flex: 0 0 40%; }
  .hc-body { padding: 16px 10% 26px; }
  .hc-title { font-size: 1.15rem; }
  .hc-desc  { font-size: .8rem; }
  .hc-link  { font-size: .8rem; }
}

/* iPhone SE / 6/7/8 (375px) */
@media (max-width: 375px) {
  .hc-title { font-size: .82rem; }
  .hc-desc  { font-size: .63rem; }
  .hc-link  { font-size: .63rem; }
}

/* Z Fold inner screen & very narrow (≤344px) */
@media (max-width: 344px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .about-intro-text { text-align: center; }
  .about-intro-text .section-tag { display: block; margin: 0 auto 10px; }
  .about-intro-ctas { align-items: center; }
  .about-intro-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-stat { padding: 16px 10px; }
  .about-stat-num { font-size: 1.1rem; }
  .team-card-body { padding: 18px 14px; }
  .about-offer-cards { grid-template-columns: 1fr; }
  .about-partners-chips { gap: 6px; }
  .about-partner-chip { font-size: .78rem; padding: 6px 10px; }
}


/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */

/* ── Hero ── */
.testimonials-hero-bg {
  background: linear-gradient(135deg, #061828 0%, #0d2540 40%, #1e7fc4 80%, #4ab8e8 100%);
}

/* ── Section ── */
.testimonials-section {
  padding: 80px 0 40px;
  background: var(--light);
}

.testi-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.testi-intro h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 12px; }
.testi-intro p  { color: var(--muted); font-size: .95rem; line-height: 1.7; }

.testi-intro-links { margin-top: 12px; font-size: 1rem; color: var(--muted); }
.testi-intro-links a { color: var(--blue); font-weight: 600; text-decoration: none; }
.testi-intro-links a:hover { text-decoration: underline; }

/* ── Grid & Cards ── */
.testi-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testi-card {
  flex: 1 1 280px;
  max-width: calc(33.333% - 16px);
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover   { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-card--user   { border-top: 3px solid var(--blue); }

.testi-quote-mark {
  font-size: 4rem; line-height: 1;
  font-family: Georgia, serif;
  color: var(--blue); opacity: .15;
  position: absolute; top: 16px; left: 22px;
  pointer-events: none;
}

.testi-stars          { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg      { width: 16px; height: 16px; fill: #f59e0b; }
.testi-stars svg.empty{ fill: #d1d5db; }

.testi-body {
  font-size: 1rem; color: #3a4560;
  line-height: 1.75; flex: 1;
  margin-bottom: 24px; font-style: italic;
}

.testi-footer {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border); padding-top: 18px;
}

.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #4ab8e8);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .95rem; font-weight: 800; color: #fff;
}

.testi-meta { flex: 1; min-width: 0; }
.testi-name {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.testi-role {
  font-size: .78rem; color: var(--muted); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.testi-category {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; padding: 3px 9px; border-radius: 20px;
  color: #fff; flex-shrink: 0;
}
.cat-pink   { background: #e91e8c; }
.cat-blue   { background: #1e7fc4; }
.cat-purple { background: #7c3aed; }
.cat-green  { background: #16a34a; }
.cat-red    { background: #dc2626; }
.cat-orange { background: #ea580c; }
.cat-yellow { background: #d97706; }

.testi-empty {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 24px;
  width: 100%;
}

.testi-page-links { text-align: center; margin-top: 48px; font-size: 1rem; color: var(--muted); }
.testi-page-links a { color: var(--blue); font-weight: 600; text-decoration: none; }
.testi-page-links a:hover { text-decoration: underline; }

/* ── Submit Form ── */
.testi-form-section {
  padding: 80px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}

/* Two-column layout: info panel + form card */
.testi-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Left info panel */
.testi-form-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  color: #fff;
  position: sticky;
  top: 90px;
}
.testi-form-panel .section-tag--light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
.testi-form-panel h2 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin: 16px 0 14px;
  line-height: 1.25;
}
.testi-form-panel > p {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.testi-form-benefits {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.testi-form-benefits li {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem; color: rgba(255,255,255,.85); font-weight: 500;
}
.testi-form-benefits li svg {
  width: 16px; height: 16px;
  stroke: #4ab8e8; flex-shrink: 0;
}

.testi-form-stats {
  display: flex; gap: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
}
.testi-form-stat { display: flex; flex-direction: column; gap: 3px; }
.testi-form-stat strong {
  font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1;
}
.testi-form-stat span { font-size: .75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }

/* Right form card */
.testi-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(6,24,40,.08);
  overflow: hidden;
}

.testi-form-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1e7fc4 100%);
  padding: 28px 36px;
}
.testi-form-card-header h3 {
  color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 4px;
}
.testi-form-card-header p {
  color: rgba(255,255,255,.6); font-size: .8rem; margin: 0;
}

.testi-form-card form {
  padding: 36px;
}

.testi-form-row { display: grid; grid-template-columns: 1fr; gap: 0; }

.testi-form-field { display: flex; flex-direction: column; margin-bottom: 20px; }
.testi-form-field label {
  font-size: .78rem; font-weight: 700; color: var(--navy);
  margin-bottom: 7px; letter-spacing: .04em; text-transform: uppercase;
}
.testi-form-field input,
.testi-form-field select,
.testi-form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem; color: var(--navy);
  background: var(--light);
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  appearance: none;
}
.testi-form-field input:focus,
.testi-form-field select:focus,
.testi-form-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30,127,196,.08);
}
.testi-form-field input.error,
.testi-form-field select.error,
.testi-form-field textarea.error {
  border-color: #dc2626;
  background: #fff5f5;
}
.testi-form-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* Custom select arrow */
.testi-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231e7fc4' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.testi-field-error { font-size: .75rem; color: #dc2626; margin-top: 5px; display: none; font-weight: 500; }
.testi-field-error.show { display: block; }

/* ── Star Rating Input ── */
.star-rating-input { display: flex; gap: 4px; margin-top: 4px; padding: 8px 0; position: relative; z-index: 1; }
.star-rating-input span {
  font-size: 2.2rem; color: #d1d5db; cursor: pointer;
  transition: color .12s, transform .12s; line-height: 1; user-select: none;
}
.star-rating-input span:hover,
.star-rating-input span.lit { color: #f59e0b; transform: scale(1.2); }

.star-rating-error { font-size: .75rem; color: #dc2626; margin-top: 4px; display: none; font-weight: 500; }
.star-rating-error.show { display: block; }

/* Submit button */
.testi-submit-btn {
  width: 100%; padding: 15px 24px;
  background: var(--amber);
  color: #fff; border: none; border-radius: 10px;
  font-size: .95rem; font-weight: 700; font-family: inherit;
  cursor: pointer; margin-top: 4px;
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
}
.testi-submit-btn:hover { background: var(--amber-dark); transform: translateY(-1px); }
.testi-submit-btn:active { transform: translateY(0); }

.testi-form-success,
.testi-success {
  display: flex; align-items: center; gap: 12px;
  background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: 10px; padding: 16px 20px; margin-top: 16px;
  color: #16a34a; font-size: 1rem; font-weight: 600;
}
.testi-form-success svg,
.testi-success svg { width: 20px; height: 20px; stroke: #16a34a; flex-shrink: 0; }

/* ── CTA ── */
.testi-cta { padding: 64px 0 80px; background: var(--light); }
.testi-cta-inner {
  background: var(--navy); border-radius: 16px;
  padding: 48px 40px; text-align: center; color: #fff;
}
.testi-cta h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 10px; }
.testi-cta p  { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.testi-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .testi-card { max-width: calc(50% - 12px); }
  .testi-form-layout { grid-template-columns: 1fr; }
  .testi-form-panel { position: static; }
}
@media (max-width: 640px) {
  .testi-card        { max-width: 100%; }
  .testi-form-row    { grid-template-columns: 1fr; }
  .testi-form-card form { padding: 24px 20px; }
  .testi-form-panel  { padding: 32px 24px; }
  .testi-cta-inner   { padding: 36px 24px; }
}

/* ── Cookie Consent Banner ────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(13,37,64,.28);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22,.68,0,1.2);
}
#cookie-banner.cb-visible {
  transform: translateY(0);
}
.cb-text {
  flex: 1 1 300px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
}
.cb-text strong {
  color: #fff;
  display: block;
  font-size: .95rem;
  margin-bottom: 4px;
}
.cb-text a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cb-text a:hover { color: #e85fa0; }
.cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cb-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.cb-btn-accept {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.cb-btn-accept:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
}
.cb-btn-decline {
  background: transparent;
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.35);
}
.cb-btn-decline:hover {
  border-color: rgba(255,255,255,.75);
  color: #fff;
}
@media (max-width: 600px) {
  #cookie-banner { padding: 16px 18px; gap: 14px; }
  .cb-actions { width: 100%; justify-content: stretch; }
  .cb-btn { flex: 1; text-align: center; }
}


/* ── Policies Page ───────────────────────────────────────────── */
/* ── Policies page styles ─────────────────────────── */
    .pol-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Sticky sidebar + content layout */
    .pol-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 48px;
      align-items: start;
      padding: 72px 0 100px;
    }

    /* Sidebar nav */
    .pol-sidebar {
      position: sticky;
      top: 100px;
    }
    .pol-sidebar-title {
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .pol-nav {
      list-style: none;
      padding: 0;
      margin: 0;
      border-left: 2px solid #e5e9f0;
    }
    .pol-nav li a {
      display: block;
      padding: 9px 16px;
      font-size: 1rem;
      color: var(--muted);
      text-decoration: none;
      border-left: 2px solid transparent;
      margin-left: -2px;
      transition: color .2s, border-color .2s;
      line-height: 1.4;
    }
    .pol-nav li a:hover,
    .pol-nav li a.active {
      color: var(--navy);
      border-left-color: var(--amber);
      font-weight: 600;
    }

    /* Policy sections */
    .pol-section {
      margin-bottom: 40px;
      border: 1px solid #e5e9f0;
      border-radius: 14px;
      overflow: hidden;
    }

    .pol-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 28px;
      background: #f8fafc;
      cursor: pointer;
      gap: 16px;
      user-select: none;
    }
    .pol-header:hover { background: #f1f5fb; }

    .pol-header-left { flex: 1; }
    .pol-header-left h2 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 6px;
    }
    .pol-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .pol-meta span {
      font-size: .72rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .pol-ref {
      display: inline-block;
      background: var(--navy);
      color: #fff;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .06em;
      padding: 3px 9px;
      border-radius: 20px;
      margin-bottom: 8px;
    }

    .pol-chevron {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      color: var(--muted);
      transition: transform .3s ease;
    }
    .pol-section.open .pol-chevron { transform: rotate(180deg); }

    .pol-body {
      display: none;
      padding: 32px 28px;
      border-top: 1px solid #e5e9f0;
    }
    .pol-section.open .pol-body { display: block; }

    /* Policy content typography */
    .pol-body h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin: 28px 0 10px;
      padding-bottom: 6px;
      border-bottom: 2px solid #e5e9f0;
    }
    .pol-body h3:first-child { margin-top: 0; }
    .pol-body p {
      font-size: .92rem;
      color: #444;
      line-height: 1.75;
      margin-bottom: 12px;
    }
    .pol-body ul {
      margin: 0 0 16px 0;
      padding-left: 20px;
    }
    .pol-body ul li {
      font-size: .92rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 6px;
    }
    .pol-body a { color: var(--amber); text-decoration: underline; }

    /* Stage boxes (Appeals) */
    .pol-stage {
      background: #f8fafc;
      border-left: 4px solid var(--amber);
      border-radius: 0 8px 8px 0;
      padding: 16px 20px;
      margin-bottom: 16px;
    }
    .pol-stage strong {
      display: block;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    /* Org roles table */
    .pol-roles-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1rem;
      margin-bottom: 24px;
    }
    .pol-roles-table th {
      background: var(--navy);
      color: #fff;
      padding: 10px 14px;
      text-align: left;
      font-weight: 600;
    }
    .pol-roles-table td {
      padding: 10px 14px;
      border-bottom: 1px solid #e5e9f0;
      vertical-align: top;
      color: #444;
      line-height: 1.6;
    }
    .pol-roles-table tr:nth-child(even) td { background: #f8fafc; }

    /* Contact box */
    .pol-contact-box {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
      border-radius: 10px;
      padding: 20px 24px;
      margin-top: 28px;
    }
    .pol-contact-box p {
      color: rgba(255,255,255,.85) !important;
      margin-bottom: 6px;
    }
    .pol-contact-box a { color: #fff !important; }
    .pol-contact-box h4 {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    /* Mobile pill nav */
    .pol-pill-nav {
      display: none;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      padding: 28px 0 4px;
    }
    .pol-pill-nav a {
      display: inline-block;
      padding: 8px 16px;
      border-radius: 50px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--navy);
      background: #f0f4fa;
      border: 1.5px solid #dce4f0;
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s;
      white-space: nowrap;
    }
    .pol-pill-nav a:hover,
    .pol-pill-nav a.active {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }

    @media (max-width: 860px) {
      .pol-layout { grid-template-columns: 1fr; gap: 32px; padding: 16px 0 72px; }
      .pol-sidebar { position: static; display: none; }
      .pol-pill-nav { display: flex; }
    }
    @media (max-width: 560px) {
      .pol-header { padding: 18px 20px; }
      .pol-body { padding: 24px 20px; }
      .pol-header-left h2 { font-size: 1rem; }
    }

/* ── Privacy Policy Page ─────────────────────────────────────── */
.priv-wrap {
      max-width: 820px;
      margin: 0 auto;
      padding: 72px 24px 100px;
    }
    .priv-wrap h2 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin: 40px 0 10px;
      padding-bottom: 8px;
      border-bottom: 2px solid #e5e9f0;
    }
    .priv-wrap h2:first-of-type { margin-top: 0; }
    .priv-wrap p {
      font-size: .95rem;
      color: #444;
      line-height: 1.8;
      margin-bottom: 14px;
    }
    .priv-wrap ul {
      margin: 0 0 16px 0;
      padding-left: 22px;
    }
    .priv-wrap ul li {
      font-size: .95rem;
      color: #444;
      line-height: 1.75;
      margin-bottom: 8px;
    }
    .priv-wrap a { color: var(--amber); text-decoration: underline; }
    .priv-meta {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      padding: 16px 20px;
      background: #f8fafc;
      border-radius: 10px;
      border: 1px solid #e5e9f0;
    }
    .priv-meta span {
      font-size: .8rem;
      color: var(--muted);
    }
    .priv-meta strong { color: var(--navy); }
    .priv-contact-box {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
      border-radius: 12px;
      padding: 24px 28px;
      margin-top: 40px;
    }
    .priv-contact-box h3 {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 14px;
      border: none;
      padding: 0;
    }
    .priv-contact-box p {
      color: rgba(255,255,255,.8);
      margin-bottom: 6px;
    }
    .priv-contact-box a { color: #fff; }
/* ── Policies Contact CTA ─────────────────────────────────── */
.pol-cta {
  background: var(--navy);
  padding: 64px 0;
}
.pol-cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.pol-cta-text {
  flex: 1 1 280px;
}
.pol-cta-text h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.pol-cta-text p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  line-height: 1.65;
  max-width: 420px;
}
.pol-cta-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pol-cta-person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 18px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
  min-width: 180px;
}
.pol-cta-person:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.28);
}
.pol-cta-person svg {
  width: 18px; height: 18px;
  stroke: var(--sky);
  margin-bottom: 6px;
}
.pol-cta-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.pol-cta-role {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}
.pol-cta-num {
  font-size: .95rem;
  font-weight: 700;
  color: var(--sky);
  margin-top: 4px;
}
.pol-cta-btn {
  align-self: center;
  white-space: nowrap;
  padding: 14px 28px;
  font-size: .95rem;
}
@media (max-width: 860px) {
  .pol-cta { padding: 48px 0; }
  .pol-cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .pol-cta-contacts { width: 100%; }
  .pol-cta-person { flex: 1 1 140px; min-width: 0; }
  .pol-cta-btn { width: 100%; text-align: center; }
}
@media (max-width: 500px) {
  .pol-cta-contacts { flex-direction: column; }
  .pol-cta-person { width: 100%; }
}


/* ============================================================
   iPad Pro landscape (1366×1024) — hero height fix only
   min-height: 950px excludes laptops at the same width (~768px)
   ============================================================ */
@media (min-width: 1300px) and (max-width: 1420px) and (min-height: 950px) {
  /* Home page hero */
  .hero { min-height: 78vh; }
  /* All inner page heroes (contact-page-hero is the actual class used) */
  .contact-page-hero { height: 56vh; min-height: 460px; overflow: hidden; }
  .course-hero       { height: 56vh; min-height: 460px; }
}

/* ============================================================
   Leaflet 1.9.4 — Map Styles (inlined from CDN)
   ============================================================ */
.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane > svg,.leaflet-pane > canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}
.leaflet-container{overflow:hidden}
.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}
.leaflet-tile::selection{background:transparent}
.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}
.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}
.leaflet-marker-icon,.leaflet-marker-shadow{display:block}
.leaflet-container .leaflet-overlay-pane svg{max-width:none !important;max-height:none !important}
.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none !important;max-height:none !important;width:auto;padding:0}
.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}
.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}
.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}
.leaflet-container{-webkit-tap-highlight-color:transparent}
.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,0.4)}
.leaflet-tile{filter:inherit;visibility:hidden}
.leaflet-tile-loaded{visibility:inherit}
.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}
.leaflet-overlay-pane svg{-moz-user-select:none}
.leaflet-pane{z-index:400}
.leaflet-tile-pane{z-index:200}
.leaflet-overlay-pane{z-index:400}
.leaflet-shadow-pane{z-index:500}
.leaflet-marker-pane{z-index:600}
.leaflet-tooltip-pane{z-index:650}
.leaflet-popup-pane{z-index:700}
.leaflet-map-pane canvas{z-index:100}
.leaflet-map-pane svg{z-index:200}
.leaflet-vml-shape{width:1px;height:1px}
.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}
.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}
.leaflet-top{top:0}
.leaflet-right{right:0}
.leaflet-bottom{bottom:0}
.leaflet-left{left:0}
.leaflet-control{float:left;clear:both}
.leaflet-right .leaflet-control{float:right}
.leaflet-top .leaflet-control{margin-top:10px}
.leaflet-bottom .leaflet-control{margin-bottom:10px}
.leaflet-left .leaflet-control{margin-left:10px}
.leaflet-right .leaflet-control{margin-right:10px}
.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity 0.2s linear;-moz-transition:opacity 0.2s linear;transition:opacity 0.2s linear}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}
.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}
svg.leaflet-zoom-animated{will-change:transform}
.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform 0.25s cubic-bezier(0,0,0.25,1);-moz-transition:-moz-transform 0.25s cubic-bezier(0,0,0.25,1);transition:transform 0.25s cubic-bezier(0,0,0.25,1)}
.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}
.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}
.leaflet-interactive{cursor:pointer}
.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}
.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}
.leaflet-popup-pane,.leaflet-control{cursor:auto}
.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}
.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane > svg path,.leaflet-tile-container{pointer-events:none}
.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane > svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}
.leaflet-container{background:#ddd;outline-offset:1px}
.leaflet-container a{color:#0078A8}
.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,0.5)}
.leaflet-container{font-family:"Helvetica Neue",Arial,Helvetica,sans-serif;font-size:12px;font-size:0.75rem;line-height:1.5}
.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,0.65);border-radius:4px}
.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:black}
.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}
.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}
.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}
.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}
.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}
.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}
.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}
.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}
.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:bold 18px 'Lucida Console',Monaco,monospace;text-indent:1px}
.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}
.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,0.4);background:#fff;border-radius:5px}
.leaflet-control-layers-toggle{background-image:url(https://unpkg.com/leaflet@1.9.4/dist/images/layers.png);width:36px;height:36px}
.leaflet-retina .leaflet-control-layers-toggle{background-image:url(https://unpkg.com/leaflet@1.9.4/dist/images/layers-2x.png);background-size:26px 26px}
.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}
.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}
.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}
.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}
.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}
.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}
.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}
.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}
.leaflet-default-icon-path{background-image:url(https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon.png)}
.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,0.8);margin:0}
.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}
.leaflet-control-attribution a{text-decoration:none}
.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}
.leaflet-attribution-flag{display:inline !important;vertical-align:baseline !important;width:1em;height:0.6669em}
.leaflet-left .leaflet-control-scale{margin-left:5px}
.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}
.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,0.8);text-shadow:1px 1px #fff}
.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}
.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}
.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}
.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,0.2);background-clip:padding-box}
.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}
.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}
.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}
.leaflet-popup-content p{margin:17px 0;margin:1.3em 0}
.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}
.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}
.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:white;color:#333;box-shadow:0 3px 14px rgba(0,0,0,0.4)}
.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}
.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}
.leaflet-popup-scrolled{overflow:auto}
.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}
.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}
.leaflet-div-icon{background:#fff;border:1px solid #666}
.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,0.4)}
.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}
.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}
.leaflet-tooltip-bottom{margin-top:6px}
.leaflet-tooltip-top{margin-top:-6px}
.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}
.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}
.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}
.leaflet-tooltip-left{margin-left:-6px}
.leaflet-tooltip-right{margin-left:6px}
.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}
.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}
.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}
@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}
