/* ══════════════════════════════════════════════════
   EMINENCE — Shared Design System v6
   Yellow: #FEC224 (exact logo) · Blue: #071E9E
   Backgrounds: White throughout
   Used by: index.html · about.html · program.html · contact.html
   ══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --yellow: #FEC224;
  --yellow-lt: #FFD966;
  --yellow-dk: #E0A800;
  --yellow-bg: #FFFBEE;
  --blue: #071E9E;
  --blue-mid: #1A2FAD;
  --blue-lt: #3B5BE0;
  --blue-pale: #EEF2FF;
  --white: #FFFFFF;
  --off: #F8F9FA;
  --cream: #FFFDF4;
  --text: #1A1A2E;
  --mid: #4A4A68;
  --light: #8888A0;
  --border: #E4E4EC;
  --sh1: 0 2px 12px rgba(0, 0, 0, .06);
  --sh2: 0 6px 28px rgba(0, 0, 0, .10);
  --sh3: 0 16px 48px rgba(0, 0, 0, .13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden
}

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

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

ul {
  list-style: none
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text)
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem)
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem)
}

h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700
}

p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.85
}

/* ── LOGO ── */
.logo img {
  height: 52px;
  width: auto;
  display: block
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 76px;
  box-shadow: var(--sh1)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
  white-space: nowrap
}

.nav-links a:hover,
.nav-links a.cur {
  color: var(--blue)
}

.nav-links a.cur::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px
}

.nav-cta {
  background: var(--yellow);
  color: var(--text) !important;
  padding: .55rem 1.5rem;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  box-shadow: 0 3px 12px rgba(254, 194, 36, .4);
  transition: all .18s !important
}

.nav-cta:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254, 194, 36, .5) !important
}

/* Hide hamburger on desktop */
.mobile-menu {
  display: none;
}

/* ===========================
   Mobile Navigation
=========================== */

@media (max-width:900px) {

  .mobile-menu {
    display: block;
  }

  .nav {
    padding: 0 20px;
  }

  /* Hide desktop menu */
  .nav-links {
    display: none;
  }

  /* Hamburger */
  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    z-index: 1002;
  }

  .menu-toggle span {
    width: 30px;
    height: 3px;
    background: #2b2b2b;
    border-radius: 5px;
    transition: .3s;
  }

  .mobile-menu ul:first-child li:first-child {
    border-bottom: 1px solid rgb(213, 213, 213);
    padding-bottom: 25px;
  }

  .mobile-menu ul:first-child li:last-child {
    border-bottom: 1px solid rgb(213, 213, 213);
    padding-bottom: 35px;
  }

  .social-icons {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
  }

  .social-icons li {
    display: flex;
    align-items: center;
  }

  .social-icons i {
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--blue);
  }

  /* Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1000;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Drawer */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: .35s ease;
    z-index: 1001;
    padding: 28px 30px 40px 30px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, .15);
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu ul:first-child {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .mobile-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--mid);
    display: inline-block;
  }

  .mobile-menu img {
    max-width: 120px;
  }

  .mobile-menu .nav-cta {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
  }

  /*---- Mobile Menu Active Class ----*/
  .mobile-menu a {
    position: relative;
  }

  .mobile-menu a.cur {
    color: var(--blue);
  }

  .mobile-menu a.cur::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    /* or 100% */
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
  }

  /* Hamburger Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
  }

}

/*---- Hide Home Hero Mobile Image On Desktop----*/
@media (min-width: 901px) {
  .hero-visual-mobile {
    display: none;
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  border-radius: 8px;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none
}

.btn-lg {
  padding: 1.05rem 2.6rem;
  font-size: .92rem
}

.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(254, 194, 36, .35)
}

.btn-yellow:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  box-shadow: 0 8px 24px rgba(254, 194, 36, .45);
  transform: translateY(-2px)
}

.btn-dark {
  background: var(--text);
  color: #fff;
  border-color: var(--text)
}

.btn-dark:hover {
  background: #2A2A4E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue)
}

.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 30, 158, .3)
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue)
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px)
}

.btn-outline-wt {
  background: transparent;
  color: var(--text);
  border-color: rgba(26, 26, 46, .4)
}

.btn-outline-wt:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px)
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important
}

