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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.12;
  font-weight: 400;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

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

/* ── Tokens ── */
:root {
  --navy: #1A3654;
  --teal: #206582;
  --peach: #FFDBB8;
  --sand: #FFDAB9;
  --slate: #607d97;
  --lgray: #f0f0f0;
  --r24: 24px;
  --r20: 20px;
}

/* ── Placeholder ── */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #b8ccd8 0%, #92aec2 100%);
}

/* ══════════════════ NAVBAR ══════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: transparent;
  transition: background .3s;
}

.navbar.scrolled {
  background: rgba(20, 40, 65, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 0 20px;
  height: 54px;
  backdrop-filter: blur(8px);
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 0 8px;
  gap: 2px;
  height: 54px;
  backdrop-filter: blur(8px);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all .2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.nav-cta {
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 0 30px;
  height: 54px;
  border-radius: 50px;
  border: none;
  transition: all .2s;
  box-shadow: 0 2px 16px rgba(255, 255, 255, 0.15);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

/* ══════════════════ HERO ══════════════════ */
.hero {
  min-height: 100vh;
  background: url('../images/hero-back.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  font-size: 58px;
  color: #fff;
  margin-bottom: 52px;
  line-height: 1.25;
  opacity: 0;
}

.hero-left p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
  max-width: 510px;
  margin-bottom: 52px;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: all .25s;
}

.btn-teal:hover {
  transform: translateY(-2px);
}

.cert .btn-teal {
  outline: 2px solid rgba(255, 218, 185, 0.5);
  outline-offset: 3px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.40);
  transition: all .25s;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 100px;
  opacity: 0;
}

.hero-card-wrap {
  position: relative;
  width: 400px;
  flex-shrink: 0;
}

.hero-img-card {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: var(--navy);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fbadge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 10px 16px;
  height: 50px;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0;
}

.fbadge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.fb-instagram {
  top: 40px;
  left: -94px;
}

.fb-canva {
  top: 120px;
  right: -94px;
}

.fb-youtube {
  bottom: 140px;
  right: -94px;
}

.fb-meta {
  bottom: 40px;
  left: -94px;
}

.fb-youtube img {
  transform: scale(1.35);
}

/* ══════════════════ SECTION SHELL ══════════════════ */
.sec-wrap {
  width: 100%;
  overflow: hidden;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  width: 100%;
}

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.sec-head h2 {
  font-size: 48px;
}

.sec-head p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

.sec-head.light h2 {
  color: #fff;
}

.sec-head.light p {
  color: rgba(255, 255, 255, 0.72);
}