/* ── UTILS ── */
.ew {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .3rem .9rem;
  border-radius: 3px;
  margin-bottom: .9rem
}

.ew.yw {
  color: var(--text);
  background: rgba(254, 194, 36, .18);
  border: 1px solid rgba(254, 194, 36, .35)
}

.ew.wt {
  color: rgba(26, 26, 46, .7);
  background: rgba(255, 255, 255, .3)
}

.div-bar {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--yellow);
  margin: .8rem 0 1.5rem
}

.div-bar.cen {
  margin: .8rem auto 1.5rem
}

.div-bar.yl {
  background: var(--yellow)
}

.div-bar.wt {
  background: rgba(26, 26, 46, .25)
}

.sec {
  padding: 6rem 5%
}

.sec-sm {
  padding: 4rem 5%
}

.wrap {
  max-width: 1220px;
  margin: 0 auto
}

.tc {
  text-align: center
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem
}

.bg-off {
  background: var(--off)
}

.bg-cream {
  background: var(--cream)
}

/* ── PAGE HERO (inner pages: About / Programs / Contact) ── */
.page-hero {
  background: var(--blue);
  border-top: 4px solid var(--yellow);
  padding: 6rem 5% 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 194, 36, .15) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.page-hero .breadcrumb {
  font-size: .76rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .6)
}

.page-hero .breadcrumb span {
  color: var(--yellow)
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1
}

.page-hero p {
  color: rgba(255, 255, 255, .75);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.04rem;
  position: relative;
  z-index: 1
}

/* ── HOMEPAGE HERO ── */
.hero {
  background: var(--white);
  border-top: 4px solid var(--yellow);
  padding: 5.5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: var(--off);
  z-index: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-text {
  position: relative;
  z-index: 1
}

.hero-text h1 {
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.08
}

.hero-text h1 em {
  font-style: italic;
  color: var(--blue);
  display: block
}

.hero-accent {
  display: inline-block;
  width: 56px;
  height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  margin-bottom: 1.8rem
}

.hero-sub {
  color: var(--mid);
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 2.4rem;
  line-height: 1.85
}

.hero-btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap
}

.hero-visual {
  position: relative;
  z-index: 1
}

.hero-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background-image: url('images/home-hero-image-new.webp?v=1.2');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: var(--sh3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
}

.hero-img-label {
  font-size: .75rem;
  color: var(--light);
  letter-spacing: .12em;
  text-transform: uppercase
}

.hero-img::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--yellow);
  border-left: 4px solid var(--yellow);
  border-radius: 4px 0 0 0;
}

.hero-img::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid var(--yellow);
  border-right: 4px solid var(--yellow);
  border-radius: 0 0 4px 0;
}

.hero-logo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  padding: .6rem .9rem;
  box-shadow: var(--sh2);
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 200px;
}

.hero-logo-badge img {
  height: 34px;
  width: auto;
}

.hero-logo-badge-mobile {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--white);
  border-radius: 10px;
  padding: .6rem .9rem;
  box-shadow: var(--sh2);
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 200px;
}

.hero-logo-badge-mobile img {
  height: 34px;
  width: auto;
}

.badge-text {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3
}

.badge-sub {
  font-size: .6rem;
  color: var(--light);
  margin-top: 1px
}

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--yellow);
  padding: 2.5rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-band-logo {
  height: 65px;
  width: auto;
  flex-shrink: 0
}

.quote-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  font-style: italic;
}

/* ── PROGRAM CARDS (homepage summary cards) ── */
.prog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem
}

.prog-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .22s, box-shadow .22s;
}

.prog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh2)
}

.prog-header {
  padding: 2rem 1.8rem 1.6rem
}

.prog-header.ph-blue {
  background: var(--blue);
  color: #fff
}

.prog-header.ph-yellow {
  background: var(--yellow)
}

.prog-header.ph-blue2 {
  background: var(--blue-mid);
  color: #fff
}

.prog-tag {
  font-family: 'Poppins', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  opacity: .7;
}

.prog-header.ph-yellow .prog-tag {
  color: var(--blue)
}

.prog-icon {
  font-size: 2rem;
  margin-bottom: .7rem;
  display: block
}

.prog-header h3 {
  font-size: 1.1rem;
  margin: 0
}

.prog-header.ph-blue h3,
.prog-header.ph-blue2 h3 {
  color: #fff
}

.prog-header.ph-yellow h3 {
  color: var(--text)
}

.prog-body {
  padding: 1.6rem 1.8rem 2rem
}

.prog-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem
}

.prog-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: var(--mid);
}

.prog-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--yellow-dk);
  flex-shrink: 0;
  margin-top: .45rem;
}

.prog-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  border-bottom: 2px solid transparent;
  transition: border-color .2s, gap .2s;
  padding-bottom: 2px;
}

.prog-card:hover .prog-cta {
  border-color: var(--yellow);
  gap: .6rem
}

/* ── WHO SHOULD JOIN / WHO CAN JOIN (shared by index + program) ── */
.who-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3.2;
  box-shadow: var(--sh2);
  position: relative
}

.who-img-inner {
  width: 100%;
  height: 100%;
  background-image: url('images/home-who-should-join.webp');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.who-img::before {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--yellow);
  border-radius: 10px;
  z-index: -1;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: .7rem
}

.who-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.2rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color .2s, transform .15s;
}

.who-item:hover {
  border-color: var(--yellow);
  transform: translateX(4px)
}

.who-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: .7rem;
  font-weight: 900;
}

.who-item span {
  font-size: .92rem;
  color: var(--mid)
}

/* ── SKILLS GRID (homepage) ── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem
}

.skill-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.3rem;
  transition: border-color .2s, box-shadow .2s, transform .18s;
}

.skill-item:hover {
  border-color: var(--yellow);
  box-shadow: var(--sh1);
  transform: translateY(-2px)
}

.skill-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.skill-title {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem
}

.skill-sub {
  font-size: .78rem;
  color: var(--light);
  line-height: 1.5
}

/* ── CAREER MINI (homepage condensed career cards) ── */
.career-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem
}

.cm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  border-left: 4px solid var(--yellow);
  transition: box-shadow .2s, transform .18s;
}

.cm-card:hover {
  box-shadow: var(--sh1);
  transform: translateY(-2px)
}

.cm-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: .1rem;
  color: var(--blue);
}

.cm-title {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem
}

/* About image frames */
.about-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1.05;
  box-shadow: var(--sh3);
  position: relative
}

.about-img::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--yellow);
  border-radius: 10px;
  z-index: -1
}

.about-img-inner {
  width: 100%;
  height: 100%;
  background-image: url('images/About-Why-We-Exist.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

/* IMTTI block */
.imtti-block {
  background: var(--blue);
  border-radius: 14px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  align-items: center
}

.imtti-emblem {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: url('icons/IMTTI-Home-Hero-Icon.webp');
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.942);
  border: 2px solid rgba(254, 194, 36, .5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  flex-shrink: 0;
  position: relative
}

.imtti-emblem::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px dashed rgba(254, 194, 36, .3)
}

.imtti-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1
}

.imtti-sub {
  font-family: 'Poppins', sans-serif;
  font-size: .5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase
}

.imtti-text h2 {
  color: #fff;
  margin-bottom: .6rem
}

.imtti-text p {
  color: rgba(255, 255, 255, .75)
}

.imtti-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.3rem
}

.imtti-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 4px;
  padding: .38rem .9rem;
  font-family: 'Poppins', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9)
}

.imtti-chip::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--yellow-dk);
}

/* Journey cards */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

@media(max-width:1000px) {
  .imtti-bullets {
    justify-content: center;
  }

  .imtti-text .div-bar {
    margin: .8rem auto 1.5rem auto;
  }

  .imtti-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .imtti-emblem {
    margin: 0 auto
  }

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

@media(max-width:640px) {
  .journey-grid {
    grid-template-columns: 1fr
  }
}

/* ── UNIFORM BULLET LISTS (about.html) ── */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: .55rem
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  color: var(--mid)
}

.bullet-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--yellow-dk);
  flex-shrink: 0;
  margin-top: .45rem
}

/* ── CARD COMPONENTS (about.html journey cards) ── */
.exp-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow)
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh2);
  border-color: var(--yellow)
}

.exp-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--yellow-bg);
  border: 2px solid rgba(254, 194, 36, .3);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  transition: background .2s, transform .2s
}

.exp-card:hover .exp-icon {
  background: var(--yellow);
  transform: scale(1.06)
}