/* ══════════════════ WHAT YOU WILL LEARN ══════════════════ */
.learn {
  padding: 100px 0 80px;
  background: #fff;
  border-radius: 48px 48px 0 0;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.learn-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.learn-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.lcard {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
  cursor: pointer;
}

.lcard-img {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border-radius: 30px;
  isolation: isolate;
  border: 6px solid rgba(180, 190, 210, 0.5);
}

.lcard:hover .lcard-img {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.learn-grid-3 .lcard-img {
  aspect-ratio: 428 / 376;
}

.learn-grid-3 .lcard-img img {
  transform: scale(1.08);
}

.learn-grid-2 .lcard-img {
  aspect-ratio: 16 / 9;
}

.lcard-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lcard-label {
  font-size: 18px;
  color: #111;
  padding: 0;
  text-align: center;
  background: transparent;
}

.dm-gradient {
  background: linear-gradient(135deg, #8baad0, #2d5893);
}

.sm-gradient {
  background: linear-gradient(135deg, #c8a87a, #e8d0a8);
}

.seo-gradient {
  background: linear-gradient(135deg, #c4d0e4, #7a9ab8);
}

.wa-gradient {
  background: linear-gradient(135deg, #0d2a1a, #34a853);
}

.ai-gradient {
  background: linear-gradient(135deg, #1a2060, #6080e0);
}

.learn-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-dark {
  background: var(--teal);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(32, 101, 130, 0.3);
}

.btn-dark:hover {
  transform: translateY(-2px);
}

.btn-peach {
  background: var(--peach);
  color: #5a3d20;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: all .25s;
}

.btn-peach:hover {
  transform: translateY(-2px);
}

/* ══════════════════ TOOLS ══════════════════ */
.tools {
  padding: 20px 0 100px;
  background: #fff;
}

.tools .sec-head {
  grid-template-columns: 0.7fr 1.3fr;
}

.tools .sec-head p {
  font-size: 17px;
  margin-left: auto;
}

.tool-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid #f0f0f0;
}

.tool-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.tcard {
  border-radius: var(--r24);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  justify-content: center;
}

.tcard-warm {
  background: url('../images/EWGRFEWR.png') center center / 220% auto no-repeat;
  transition: background-position 0.6s ease;
  overflow: hidden;
  width: 480px;
  height: 320px;
  min-height: unset;
  box-shadow: 0 0 0 6px rgba(32, 101, 130, 0.20);
}

.tcard-warm:hover {
  background-position: 100% 50%;
}

.tcard-dark {
  background: url('../images/EWGRFEWR.png') 0% 50% / 220% auto no-repeat;
  transition: background-position 0.6s ease;
  overflow: hidden;
  width: 480px;
  height: 320px;
  min-height: unset;
  box-shadow: 0 0 0 6px rgba(32, 101, 130, 0.20);
}

.tcard-dark:hover {
  background-position: 100% 50%;
}

.tcard-seo {
  background-position: 40% 80%;
  justify-content: space-between;
}

.tcard-seo:hover {
  background-position: 100% 20%;
}

.tcard-social {
  justify-content: space-between;
  background-position: 100% 50%;
}

.tcard-social:hover {
  background-position: 0% 50%;
}

.tpill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 10px 16px;
  height: 50px;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  width: fit-content;
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  transition: transform .2s;
}

.tpill:hover {
  transform: translateY(-2px);
}

.tpill-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.tpill-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.pill-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill-row.right {
  justify-content: flex-end;
}

.pill-row.center {
  justify-content: center;
}

.tool-text h3 {
  font-size: 34px;
  color: #111;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.tool-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

.tool-text.center-text {
  text-align: center;
}

.tool-text.center-text p {
  margin: 0 auto;
}

/* ══════════════════ WHO IS THIS FOR ══════════════════ */
.who {
  padding: 100px 0 80px;
  background: linear-gradient(160deg, rgba(32, 101, 130, 0.80) 0%, #033067 100%);
  position: relative;
  border-radius: 48px;
}

.who .sec-head h2 {
  color: #fff;
}

.who .sec-head p {
  color: rgba(255, 255, 255, 0.75);
}

/* ══ WHO CAROUSEL ══ */
.who-slider {
  position: relative;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  padding-bottom: 12px;
}

.who-track {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

.who-card {
  flex: 0 0 auto;
  border-radius: var(--r24);
  overflow: hidden;
  position: relative;
  height: 480px;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform .3s;
}

.who-card:hover {
  transform: translateY(-6px);
}

.who-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.who-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 22px 22px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.10) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask: linear-gradient(to bottom, transparent 0%, black 50%);
  mask: linear-gradient(to bottom, transparent 0%, black 50%);
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  font-family: 'Work Sans', sans-serif;
  text-align: center;
}

.who-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.who-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.30);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.who-dot.on {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.career .dots {
  margin-top: 90px;
  gap: 8px;
}

.career .dot-dark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
  transform: none;
}

.career .dot-dark.on {
  width: 32px;
  border-radius: 4px;
  background: var(--navy);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.dot.on {
  background: #fff;
  transform: scale(1.1);
}

.dot-dark {
  background: rgba(0, 0, 0, 0.18);
}

.dot-dark.on {
  background: var(--navy);
}

.carousel-wrap {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* ══════════════════ WHY SKILLSTRIDE ══════════════════ */
.why {
  padding: 100px 0;
  background: #fff;
}

.why-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 46px;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

.why-sub {
  text-align: center;
  font-size: 22px;
  color: #555;
  margin-bottom: 16px;
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  gap: 14px;
}

.bcard {
  border-radius: var(--r24);
  padding: 28px;
  background: var(--sand);
  transition: transform .3s;
}

.bcard:hover {
  transform: translateY(-3px);
}

.bcard-stat {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--teal);
  margin-bottom: 6px;
}

.bcard h4 {
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.bcard p {
  font-size: 15px;
  line-height: 1.7;
  color: #206582;
}

.bcard-left-col {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
  justify-content: space-between;
}

.bcard-right {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 16px 28px;
}

.bcard-section {
  padding: 8px 0;
}

.bcard-divider {
  height: 1px;
  background: rgba(32, 101, 130, 0.15);
  margin: 20px 0;
}

.bcard-navy {
  background: #206582;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  flex: 1;
}

.bcard-navy h4 {
  color: #fff;
  font-size: 28px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.bcard-navy p {
  color: rgba(255, 255, 255, 0.7);
}

.bcard-center {
  grid-column: 2;
  background: #F7F6F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 24px;
  border: 1px solid rgba(32, 101, 130, 0.24);
  border-radius: 32px;
}

.center-logo {
  width: 100%;
  height: 130px;
  background: #fff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.center-logo img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.bcard-center h3 {
  font-size: 26px;
  color: #206582;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.bcard-center p {
  font-size: 15px;
  color: #206582;
  line-height: 1.75;
  margin-bottom: 24px;
}

.btn-navy {
  background: #206582;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all .25s;
}

.btn-navy:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.counter-val {
  display: inline;
}

/* ══════════════════ CAREER ══════════════════ */
.career {
  padding: 100px 0;
  background: #fff;
}

.career-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.career-head h2 {
  font-size: 52px;
  line-height: 1.1;
}

.career-head p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
}

.career .carousel-wrap {
  overflow: hidden;
  position: relative;
  padding-bottom: 32px;
  margin-bottom: -32px;
}

.career .carousel-track {
  align-items: stretch;
}

.career-card {
  flex: 0 0 auto;
  border-radius: 28px;
  background: var(--peach);
  position: relative;
  height: 480px;        /* remove !important */
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform .3s;
  /* remove flex-shrink: 0 */
  /* remove align-self: flex-start */
}
.career-card:hover {
  transform: translateY(-4px);
}

.career-img {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 90px;  /* ← increase this if label is still cut */
  border-radius: 18px;
  overflow: hidden;
}

.career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.career-label {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  border-radius: 50px;
  padding: 16px 28px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #1a0e00;
}

/* ══════════════════ CERTIFICATION ══════════════════ */
.cert {
  background: linear-gradient(160deg, rgba(32, 101, 130, 0.80) 0%, #033067 100%);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
  border-radius: 48px;
}

.cert-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cert-left {
  padding-left: 48px;
}

.cert-left h2 {
  font-size: 52px;
  color: #fff;
  margin-bottom: 16px;
}

.cert-left>p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}

.cert-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: #fff;
}

.cert-list li::before {
  content: '•';
  font-size: 22px;
  color: var(--peach);
  flex-shrink: 0;
}

.cert-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all .25s;
  backdrop-filter: blur(8px);
}

.btn-white-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cert-doc {
  border-radius: var(--r24);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15);
  width: 80%;
  margin: 0 auto;
}

.cert-doc img {
  width: 100%;
  display: block;
}

/* ══════════════════ STUDENTS ══════════════════ */
.students {
  padding: 100px 0 40px;
  background: #fff;
}

.stud-dot {
  background: rgba(0, 0, 0, 0.15) !important;
}

.stud-dot.on {
  background: var(--navy) !important;
  width: 28px;
}

/* ══════════════════ CTA ══════════════════ */
.cta-wrap {
  padding: 60px 80px;
}

.cta-card {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(120deg, #0b2e45 0%, #206582 45%, #c4dce8 100%);
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  align-items: stretch;
  box-shadow: 0 24px 80px rgba(11, 46, 69, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-left {
  padding: 70px 64px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.90);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.cta-left h2 {
  font-size: 46px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

.cta-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 440px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-card .btn-teal {
  background: #fff;
  color: var(--teal);
}

.cta-card .btn-teal:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.40);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all .25s;
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.cta-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px 32px 0;
  overflow: hidden;
}

.cta-right img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
}

/* ══════════════════ QR MODAL ══════════════════ */
.qr-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.qr-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.qr-modal {
  background: #fff;
  border-radius: 28px;
  padding: 48px 40px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform .3s;
}

.qr-modal-overlay.open .qr-modal {
  transform: scale(1);
}

.qr-modal h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.qr-modal p {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
  line-height: 1.6;
}

.qr-modal canvas {
  margin: 0 auto 24px;
  display: block;
  border-radius: 12px;
}

.qr-modal-close {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.qr-modal-close:hover {
  background: var(--teal);
}

/* ══════════════════ FOOTER ══════════════════ */
footer {
  background: var(--lgray);
  padding: 52px 80px 28px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 0.5fr;
  gap: 20px;
  margin-bottom: 20px;
}

.fcard {
  background: #e6e6e6;
  border-radius: var(--r20);
  padding: 36px 40px;
}

.flogo {
  margin-bottom: 24px;
}

.flogo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.fcard-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 28px;
  line-height: 1.25;
}

.app-badges {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 7px 16px 7px 7px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  transition: all .2s;
  cursor: pointer;
}

.app-badge.icon-only {
  padding: 7px;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.app-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.flinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.flinks-card {
  background: #e6e6e6;
  border-radius: var(--r20);
  padding: 32px 36px;
}

.flinks-card h6 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 22px;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-align: left;
}

.flinks-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.flinks-card ul a {
  font-size: 15px;
  color: #555;
  transition: color .2s;
}

.flinks-card ul a:hover {
  color: var(--navy);
}

.fbottom-strip {
  background: #e6e6e6;
  border-radius: var(--r20);
  padding: 20px 36px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.fbottom-strip a {
  font-size: 14px;
  color: #666;
  transition: color .2s;
}

.fbottom-strip a:hover {
  color: var(--navy);
}

.fsocials {
  background: #e6e6e6;
  border-radius: var(--r20);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fsocials h6 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-align: center;
}

.social-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.sicon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background: #fff;
}

.sicon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sicon:hover {
  transform: scale(1.08);
}

.si-li {
  background: #0a66c2;
}

.si-meta-bg {
  background: #e8f0fe;
}

.fcopy {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #d4d4d4;
  text-align: center;
  font-size: 13px;
  color: #999;
}

.nav-toggle {
  display: none;
}

/* ══════════════════ PUBLIC HEADER ══════════════════ */
.public-header {
  height: 80px;
  background: #EEF1F5;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow .2s;
}

.public-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.public-header-container {
  width: 100%;
  max-width: 1100px !important;
  margin: 0 auto;
  padding: 0 8px !important;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.public-header-left {
  display: flex;
  align-items: center;
}

.public-header-logo {
  display: block;
  text-decoration: none;
}

.public-header-center {
  display: flex;
  align-items: center;
  gap: 24px;
}

.public-nav-link {
  color: #1A3654;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
}

.public-nav-link:hover {
  color: #206582;
}

.public-nav-dropdown-container {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
}

.arrow-icon {
  transition: transform 0.2s ease;
  display: inline-block;
}

.arrow-icon.open {
  transform: rotate(180deg);
}

.public-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 8px 0;
  min-width: 220px;
  z-index: 110;
  margin-top: 8px;
}

.public-dropdown-menu.open {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #1A3654;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
  font-weight: 500;
}

.dropdown-item:hover {
  background: #EAF0F5;
  color: #1A3654;
}

.dropdown-item-disabled {
  display: block;
  padding: 10px 16px;
  color: #64748B;
  font-size: 14px;
  font-weight: 500;
  cursor: not-allowed;
}

.public-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-cima-pill {
  height: 42px;
  padding: 0 24px;
  border-radius: 100px;
  background: #206582;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-cima-pill:hover {
  opacity: 0.9;
}

.btn-ssl-pill {
  height: 42px;
  padding: 0 24px;
  border-radius: 100px;
  background: #1A3654;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-ssl-pill:hover {
  opacity: 0.9;
}

.public-mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  color: #206582;
  padding: 8px;
  border-radius: 8px;
  line-height: 0;
}

.public-mobile-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #EEF1F5;
  border-bottom: 1px solid #E2E8F0;
  padding: 16px 32px 24px 32px;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.public-mobile-drawer.open {
  display: flex;
}

.mobile-drawer-link {
  color: #1A3654;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
}

.mobile-drawer-section {
  display: flex;
  flex-direction: column;
}

.mobile-section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 4px;
}

.mobile-drawer-sublink {
  color: #206582;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
}

.mobile-drawer-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.mobile-drawer-actions .btn-cima-pill,
.mobile-drawer-actions .btn-ssl-pill {
  flex: 1;
  justify-content: center;
  font-size: 13px;
  display: inline-flex !important;
}

.mobile-drawer-actions .btn-cima-pill,
.mobile-drawer-actions .btn-ssl-pill {
  width: 100%;
  justify-content: center;
}

.icon-menu,
.icon-close {
  display: block;
}

@media (max-width: 768px) {
  .public-header-center {
    display: none;
  }

  .public-header-right .btn-cima-pill,
  .public-header-right .btn-ssl-pill {
    display: none;
  }

  .public-mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* ── CTA Buttons equal height fix ── */
.cta-btns .btn-teal,
.cta-btns .btn-glass {
  width: 100%;
  text-align: center;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
}

/* ══════════════════ PUBLIC FOOTER ══════════════════ */
.public-footer {
  background-color: #1A3654;
  color: #ffffff;
  padding: 64px 32px 32px 32px;
  font-family: 'DM Sans', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.public-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.public-footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.main-col {
  padding-right: 32px;
}

.footer-logo-wrapper {
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-desc {
  color: #E2E8F0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
}

.social-icon-link:hover {
  background-color: none !important;
  color: #FFFFFF !important;
}



.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #E2E8F0;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #FFDBB8;
}

.coming-soon-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  cursor: not-allowed;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #E2E8F0;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.contact-col {
  max-width: 380px;
}

.contact-icon {
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: #E2E8F0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: #FFDBB8;
}

.public-footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bottom-links a {
  color: #E2E8F0;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.bottom-links a:hover {
  color: #FFDBB8;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.gst-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .public-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}


/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1024px) {
  .inner {
    padding: 0 40px;
  }

  .hero {
    padding: 120px 40px 60px;
  }

  .hero-left h1 {
    font-size: 44px;
  }

  .tool-row {
    gap: 40px;
  }

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

  .bcard-center {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .cert {
    padding: 80px 40px;
  }

  .cta-wrap {
    padding: 40px;
  }

  footer {
    padding: 40px 40px 24px;
  }
}

@media (max-width: 768px) {

  /* ── NAVBAR ── */
  .navbar {
    padding: 12px 20px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    border-radius: 2px;
  }

  .nav-toggle.open span {
    background: var(--navy);
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

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

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    gap: 30px;
    font-size: 20px;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--navy);
    font-weight: 600;
    font-size: 20px;
  }

  .nav-cta {
    display: none;
  }

  /* ── HERO ── */
  .hero {
    padding: 90px 20px 60px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-left {
    width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-left h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #fff;
  }

  .hero-left p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero-btns {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }

  .hero-btns .btn-teal {
    flex: 1;
    font-size: 13px;
    padding: 12px 8px;
    text-align: center;
  }

  .hero-btns .btn-ghost {
    flex: 1;
    font-size: 13px;
    padding: 12px 8px;
    text-align: center;
  }

  /* Hero image — show it bigger and centred, badges inside card bounds */
  .hero-right {
    display: flex;
    margin-top: 32px;
    margin-bottom: 48px;
    padding: 0;
    justify-content: center;
  }

  .hero-card-wrap {
    width: 300px;
    position: relative;
  }

  .hero-img-card {
    height: 380px;
  }

  /* Badges — larger, positioned at corners inside the card */
  .fbadge {
    font-size: 13px;
    padding: 7px 13px;
    height: 38px;
    gap: 7px;
    position: absolute;
    white-space: nowrap;
  }

  .fbadge img {
    width: 22px;
    height: 22px;
  }

  .fb-instagram {
    top: 16px;
    left: 12px;
    right: auto;
  }

  .fb-canva {
    top: 70px;
    right: -10px;
    left: auto;
  }

  .fb-youtube {
    bottom: 70px;
    right: 12px;
    left: auto;
  }

  .fb-meta {
    bottom: 16px;
    left: 12px;
    right: auto;
  }

  /* ── SECTION SHELL ── */
  .inner {
    padding: 0 20px;
  }

  .sec-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
    text-align: center;
    justify-items: center;
  }

  .sec-head h2 {
    font-size: 36px;
  }

  .sec-head p {
    font-size: 15px;
  }

  /* ── LEARN ── */
  .learn {
    padding: 60px 0 48px;
    border-radius: 32px 32px 0 0;
  }

  .learn-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .learn-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .learn-grid-3 .lcard-img {
    aspect-ratio: 4 / 3;
  }

  .learn-grid-2 .lcard-img {
    aspect-ratio: 16 / 9;
  }

  .lcard-label {
    font-size: 16px;
  }

  .learn-btns {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }

  .learn-btns button {
    flex: 1;
    max-width: 200px;
    font-size: 13px;
    padding: 12px 8px;
  }

  /* ── TOOLS ── */
  .tools {
    padding: 0 0 60px;
  }

  .tools .sec-head {
    grid-template-columns: 1fr;
  }

  .tool-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .tool-row:nth-child(even) {
    display: flex;
    flex-direction: column;
  }

  .tcard-warm,
  .tcard-dark {
    width: 100%;
    height: auto;
    min-height: 200px;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
    justify-items: center;
  }

  .tool-text {
    text-align: center !important;
    padding: 0 20px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 16px;
  }

  .tool-text h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .tool-text p {
    font-size: 15px;
    margin: 0 auto;
  }

  .pill-row {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .pill-row.right {
    justify-content: center;
  }

  .pill-row.center {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .tpill {
    font-size: 13px;
    height: 40px;
    padding: 8px 14px;
    gap: 8px;
    white-space: nowrap;
  }

  .tpill-icon {
    width: 24px;
    height: 24px;
  }

  .tpill-icon img {
    width: 24px;
    height: 24px;
  }

  /* ── WHO IS THIS FOR ── */
  .who {
    padding: 60px 0 48px;
    border-radius: 32px;
  }

  .who-card {
    height: 360px;
  }

  .who-label {
    font-size: 18px;
  }

  .who-nav {
    margin-top: 24px;
  }

  /* ── WHY SKILLSTRIDE ── */
  .why {
    padding: 60px 0;
  }

  .why-title {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .why-sub {
    font-size: 15px;
  }

  .bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bcard {
    padding: 24px;
  }

  .bcard-left-col {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .bcard-navy {
    min-height: 140px;
    flex: none;
  }

  .bcard-stat {
    font-size: 36px;
  }

  .bcard h4 {
    font-size: 22px;
  }

  .bcard p {
    font-size: 15px;
  }

  .bcard-center {
    grid-column: auto;
    padding: 24px;
  }

  .bcard-right {
    grid-column: auto;
    padding: 24px;
  }

  .bcard-navy h4 {
    font-size: 22px;
  }

  .bcard-section h4 {
    font-size: 20px;
  }

  .bcard-section p {
    font-size: 15px;
  }

  /* ── CAREER ── */
  .career {
    padding: 60px 0;
  }

  .career-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
    text-align: center;
    justify-items: center;
  }

  .career-head h2 {
    font-size: 36px;
  }

  .career-head p {
    font-size: 15px;
    margin-left: 0;
  }

  .career-card {
  height: 400px !important;
  align-self: flex-start;
}

  .career .dots {
    margin-top: 28px;
  }

  .who-dot,
  .dot {
    width: 8px;
    height: 8px;
  }

  .who-dot.on,
  .dot.on {
    width: 24px;
  }

  .career .dot-dark {
    width: 8px;
    height: 8px;
  }

  .career .dot-dark.on {
    width: 24px;
  }

  /* ── CERTIFICATION ── */
  .cert {
    padding: 48px 20px;
    border-radius: 32px;
  }

  .cert-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cert-left {
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cert-left h2 {
    font-size: 36px;
  }

  .cert-left>p {
    font-size: 15px;
  }

  .cert-list {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
  }

  .cert-list li {
    font-size: 15px;
  }

  .cert-btns {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .cert-btns button {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    padding: 12px 10px;
    text-align: center;
    max-width: 200px;
  }

  .cert .btn-teal {
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
  }

  .cert-doc {
    width: 90%;
  }

  /* ── STUDENTS ── */
  .students {
    padding: 60px 0 32px;
  }

  /* ── CTA ── */
  .cta-wrap {
    padding: 20px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
    min-height: auto;
  }

  .cta-left {
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }

  .cta-left h2 {
    font-size: 36px;
  }

  .cta-left p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cta-badge {
    margin: 0 auto 16px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .cta-btns button,
  .cta-btns a {
    width: 100%;
    text-align: center;
  }

  .cta-right {
    display: none;
  }

  /* ── FOOTER ── */
  .public-footer {
    padding: 48px 20px 28px 20px;
  }

  .public-footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 32px;
  }

  .main-col { padding-right: 0; }

  .public-footer-column h3 {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-logo-img { width: 120px; }
  .footer-desc { font-size: 13px; margin-bottom: 16px; }

  .footer-links-list li { margin-bottom: 10px; }
  .footer-links-list a, .coming-soon-link { font-size: 13px; }

  .footer-contact-list li { font-size: 13px; gap: 10px; margin-bottom: 12px; }
  .contact-col { max-width: 100%; }

  .public-footer-bottom { padding-top: 20px; gap: 8px; }
  .bottom-links a { font-size: 13px; }
  .gst-info { font-size: 11px; }

  .flinks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .flinks-card {
    padding: 20px;
  }

  .flinks-card h6 {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .flinks-card ul a {
    font-size: 14px;
  }

  .fbottom-strip {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 20px;
  }

  .fbottom-strip a {
    font-size: 13px;
  }

  .fsocials {
    padding: 20px;
  }

  .social-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .fcopy {
    font-size: 12px;
    padding-top: 16px;
  }

  /* ── CAROUSEL CARDS ── */
  .who-card,
  .career-card {
    flex: 0 0 auto;
  }
}