/* ── FAQ (shared across pages) ── */
.about-faq-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: .7rem;
  overflow: hidden;
  transition: border-color .2s
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--yellow)
}

.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  text-align: left
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .78rem;
  transition: transform .3s, background .2s, border-color .2s
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--yellow);
  border-color: var(--yellow)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease
}

.faq-item.open .faq-a {
  max-height: 320px
}

.faq-a-inner {
  padding: .9rem 1.5rem 1.2rem;
  border-top: 1px solid var(--border);
  font-size: .9rem;
  color: var(--mid)
}

/* ── CTA SECTION (shared) ── */
.cta-sec {
  background: var(--yellow);
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none
}

.cta-logo {
  height: 65px;
  width: auto;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1
}

.cta-sec h2 {
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1
}

.cta-sec p {
  color: rgba(26, 26, 46, .72);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  position: relative;
  z-index: 1
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

/* PROGRAM DETAIL SECTIONS */
.prog-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 5rem
}

.prog-section.flip {
  direction: rtl
}

.prog-section.flip>* {
  direction: ltr
}

.prog-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/.85;
  box-shadow: var(--sh2);
  position: relative
}

.prog-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

.prog-img.blue-bg .prog-img-inner {
  background-image: url('images/Programs-Montessori-Teacher-Training.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.prog-img.yellow-bg .prog-img-inner {
  background-image: url('images/Programs-Teacher-Grooming-and-Professional.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.prog-img.blue2-bg .prog-img-inner {
  background-image: url('images/Programs-Parenting-Workshops-and-Parent-Empowerment.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.prog-img::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 65%;
  height: 65%;
  border: 3px solid var(--yellow);
  border-radius: 10px;
  z-index: -1
}

.prog-img.flip-accent::before {
  right: auto;
  left: -10px
}

.prog-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--yellow);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 3px;
  margin-bottom: 1rem
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin: 1.4rem 0
}

.focus-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: .7rem 1rem;
  font-size: .84rem;
  color: var(--mid);
  transition: border-color .18s, background .18s
}

.focus-item:hover {
  border-color: var(--yellow);
  background: var(--white)
}

.focus-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--yellow-dk);
  flex-shrink: 0
}

/* WHO LIST */
.who-list {
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.who-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.2rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color .18s, transform .15s
}

.who-item:hover {
  border-color: var(--yellow);
  transform: translateX(4px)
}

.who-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: .7rem;
  font-weight: 900
}

.who-item span {
  font-size: .9rem;
  color: var(--mid)
}

/* CAREER CARDS */
.career-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem
}

.career-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  padding: 1.4rem;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  transition: box-shadow .2s, transform .18s
}

.career-card:hover {
  box-shadow: var(--sh1);
  transform: translateY(-2px)
}

.cc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--blue);
}

.cc-title {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem
}

/* WHY CARDS */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem
}

.why-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 1.8rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow)
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh1);
  border-color: var(--yellow)
}

.why-icon {
  font-size: 2rem;
  margin-bottom: .85rem;
  display: block;
  color: var(--blue);
}

.why-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .35rem
}

/* PROG DIVIDER */
.prog-div {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent)
}

@media(max-width:1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .about-faq-box {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .prog-section,
  .prog-section.flip {
    grid-template-columns: 1fr;
    direction: ltr
  }

  .career-cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .focus-grid {
    grid-template-columns: 1fr
  }

  .career-cards {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }
}

/* ── FOOTER (shared, identical on every page) ── */
.footer {
  background: #0A0A2E;
  padding: 5rem 5% 2.5rem
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.2rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1220px;
  margin: 0 auto 3rem
}

.ft-head {
  font-family: 'Poppins', sans-serif;
  font-size: .80rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 1.2rem
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: .55rem
}

.ft-links a {
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
  transition: color .2s, padding-left .18s
}

.ft-links a:hover {
  color: var(--yellow);
  padding-left: 4px
}

.ft-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .8rem
}

.ft-contact-row .ic {
  color: var(--yellow);
  font-size: .88rem;
  margin-top: .1rem;
  flex-shrink: 0
}

.ft-contact-row a,
.ft-contact-row span {
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s
}

.ft-contact-row a:hover {
  color: var(--yellow)
}

.ft-tagline {
  font-size: .86rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  color: rgba(255, 255, 255, .28);
  max-width: 1220px;
  margin: 0 auto
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45)
}

.footer-bottom a:hover {
  color: var(--yellow)
}

.social-icons-footer {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.social-icons-footer li {
  display: flex;
  align-items: center;
}

.social-icons-footer i {
  font-size: 1.4rem;
  cursor: pointer;
  color: #a8a8a8;
}




/* ── CONTACT PAGE: TWO-COLUMN LAYOUT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.contact-illustration {
  position: relative
}

.illu-frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1/1.05;
  background: linear-gradient(160deg, #e8edf8 0%, #d4daf5 100%);
  box-shadow: var(--sh3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illu-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--yellow);
  border-left: 4px solid var(--yellow);
  border-radius: 4px 0 0 0;
}

.illu-frame::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid var(--yellow);
  border-right: 4px solid var(--yellow);
  border-radius: 0 0 4px 0;
}

.illu-svg {
  width: 78%;
  height: 78%
}

.illu-badge {
  position: absolute;
  top: 1.6rem;
  right: -1.4rem;
  background: var(--white);
  border-radius: 10px;
  padding: .7rem 1rem;
  box-shadow: var(--sh2);
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 190px;
}

.illu-badge .ib-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0
}

.illu-badge-text {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3
}

.illu-badge-sub {
  font-size: .6rem;
  color: var(--light);
  margin-top: 1px
}

.contact-info-strip {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.6rem
}

.cis-item {
  display: flex;
  align-items: center;
  gap: .8rem
}

.cis-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.cis-text {
  font-size: .86rem;
  color: var(--mid);
  font-weight: 600;
}

.cis-text a {
  color: var(--text);
  font-weight: 600;
  transition: color .2s
}

.cis-text a:hover {
  color: var(--blue)
}

/* ── CONTACT FORM ── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.4rem;
  box-shadow: var(--sh2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem
}

.form-group.full {
  grid-column: 1/-1
}

.form-label {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .03em;
}

.form-label .req {
  color: var(--yellow-dk)
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .78rem .95rem;
  width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--light)
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(254, 194, 36, .18);
}

.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
  border-color: #E0716A;
}

.form-textarea {
  resize: vertical;
  min-height: 110px
}

.form-select {
  appearance: none;
  cursor: pointer;
  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='%238888A0' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center
}

.form-error {
  font-size: .74rem;
  color: #C8453A;
  display: none;
  margin-top: .15rem
}

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #E0716A
}

.form-group.has-error .form-error {
  display: block
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
  flex-wrap: wrap
}

.form-note {
  font-size: .76rem;
  color: var(--light)
}

.form-success {
  display: none;
  align-items: center;
  gap: .7rem;
  background: var(--yellow-bg);
  border: 1.5px solid rgba(254, 194, 36, .4);
  border-radius: 8px;
  padding: .9rem 1.1rem;
  margin-top: 1rem;
}

.form-success.show {
  display: flex
}

.form-success-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  font-size: .8rem
}

.form-success-text {
  font-size: .85rem;
  color: var(--text);
  font-weight: 600
}

.honeypot{
    position:absolute;
    left:-9999px;
    opacity:0;
    pointer-events:none;
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .prog-cards {
    grid-template-columns: 1fr 1fr
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 5%
  }

  .hero::after {
    display: none
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto
  }

  .hero-logo-badge {
    display: none
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .career-mini {
    grid-template-columns: repeat(2, 1fr)
  }

  .cta-sec {
    padding: 4.5rem 5%
  }

  .page-hero {
    padding: 5rem 4% 4rem
  }

  /* Contact: stack with FORM ON TOP, illustration below */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .contact-layout {
    display: flex;
    flex-direction: column
  }

  .contact-form-card {
    order: 1
  }

  .contact-illustration {
    order: 2;
    max-width: 420px;
    margin: 0 auto
  }

  .illu-badge {
    display: none
  }
}

@media(max-width:640px) {

  .prog-cards,
  .skills-grid {
    grid-template-columns: 1fr
  }

  .career-mini {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .footer-bottom {
    flex-direction: column;
    gap: .7rem;
    text-align: center
  }

  /* .nav-links {
    display: none
  } */

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: stretch
  }

  .quote-band {
    flex-direction: column;
    gap: 1rem
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .contact-form-card {
    padding: 1.6rem
  }
}