/* ================================================================
   DCode Institute — style.css
   Google-inspired theme · Google Fonts (Google Sans + Roboto + Roboto Mono) · Mobile-First
   Colors: #4285F4 (blue) #EA4335 (red) #FBBC05 (yellow) #34A853 (green)
   Fonts: Google Sans (headings) · Roboto (body) · Roboto Mono (code)
   ================================================================ */

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}

/* ── ANTI-BLINK: body invisible until JS injects loader ── */
body{opacity:0;transition:opacity .01s}
body.js-ready{opacity:1}
body{
  background:#fff;color:#202124;
  font-family:'DM Sans','Roboto',sans-serif;
  font-weight:400;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
ul{list-style:none}
img{display:block;max-width:100%}
button{font-family:inherit}

/* ── GOOGLE COLORS ── */
:root{
  --blue:   #4285F4;
  --red:    #EA4335;
  --yellow: #FBBC05;
  --green:  #34A853;
  --dark:   #202124;
  --body:   #3C4043;
  --muted:  #5F6368;
  --border: #DADCE0;
  --bg-l:   #F8F9FA;
  --bg-m:   #E8F0FE;
  --white:  #FFFFFF;
  --sh-sm:  0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.08);
  --sh-md:  0 4px 12px rgba(0,0,0,.1),0 2px 6px rgba(0,0,0,.06);
  --sh-lg:  0 8px 28px rgba(0,0,0,.12),0 4px 12px rgba(0,0,0,.08);
  --sh-xl:  0 16px 48px rgba(0,0,0,.14),0 6px 18px rgba(0,0,0,.08);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#f1f1f1}
::-webkit-scrollbar-thumb{background:#DADCE0;border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:#BBBFBF}
::selection{background:#C2D3FC;color:var(--blue)}

/* ── SCROLL PROGRESS ── */
#scrollProgress{
  position:fixed;top:0;left:0;height:3px;z-index:9999;
  width:100%;
  transform:scaleX(0);transform-origin:left;
  background:linear-gradient(90deg,var(--blue),var(--green),var(--yellow),var(--red));
  will-change:transform;
}

/* ══════════════════════════════════════════════════════
   PAGE LOADER — 3-Stage Animated
   Stage 1: B&W letters stagger in
   Stage 2: 4 Google orbs orbit a tilted 3D ring (pure CSS)
   Stage 3: Orbs collapse into letters, filling them with color
══════════════════════════════════════════════════════ */

/* ── Loader shell ── */
#page-loader{
  position:fixed;inset:0;z-index:99999;
  background:#fff;
  display:flex;align-items:center;justify-content:center;flex-direction:column;gap:32px;
  transition:opacity .65s ease,visibility .65s;
}
#page-loader.hidden{opacity:0;visibility:hidden;pointer-events:none;}

/* ── Scene container ── */
.ldr-scene{
  position:relative;
  display:flex;flex-direction:column;align-items:center;
  gap:0;
}

/* ══ 3D ORBIT STAGE ══
   An invisible square centered on the logo,
   provides the perspective camera for the tilted ring.   */
.ldr-orbit-stage{
  position:absolute;
  width:260px;height:260px;
  top:50%;left:50%;
  transform:translate(-50%,-54%);
  perspective:600px;
  pointer-events:none;
}

/* The ring itself — tilted 68° on X, then spins on Z via keyframe */
.ldr-orbit-ring{
  position:absolute;inset:0;
  transform-style:preserve-3d;
  transform:rotateX(68deg) rotateZ(0deg);
}
.ldr-orbit-ring.ldr-orbiting{
  animation:ldrRingSpin 1.6s linear infinite;
}
@keyframes ldrRingSpin{
  to{ transform:rotateX(68deg) rotateZ(360deg); }
}

/* Each orb: lives at center, pushed out by translateX.
   Evenly spaced 90° apart on the ring.                  */
.ldr-orb{
  position:absolute;
  top:50%;left:50%;
  width:16px;height:16px;border-radius:50%;
  margin:-8px 0 0 -8px;
  opacity:0;
  transition:transform .5s cubic-bezier(.34,1.56,.64,1), opacity .3s, box-shadow .3s;
  will-change:transform,opacity;
}
/* Orbs appear only when ring is spinning */
.ldr-orbiting .ldr-orb{ opacity:1; }

.ldr-orb-b{
  background:#4285F4;
  box-shadow:0 0 12px 5px rgba(66,133,244,.7), 0 0 28px 8px rgba(66,133,244,.3);
  transform:rotate(0deg)   translateX(110px);
}
.ldr-orb-r{
  background:#EA4335;
  box-shadow:0 0 12px 5px rgba(234,67,53,.7),  0 0 28px 8px rgba(234,67,53,.3);
  transform:rotate(90deg)  translateX(110px);
}
.ldr-orb-y{
  background:#FBBC05;
  box-shadow:0 0 12px 5px rgba(251,188,5,.7),  0 0 28px 8px rgba(251,188,5,.3);
  transform:rotate(180deg) translateX(110px);
}
.ldr-orb-g{
  background:#34A853;
  box-shadow:0 0 12px 5px rgba(52,168,83,.7),  0 0 28px 8px rgba(52,168,83,.3);
  transform:rotate(270deg) translateX(110px);
}

/* Orb collapse — JS adds .ldr-orb-collapse, orb shrinks & fades */
.ldr-orb.ldr-orb-collapse{
  opacity:0 !important;
  transform:rotate(0deg) translateX(0px) scale(0) !important;
  transition:
    transform .52s cubic-bezier(.55,.06,.68,.19),
    opacity   .4s ease !important;
}

/* ══ DCode LOGO TEXT ══ */
.ldr-logo-text{
  display:flex;align-items:baseline;gap:0;
  font-family:'DM Sans','Roboto',sans-serif;
  font-size:clamp(3rem,9vw,4.8rem);
  font-weight:700;
  line-height:1;
  letter-spacing:-.02em;
  position:relative;z-index:1;
}

/* Each letter: starts invisible and shifted down */
.ldr-l{
  display:inline-block;
  color:#DADCE0;
  opacity:0;
  transform:translateY(22px);
  transition:color .45s ease, text-shadow .45s ease;
  will-change:transform,opacity;
}

/* Stage 1: letter springs in — JS adds .ldr-l-in */
.ldr-l.ldr-l-in{
  opacity:1;
  transform:translateY(0);
  transition:
    opacity   .4s ease,
    transform .4s cubic-bezier(.34,1.56,.64,1),
    color     .45s ease,
    text-shadow .45s ease;
}

/* Stage 3: letter fills with Google color — JS sets --lc, adds .ldr-l-color */
.ldr-l.ldr-l-color{
  color:var(--lc);
  text-shadow:0 0 30px color-mix(in srgb, var(--lc) 60%, transparent),
              0 0 60px color-mix(in srgb, var(--lc) 25%, transparent);
  animation:ldrLetterPop .55s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes ldrLetterPop{
  0%  { transform:scale(1.22) translateY(-5px); }
  60% { transform:scale(1.06) translateY(-1px); }
  100%{ transform:scale(1)    translateY(0);    }
}

/* "Institute" subtitle */
.ldr-inst{
  font-family:'DM Sans',sans-serif;
  font-size:.95rem;font-weight:500;
  color:var(--muted);letter-spacing:.22em;
  text-transform:uppercase;
  margin-top:6px;
  opacity:0;
  animation:ldrInstIn .5s .6s ease forwards;
}
@keyframes ldrInstIn{ to{ opacity:1; } }

/* ══ PROGRESS BAR ══ */
.ldr-bar-track{
  width:240px;height:3px;background:#DADCE0;border-radius:2px;overflow:hidden;
  opacity:0;animation:ldrBarIn .5s .5s ease forwards;
}
@keyframes ldrBarIn{ to{ opacity:1; } }
.ldr-bar-fill{
  height:100%;width:0%;border-radius:2px;
  background:linear-gradient(90deg,var(--blue),var(--red),var(--yellow),var(--green));
  transition:width .18s linear;
}

/* Code tip */
.ldr-tip{
  font-family:'Roboto Mono',monospace;font-size:.74rem;color:var(--muted);
  opacity:0;animation:ldrBarIn .5s .75s ease forwards;
  letter-spacing:.02em;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4{color:var(--dark);line-height:1.2;font-weight:700;font-family:'DM Sans',sans-serif}
.section-label{
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--blue);font-weight:500;margin-bottom:10px;display:block;
}
.section-heading{font-size:clamp(1.8rem,3.5vw,2.6rem);margin-bottom:14px}
.section-sub,.section-body{color:var(--muted);font-size:1rem;line-height:1.75;max-width:560px;margin-bottom:14px}
.section-header{text-align:center;margin-bottom:52px}
.section-header .section-sub{margin:0 auto}
.container{max-width:1180px;margin:0 auto;padding:0 16px}
.section{padding:80px 0;position:relative}
.bg-white{background:#fff}
.bg-light{background:#F8F9FA}
.bg-blue-light{background:#E8F0FE}

/* ── GOOGLE MULTI-COLOR TEXT ── */
.g-text{
  background:linear-gradient(90deg,var(--blue) 0%,var(--red) 33%,var(--yellow) 66%,var(--green) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.text-blue{color:var(--blue)}

/* ── BUTTONS ── */
.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 28px;background:var(--blue);color:#fff;
  font-family:'DM Sans',sans-serif;font-weight:600;font-size:.95rem;
  border-radius:24px;border:none;
  box-shadow:0 2px 8px rgba(66,133,244,.35);
  transition:transform .2s cubic-bezier(.4,0,.2,1),box-shadow .2s,background .15s;cursor:pointer;
  will-change:transform;
}
.btn-primary:hover{background:#1A73E8;transform:translate3d(0,-2px,0);box-shadow:0 6px 18px rgba(66,133,244,.45)}
.btn-outline{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:11px 26px;border:2px solid var(--blue);color:var(--blue);
  font-family:'DM Sans',sans-serif;font-weight:600;font-size:.95rem;
  border-radius:24px;background:transparent;
  transition:background .2s,color .2s;cursor:pointer;
}
.btn-outline:hover{background:var(--blue);color:#fff}
.btn-full{width:100%;border-radius:12px;padding:14px;font-size:1rem}
.btn-primary .btn-spin{
  display:none;width:18px;height:18px;
  border:2px solid rgba(255,255,255,.4);border-top-color:#fff;
  border-radius:50%;animation:spin .7s linear infinite;
}
.btn-primary.loading .btn-spin{display:block}
.btn-primary.loading .btn-txt{display:none}
@keyframes spin{to{transform:rotate(360deg)}}

/* ── NAVBAR ── */
#navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:12px 0;background:rgba(255,255,255,.97);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:padding .3s,box-shadow .3s,border-color .3s;
}
#navbar.scrolled{padding:8px 0;box-shadow:var(--sh-sm);border-color:var(--border)}
.nav-wrap{
  display:flex;align-items:center;gap:8px;
  max-width:1180px;margin:0 auto;padding:0 16px;
  position:relative;
}
.nav-logo{
  display:flex;align-items:center;gap:8px;
  font-family:'DM Sans',sans-serif;font-weight:700;font-size:1.15rem;
  white-space:nowrap;flex-shrink:0;order:0;
}
/* ── Logo image ── */
.nav-logo-img-wrap{display:flex;align-items:center;padding:2px 0}
.nav-logo-img{
  height:50px;          /* adjust to match your logo height */
  width:auto;
  max-width:160px;
  object-fit:contain;
  display:block;
  transition:opacity .2s;
}
.nav-logo-img:hover{opacity:.85}
/* Slightly smaller on mobile */
@media(max-width:768px){
  .nav-logo-img{height:34px;max-width:130px}
}
/* Footer logo — a touch larger for breathing room */
.footer-logo-img{height:48px;max-width:180px}
.logo-g{display:flex;gap:1px;align-items:center}
.logo-g span{font-size:1.25rem;font-weight:700;line-height:1}
.logo-g .lb{color:var(--blue)}
.logo-g .lr{color:var(--red)}
.logo-g .ly{color:var(--yellow)}
.logo-g .lg{color:var(--green)}
.logo-g .lb2{color:var(--blue)}
.logo-g .lr2{color:var(--red)}
.logo-name{color:var(--dark);font-size:1rem;font-weight:600;margin-left:4px}
.nav-links{display:flex;align-items:center;gap:2px;margin-left:auto;order:1}
.nav-cta{order:2}
.hamburger{order:3}
.nav-links a{
  font-size:.88rem;font-weight:500;color:var(--body);
  padding:7px 14px;border-radius:20px;
  transition:color .2s,background .2s;white-space:nowrap;
}
.nav-links a:hover,.nav-links a.active{color:var(--blue);background:#E8F0FE}
.has-drop{position:relative}
.has-drop>a::after{content:' ▾';font-size:.6rem;opacity:.7}
.dropdown{
  position:absolute;top:calc(100% + 8px);left:0;
  background:#fff;border:1px solid var(--border);border-radius:12px;
  box-shadow:var(--sh-lg);min-width:240px;padding:8px;
  opacity:0;visibility:hidden;transform:translateY(-8px);
  transition:opacity .2s,transform .2s,visibility .2s;z-index:200;
}
.has-drop:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown a{
  display:block;padding:9px 14px;border-radius:8px;
  font-size:.87rem;font-weight:500;color:var(--body);
  transition:background .15s,color .15s;
}
.dropdown a:hover{background:#E8F0FE;color:var(--blue)}
.nav-cta{flex-shrink:0;margin-left:8px}

/* ── HAMBURGER BUTTON ── */
/* ══ HAMBURGER BUTTON ══ */
/* ══ HAMBURGER — Premium redesign ══ */
.hamburger {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 42px; height: 42px;
  margin-left: auto;
  cursor: pointer;
  border: none;
  border-radius: 13px;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  box-shadow:
    0 1px 3px rgba(0,0,0,.08),
    0 0 0 1.5px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s, box-shadow .2s, transform .15s;
  overflow: hidden;
}
/* Ripple on tap */
.hamburger::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(66,133,244,.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .2s;
}
.hamburger:active { transform: scale(.93); }
.hamburger:active::after { opacity: 1; }

/* Open state — deep navy */
.hamburger.active {
  background: linear-gradient(145deg, #1e3a5f, #0F172A);
  box-shadow:
    0 4px 20px rgba(15,23,42,.35),
    0 1px 4px rgba(15,23,42,.2),
    inset 0 1px 0 rgba(255,255,255,.07);
}

/* Three bars */
.hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  height: 1.8px;
  border-radius: 3px;
  background: #475569;
  transform-origin: center;
  transition:
    transform .32s cubic-bezier(.4,0,.2,1),
    opacity .22s ease,
    width .22s ease,
    background .2s;
  pointer-events: none;
}
.hamburger.active span { background: rgba(255,255,255,.92); }

/* All three bars equal width, evenly spaced — clean minimal look */
.hamburger span:nth-child(1) { width: 20px; top: calc(50% - 6px); transform: translateX(-50%); }
.hamburger span:nth-child(2) { width: 20px; top: calc(50%);       transform: translateX(-50%); }
.hamburger span:nth-child(3) { width: 13px; top: calc(50% + 6px); transform: translateX(-50%); }

/* Morph to X — smooth rotation */
.hamburger.active span:nth-child(1) { width: 18px; transform: translateX(-50%) translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(0); }
.hamburger.active span:nth-child(3) { width: 18px; transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* ══ MOBILE MENU — Slide-in drawer from right ══ */

/* Standalone backdrop — lives directly in <body> so #mobileMenu's
   overflow:auto cannot clip it. Covers full viewport. */
#mmBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1499;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
#mmBackdrop.mm-bd-show {
  display: block;
  animation: mmBdIn .3s ease forwards;
}
@keyframes mmBdIn { from { opacity: 0; } to { opacity: 1; } }

/* Drawer panel */
#mobileMenu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(85vw, 320px);
  z-index: 1500;
  background: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
  box-shadow: -12px 0 48px rgba(0,0,0,.14), -2px 0 8px rgba(0,0,0,.06);
  border-left: 1px solid rgba(0,0,0,.04);
}
#mobileMenu.mm-open { transform: translateX(0); }

/* Subtle top accent bar */
#mobileMenu::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #4285F4, #1A73E8, #34A8E8);
  flex-shrink: 0;
}

/* ── Drawer close button ── */
#mmClose {
  position: absolute;
  top: 18px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1.5px solid #E2E8F0;
  background: #F8FAFC;
  color: #64748B;
  font-size: .9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, color .15s, transform .2s;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
  line-height: 1;
}
#mmClose:hover { background: #FEE2E2; border-color: #FCA5A5; color: #DC2626; transform: rotate(90deg); }
#mmClose:active { transform: rotate(90deg) scale(.9); }

/* ── Drawer header (logo + close) ── */
#mmBrand {
  display: flex;
  align-items: center;
  padding: 18px 56px 16px 18px; /* right padding leaves room for close btn */
  border-bottom: 1px solid #F1F5F9;
  background: #FAFBFD;
}
#mmBrand .nav-logo-img { height: 30px; width: auto; }

/* ── Nav list ── */
#mmList {
  list-style: none;
  margin: 0;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
#mmList > li { width: 100%; }

#mmList a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  color: #1E293B;
  font-size: .93rem;
  font-weight: 600;
  border-radius: 11px;
  background: transparent;
  border: none;
  transition: background .15s, color .15s, transform .12s;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -.01em;
}
#mmList a .mm-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #F1F5F9;
  opacity: .85;
}
#mmList a .mm-label { flex: 1; text-align: left; }
#mmList a .mm-arrow {
  color: #CBD5E1;
  font-size: .75rem;
  transition: transform .2s, opacity .2s;
}
#mmList a:hover, #mmList a:active {
  background: #F0F4FF;
  color: #1D4ED8;
  transform: translateX(2px);
}
#mmList a:hover .mm-icon { background: #DBEAFE; opacity: 1; }
#mmList a.mm-active {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  color: #1D4ED8;
}
#mmList a.mm-active .mm-icon { background: #BFDBFE; opacity: 1; }

/* Sub-menu toggle */
.mm-toggle-arrow {
  color: #CBD5E1;
  font-size: .75rem;
  margin-left: auto;
  transition: transform .25s, color .15s;
  pointer-events: none;
}
.mm-has-sub.open .mm-toggle-arrow { transform: rotate(90deg); color: #4285F4; }

/* Courses sub-list */
#mmCourses {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 3px 0 3px 14px;
}
#mmCourses.open { display: flex; }
#mmCourses a {
  font-size: .855rem;
  padding: 9px 14px;
  border-radius: 9px;
  color: #475569;
  font-weight: 500;
  letter-spacing: normal;
}
#mmCourses a .mm-icon { background: transparent; width: 20px; }
#mmCourses a:hover { background: #F8FAFC; color: #1D4ED8; transform: translateX(2px); }

/* Divider */
.mm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2E8F0, transparent);
  margin: 5px 12px;
}

/* ── CTA at bottom of drawer ── */
#mmCta {
  padding: 14px 14px 22px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FAFBFD;
}
#mmCta a.mm-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 20px;
  background: linear-gradient(135deg, #4285F4, #1A73E8);
  color: #fff;
  font-size: .95rem; font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(66,133,244,.4);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  -webkit-tap-highlight-color: transparent;
}
#mmCta a.mm-cta-primary:active { transform: scale(.97); }

/* Contact row in drawer footer */
#mmContact {
  display: flex;
  gap: 8px;
}
#mmContact a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 8px;
  border-radius: 11px;
  font-size: .8rem; font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .12s, box-shadow .15s, border-color .15s;
  -webkit-tap-highlight-color: transparent;
}
#mmContact a:active { transform: scale(.95); }
#mmContact .mm-call {
  background: #EFF6FF;
  color: #1D4ED8;
  border-color: #BFDBFE;
}
#mmContact .mm-wa {
  background: #F0FDF4;
  color: #15803D;
  border-color: #BBF7D0;
}
#mmContact .mm-call:hover { box-shadow: 0 2px 10px rgba(66,133,244,.2); }
#mmContact .mm-wa:hover   { box-shadow: 0 2px 10px rgba(37,211,102,.2); }

/* ── PAGE HERO BANNER ── */
.page-hero{
  padding:136px 0 72px;
  background:linear-gradient(150deg,#EEF3FF 0%,#FAFBFF 40%,#FFF9ED 70%,#EDF8F1 100%);
  position:relative;overflow:hidden;text-align:center;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background-image:
    radial-gradient(circle,rgba(66,133,244,.06) 1px,transparent 1px);
  background-size:32px 32px;
  pointer-events:none;
}
.page-hero::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%,rgba(66,133,244,.07) 0%,transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 50%,rgba(52,168,83,.05) 0%,transparent 60%);
}
.page-hero h1{
  font-size:clamp(2.1rem,4.5vw,3.1rem);margin-bottom:14px;
  position:relative;z-index:1;font-weight:800;letter-spacing:-.02em;color:#0F1923;
}
.page-hero p{
  font-size:1rem;color:#4B5563;max-width:520px;margin:0 auto;
  position:relative;z-index:1;line-height:1.75;
}
.breadcrumb{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-size:.81rem;color:#9CA3AF;margin-bottom:16px;position:relative;z-index:1;
}
.breadcrumb a{color:var(--blue);font-weight:600;text-decoration:none}
.breadcrumb a:hover{text-decoration:underline}

/* ── MARQUEE ── */
.marquee-wrap{
  background:linear-gradient(90deg,var(--blue),#1A73E8);
  padding:11px 0;overflow:hidden;
}
.marquee-track{
  display:flex;align-items:center;gap:20px;
  animation:marquee 35s linear infinite;width:max-content;
}
.marquee-track span{
  font-size:.8rem;font-weight:500;color:rgba(255,255,255,.9);
  white-space:nowrap;font-family:'Roboto Mono',monospace;
}
.msep{color:rgba(255,255,255,.35)!important;font-size:.5rem!important}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── FORMS ── */
.fgroup{position:relative;margin-bottom:16px}
.fgroup input,.fgroup textarea{
  width:100%;background:#F8F9FA;border:1.5px solid var(--border);
  border-radius:8px;padding:20px 14px 6px;
  color:var(--dark);font-family:inherit;font-size:.93rem;
  outline:none;transition:border-color .2s,box-shadow .2s;
}
.fgroup select{
  width:100%;background:#F8F9FA;border:1.5px solid var(--border);
  border-radius:8px;padding:20px 36px 6px 14px;
  color:var(--muted);font-family:inherit;font-size:.93rem;
  outline:none;appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235F6368'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 12px center;background-size:20px;
  transition:border-color .2s,box-shadow .2s;
}
.fgroup select.has-value{color:var(--dark)}
.fgroup select option{color:var(--dark);background:#fff}
.fgroup textarea{resize:vertical;padding:20px 14px 8px}
.fgroup input:focus,.fgroup textarea:focus,.fgroup select:focus{
  border-color:var(--blue);box-shadow:0 0 0 3px rgba(66,133,244,.12);background:#fff;
}
.fgroup label{
  position:absolute;top:12px;left:14px;font-size:.9rem;
  color:var(--muted);pointer-events:none;
  transition:top .2s,font-size .2s,color .2s;
}
.fgroup input:focus+label,.fgroup textarea:focus+label,
.fgroup input:not(:placeholder-shown)+label,.fgroup textarea:not(:placeholder-shown)+label{
  top:5px;font-size:.67rem;color:var(--blue);font-weight:600;
}
.fgroup select+label{top:5px;font-size:.67rem;color:var(--blue);font-weight:600}
.fgroup.error input,.fgroup.error textarea,.fgroup.error select{border-color:var(--red);box-shadow:0 0 0 3px rgba(234,67,53,.1)}
.ferr{display:none;font-size:.75rem;color:var(--red);margin-top:4px;padding-left:2px}
.fgroup.error .ferr{display:block}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-success{
  display:none;margin-top:14px;padding:12px 16px;
  background:#E6F4EA;border:1px solid #A8D5B5;
  border-radius:8px;font-size:.88rem;color:#137333;font-weight:500;
}
.form-success.show{display:block}
.fnote{font-size:.74rem;color:var(--muted);text-align:center;margin-top:10px}

/* ── REVEAL ── */
.reveal{opacity:0;transform:translate3d(0,24px,0);transition:opacity .5s cubic-bezier(.4,0,.2,1),transform .5s cubic-bezier(.4,0,.2,1);will-change:transform,opacity}
.reveal.visible{opacity:1;transform:translate3d(0,0,0)}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero{
  min-height:100vh;position:relative;overflow:hidden;
  background:linear-gradient(150deg,#EEF3FF 0%,#FAFBFF 35%,#FFF9ED 65%,#EDF8F1 100%);
  display:flex;flex-direction:column;
}
/* Subtle mesh overlay */
#hero::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%,rgba(66,133,244,.07) 0%,transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%,rgba(52,168,83,.06) 0%,transparent 65%),
    radial-gradient(ellipse 40% 35% at 70% 10%,rgba(251,188,5,.05) 0%,transparent 65%);
}
.hero-code-bg{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.cf{
  position:absolute;font-family:'Roboto Mono',monospace;
  font-size:.74rem;font-weight:500;color:rgba(66,133,244,.12);
  animation:floatCf linear infinite;white-space:nowrap;letter-spacing:.02em;
}
.cf1{top:8%;left:2%;animation-duration:20s}
.cf2{top:20%;left:52%;animation-duration:25s;animation-delay:-7s;color:rgba(52,168,83,.1)}
.cf3{top:55%;left:6%;animation-duration:18s;animation-delay:-3s;color:rgba(234,67,53,.09)}
.cf4{top:72%;left:55%;animation-duration:22s;animation-delay:-10s;color:rgba(251,188,5,.12)}
.cf5{top:35%;left:75%;animation-duration:26s;animation-delay:-2s}
.cf6{top:82%;left:22%;animation-duration:21s;animation-delay:-5s;color:rgba(52,168,83,.1)}
.cf7{top:3%;left:65%;animation-duration:23s;animation-delay:-1s;color:rgba(234,67,53,.09)}
.cf8{top:45%;left:32%;animation-duration:19s;animation-delay:-8s}
@keyframes floatCf{0%{transform:translateY(0) rotate(-1deg);opacity:0}10%{opacity:1}90%{opacity:1}100%{transform:translateY(-60px) rotate(1deg);opacity:0}}
.hero-inner{
  flex:1;display:flex;align-items:center;
  gap:48px;padding-top:96px;padding-bottom:48px;
  position:relative;z-index:1;
}
.hero-left{flex:1;min-width:0}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 16px;
  background:linear-gradient(135deg,rgba(66,133,244,.1),rgba(52,168,83,.08));
  border:1px solid rgba(66,133,244,.22);border-radius:50px;
  font-size:.8rem;font-weight:600;color:var(--blue);
  margin-bottom:22px;letter-spacing:.01em;
  opacity:0;transform:translateY(16px);
  transition:opacity .7s,transform .7s;
  box-shadow:0 2px 12px rgba(66,133,244,.1);
}
.hero-badge.show{opacity:1;transform:translateY(0)}
.badge-live{
  width:8px;height:8px;border-radius:50%;background:#34A853;
  box-shadow:0 0 0 3px rgba(52,168,83,.25);animation:pulse 2s infinite;
}
@keyframes pulse{0%,100%{box-shadow:0 0 0 3px rgba(52,168,83,.25)}50%{box-shadow:0 0 0 7px rgba(52,168,83,.07)}}
.hero-headline{
  font-size:clamp(2.4rem,4.8vw,4rem);font-weight:800;
  line-height:1.08;margin-bottom:18px;letter-spacing:-.02em;
  opacity:0;transform:translateY(20px);
  transition:opacity .8s,transform .8s;color:#0F1923;
}
.hero-headline em{
  font-style:normal;font-weight:400;
  color:transparent;
  background:linear-gradient(135deg,#6B7280,#9CA3AF);
  -webkit-background-clip:text;background-clip:text;
}
.hero-headline.show{opacity:1;transform:translateY(0)}
.typed-wrap{display:inline-block}
.typed-text{
  background:linear-gradient(135deg,var(--blue) 0%,#1A73E8 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.tcur{color:var(--blue);animation:blink .8s step-end infinite;-webkit-text-fill-color:var(--blue)}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}
.hero-sub{
  font-size:.98rem;color:#4B5563;line-height:1.8;
  max-width:480px;margin-bottom:22px;
  opacity:0;transform:translateY(16px);
  transition:opacity .8s,transform .8s;
}
.hero-sub.show{opacity:1;transform:translateY(0)}
.hero-bullets{
  margin-bottom:28px;display:flex;flex-direction:column;gap:9px;
  opacity:0;transform:translateY(16px);
  transition:opacity .8s,transform .8s;
}
.hero-bullets.show{opacity:1;transform:translateY(0)}
.hero-bullets li{
  font-size:.88rem;color:#374151;font-weight:500;
  display:flex;align-items:center;gap:10px;
}
.hero-bullets li::before{
  content:'';width:7px;height:7px;border-radius:50%;flex-shrink:0;
}
.hero-bullets li:nth-child(1)::before{background:var(--blue);box-shadow:0 0 0 3px rgba(66,133,244,.15)}
.hero-bullets li:nth-child(2)::before{background:var(--red);box-shadow:0 0 0 3px rgba(234,67,53,.15)}
.hero-bullets li:nth-child(3)::before{background:var(--yellow);box-shadow:0 0 0 3px rgba(251,188,5,.15)}
.hero-bullets li:nth-child(4)::before{background:var(--green);box-shadow:0 0 0 3px rgba(52,168,83,.15)}
/* ══ HERO STATS — 4-card grid ══ */
.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-bottom:32px;
  width:100%;
  opacity:0;transform:translateY(16px);
  transition:opacity .8s,transform .8s;
}
.hero-stats.show{opacity:1;transform:translateY(0)}

.hs{
  display:flex;flex-direction:column;align-items:flex-start;gap:6px;
  background:#fff;
  border-radius:12px;
  padding:12px 12px 10px;
  border:1.5px solid #E5E7EB;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
  transition:transform .2s, box-shadow .2s;
  position:relative;overflow:hidden;
  min-width:0;
}
.hs::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  border-radius:12px 12px 0 0;
}
.hs-blue::before{background:#4285F4;}
.hs-red::before{background:#EA4335;}
.hs-yellow::before{background:#FBBC05;}
.hs-green::before{background:#34A853;}

.hs:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.10);}

.hs-icon{
  width:30px;height:30px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.hs-blue .hs-icon{background:#EEF4FF;color:#4285F4;}
.hs-red  .hs-icon{background:#FEF0EF;color:#EA4335;}
.hs-yellow .hs-icon{background:#FFFBEA;color:#D48E00;}
.hs-green .hs-icon{background:#EDFAF1;color:#34A853;}

.hs-body{min-width:0;width:100%;}
.hs-val{display:flex;align-items:baseline;gap:1px;line-height:1;}
.hs-num{font-size:1.35rem;font-weight:800;letter-spacing:-.03em;display:block;}
.hs-blue  .hs-num,.hs-blue  .hs-suf{color:#4285F4;}
.hs-red   .hs-num,.hs-red   .hs-suf{color:#EA4335;}
.hs-yellow .hs-num,.hs-yellow .hs-suf{color:#D48E00;}
.hs-green .hs-num,.hs-green .hs-suf{color:#34A853;}
.hs-suf{font-size:1rem;font-weight:800;line-height:1;}
.hs-body p{
  font-size:.68rem;color:#6B7280;margin-top:3px;
  font-weight:500;line-height:1.3;
  white-space:normal;word-break:break-word;
}
.hs-d{display:none;}
.hero-3d-wrap{
  position:relative;width:100%;max-width:360px;height:220px;
  opacity:0;transform:translateY(16px);
  transition:opacity .9s,transform .9s;
}
.hero-3d-wrap.show{opacity:1;transform:translateY(0)}
#threeCanvas{width:100%!important;height:100%!important;border-radius:16px}
.canvas-hint{
  position:absolute;bottom:8px;right:10px;font-size:.7rem;
  color:var(--muted);background:rgba(255,255,255,.9);
  padding:3px 10px;border-radius:20px;font-weight:500;
}
.hero-right{
  width:420px;flex-shrink:0;
  opacity:0;transform:translateX(28px);
  transition:opacity .9s,transform .9s;
}
.hero-right.show{opacity:1;transform:translateX(0)}
.form-card{
  background:#fff;
  border:1px solid #E8EAED;
  border-radius:24px;
  padding:36px 32px 28px;
  box-shadow:0 4px 6px rgba(0,0,0,.04),0 16px 48px rgba(0,0,0,.08);
  position:relative;overflow:hidden;
}
/* 4-color top stripe */
.form-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,#4285F4 25%,#EA4335 25%,#EA4335 50%,#FBBC05 50%,#FBBC05 75%,#34A853 75%);
}
.form-card-head{margin-bottom:24px;padding-top:4px;}
.form-card-head h2{
  font-size:1.45rem;font-weight:800;margin-bottom:6px;
  color:#0F1923;letter-spacing:-.02em;line-height:1.2;
}
.form-card-head h2 .fc-free{color:#4285F4;}
.form-card-head h2 .fc-demo{color:#EA4335;}
.form-card-head p{font-size:.82rem;color:#6B7280;line-height:1.5;}

/* Input group redesign */
.fgroup{position:relative;margin-bottom:14px;}
.fgroup input,.fgroup textarea{
  width:100%;background:#F8FAFF;
  border:1.5px solid #E8EAED;
  border-radius:10px;padding:14px 14px 6px;
  color:#0F1923;font-family:inherit;font-size:.9rem;
  outline:none;transition:border-color .2s,box-shadow .2s,background .2s;
}
.fgroup select{
  width:100%;background:#F8FAFF;
  border:1.5px solid #E8EAED;
  border-radius:10px;padding:20px 36px 6px 14px;
  color:#6B7280;font-family:inherit;font-size:.9rem;
  outline:none;appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235F6368'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 12px center;background-size:20px;
  transition:border-color .2s,box-shadow .2s;
}
.fgroup select.has-value{color:#0F1923;}
.fgroup select option{color:#0F1923;background:#fff;}
.fgroup textarea{resize:vertical;padding:20px 14px 8px;}
.fgroup input:focus,.fgroup textarea:focus,.fgroup select:focus{
  border-color:#4285F4;box-shadow:0 0 0 3px rgba(66,133,244,.12);background:#fff;
}
.fgroup label{
  position:absolute;top:50%;left:14px;
  transform:translateY(-50%);
  font-size:.88rem;color:#9AA0A6;
  pointer-events:none;transition:top .18s,font-size .18s,color .18s,transform .18s;
}
.fgroup textarea ~ label{top:14px;transform:none;}
.fgroup select + label{top:7px;transform:none;font-size:.67rem;color:#4285F4;font-weight:600;}
.fgroup input:focus+label,.fgroup textarea:focus+label,
.fgroup input:not(:placeholder-shown)+label,.fgroup textarea:not(:placeholder-shown)+label{
  top:6px;transform:none;font-size:.67rem;color:#4285F4;font-weight:600;
}
.fgroup.error input,.fgroup.error textarea,.fgroup.error select{
  border-color:#EA4335;box-shadow:0 0 0 3px rgba(234,67,53,.10);
}
.ferr{display:none;font-size:.72rem;color:#EA4335;margin-top:3px;padding-left:2px;}
.fgroup.error .ferr{display:block;}

/* Two-col row for course + mode */
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}

/* Submit button */
.btn-primary.btn-full{
  width:100%;margin-top:6px;
  background:linear-gradient(135deg,#4285F4,#1A73E8);
  color:#fff;border:none;border-radius:10px;
  padding:14px 20px;font-size:.93rem;font-weight:700;
  letter-spacing:.03em;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:transform .15s,box-shadow .15s,background .2s;
  box-shadow:0 4px 14px rgba(66,133,244,.35);
}
.btn-primary.btn-full:hover{
  background:linear-gradient(135deg,#1A73E8,#1558B0);
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(66,133,244,.45);
}
.btn-primary.btn-full:active{transform:translateY(0);box-shadow:0 2px 8px rgba(66,133,244,.3);}
.btn-spin{width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:spin .6s linear infinite;display:none;}
.form-success{
  display:none;margin-top:14px;padding:12px 16px;
  background:#E6F4EA;border:1px solid #A8D5B5;
  border-radius:10px;font-size:.87rem;color:#137333;font-weight:500;
}
.form-success.show{display:block;}
.fnote{
  font-size:.72rem;color:#9AA0A6;text-align:center;
  margin-top:12px;display:flex;align-items:center;justify-content:center;gap:5px;
}
.fnote::before{content:'🔒';font-size:.8rem;}
.hero-wave{flex-shrink:0}
.hero-wave svg{display:block;width:100%}

/* ══════════════════════════════════════
   COURSES GRID — with real logos
══════════════════════════════════════ */
.cat-tabs{
  display:flex;gap:8px;flex-wrap:wrap;
  justify-content:center;margin-bottom:36px;
}
.cat-tab{
  padding:8px 20px;border-radius:20px;font-size:.85rem;
  font-weight:500;color:var(--muted);border:1.5px solid var(--border);
  background:#fff;white-space:nowrap;transition:all .2s;cursor:pointer;
  font-family:'DM Sans',sans-serif;
}
.cat-tab:hover{border-color:var(--blue);color:var(--blue);background:#E8F0FE}
.cat-tab.active{background:var(--blue);color:#fff;border-color:var(--blue)}
.courses-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px;
}
.course-card{
  background:#fff;border:1px solid var(--border);border-radius:16px;
  padding:22px 20px;position:relative;overflow:hidden;
  transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s,border-color .25s;
  cursor:default;
  will-change:transform;
}
.course-card:hover{transform:translate3d(0,-4px,0);box-shadow:var(--sh-lg);border-color:rgba(66,133,244,.3)}
.course-card.hidden{display:none}
/* top color bar per category */
.course-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:var(--card-color,var(--blue));border-radius:16px 16px 0 0;
}
.course-logo{
  width:52px;height:52px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;overflow:hidden;font-size:1.8rem;
  background:var(--card-bg,#E8F0FE);flex-shrink:0;
}
.course-logo img{width:40px;height:40px;object-fit:contain}
.course-card h3{font-size:.98rem;font-weight:600;margin-bottom:6px;color:var(--dark)}
.course-card p{font-size:.83rem;color:var(--muted);line-height:1.6;margin-bottom:12px}
.course-meta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.c-dur,.c-mode{
  font-size:.72rem;font-weight:500;padding:3px 10px;border-radius:50px;
}
.c-dur{background:#E8F0FE;color:var(--blue)}
.c-mode.online{background:#E6F4EA;color:#137333}
.c-mode.offline{background:#FFF8E1;color:#F57F17}
.course-tags{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:14px}
.course-tags span{
  font-size:.7rem;padding:2px 8px;background:#F8F9FA;
  border:1px solid var(--border);border-radius:4px;color:var(--body);
}
.enroll-btn{
  display:block;width:100%;padding:9px 16px;
  background:var(--blue);color:#fff;border:none;border-radius:8px;
  font-size:.85rem;font-weight:500;font-family:'DM Sans',sans-serif;
  text-align:center;cursor:pointer;
  transition:background .2s,transform .2s;
}
.enroll-btn:hover{background:#1A73E8;transform:translateY(-1px)}

/* ── SCROLLTELLING ── */
.st-scene{min-height:75vh;display:flex;align-items:center;padding:60px 0}
.st-scene:nth-child(odd){background:#fff}
.st-scene:nth-child(even){background:#F8F9FA}
.st-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.st-grid.reverse{direction:rtl}
.st-grid.reverse>*{direction:ltr}
.st-step{
  display:inline-block;font-family:'Roboto Mono',monospace;
  font-size:.72rem;font-weight:700;color:var(--blue);
  background:#E8F0FE;padding:4px 12px;border-radius:50px;
  margin-bottom:14px;letter-spacing:.1em;text-transform:uppercase;
}
.st-text h2{font-size:clamp(1.7rem,2.8vw,2.3rem);margin-bottom:12px;line-height:1.2}
.st-text p{font-size:.95rem;color:var(--muted);line-height:1.8;margin-bottom:14px}
.st-features{display:flex;flex-direction:column;gap:10px;margin-top:16px}
.st-feature{display:flex;align-items:center;gap:12px;font-size:.9rem;color:var(--body);font-weight:500}
.st-feature-icon{
  width:34px;height:34px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;font-size:.95rem;flex-shrink:0;
}
.st-canvas-wrap{position:relative;height:360px;display:flex;align-items:center;justify-content:center}
.st-canvas-wrap canvas{border-radius:20px;box-shadow:var(--sh-lg);width:100%!important;height:100%!important}
.st-badge{
  position:absolute;background:#fff;border:1px solid var(--border);
  border-radius:12px;padding:9px 14px;display:flex;align-items:center;gap:9px;
  box-shadow:var(--sh-md);font-size:.82rem;font-weight:600;color:var(--dark);
  white-space:nowrap;z-index:2;
}
.st-badge-icon{font-size:1.2rem}
.st-badge.tl{top:20px;left:-8px}
.st-badge.br{bottom:24px;right:-8px}
.st-badge.tr{top:24px;right:-8px}

/* ── FEATURES ── */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.feat-card{
  text-align:center;padding:32px 24px;border-radius:16px;
  border:1px solid var(--border);background:#fff;
  transition:transform .3s,box-shadow .3s;
}
.feat-card:hover{transform:translate3d(0,-4px,0);box-shadow:var(--sh-md)}
.feat-icon-wrap{
  width:60px;height:60px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.7rem;margin:0 auto 16px;
}
.feat-card h3{font-size:1rem;margin-bottom:8px}
.feat-card p{font-size:.86rem;color:var(--muted);line-height:1.65;margin-bottom:16px}
.feat-link{font-size:.86rem;font-weight:600;color:var(--blue)}
.feat-link:hover{text-decoration:underline}

/* ── COMPANY LOGOS ── */
.partners-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
}
.partner-card{
  background:#fff;border:1px solid var(--border);border-radius:14px;
  padding:20px 14px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:10px;height:100px;
  transition:transform .3s,box-shadow .3s,border-color .3s;
  overflow:hidden;position:relative;
}
.partner-card:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:var(--sh-md);
  border-color:var(--p-color,var(--blue));
}
.partner-logo-img{
  width:auto;height:var(--logo-h,36px);object-fit:contain;
  filter:grayscale(100%) opacity(.6);
  transition:filter .3s,transform .3s;
}
.partner-logo-img-wipro{ --logo-h:46px } /* Wipro logo needs more height */
.partner-card:hover .partner-logo-img,.partner-card:hover .partner-logo-img-wipro{
  filter:grayscale(0%) opacity(1);
  transform:scale(1.1);
}
.partner-name{
  font-size:.74rem;font-weight:600;color:var(--muted);
  transition:color .3s;letter-spacing:.02em;
}
.partner-card:hover .partner-name{color:var(--p-color,var(--blue))}

/* ── TESTIMONIALS ── */
/* ══════════════════════════════════════
   TESTIMONIALS — Modern 2026 Redesign
══════════════════════════════════════ */
.testi-section{background:linear-gradient(160deg,#F8F9FA 0%,#EEF2FF 50%,#F0FDF4 100%);position:relative;overflow:hidden}
.testi-bg-glow{
  position:absolute;top:-120px;left:50%;transform:translateX(-50%);
  width:800px;height:400px;border-radius:50%;
  background:radial-gradient(ellipse,rgba(66,133,244,.08) 0%,transparent 70%);
  pointer-events:none;
}

/* ── Rating Summary Bar ── */
.testi-summary{
  display:flex;align-items:center;gap:28px;flex-wrap:wrap;justify-content:center;
  background:#fff;border:1px solid var(--border);border-radius:20px;
  padding:22px 32px;margin-bottom:44px;
  box-shadow:var(--sh-sm);
}
.tsumm-score{display:flex;align-items:center;gap:14px}
.tsumm-num{font-size:3rem;font-weight:700;font-family:'DM Sans',sans-serif;color:var(--dark);line-height:1}
.tsumm-stars{color:var(--yellow);font-size:1.1rem;letter-spacing:2px;margin-bottom:2px}
.tsumm-score p{font-size:.8rem;color:var(--muted);font-weight:500}
.tsumm-div{width:1px;height:52px;background:var(--border);flex-shrink:0}
.tsumm-bars{display:flex;flex-direction:column;gap:6px;min-width:180px}
.tbar-row{display:flex;align-items:center;gap:8px;font-size:.78rem;color:var(--muted)}
.tbar-row span:first-child{width:20px;text-align:right;flex-shrink:0}
.tbar-track{flex:1;height:6px;background:#E8EAED;border-radius:99px;overflow:hidden}
.tbar-fill{height:100%;border-radius:99px;transition:width 1.2s cubic-bezier(.4,0,.2,1)}
.tbar-row span:last-child{width:28px;flex-shrink:0;font-weight:600;color:var(--dark)}
.tsumm-badges{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}
.tsumm-badge{text-align:center}
.tsumm-badge span{font-size:1.4rem;display:block;margin-bottom:2px}
.tsumm-badge strong{display:block;font-size:.8rem;color:var(--dark)}
.tsumm-badge p{font-size:.72rem;color:var(--muted)}

/* ── Featured Testimonial ── */
.testi-featured{
  position:relative;
  background:#fff;border-radius:24px;padding:40px 44px;
  box-shadow:var(--sh-lg);border:1px solid rgba(66,133,244,.1);
  margin-bottom:40px;overflow:hidden;
}
.testi-featured::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--blue),var(--red),var(--yellow),var(--green));
}
.tf-quote-icon{
  position:absolute;top:28px;right:36px;
  font-size:6rem;line-height:1;color:var(--blue);opacity:.06;
  font-family:Georgia,serif;font-weight:700;pointer-events:none;user-select:none;
}
.tf-content{position:relative}
.tf-content>p{
  font-size:1.15rem;color:var(--body);line-height:1.8;font-style:italic;
  font-weight:300;margin-bottom:24px;min-height:60px;
  transition:opacity .3s;
}
.tf-author{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.tf-av{
  width:52px;height:52px;border-radius:50%;
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:.9rem;flex-shrink:0;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  transition:background .3s;
}
.tf-info{flex:1}
.tf-info strong{display:block;font-size:1rem;color:var(--dark)}
.tf-info span{font-size:.82rem;color:var(--muted)}
.tf-stars{color:var(--yellow);font-size:1.1rem;letter-spacing:2px;flex-shrink:0}
.tf-verified{
  background:#E6F4EA;color:#137333;
  font-size:.72rem;font-weight:600;padding:4px 10px;border-radius:99px;flex-shrink:0;
}
.tf-controls{display:flex;align-items:center;justify-content:flex-end;gap:10px;margin-top:20px}
.tf-btn{
  width:36px;height:36px;border-radius:50%;border:1.5px solid var(--border);
  background:#fff;color:var(--muted);font-size:.9rem;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all .2s;
}
.tf-btn:hover{border-color:var(--blue);color:var(--blue);box-shadow:0 2px 8px rgba(66,133,244,.2)}
.tf-dots{display:flex;gap:6px;flex:1;justify-content:center}
.tfdot{
  width:8px;height:8px;border-radius:50%;background:var(--border);
  cursor:pointer;transition:all .35s;border:none;padding:0;
}
.tfdot.active{background:var(--blue);width:22px;border-radius:4px}

/* ── Marquee Scroll ── */
.testi-marquee-wrap{position:relative;overflow:hidden;display:flex;flex-direction:column;gap:14px}
.testi-marquee{overflow:hidden}
.tm-track{
  display:flex;gap:14px;
  animation:marqueeLeft 30s linear infinite;
  width:max-content;
}
.testi-marquee[data-dir="right"] .tm-track{animation:marqueeRight 32s linear infinite}
.testi-marquee:hover .tm-track{animation-play-state:paused}
@keyframes marqueeLeft{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
@keyframes marqueeRight{0%{transform:translateX(-50%)}100%{transform:translateX(0)}}
.tm-card{
  flex-shrink:0;width:300px;
  background:#fff;border:1px solid var(--border);border-radius:16px;
  padding:18px 20px;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
  transition:box-shadow .2s,transform .2s;cursor:default;
}
.tm-card:hover{box-shadow:var(--sh-md);transform:translateY(-2px)}
.tmc-top{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.tmc-av{
  width:36px;height:36px;border-radius:50%;color:#fff;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:.72rem;
}
.tmc-top>div:nth-child(2){flex:1;min-width:0}
.tmc-top strong{display:block;font-size:.82rem;color:var(--dark);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.tmc-top span{font-size:.72rem;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}
.tmc-stars{color:var(--yellow);font-size:.75rem;flex-shrink:0}
.tm-card>p{font-size:.83rem;color:var(--body);line-height:1.65;font-style:italic}

/* Fade edge masks */
.marquee-fade-l,.marquee-fade-r{
  position:absolute;top:0;bottom:0;width:120px;z-index:2;pointer-events:none;
}
.marquee-fade-l{left:0;background:linear-gradient(to right,#F8F9FA,transparent)}
.marquee-fade-r{right:0;background:linear-gradient(to left,#F0FDF4,transparent)}



/* ── PRICING ── */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.pricing-card{
  background:#fff;border:1.5px solid var(--border);border-radius:20px;
  padding:32px 26px;position:relative;transition:transform .3s,box-shadow .3s;
}
.pricing-card.featured{
  background:linear-gradient(145deg,#4285F4,#1A73E8);
  border-color:transparent;box-shadow:var(--sh-xl);transform:scale(1.03);
}
.pricing-card.featured h3,.pricing-card.featured .pricing-price,.pricing-card.featured li{color:rgba(255,255,255,.95)}
.pricing-card.featured .pricing-desc,.pricing-card.featured .pricing-period{color:rgba(255,255,255,.75)}
.pricing-card.featured .pricing-label{background:rgba(255,255,255,.2);color:#fff}
.pricing-card.featured .pcheck{background:rgba(255,255,255,.2);color:#fff}
.pricing-card:not(.featured):hover{transform:translate3d(0,-4px,0);box-shadow:var(--sh-lg)}
.pricing-label{
  display:inline-block;font-size:.72rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.12em;
  padding:4px 12px;background:#E8F0FE;color:var(--blue);
  border-radius:50px;margin-bottom:16px;
}
.pricing-card h3{font-size:1.15rem;margin-bottom:6px}
.pricing-desc{font-size:.86rem;color:var(--muted);margin-bottom:20px}
.pricing-price{font-size:2.6rem;font-weight:700;color:var(--blue);line-height:1}
.pricing-period{font-size:.83rem;color:var(--muted);margin-bottom:22px}
.pricing-features{display:flex;flex-direction:column;gap:11px;margin-bottom:24px}
.pricing-features li{display:flex;align-items:center;gap:9px;font-size:.88rem;color:var(--body)}
.pcheck{
  width:20px;height:20px;border-radius:50%;background:#E6F4EA;
  color:var(--green);display:flex;align-items:center;justify-content:center;
  font-size:.65rem;font-weight:800;flex-shrink:0;
}

/* ── COURSES PAGE ── */
.filter-bar{
  position:sticky;top:60px;z-index:100;
  background:rgba(255,255,255,.95);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid #F3F4F6;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.filter-tabs{
  display:flex;gap:8px;padding:12px 0;
  overflow-x:auto;scrollbar-width:none;
}
.filter-tabs::-webkit-scrollbar{display:none}
.ftab{
  padding:8px 20px;border-radius:50px;font-size:.83rem;
  font-weight:600;color:#6B7280;border:1.5px solid #E5E7EB;
  background:#FAFAFA;white-space:nowrap;transition:all .2s;cursor:pointer;
  font-family:'DM Sans',sans-serif;letter-spacing:.01em;
}
.ftab:hover{border-color:var(--blue);color:var(--blue);background:#EEF3FF}
.ftab.active{background:var(--blue);color:#fff;border-color:var(--blue);box-shadow:0 4px 14px rgba(66,133,244,.3)}
.cat-section{margin-bottom:64px}
.cat-section.hidden{display:none}
.cat-header{
  display:flex;align-items:center;gap:16px;
  margin-bottom:28px;padding-bottom:18px;
  border-bottom:2px solid #E8F0FE;
}
.cat-icon-wrap{
  width:48px;height:48px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.6rem;flex-shrink:0;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.cat-header h2{font-size:1.55rem;margin-bottom:4px;font-weight:800;letter-spacing:-.01em}
.cat-header p{font-size:.86rem;color:var(--muted);margin:0}
.crs-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(310px,1fr));gap:20px}
.crs-card{
  background:#fff;border:1px solid #E5E7EB;border-radius:16px;
  padding:22px;display:flex;gap:16px;position:relative;overflow:hidden;
  transition:transform .28s,box-shadow .28s,border-color .28s;
  cursor:pointer;
}
.crs-card:hover{transform:translate3d(0,-4px,0);box-shadow:0 16px 40px rgba(0,0,0,.1);border-color:transparent}
.crs-card::before{
  content:'';position:absolute;left:0;top:0;bottom:0;width:4px;
  background:var(--card-color,var(--blue));border-radius:16px 0 0 16px;
  transition:opacity .28s;opacity:.3;
}
.crs-card:hover::before{opacity:1}
.crs-card::after{
  content:'';position:absolute;inset:0;border-radius:16px;pointer-events:none;
  box-shadow:0 0 0 2px var(--card-color,var(--blue));
  opacity:0;transition:opacity .28s;
}
.crs-card:hover::after{opacity:.15}
.crs-logo{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:var(--card-bg,#E8F0FE);flex-shrink:0;overflow:hidden;
  font-size:1.7rem;box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.crs-logo img{width:38px;height:38px;object-fit:contain}
.crs-body{flex:1;min-width:0}
.crs-meta{display:flex;align-items:center;flex-wrap:wrap;gap:5px;margin-bottom:10px}
.crs-cat{
  font-size:.68rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  color:var(--blue);background:#EEF3FF;padding:3px 10px;border-radius:50px;border:1px solid #DBEAFE;
}
.crs-dur{
  font-size:.73rem;color:#6B7280;font-weight:600;
  background:#F9FAFB;padding:3px 9px;border-radius:50px;border:1px solid #E5E7EB;
}
.crs-mode{font-size:.7rem;font-weight:600;padding:3px 9px;border-radius:50px}
.crs-mode.online{background:#D1FAE5;color:#065F46;border:1px solid #A7F3D0}
.crs-mode.offline{background:#FEF3C7;color:#92400E;border:1px solid #FDE68A}
.crs-body h3{font-size:1rem;margin-bottom:7px;font-weight:700;color:#111827;letter-spacing:-.01em}
.crs-body p{font-size:.84rem;color:#6B7280;line-height:1.7;margin-bottom:12px}
.crs-tags{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:16px}
.crs-tags span{
  font-size:.7rem;font-weight:600;padding:4px 10px;
  background:#F3F4F6;border:1px solid #E5E7EB;border-radius:6px;color:#374151;
  transition:background .2s,color .2s;
}
.crs-card:hover .crs-tags span{background:#EEF3FF;border-color:#DBEAFE;color:var(--blue)}
.crs-footer{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:8px;padding-top:12px;border-top:1px solid #F3F4F6}
.crs-info{display:flex;gap:12px}
.crs-info span{font-size:.77rem;color:#9CA3AF;font-weight:600}
.crs-btn{font-size:.83rem;padding:9px 20px;border-radius:10px}
.cta-box{
  background:linear-gradient(135deg,#E8F0FE,#E6F4EA);
  border:1px solid #DADCE0;border-radius:16px;padding:40px 44px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
}
.cta-text h2{font-size:1.5rem;margin-bottom:6px}
.cta-text p{font-size:.9rem;color:var(--muted);max-width:380px}
.cta-btns{display:flex;gap:12px;flex-wrap:wrap}

/* ── ABOUT PAGE ── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.about-vis-card{
  background:#F8F9FA;border-radius:20px;overflow:hidden;
  position:relative;padding:22px;border:1px solid var(--border);box-shadow:var(--sh-md);
}
#aboutCanvas{display:block;width:100%;height:auto;border-radius:12px}
.about-float{
  position:absolute;bottom:18px;right:18px;background:#fff;
  border-radius:12px;padding:10px 14px;display:flex;align-items:center;gap:10px;
  box-shadow:var(--sh-md);border:1px solid var(--border);font-size:.84rem;
}
.about-float span{font-size:1.3rem}
.about-float strong{display:block;font-weight:700;font-size:.86rem;color:var(--dark)}
.about-float small{color:var(--muted);font-size:.72rem}
.about-pills{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}
.pill{
  padding:6px 14px;background:#E8F0FE;border:1px solid #C2D3FC;
  border-radius:50px;font-size:.81rem;font-weight:500;color:var(--blue);
  transition:background .2s;
}
.pill:hover{background:#C2D3FC}
.ab-stats{
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  margin-top:24px;padding:18px;background:#F8F9FA;border-radius:12px;border:1px solid var(--border);
}
.abs span{font-size:1.5rem;font-weight:700;color:var(--blue)}
.abs strong{font-size:.9rem;color:var(--blue)}
.abs p{font-size:.7rem;color:var(--muted);font-weight:500;margin-top:2px}
.abs-d{width:1px;height:32px;background:var(--border)}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.why-card{
  background:#fff;border:1px solid var(--border);border-radius:14px;
  padding:22px 20px;position:relative;
  transition:transform .3s,box-shadow .3s,border-color .3s;
}
.why-card:hover{transform:translate3d(0,-3px,0);box-shadow:var(--sh-md);border-color:rgba(66,133,244,.3)}
.why-num{
  position:absolute;top:14px;right:16px;
  font-size:1.8rem;font-weight:900;color:rgba(66,133,244,.07);
  font-family:'Roboto Mono',monospace;
}
.why-icon{
  font-size:1.7rem;margin-bottom:12px;
  width:50px;height:50px;border-radius:12px;
  background:#E8F0FE;display:flex;align-items:center;justify-content:center;
  transition:background .2s,transform .2s;
}
.why-card:hover .why-icon{background:#C2D3FC;transform:scale(1.05)}
.why-card h3{font-size:.97rem;margin-bottom:7px}
.why-card p{font-size:.84rem;color:var(--muted);line-height:1.62}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.team-card{
  background:#F8F9FA;border:1px solid var(--border);
  border-radius:16px;padding:24px;text-align:center;
  transition:transform .3s,box-shadow .3s;
}
.team-card:hover{transform:translate3d(0,-4px,0);box-shadow:var(--sh-lg)}
.team-avatar{
  width:64px;height:64px;border-radius:50%;
  background:var(--bg,var(--blue));color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:1.15rem;margin:0 auto 14px;
  transition:box-shadow .2s;
}
.team-card:hover .team-avatar{box-shadow:0 0 0 4px rgba(66,133,244,.2)}
.team-card h3{font-size:1rem;margin-bottom:5px}
.team-role{font-size:.78rem;color:var(--blue);font-weight:600;display:block;margin-bottom:10px}
.team-card p{font-size:.83rem;color:var(--muted);line-height:1.62;margin-bottom:12px}
.team-tags{display:flex;flex-wrap:wrap;gap:5px;justify-content:center}
.team-tags span{font-size:.7rem;padding:3px 9px;background:#E8F0FE;border-radius:50px;color:var(--blue);font-weight:600}
.timeline{position:relative;padding-left:44px}
.timeline::before{content:'';position:absolute;left:12px;top:0;bottom:0;width:2px;background:var(--border)}
.tl-item{position:relative;margin-bottom:36px;display:flex;gap:20px;align-items:flex-start}
.tl-dot{position:absolute;left:-38px;top:3px;width:13px;height:13px;border-radius:50%;background:#fff;border:3px solid var(--blue)}
.tl-dot.active{background:var(--blue)}
.tl-year{font-family:'Roboto Mono',monospace;font-weight:700;font-size:.88rem;color:var(--blue);white-space:nowrap;padding-top:2px;min-width:38px}
.tl-content h3{font-size:1rem;margin-bottom:5px}
.tl-content p{font-size:.86rem;color:var(--muted);line-height:1.7}

/* ── CONTACT PAGE ── */
.info-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.info-card{
  background:#fff;border:1px solid var(--border);border-radius:14px;
  padding:24px 18px;text-align:center;
  transition:transform .3s,box-shadow .3s,border-color .3s;
}
.info-card:hover{transform:translate3d(0,-3px,0);box-shadow:var(--sh-md);border-color:rgba(66,133,244,.3)}
.ic-icon{font-size:2rem;margin-bottom:12px}
.info-card h3{font-size:.95rem;margin-bottom:7px}
.info-card p{font-size:.85rem;color:var(--muted);line-height:1.65}
.info-card a{color:var(--blue);font-weight:500}
.info-card small{display:block;font-size:.76rem;color:var(--muted);margin-top:3px}
.forms-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.form-box{background:#F8F9FA;border:1px solid var(--border);border-radius:16px;padding:28px 24px}
.form-box-header{display:flex;align-items:flex-start;gap:14px;margin-bottom:24px;padding-bottom:18px;border-bottom:1px solid var(--border)}
.fb-icon{font-size:1.8rem;width:50px;height:50px;border-radius:12px;background:color-mix(in srgb,var(--hc) 12%,transparent);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.form-box-header h2{font-size:1.2rem;margin-bottom:4px}
.form-box-header p{font-size:.83rem;color:var(--muted)}
.map-wrap{position:relative;border-radius:14px;overflow:hidden;box-shadow:var(--sh-md)}
.map-overlay{
  position:absolute;bottom:16px;left:16px;right:16px;
  background:#fff;border-radius:12px;padding:14px 18px;
  display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  box-shadow:var(--sh-lg);border:1px solid var(--border);
}
.map-pin{font-size:1.5rem}
.map-overlay div{flex:1}
.map-overlay strong{display:block;font-weight:700;font-size:.9rem;margin-bottom:2px}
.map-overlay span{font-size:.82rem;color:var(--muted)}
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
.faq-item{background:#F8F9FA;border:1px solid var(--border);border-radius:12px;overflow:hidden}
.faq-q{
  width:100%;display:flex;justify-content:space-between;align-items:center;
  padding:16px 20px;font-size:.93rem;font-weight:600;color:var(--dark);
  text-align:left;gap:12px;cursor:pointer;transition:background .2s;
  background:none;border:none;font-family:inherit;
}
.faq-q:hover{background:#E8F0FE}
.faq-q.open{color:var(--blue);background:#E8F0FE}
.faq-arrow{font-size:1rem;transition:transform .3s;flex-shrink:0}
.faq-q.open .faq-arrow{transform:rotate(90deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .3s}
.faq-a.open{max-height:300px;padding:0 20px 16px}
.faq-a p{font-size:.87rem;color:var(--muted);line-height:1.75}

/* ── BLOG PAGE ── */
.featured-post{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
  background:#F8F9FA;border:1px solid var(--border);border-radius:18px;overflow:hidden;padding:36px;
}
.fp-img{
  background:linear-gradient(135deg,#E8F0FE,#E6F4EA);border-radius:14px;height:240px;
  display:flex;align-items:center;justify-content:center;position:relative;border:1px solid var(--border);
}
.fp-emoji{font-size:4.5rem}
.fp-tag{position:absolute;top:12px;left:12px;background:var(--blue);color:#fff;font-size:.72rem;font-weight:600;padding:3px 11px;border-radius:50px}
.fp-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:12px}
.post-cat{font-size:.7rem;font-weight:700;padding:3px 10px;border-radius:50px;text-transform:uppercase;letter-spacing:.05em}
.post-cat.python{background:#fef3c7;color:#92400e}
.post-cat.webdev{background:#cffafe;color:#0e7490}
.post-cat.ai{background:#ffedd5;color:#9a3412}
.post-cat.career{background:#E6F4EA;color:#137333}
.post-cat.database{background:#ede9fe;color:#5b21b6}
.post-date,.post-read{font-size:.76rem;color:var(--muted);font-weight:500;background:#F8F9FA;padding:2px 8px;border-radius:50px}
.fp-content h2{font-size:1.45rem;margin-bottom:10px;line-height:1.25}
.fp-content p{font-size:.9rem;color:var(--muted);line-height:1.75;margin-bottom:18px}
.fp-author{display:flex;align-items:center;gap:10px}
.auth-av{width:38px;height:38px;border-radius:50%;background:var(--bg,var(--blue));color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.78rem;flex-shrink:0}
.fp-author strong{display:block;font-size:.88rem;color:var(--dark)}
.fp-author span{font-size:.76rem;color:var(--muted)}
.blog-filters{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:32px}
.bfil{padding:7px 18px;border-radius:20px;font-size:.82rem;font-weight:500;color:var(--muted);border:1.5px solid var(--border);background:#fff;transition:all .2s;cursor:pointer;font-family:inherit}
.bfil:hover{border-color:var(--blue);color:var(--blue)}
.bfil.active{background:var(--blue);color:#fff;border-color:var(--blue)}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.blog-card{background:#fff;border:1px solid var(--border);border-radius:14px;overflow:hidden;transition:transform .3s,box-shadow .3s,border-color .3s}
.blog-card:hover{transform:translate3d(0,-4px,0);box-shadow:var(--sh-lg);border-color:rgba(66,133,244,.3)}
.blog-card.hidden{display:none}
.bc-img{height:120px;background:color-mix(in srgb,var(--c) 10%,#F8F9FA);display:flex;align-items:center;justify-content:center;font-size:2.8rem;border-bottom:1px solid var(--border)}
.bc-body{padding:18px}
.bc-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:9px}
.bc-body h3{font-size:.96rem;margin-bottom:7px;line-height:1.35}
.bc-body p{font-size:.83rem;color:var(--muted);line-height:1.65;margin-bottom:14px}
.bc-footer{display:flex;align-items:center;justify-content:space-between}
.bc-auth{display:flex;align-items:center;gap:7px}
.bav{width:26px;height:26px;border-radius:50%;background:var(--bg,var(--blue));color:#fff;display:flex;align-items:center;justify-content:center;font-size:.62rem;font-weight:700;flex-shrink:0}
.bc-auth span{font-size:.77rem;font-weight:600;color:var(--body)}
.bc-link{font-size:.81rem;font-weight:600;color:var(--blue)}
.bc-link:hover{text-decoration:underline}
.newsletter-box{
  background:linear-gradient(135deg,#E8F0FE,#E6F4EA);
  border:1px solid var(--border);border-radius:18px;
  padding:44px;display:flex;align-items:center;gap:24px;flex-wrap:wrap;
}
.nl-icon{font-size:2.8rem;flex-shrink:0}
.nl-text{flex:1}
.nl-text h2{font-size:1.45rem;margin-bottom:5px}
.nl-text p{font-size:.88rem;color:var(--muted);max-width:360px}
.nl-form{display:flex;gap:8px;flex-shrink:0}
.nl-form input{
  padding:11px 16px;border:1.5px solid var(--border);border-radius:8px;
  font-size:.9rem;outline:none;width:260px;font-family:inherit;
  transition:border-color .2s;background:#fff;
}
.nl-form input:focus{border-color:var(--blue)}

/* ══════════════════════════════════════
   AI CHATBOT — DCode Human Chat Style
══════════════════════════════════════ */
:root{
  --wa-green-dark:#1557A0;
  --wa-green-mid:#1A73E8;
  --wa-green-light:#4285F4;
  --wa-green-teal:#34A8E8;
  --wa-bubble-out:#E3F2FD;
  --wa-bubble-in:#FFFFFF;
  --wa-bg:#EEF2F7;
  --wa-tick:#4285F4;
  --wa-header-h:70px;
}
#chatBtn{
  position:fixed;bottom:86px;right:20px;z-index:500;
  width:58px;height:58px;border-radius:50%;border:none;cursor:pointer;
  background:linear-gradient(135deg,#0ea5e9,#6366f1);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 18px rgba(99,102,241,.55),0 0 0 3px rgba(255,255,255,.15);
  transition:transform .3s,box-shadow .3s;
  animation:chatBounce 2s ease-in-out 3s 3;
  overflow:visible;padding:0;
}
@keyframes chatBounce{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
#chatBtn:hover{transform:scale(1.08) translateY(-2px);box-shadow:0 8px 28px rgba(99,102,241,.65),0 0 0 4px rgba(255,255,255,.2)}
.chat-badge{
  position:absolute;top:-4px;right:-4px;
  width:19px;height:19px;border-radius:50%;
  background:#EA4335;color:#fff;font-size:.62rem;font-weight:700;
  display:none;align-items:center;justify-content:center;border:2px solid #fff;
  animation:badgePulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse{0%,100%{box-shadow:0 0 0 0 rgba(234,67,53,.5)}50%{box-shadow:0 0 0 5px rgba(234,67,53,0)}}
#chatWidget{
  position:fixed;bottom:154px;right:20px;z-index:600;
  width:370px;background:var(--wa-bg);border-radius:16px;
  box-shadow:0 24px 64px rgba(0,0,0,.2),0 4px 16px rgba(0,0,0,.1);
  display:flex;flex-direction:column;overflow:hidden;
  max-height:560px;min-height:420px;
  opacity:0;visibility:hidden;transform:scale(.9) translateY(18px);
  transition:opacity .3s,visibility .3s,transform .3s;
}
#chatWidget.open{opacity:1;visibility:visible;transform:scale(1) translateY(0)}

/* Subtle dot wallpaper */
#chatWidget::before{
  content:'';position:absolute;inset:var(--wa-header-h) 0 0 0;
  background-image:radial-gradient(circle,rgba(26,115,232,.1) 1px,transparent 1px);
  background-size:22px 22px;
  pointer-events:none;z-index:0;
}

/* ── Header ── */
.chat-header{
  background:linear-gradient(135deg,#1557A0 0%,#1A73E8 60%,#0D47A1 100%);
  color:#fff;padding:10px 14px;
  display:flex;align-items:center;gap:11px;flex-shrink:0;
  height:var(--wa-header-h);
  position:relative;z-index:2;
  box-shadow:0 2px 12px rgba(21,87,160,.45);
}
.chat-avatar{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,#fff 0%,#E3F2FD 100%);
  border:2.5px solid rgba(255,255,255,.5);
  display:flex;align-items:center;justify-content:center;
  font-size:1.05rem;font-weight:800;color:#1557A0;
  flex-shrink:0;box-shadow:0 2px 8px rgba(0,0,0,.2);
  letter-spacing:-.5px;
}
.chat-info{flex:1;min-width:0}
.chat-info h4{font-size:.92rem;font-weight:700;margin-bottom:2px;letter-spacing:.01em}
.chat-info span{font-size:.7rem;opacity:.9;display:flex;align-items:center;gap:5px}
.chat-dot{
  width:8px;height:8px;border-radius:50%;background:#4ade80;
  display:inline-block;flex-shrink:0;
  box-shadow:0 0 6px rgba(74,222,128,.7);
  animation:waDotPulse 2s ease-in-out infinite;
}
@keyframes waDotPulse{0%,100%{opacity:1}50%{opacity:.5}}
.chat-header-actions{display:flex;align-items:center;gap:4px}
.chat-close{
  background:rgba(255,255,255,.12);border:none;color:#fff;
  width:30px;height:30px;border-radius:50%;cursor:pointer;font-size:.85rem;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;flex-shrink:0;
}
.chat-close:hover{background:rgba(255,255,255,.25)}

/* ── WA Messages Area ── */
.chat-msgs{
  flex:1;overflow-y:auto;
  padding:10px 12px;
  display:flex;flex-direction:column;gap:4px;
  scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.2) transparent;
  position:relative;z-index:1;
}
.chat-msgs::-webkit-scrollbar{width:4px}
.chat-msgs::-webkit-scrollbar-thumb{background:rgba(0,0,0,.18);border-radius:4px}

/* ── WA Message Rows ── */
.chat-msg{
  display:flex;flex-direction:column;max-width:82%;
  animation:waSlideIn .25s cubic-bezier(.25,.46,.45,.94);
}
@keyframes waSlideIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
.chat-msg.bot{align-self:flex-start}
.chat-msg.user{align-self:flex-end}

/* ── WA Bubbles ── */
.chat-bubble{
  padding:7px 10px 20px;border-radius:8px;
  font-size:.84rem;line-height:1.5;word-break:break-word;
  position:relative;box-shadow:0 1px 2px rgba(0,0,0,.13);
}
/* Incoming (bot) — white with left tail */
.chat-msg.bot .chat-bubble{
  background:var(--wa-bubble-in);color:#111;
  border-radius:0 8px 8px 8px;
}
.chat-msg.bot .chat-bubble::before{
  content:'';position:absolute;top:0;left:-8px;
  border:0 solid transparent;
  border-right:8px solid var(--wa-bubble-in);
  border-top:8px solid var(--wa-bubble-in);
  border-bottom-right-radius:2px;
}
/* Outgoing (user) — blue with right tail */
.chat-msg.user .chat-bubble{
  background:#1A73E8;color:#fff;
  border-radius:8px 0 8px 8px;
}
.chat-msg.user .chat-bubble::before{
  content:'';position:absolute;top:0;right:-8px;
  border:0 solid transparent;
  border-left:8px solid #1A73E8;
  border-top:8px solid #1A73E8;
  border-bottom-left-radius:2px;
}

/* ── Timestamp + tick inside bubble ── */
.chat-meta{
  position:absolute;bottom:4px;right:8px;
  display:flex;align-items:center;gap:3px;
}
.chat-time{font-size:.63rem;color:rgba(0,0,0,.4);white-space:nowrap}
.chat-msg.user .chat-time{color:rgba(255,255,255,.65)}
.chat-ticks{font-size:.72rem;color:var(--wa-tick);line-height:1}

/* ── Typing indicator ── */
.chat-typing{
  display:flex;gap:4px;padding:10px 14px 22px;
  background:var(--wa-bubble-in);
  border-radius:0 8px 8px 8px;
  align-items:center;align-self:flex-start;
  box-shadow:0 1px 2px rgba(0,0,0,.13);
  position:relative;
}
.chat-typing::before{
  content:'';position:absolute;top:0;left:-8px;
  border:0 solid transparent;
  border-right:8px solid var(--wa-bubble-in);
  border-top:8px solid var(--wa-bubble-in);
}
.chat-typing span{width:7px;height:7px;border-radius:50%;background:#8696A0;animation:waTypeDot 1.4s infinite}
.chat-typing span:nth-child(2){animation-delay:.2s}
.chat-typing span:nth-child(3){animation-delay:.4s}
@keyframes waTypeDot{0%,60%,100%{transform:scale(1);opacity:.5}30%{transform:scale(1.25);opacity:1}}

/* ── Date divider ── */
.chat-date-divider{
  text-align:center;margin:6px 0;
}
.chat-date-divider span{
  display:inline-block;background:rgba(225,245,254,.92);
  color:#546E7A;font-size:.68rem;font-weight:600;
  padding:3px 10px;border-radius:8px;
  box-shadow:0 1px 2px rgba(0,0,0,.1);
  letter-spacing:.02em;
}

/* ── Quick Replies ── */
.chat-quick{
  padding:8px 10px 6px;display:flex;gap:5px;flex-wrap:wrap;flex-shrink:0;
  background:rgba(255,255,255,.7);backdrop-filter:blur(8px);
  border-top:1px solid rgba(0,0,0,.08);
  position:relative;z-index:1;
}
.cqbtn{
  font-size:.71rem;font-weight:500;padding:5px 11px;
  border:1px solid rgba(26,115,232,.35);
  border-radius:16px;background:rgba(255,255,255,.9);
  color:#1557A0;cursor:pointer;
  transition:background .2s,border-color .2s,color .2s;
  font-family:inherit;white-space:nowrap;
}
.cqbtn:hover{background:#E3F2FD;border-color:#1A73E8;color:#0D47A1}

/* ── WA Input Bar ── */
.chat-input-row{
  display:flex;align-items:center;gap:8px;
  padding:8px 10px;background:#F0F0F0;
  border-top:1px solid rgba(0,0,0,.08);
  flex-shrink:0;position:relative;z-index:1;
}
.chat-input{
  flex:1;padding:9px 14px;border:none;border-radius:22px;
  font-size:.87rem;font-family:inherit;outline:none;
  background:#fff;color:#111;
  box-shadow:0 1px 3px rgba(0,0,0,.1);
  transition:box-shadow .2s;
}
.chat-input:focus{box-shadow:0 2px 6px rgba(0,0,0,.15)}
.chat-input::placeholder{color:#999}
.chat-send{
  width:42px;height:42px;border-radius:50%;
  background:linear-gradient(135deg,#1A73E8,#1557A0);
  border:none;color:#fff;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;
  transition:transform .2s,box-shadow .2s;flex-shrink:0;
  box-shadow:0 2px 8px rgba(26,115,232,.45);
}
.chat-send:hover{transform:scale(1.1);box-shadow:0 4px 14px rgba(26,115,232,.6)}
/* Send icon — paper plane */
.chat-send::after{content:'➤';font-size:.85rem}

/* ── FIXED BUTTONS ── */
#scrollTop{
  position:fixed;bottom:20px;right:84px;z-index:500;
  width:42px;height:42px;border-radius:50%;
  background:#fff;color:var(--blue);border:1.5px solid var(--border);
  font-size:1rem;cursor:pointer;display:flex;align-items:center;justify-content:center;
  box-shadow:var(--sh-md);opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .3s,visibility .3s,transform .3s;
}
#scrollTop.show{opacity:1;visibility:visible;transform:translateY(0)}
#scrollTop:hover{background:var(--blue);color:#fff}
/* ══ WHATSAPP FLOATING BUTTON — Redesigned ══ */
#waBtn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  left: auto;
  z-index: 8999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 56px;
  padding: 0;
  height: 56px;
  width: 56px;
  font-family: 'DM Sans', 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 4px 16px rgba(37,211,102,.5),
    0 1px 4px rgba(0,0,0,.12);
  transition:
    width .3s cubic-bezier(.34,1.4,.64,1),
    border-radius .3s ease,
    box-shadow .25s ease,
    transform .2s ease;
  overflow: hidden;
  white-space: nowrap;
  justify-content: center;
}

/* Expanded state (on hover) */
#waBtn:hover {
  width: 194px;
  border-radius: 56px;
  justify-content: flex-start;
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37,211,102,.55),
    0 2px 8px rgba(0,0,0,.14);
}

#waBtn .wa-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

#waBtn .wa-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  padding-right: 0;
  transition:
    max-width .3s cubic-bezier(.34,1.4,.64,1),
    opacity .2s ease,
    padding-right .3s ease;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .01em;
}

#waBtn:hover .wa-label {
  max-width: 130px;
  opacity: 1;
  padding-right: 20px;
}

/* Pulse ring — subtle */
#waBtn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  animation: waPulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.55); }
  60%  { box-shadow: 0 0 0 14px rgba(37,211,102,.0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,.0); }
}

/* Hide on mobile — sticky CTA bar handles it */
@media (max-width: 768px) { #waBtn { display: none !important; } }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

#footer {
  background: #07090F;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 8% 0%,  rgba(66,133,244,.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 92% 95%, rgba(52,168,83,.07)  0%, transparent 65%);
}

/* ── NEWSLETTER STRIP ── */
.footer-nl-strip {
  background: linear-gradient(110deg, #111827 0%, #0d1f17 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 40px 0;
}
.footer-nl-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.footer-nl-left {
  display: flex; align-items: center; gap: 18px; flex: 1;
}
.footer-nl-icon {
  font-size: 1.6rem; flex-shrink: 0;
  background: rgba(66,133,244,.12); width: 52px; height: 52px;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(66,133,244,.22);
  box-shadow: 0 0 20px rgba(66,133,244,.08);
}
.footer-nl-left h3 {
  font-size: 1rem; font-weight: 700; color: #F1F3F4;
  font-family: 'DM Sans','Roboto',sans-serif; margin-bottom: 4px;
  letter-spacing: -.01em;
}
.footer-nl-left p { font-size: .82rem; color: #8A9099; margin: 0; line-height: 1.5; }
.footer-nl-form {
  display: flex; gap: 0; flex-shrink: 0;
  border-radius: 12px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.1);
  transition: border-color .25s;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.footer-nl-form:focus-within { border-color: rgba(66,133,244,.55); }
.footer-nl-input {
  padding: 12px 18px; background: rgba(255,255,255,.04);
  border: none; outline: none; font-size: .88rem; color: #E8EAED;
  font-family: inherit; width: 260px; min-width: 0;
}
.footer-nl-input::placeholder { color: #4B5563; }
.footer-nl-btn {
  padding: 12px 22px; background: #4285F4; color: #fff;
  border: none; cursor: pointer; font-size: .87rem; font-weight: 700;
  font-family: 'DM Sans','Roboto',sans-serif; letter-spacing: .01em;
  transition: background .2s; white-space: nowrap; display: flex; align-items: center; gap: 5px;
}
.footer-nl-btn:hover { background: #2563EB; }
.footer-nl-success {
  display: none; text-align: center; padding: 10px 0;
  color: #6EE7B7; font-size: .87rem; font-weight: 500;
}

/* ── CTA STRIP ── */
.footer-cta-strip {
  background: linear-gradient(110deg, #0f1c3a 0%, #0d2218 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta-strip::after {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66,133,244,.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative; z-index: 1;
}
.footer-cta-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(66,133,244,.12); color: #93C5FD;
  border: 1px solid rgba(66,133,244,.22); border-radius: 50px;
  font-size: .71rem; font-weight: 700; letter-spacing: .07em;
  padding: 5px 14px; margin-bottom: 12px; text-transform: uppercase;
}
.footer-cta-text h2 {
  font-size: 1.85rem; font-weight: 800; color: #F1F3F4;
  font-family: 'DM Sans','Roboto',sans-serif; margin-bottom: 8px;
  letter-spacing: -.02em; line-height: 1.2;
}
.footer-cta-text h2 .g-text {
  background: linear-gradient(90deg, #4285F4, #34A853);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-cta-text p { font-size: .88rem; color: #8A9099; line-height: 1.6; }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  background: rgba(37,211,102,.1); color: #4ADE80;
  border: 1.5px solid rgba(37,211,102,.25);
  font-size: .87rem; font-weight: 600;
  transition: background .2s, border-color .2s, transform .2s; text-decoration: none;
}
.footer-wa-btn:hover {
  background: rgba(37,211,102,.18); border-color: rgba(37,211,102,.45);
  transform: translateY(-1px);
}

/* ── BATCH TIMINGS STRIP ── */
.footer-batch-strip {
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 16px 0;
}
.footer-batch-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-batch-title {
  font-size: .72rem; font-weight: 700; color: #6B7280;
  letter-spacing: .08em; text-transform: uppercase; flex-shrink: 0;
}
.footer-batch-items {
  display: flex; align-items: center; gap: 20px; flex: 1; flex-wrap: wrap;
}
.fbatch { display: flex; align-items: center; gap: 7px; }
.fbatch-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.fbatch strong {
  font-size: .79rem; color: #D1D5DB; font-weight: 600;
  font-family: 'DM Sans','Roboto',sans-serif;
}
.fbatch span { font-size: .74rem; color: #4B5563; margin-left: 2px; }
.fbatch-sep { color: rgba(255,255,255,.1); font-size: 1rem; }
.fbatch-enroll {
  margin-left: auto; flex-shrink: 0;
  font-size: .77rem; font-weight: 700; color: #93C5FD;
  background: rgba(66,133,244,.1); border: 1px solid rgba(66,133,244,.2);
  padding: 6px 16px; border-radius: 8px; text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  letter-spacing: .01em;
}
.fbatch-enroll:hover { background: rgba(66,133,244,.2); color: #fff; border-color: rgba(66,133,244,.4); }

/* ── MAIN FOOTER BODY ── */
.footer-body { padding: 60px 0 0; position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}

/* ── Brand column ── */
.footer-logo .logo-name { color: #F1F3F4 !important; }
.footer-brand p {
  font-size: .83rem; color: #8A9099; line-height: 1.85;
  margin: 14px 0 20px; max-width: 265px;
}

/* Trust badges */
.footer-trust-badges {
  display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap;
}
.ftbadge {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 9px 13px;
  transition: border-color .2s, background .2s;
}
.ftbadge:hover { border-color: rgba(66,133,244,.35); background: rgba(66,133,244,.05); }
.ftbadge-icon { font-size: 1.1rem; flex-shrink: 0; }
.ftbadge strong { display: block; font-size: .73rem; color: #E8EAED; font-weight: 600; line-height: 1.2; }
.ftbadge small { font-size: .67rem; color: #4B5563; }

/* Contact chips */
.footer-contact-chips {
  display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px;
}
.fchip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .77rem; color: #8A9099;
  transition: color .2s; text-decoration: none;
}
.fchip:hover { color: #93C5FD; }
.fchip svg { flex-shrink: 0; opacity: .5; transition: opacity .2s; }
.fchip:hover svg { opacity: .8; }

/* Social icons */
.social-row { display: flex; gap: 7px; }
.soc {
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  display: flex; align-items: center; justify-content: center;
  color: #6B7280; transition: all .2s; text-decoration: none;
}
.soc:hover { transform: translateY(-2px); }
.soc-x:hover  { border-color: rgba(255,255,255,.3); color: #fff;    background: rgba(255,255,255,.08); }
.soc-li:hover { border-color: rgba(10,102,194,.5);  color: #60A5FA; background: rgba(10,102,194,.1); }
.soc-ig:hover { border-color: rgba(225,48,108,.45); color: #F472B6; background: rgba(225,48,108,.08); }
.soc-yt:hover { border-color: rgba(255,0,0,.4);     color: #F87171; background: rgba(255,0,0,.08); }
.soc-fb:hover { border-color: rgba(24,119,242,.45); color: #60A5FA; background: rgba(24,119,242,.1); }

/* ── Nav columns ── */
.footer-col h4 {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; color: #E8EAED;
  letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-col-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.footer-col ul { display: flex; flex-direction: column; gap: 0; }
.footer-col li a {
  display: flex; align-items: center; gap: 8px;
  font-size: .81rem; color: #6B7280;
  padding: 5.5px 0;
  transition: color .18s, padding-left .18s; text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-col li a:hover { color: #E8EAED; padding-left: 5px; }
.fli-icon { font-size: .78rem; width: 17px; text-align: center; flex-shrink: 0; opacity: .75; }

/* ── Stats bar ── */
.footer-stats {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding: 26px 36px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px; margin-bottom: 32px;
  position: relative; overflow: hidden;
}
.footer-stats::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66,133,244,.4), rgba(52,168,83,.3), rgba(251,188,5,.3), transparent);
}
.fstat { text-align: center; }
.fstat-num {
  display: block; font-size: 1.6rem; font-weight: 800;
  font-family: 'DM Sans','Roboto',sans-serif; line-height: 1.1;
  letter-spacing: -.02em;
}
.fstat-label { font-size: .7rem; color: #4B5563; margin-top: 4px; display: block; letter-spacing: .02em; }
.fstat-div { width: 1px; height: 32px; background: rgba(255,255,255,.07); }

/* ── Hiring partners ── */
.footer-partners {
  margin-bottom: 32px;
  padding: 26px 0 22px;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-partners-header {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 4px; padding: 0 4px; margin-bottom: 18px;
}
.footer-partners-label {
  font-size: .71rem; font-weight: 700; color: #8A9099;
  letter-spacing: .1em; text-transform: uppercase; margin: 0;
}
.footer-partners-sub { font-size: .7rem; color: #4B5563; margin: 0; }

/* marquee */
.fpartner-track-wrap { overflow: hidden; position: relative; }
.fpartner-track-wrap::before,
.fpartner-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.fpartner-track-wrap::before { left: 0;  background: linear-gradient(90deg,  #07090F 0%, transparent 100%); }
.fpartner-track-wrap::after  { right: 0; background: linear-gradient(-90deg, #07090F 0%, transparent 100%); }
.fpartner-track {
  display: flex; align-items: center; gap: 12px;
  width: max-content; animation: fpartnerScroll 30s linear infinite;
}
.fpartner-track:hover { animation-play-state: paused; }
@keyframes fpartnerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fpartner-logo {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 7px; width: 108px; height: 76px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px; padding: 10px 12px; flex-shrink: 0;
  cursor: default;
  transition: background .22s, border-color .22s, transform .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.fpartner-logo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--ac, #4285F4); opacity: 0; transition: opacity .22s;
}
.fpartner-logo:hover {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.13);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.fpartner-logo:hover::after { opacity: 1; }
.fpartner-logo img {
  width: 46px; height: 26px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .6;
  transition: opacity .22s, filter .22s; display: block; flex-shrink: 0;
}
.fpartner-logo:hover img { opacity: 1; filter: none; }
.fpartner-fallback {
  width: 44px; height: 26px; border-radius: 6px; color: #fff;
  font-size: .62rem; font-weight: 800; letter-spacing: .04em;
  align-items: center; justify-content: center; flex-shrink: 0; opacity: .85;
}
.fpartner-name {
  font-size: .61rem; font-weight: 600; color: #4B5563;
  white-space: nowrap; letter-spacing: .02em; transition: color .22s;
}
.fpartner-logo:hover .fpartner-name { color: #9CA3AF; }

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .75rem; color: #4B5563; }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a {
  font-size: .75rem; color: #4B5563; text-decoration: none; transition: color .18s;
}
.footer-bottom-links a:hover { color: #93C5FD; }
.footer-bottom-links span { color: #1F2937; font-size: .9rem; }
.footer-mono { font-family: 'Roboto Mono',monospace; color: #4285F4 !important; font-size: .74rem; }

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
══════════════════════════════════════ */
@media (max-width:1100px){
  .courses-grid{grid-template-columns:repeat(2,1fr)}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .partners-grid{grid-template-columns:repeat(4,1fr)}
}
@media (max-width:1024px){
  .about-grid{grid-template-columns:1fr;gap:32px}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .info-cards{grid-template-columns:repeat(2,1fr)}
  .forms-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
  .footer-cta-inner{flex-direction:column;text-align:center}
  .footer-cta-actions{justify-content:center}
  .footer-nl-inner{flex-direction:column;text-align:center}
  .footer-nl-left{flex-direction:column;text-align:center}
  .footer-nl-form{width:100%;max-width:440px;margin:0 auto}
  .footer-nl-input{width:100%;min-width:0}
  .footer-batch-inner{flex-direction:column;gap:12px}
  .footer-batch-items{justify-content:center}
  .fbatch-enroll{margin:0 auto}
  .fstat-div{display:none}
  .cta-box{flex-direction:column;text-align:center}
  .cta-btns{justify-content:center}
  .pricing-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto}
  .pricing-card.featured{transform:scale(1)}
  .st-grid{grid-template-columns:1fr;gap:32px}
  .st-grid.reverse{direction:ltr}
  .st-canvas-wrap{height:280px}
  .crs-grid{grid-template-columns:1fr}
}
@media (max-width:820px){
  .hero-inner{flex-direction:column;padding-top:80px}
  .hero-right{width:100%;max-width:480px}
  .hero-3d-wrap{max-width:100%;height:190px}
  .featured-post{grid-template-columns:1fr;padding:24px}
}
@media (max-width:768px){
  /* ════ MOBILE NAV — SLIDE IN FROM RIGHT ════ */
  .section{padding:56px 0}

  /* nav-links hidden on mobile — overlay handles navigation */
  .nav-links{display:none!important}

  /* hide desktop CTA, show hamburger */
  .nav-cta{display:none!important}
  .hamburger{display:flex!important}
  .nav-wrap{flex-wrap:nowrap}

  /* ── grid overrides ── */
  .feat-grid{grid-template-columns:1fr}
  .partners-grid{grid-template-columns:repeat(2,1fr)}
  .testi-card{min-width:100%}
  .testi-featured{padding:24px 20px}
  .tf-content>p{font-size:1rem}
  .testi-summary{gap:16px;padding:18px 16px}
  .tsumm-div{display:none}
  .tsumm-bars{min-width:100%;order:3}
  .tm-card{width:260px}
  .why-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
  .info-cards{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .courses-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:20px}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .footer-stats{justify-content:center;gap:20px}
  .footer-contact-chips{flex-direction:column}
  .footer-brand p{max-width:100%}
  .footer-trust-badges{justify-content:center}
  .footer-nl-form{flex-direction:column;border-radius:10px;overflow:visible;border:none;gap:8px}
  .footer-nl-input{border:1.5px solid rgba(255,255,255,.12);border-radius:8px;padding:11px 16px;width:100%}
  .footer-nl-btn{border-radius:8px;justify-content:center}
  .footer-batch-items{flex-direction:column;gap:8px;align-items:flex-start}
  .fbatch-sep{display:none}
  .footer-partner-logos{justify-content:center}
  .fpartner-logo{width:90px;height:68px;}
  .fpartner-logo img{width:38px;height:22px}
  .form-row{grid-template-columns:1fr}
  .crs-card{flex-direction:column}
  .map-overlay{flex-direction:column;text-align:center}
  .newsletter-box{flex-direction:column;text-align:center;padding:28px 20px}
  .nl-form{flex-direction:column;width:100%}
  .nl-form input{width:100%}
  .cta-box{padding:28px 20px}
  /* Chat widget — opens well above both floating buttons */
  #chatWidget{width:calc(100vw - 24px);right:12px;bottom:130px;max-height:68vh}
  /* Chat button — bottom right corner */
  #chatBtn{right:18px;bottom:20px;width:52px;height:52px;}
  /* Scroll-to-top — left of chatBtn */
  #scrollTop{right:80px;bottom:24px}
  .about-vis-card{display:none}
  .page-hero{padding:110px 0 48px}
  .pricing-grid{grid-template-columns:1fr;max-width:100%}
}
@media (max-width:480px){
  .hero-headline{font-size:2rem}
  .hero-inner{gap:28px}
  .form-card{padding:20px 16px}
  .section-heading{font-size:1.7rem}
  .partners-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{gap:12px}
}

/* ══════════════════════════════════════
   INTER FONT ENHANCEMENTS
══════════════════════════════════════ */
/* Roboto numeric features for stats/counters */
.counter, .abs span, .hero-stat-num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
/* Code/mono elements use Roboto Mono */
code, pre, .loader-tip, .hero-code-bg, .cf {
  font-family: 'Roboto Mono', monospace;
}

/* ══════════════════════════════════════
   CHATBOT BUBBLE — RICH HTML SUPPORT (WhatsApp)
══════════════════════════════════════ */
.chat-bubble strong { font-weight: 700; }
.chat-bubble a {
  color: #1A73E8;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}
.chat-bubble a:hover { color: #0D47A1; }
.chat-msg.user .chat-bubble { color: #fff; }
.chat-msg.user .chat-bubble a { color: #c8dfff; }

/* Line-break support inside chat bubbles */
.chat-msg.bot .chat-bubble,
.chat-msg.user .chat-bubble {
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.5;
  font-size: .84rem;
}

/* ── Chatbot send button disabled state ── */
.chat-send:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* ── Quick reply button improved ── */
.cqbtn { font-family: 'DM Sans', sans-serif; }

/* ══════════════════════════════════════
   LOADER TIP — FIRA CODE STYLE
══════════════════════════════════════ */
.loader-tip {
  font-family: 'Roboto Mono', monospace;
  font-size: .78rem;
  color: var(--muted);
  opacity: .7;
  letter-spacing: .02em;
}

/* ══════════════════════════════════════════════════════
   CUSTOM CURSOR  v2 — Terminal Arc Design
   4 rotating Google-color arcs · Glow core · Color trail
   Hover: arcs freeze + code label · Click: bracket burst
══════════════════════════════════════════════════════ */
@media (pointer: fine) {
  *,a,button { cursor: none !important; }
}

/* ── Core glow dot ── */
#cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,.35),
              0 0 14px 4px rgba(66,133,244,.7);
  pointer-events: none; z-index: 999999;
  transform: translate(-50%,-50%);
  transition: width .18s cubic-bezier(.34,1.56,.64,1),
              height .18s cubic-bezier(.34,1.56,.64,1),
              box-shadow .2s ease,
              background .2s ease;
  will-change: left, top;
}

/* ── 4-arc spinner ring ── */
#cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 44px; height: 44px;
  pointer-events: none; z-index: 999998;
  transform: translate(-50%,-50%);
  will-change: left, top;
  transition: width .3s cubic-bezier(.25,.46,.45,.94),
              height .3s cubic-bezier(.25,.46,.45,.94),
              opacity .25s;
}

/* The 4 SVG arcs are drawn via the inline SVG injected by JS */
#cursor-ring svg {
  width: 100%; height: 100%;
  animation: cur-ring-spin 2.2s linear infinite;
  transform-origin: center;
  overflow: visible;
}
@keyframes cur-ring-spin { to { transform: rotate(360deg); } }

/* ── </> label on hover ── */
#cursor-label {
  position: fixed; top: 0; left: 0;
  font-family: 'Roboto Mono', monospace;
  font-size: 10px; font-weight: 700;
  color: var(--blue);
  pointer-events: none; z-index: 999997;
  white-space: nowrap;
  opacity: 0;
  transform: translate(10px, -50%);
  transition: opacity .2s ease;
  letter-spacing: -.01em;
  text-shadow: 0 0 8px rgba(66,133,244,.4);
}

/* ── Trail particles — cycle through 4 Google colors ── */
.cursor-trail {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none; z-index: 999996;
  transform: translate(-50%,-50%);
  width:  calc(7px - var(--ti, 0) * 0.9px);
  height: calc(7px - var(--ti, 0) * 0.9px);
  opacity: calc(.5 - var(--ti, 0) * 0.07);
  will-change: left, top;
  transition: background .15s ease;
}

/* ── Hover — dot pulses, ring freezes + expands, label shows ── */
body.cur-hover #cursor-dot {
  width: 14px; height: 14px;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(66,133,244,.2),
              0 0 20px 6px rgba(66,133,244,.5);
}
body.cur-hover #cursor-ring {
  width: 58px; height: 58px;
  opacity: .95;
}
body.cur-hover #cursor-ring svg { animation-play-state: paused; }
body.cur-hover #cursor-label   { opacity: 1; }

/* ── Click — dot shrinks red, ring pulses ── */
body.cur-click #cursor-dot {
  width: 5px; height: 5px;
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(234,67,53,.2),
              0 0 18px 6px rgba(234,67,53,.7);
}
body.cur-click #cursor-ring {
  width: 28px; height: 28px;
  opacity: 1;
}
body.cur-click #cursor-ring svg { animation-play-state: paused; }

/* ── Out of viewport ── */
body.cur-out #cursor-dot,
body.cur-out #cursor-ring,
body.cur-out #cursor-label,
body.cur-out .cursor-trail { opacity: 0 !important; }

/* ── Code bracket burst on click ── */
.cur-bracket {
  position: fixed;
  pointer-events: none; z-index: 999997;
  transform: translate(-50%,-50%);
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: var(--bsize, 13px);
  line-height: 1;
  color: var(--bc, var(--blue));
  animation: cur-bracket-fly .6s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes cur-bracket-fly {
  0%   { transform: translate(-50%,-50%) translate(0,0) scale(1.4); opacity: 1; }
  100% { transform: translate(-50%,-50%) translate(var(--bdx),var(--bdy)) scale(0.3); opacity: 0; }
}

/* ── Sparkle burst on click ── */
.cur-sparkle {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 999996;
  transform: translate(-50%,-50%);
  animation: cur-pop .58s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes cur-pop {
  0%   { transform: translate(-50%,-50%) translate(0,0) scale(1.2); opacity: 1; }
  100% { transform: translate(-50%,-50%) translate(var(--sdx),var(--sdy)) scale(0); opacity: 0; }
}

/* ── Ripple on buttons ── */
.ripple-wave {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.38);
  pointer-events: none;
  transform: scale(0);
  animation: ripple-go .65s linear forwards;
}
@keyframes ripple-go { to { transform: scale(4); opacity: 0; } }

/* ── Page transition overlay ── */
#page-transition {
  position: fixed; inset: 0; z-index: 999990;
  background: #fff;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
#page-transition.fade-out { opacity: 1; pointer-events: all; }

/* ── Magnetic wrapper keeps overflow hidden ── */
.mag-wrap { display: inline-block; }

/* ══════════════════════════════════════════════════════
   FLASH PREVENTION — body hidden until JS loader covers it
   ══════════════════════════════════════════════════════ */
/* anti-flash handled via body.js-ready above */

/* fast-mode removed — same-session nav handled inline via JS */

/* ══════════════════════════════════════════════════════
   COURSE DETAIL MODAL
   ══════════════════════════════════════════════════════ */
#courseModal {
  position: fixed; inset: 0; z-index: 100001;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  padding: 16px;
}
#courseModal.open { opacity: 1; pointer-events: all; }
.cm-panel {
  background: #fff; border-radius: 24px;
  width: 100%; max-width: 820px; max-height: 90vh;
  overflow-y: auto; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  transform: translateY(20px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
#courseModal.open .cm-panel { transform: translateY(0); }
.cm-hero {
  padding: 36px 36px 28px; position: relative;
  border-radius: 24px 24px 0 0; overflow: hidden;
}
.cm-hero-bg {
  position: absolute; inset: 0; opacity: .08;
  background: repeating-linear-gradient(45deg, currentColor 0, currentColor 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}
.cm-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.15); color: #fff;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.cm-close:hover { background: rgba(234,67,53,.8); transform: rotate(90deg); }
.cm-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.cm-badge {
  padding: 4px 12px; border-radius: 50px; font-size: .72rem;
  font-weight: 700; background: rgba(255,255,255,.2);
  color: #fff; border: 1px solid rgba(255,255,255,.3);
}
.cm-hero h2 { font-size: clamp(1.3rem,3vw,1.8rem); color: #fff; margin-bottom: 10px; font-weight: 700; position: relative; }
.cm-hero p { color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.6; position: relative; }
.cm-hero-stats { display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap; position: relative; }
.cm-hs { display: flex; align-items: center; gap: 8px; }
.cm-hs-icon { font-size: 1.1rem; }
.cm-hs-text { display: flex; flex-direction: column; }
.cm-hs-text strong { color: #fff; font-size: .88rem; line-height: 1; }
.cm-hs-text span { color: rgba(255,255,255,.6); font-size: .72rem; }
.cm-body { padding: 28px 36px 36px; }
@media (max-width: 600px) { .cm-hero { padding: 24px 20px 20px; } .cm-body { padding: 20px 20px 28px; } }
.cm-section { margin-bottom: 28px; }
.cm-section-title {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.cm-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.cm-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.cm-skill {
  padding: 6px 14px; border-radius: 8px; font-size: .82rem; font-weight: 500;
  background: var(--bg-l); color: var(--body); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.cm-modules { display: grid; gap: 10px; }
.cm-module {
  display: flex; gap: 14px; padding: 14px 16px; border-radius: 12px;
  background: var(--bg-l); border: 1px solid var(--border);
  transition: border-color .2s, transform .15s;
}
.cm-module:hover { border-color: var(--blue); transform: translateX(4px); }
.cm-module-num {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--blue); color: #fff;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cm-module-content h4 { font-size: .9rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.cm-module-content p { font-size: .78rem; color: var(--muted); line-height: 1.4; }
.cm-outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .cm-outcomes { grid-template-columns: 1fr; } }
.cm-outcome {
  padding: 14px; border-radius: 12px; border: 1px solid var(--border);
  display: flex; gap: 10px; align-items: flex-start;
}
.cm-outcome-icon { font-size: 1.2rem; flex-shrink: 0; }
.cm-outcome-text strong { display: block; font-size: .88rem; color: var(--dark); margin-bottom: 3px; }
.cm-outcome-text span { font-size: .76rem; color: var(--muted); }
.cm-salary {
  padding: 18px 20px; border-radius: 14px;
  background: linear-gradient(135deg, #E8F0FE, #E6F4EA);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.cm-salary-label { font-size: .8rem; color: var(--muted); font-weight: 500; }
.cm-salary-range { font-size: 1.3rem; font-weight: 700; color: var(--blue); }
.cm-salary-note { font-size: .72rem; color: var(--muted); }
.cm-footer { display: flex; gap: 12px; flex-wrap: wrap; }
.cm-footer a { flex: 1; min-width: 160px; text-align: center; }
.crs-btn-detail {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); background: #fff;
  color: var(--body); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: border-color .2s, color .2s, background .2s;
  font-family: 'DM Sans', sans-serif;
}
.crs-btn-detail:hover { border-color: var(--blue); color: var(--blue); background: #E8F0FE; }

/* ══════════════════════════════════════════════════════
   GALLERY V2 — Magazine-style editorial grid
   ══════════════════════════════════════════════════════ */
.gal2-hero-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 280px 180px;
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .gal2-hero-row { grid-template-columns: 1fr; grid-template-rows: 260px; } }
.gal2-featured {
  grid-row: 1 / 3;
  border-radius: 20px; overflow: hidden; position: relative; cursor: pointer;
}
@media (max-width: 768px) { .gal2-featured { grid-row: auto; } }
.gal2-sm {
  border-radius: 16px; overflow: hidden; position: relative; cursor: pointer;
}
.gal2-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gal2-item:hover img { transform: scale(1.06); }
.gal2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
  opacity: 0; transition: opacity .3s;
}
.gal2-item:hover .gal2-overlay { opacity: 1; }
.gal2-overlay-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 50px; font-size: .67rem;
  font-weight: 700; margin-bottom: 8px; align-self: flex-start;
}
.gal2-overlay p { color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 500; }
.gal2-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transform: scale(0.5); opacity: 0;
  transition: transform .25s, opacity .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.gal2-item:hover .gal2-zoom { transform: scale(1); opacity: 1; }

/* Section title for gallery */
.gal2-section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.gal2-section-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}
.gal2-section-head h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.gal2-section-head span { font-size: .8rem; color: var(--muted); margin-left: auto; }
.gal2-section-line { flex: 1; height: 1px; background: var(--border); }

/* Horizontal scroll strip */
.gal2-strip-wrap { overflow-x: auto; margin: 0 -16px; padding: 0 16px; }
.gal2-strip-wrap::-webkit-scrollbar { height: 4px; }
.gal2-strip-wrap::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.gal2-strip {
  display: flex; gap: 12px;
  width: max-content; padding-bottom: 8px;
}
.gal2-strip-item {
  width: 220px; height: 160px; border-radius: 14px;
  overflow: hidden; position: relative; cursor: pointer; flex-shrink: 0;
}
@media (min-width: 769px) {
  .gal2-strip-wrap { overflow: visible; margin: 0; padding: 0; }
  .gal2-strip { width: auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
  .gal2-strip-item { width: auto; }
}
.gal2-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal2-strip-item:hover img { transform: scale(1.08); }
.gal2-strip-item::after {
  content: '🔍'; position: absolute; inset: 0;
  background: rgba(0,0,0,.22); color: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: all .25s;
}
.gal2-strip-item:hover::after { color: #fff; background: rgba(0,0,0,.35); }

/* Big mosaic grid for mixed content */
.gal2-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
@media (max-width: 768px) { .gal2-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }
@media (max-width: 480px) { .gal2-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; } }
.gal2-mosaic-item {
  border-radius: 14px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gal2-mosaic-item.span2 { grid-column: span 2; }
.gal2-mosaic-item.tall { grid-row: span 2; }
.gal2-mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal2-mosaic-item:hover img { transform: scale(1.06); }
.gal2-mosaic-badge {
  position: absolute; bottom: 10px; left: 10px;
  padding: 3px 10px; border-radius: 50px; font-size: .65rem; font-weight: 700;
  backdrop-filter: blur(8px); color: #fff;
}
.gal2-mosaic-badge.ach { background: rgba(251,188,5,.9); color: #202124; }
.gal2-mosaic-badge.stu { background: rgba(66,133,244,.9); }
.gal2-mosaic-badge.cls { background: rgba(52,168,83,.9); }

/* Category count pills */
.gal2-cat-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.gal2-cat-pill {
  padding: 7px 18px; border-radius: 50px; font-size: .82rem;
  font-weight: 600; font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--border); background: #fff;
  color: var(--muted); cursor: pointer;
  transition: all .2s; display: flex; align-items: center; gap: 6px;
}
.gal2-cat-pill:hover { border-color: var(--blue); color: var(--blue); }
.gal2-cat-pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.gal2-cat-pill .cnt { font-size: .68rem; opacity: .7; }

/* ══════════════════════════════════════════════════════
   NEWSLETTER SECTION
══════════════════════════════════════════════════════ */
#newsletter-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
  position: relative; overflow: hidden;
}
#newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(66,133,244,.15) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 260px; }
.newsletter-text .section-label { color: #81C995; }
.newsletter-text h2 { color: #fff; font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 10px; }
.newsletter-text p  { color: rgba(255,255,255,.6); line-height: 1.65; margin: 0; }
.newsletter-form-wrap { flex: 1; min-width: 280px; max-width: 420px; }
.newsletter-form {
  display: flex; gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50px; padding: 6px 6px 6px 20px;
}
.newsletter-form input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-family: inherit; font-size: .92rem;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
  flex-shrink: 0; padding: 10px 22px;
  background: var(--blue); color: #fff;
  border: none; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: background .2s, transform .2s;
}
.newsletter-form button:hover { background: #1A73E8; transform: scale(1.04); }
.newsletter-note {
  font-size: .72rem; color: rgba(255,255,255,.35);
  margin-top: 10px; padding-left: 20px;
}

/* ══════════════════════════════════════════════════════
   FAQ SECTION (homepage)
══════════════════════════════════════════════════════ */
#faq-home {
  padding: 80px 0; background: #F8F9FA;
}
.faq-home-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 16px; margin-top: 40px;
}
@media(max-width:560px){ .faq-home-grid { grid-template-columns: 1fr; } }
.faq-home-item {
  background: #fff; border: 1.5px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: box-shadow .2s, border-color .2s;
}
.faq-home-item:hover { box-shadow: var(--sh-md); border-color: #BBBFBF; }
.faq-home-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 18px 20px; background: none; border: none;
  text-align: left; font-family: 'DM Sans', sans-serif; font-size: .97rem;
  font-weight: 600; color: var(--dark); cursor: pointer;
}
.faq-home-q .faq-arrow {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-l); display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--blue); transition: transform .25s, background .2s;
}
.faq-home-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue); color: #fff; }
.faq-home-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.25,.46,.45,.94), padding .35s;
  font-size: .9rem; color: var(--muted); line-height: 1.7;
  padding: 0 20px;
}
.faq-home-item.open .faq-home-a { max-height: 300px; padding: 0 20px 18px; }

/* ══════════════════════════════════════════════════════
   BLOG PREVIEW (homepage)
══════════════════════════════════════════════════════ */
#blog-preview {
  padding: 80px 0; background: #fff;
}
.blog-preview-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 44px;
}
.bp-card {
  border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden;
  background: #fff; transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.bp-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.bp-card-thumb {
  height: 180px; background: var(--bg-m);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.bp-card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.25), transparent);
}
.bp-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.bp-tag {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 10px;
  background: var(--bg-m); color: var(--blue);
}
.bp-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.bp-card p  { font-size: .87rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.bp-meta    { font-size: .75rem; color: var(--muted); display: flex; gap: 12px; align-items: center; }
.bp-meta span::before { content: '·'; margin-right: 6px; }
.bp-meta span:first-child::before { content: ''; margin: 0; }
.blog-preview-cta { text-align: center; margin-top: 36px; }

/* ══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 99990; max-width: 620px; width: calc(100% - 32px);
  background: #202124; color: #E8EAED;
  border-radius: 16px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: cookie-slide .4s cubic-bezier(.34,1.56,.64,1) forwards;
}
#cookie-banner.hidden { display: none; }
@keyframes cookie-slide {
  from { transform: translateX(-50%) translateY(120%); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
.cookie-text { flex: 1; min-width: 200px; font-size: .85rem; color: #BDC1C6; line-height: 1.5; }
.cookie-text a { color: #8AB4F8; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  padding: 8px 20px; background: var(--blue); color: #fff; border: none;
  border-radius: 50px; font-family: inherit; font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: background .2s;
}
.cookie-accept:hover { background: #1A73E8; }
.cookie-decline {
  padding: 8px 16px; background: transparent; color: #9AA0A6;
  border: 1px solid #5F6368; border-radius: 50px;
  font-family: inherit; font-size: .85rem; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-decline:hover { border-color: #9AA0A6; color: #E8EAED; }

/* ══════════════════════════════════════════════════════
   MOBILE TOUCH — prevent sticky :hover states
   On touch screens, :hover fires on tap and stays stuck.
   @media (hover: none) resets any transform/visual lift
   back to the resting state so cards don't stay "raised".
══════════════════════════════════════════════════════ */
@media (hover: none) {

  /* ── Buttons ── */
  .btn-primary:hover,
  .enroll-btn:hover  { transform: none; box-shadow: var(--sh-sm); background: var(--blue); }
  .btn-outline:hover { transform: none; background: transparent; color: var(--blue); }

  /* ── Cards — remove lift on tap ── */
  .course-card:hover,
  .crs-card:hover     { transform: none; box-shadow: var(--sh-sm); border-color: #DADCE0; }
  .feat-card:hover,
  .feature-card:hover { transform: none; box-shadow: none; }
  .partner-card:hover { transform: none; box-shadow: var(--sh-sm); border-color: #DADCE0; }
  .partner-card:hover .partner-logo-img,
  .partner-card:hover .partner-logo-img-wipro { filter: none; opacity: 0.75; }
  .partner-card:hover .partner-name { color: var(--muted); }
  .testi-card:hover,
  .tm-card:hover      { transform: none; box-shadow: var(--sh-sm); }
  .team-card:hover    { transform: none; box-shadow: none; }
  .blog-card:hover    { transform: none; box-shadow: var(--sh-sm); }
  .pricing-card:not(.featured):hover { transform: none; box-shadow: none; }
  .faq-item:hover     { transform: none; }

  /* ── Tabs ── */
  .cat-tab:hover,
  .ftab:hover,
  .tf-btn:hover { border-color: #DADCE0; color: var(--muted); background: transparent; box-shadow: none; }

  /* ── Nav ── */
  .nav-links a:hover  { color: inherit; background: transparent; }
  /* Desktop dropdown must NOT open on tap (mobile uses overlay menu) */
  .has-drop:hover .dropdown { opacity: 0; visibility: hidden; transform: translateY(8px); }
  .dropdown a:hover { background: transparent; color: inherit; }

  /* ── Links & misc ── */
  .feat-link:hover    { text-decoration: none; }
  .breadcrumb a:hover { text-decoration: none; }
  .nav-logo-img:hover { opacity: 1; }

  /* ── CTA / marquee ── */
  .testi-marquee:hover .tm-track { animation-play-state: running; }

  /* ── Cookie banner ── */
  .cookie-accept:hover  { background: var(--blue); }
  .cookie-decline:hover { border-color: #5F6368; color: #9AA0A6; }

  /* ── Mobile menu close button ── */
  #mmClose:hover { background: transparent; border-color: rgba(255,255,255,.25); transform: none; }

  /* ── Mobile menu links ── */
  #mmList a:hover,
  #mmList a:active { background: rgba(255,255,255,.06); padding-left: 0; }
  #mmList a:hover .mm-arrow { opacity: 0; transform: none; }
  #mmCta a:hover { transform: none; box-shadow: 0 6px 20px rgba(66,133,244,.4); }

  /* ── Scrollbar (non-applicable on mobile, harmless) ── */

  /* ── New sections ── */
  .place-card:hover { transform: none; box-shadow: none; border-color: var(--border); }
  .bt-cta:hover { transform: none; background: var(--blue); }
}

/* ══════════════════════════════════════════════════════
   PLACEMENT RESULTS SECTION
══════════════════════════════════════════════════════ */
.place-stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 32px 40px;
  box-shadow: var(--sh-md); margin-bottom: 44px;
}
.place-stat {
  text-align: center; padding: 0 36px; flex: 1; min-width: 140px;
}
.place-stat .place-num {
  font-size: 2.8rem; font-weight: 800; color: var(--blue);
  font-family: 'DM Sans', sans-serif; line-height: 1;
  letter-spacing: -.03em;
}
.place-stat .place-suf {
  font-size: 1.8rem; font-weight: 800; color: var(--blue);
}
.place-stat p {
  font-size: .9rem; font-weight: 700; color: var(--dark);
  margin: 6px 0 2px;
}
.place-stat small { font-size: .74rem; color: var(--muted); }
.place-div {
  width: 1px; height: 56px; background: var(--border); flex-shrink: 0;
}
.place-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.place-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 18px 16px;
  display: flex; align-items: center; gap: 12px;
  position: relative; transition: box-shadow .2s, transform .2s, border-color .2s;
}
.place-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(66,133,244,.3); }
.place-card-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .82rem; color: #fff; flex-shrink: 0;
}
.place-card-body { flex: 1; min-width: 0; }
.place-card-body strong { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); }
.place-card-body span { font-size: .73rem; color: var(--muted); display: block; margin-bottom: 5px; }
.place-salary {
  font-size: .82rem; font-weight: 700; color: var(--green);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.place-tag {
  font-size: .62rem; font-weight: 700; padding: 2px 8px;
  background: #E8F0FE; color: var(--blue); border-radius: 50px;
}
.place-card-badge {
  position: absolute; top: -1px; right: 12px;
  font-size: .62rem; font-weight: 700;
  background: #E6F4EA; color: #137333;
  padding: 2px 8px; border-radius: 0 0 8px 8px;
}

/* ══════════════════════════════════════════════════════
   BATCH SCHEDULE TABLE
══════════════════════════════════════════════════════ */
.batch-table-wrap {
  overflow-x: auto; border-radius: 16px;
  border: 1.5px solid var(--border); box-shadow: var(--sh-sm);
}
.batch-table {
  width: 100%; border-collapse: collapse;
  font-size: .88rem; background: #fff;
}
.batch-table thead th {
  background: #F8F9FA; padding: 14px 18px;
  text-align: left; font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); border-bottom: 1.5px solid var(--border);
  white-space: nowrap;
}
.batch-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.batch-table tbody tr:last-child { border-bottom: none; }
.batch-table tbody tr:hover { background: #F8F9FF; }
.batch-table tbody td {
  padding: 16px 18px; color: var(--body);
  vertical-align: middle;
}
.batch-table tbody td:first-child {
  font-weight: 600; color: var(--dark);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.btc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block; flex-shrink: 0;
}
.bt-mode {
  font-size: .72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; white-space: nowrap;
}
.bt-mode.online  { background: #E6F4EA; color: #137333; }
.bt-mode.offline { background: #FFF8E1; color: #F57F17; }
.bt-mode.both    { background: #E8F0FE; color: var(--blue); }
.bt-seats {
  font-size: .82rem; font-weight: 700; color: var(--green);
}
.bt-seats.hot { color: #EA4335; animation: seatPulse 1.8s ease-in-out infinite; }
@keyframes seatPulse {
  0%,100% { opacity: 1; } 50% { opacity: .6; }
}
.bt-cta {
  display: inline-block; padding: 7px 16px; border-radius: 8px;
  background: var(--blue); color: #fff;
  font-size: .8rem; font-weight: 600; white-space: nowrap;
  transition: background .2s, transform .2s;
}
.bt-cta:hover { background: #1A73E8; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   STICKY MOBILE CTA BAR — Hidden (removed by request)
══════════════════════════════════════════════════════ */
.mobile-cta-bar { display: none !important; }
#mobileCta      { display: none !important; }
/* No body padding needed since bar is gone */

/* ══════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .place-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .place-stats-row { padding: 24px 16px; gap: 0; }
  .place-stat { padding: 12px 16px; }
  .place-div { display: none; }
  .place-cards { grid-template-columns: 1fr; }
  .batch-table tbody td:first-child { white-space: nowrap; }
}

/* ===== Testimonial card styles (extracted from inline) ===== */
.tm-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px 26px;
  position: relative;
  transition: border-color .3s, background .3s;
}
.tm-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.tm-name {
  font-weight: 700;
  color: #fff;
  font-size: .88rem;
}
.tm-role {
  color: rgba(255,255,255,.4);
  font-size: .72rem;
}
.tm-stars {
  color: #FBBC05;
  font-size: .85rem;
  margin-bottom: 10px;
}
.tm-text {
  color: rgba(255,255,255,.75);
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.tm-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  color: #fff;
  flex-shrink: 0;
}
.tm-quote-mark {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-family: Georgia, serif;
  line-height: 1;
}


/* ============================================================
   EXTRACTED INLINE STYLES — Medium Priority Fix #05
   Moved from index.html inline style="" attributes
   ============================================================ */

/* ── Utility helpers ── */
.u-pos-rel-z1   { position:relative; z-index:1; }
.u-mx-auto      { margin:0 auto; }
.u-ta-center    { text-align:center; }

/* ── Dot-grid backgrounds (sections) ── */
.dot-grid-light {
  position:absolute; inset:0; pointer-events:none;
  background-image:radial-gradient(circle,#d0d8f0 1px,transparent 1px);
  background-size:32px 32px;
}
.dot-grid-gray {
  position:absolute; inset:0;
  background-image:radial-gradient(circle,#DADCE0 1px,transparent 1px);
  background-size:32px 32px;
}
.dot-grid-dark {
  position:absolute; inset:0;
  background-image:radial-gradient(circle,#D1D5DB .8px,transparent .8px);
  background-size:28px 28px;
}

/* ── Section label (small uppercase tag above headings) ── */
.sec-label-indigo {
  font-size:.75rem; font-weight:700; color:#6366F1;
  letter-spacing:.08em; text-transform:uppercase;
}
.sec-label-pink {
  font-size:.75rem; font-weight:700; color:#BE185D;
  letter-spacing:.08em; text-transform:uppercase;
}

/* ── Gradient text helpers ── */
.g-text-indigo-purple {
  background:linear-gradient(135deg,#6366F1 0%,#8B5CF6 50%,#EC4899 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.g-text-pink-indigo {
  background:linear-gradient(135deg,#EC4899 0%,#6366F1 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.g-text-blue-green {
  background:linear-gradient(90deg,#4285F4,#34A853);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* ── Course logo wrap backgrounds ── */
.logo-bg-yellow  { background:linear-gradient(135deg,#FEF3C7,#FDE68A); display:flex; gap:5px; padding:14px; }
.logo-bg-green   { background:linear-gradient(135deg,#DCFCE7,#BBF7D0); display:flex; flex-wrap:wrap; gap:4px; padding:12px; }
.logo-bg-mint    { background:linear-gradient(135deg,#ECFDF5,#A7F3D0); display:flex; gap:6px; padding:14px; }
.logo-bg-red     { background:linear-gradient(135deg,#FEE2E2,#FECACA); display:flex; gap:6px; padding:14px; }
.logo-bg-orange  { background:linear-gradient(135deg,#FFF7ED,#FFEDD5); display:flex; gap:5px; padding:14px; }
.logo-bg-blue    { background:#E8F0FE; }
.logo-bg-lgreen  { background:#E6F4EA; }
.logo-bg-pink    { background:#FCE8E6; }
.logo-bg-amber   { background:#FFF8E1; }

/* ── Contact info link cards (homepage contact section) ── */
.ci-link {
  display:flex; align-items:center; gap:14px;
  text-decoration:none; background:#fff;
  border-radius:16px; padding:16px 20px;
  transition:all .2s;
}
.ci-link:hover { transform:translateX(6px); }
.ci-link-phone  { border:1.5px solid #FCE7F3; box-shadow:0 2px 8px rgba(236,72,153,.08); }
.ci-link-phone:hover  { border-color:#EC4899; }
.ci-link-email  { border:1.5px solid #EEF2FF; box-shadow:0 2px 8px rgba(99,102,241,.08); }
.ci-link-email:hover  { border-color:#6366F1; }
.ci-link-wa     { border:1.5px solid #DCFCE7; box-shadow:0 2px 8px rgba(22,163,74,.08); }
.ci-link-wa:hover     { border-color:#16A34A; }
.ci-link-visit  { border:1.5px solid #FEF3C7; box-shadow:0 2px 8px rgba(245,158,11,.06); }

/* ── Contact icon badges ── */
.ci-icon {
  width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.ci-icon-phone  { background:linear-gradient(135deg,#FCE7F3,#FBCFE8); }
.ci-icon-email  { background:linear-gradient(135deg,#EEF2FF,#E0E7FF); }
.ci-icon-wa     { background:linear-gradient(135deg,#DCFCE7,#BBF7D0); }
.ci-icon-visit  { background:linear-gradient(135deg,#FEF3C7,#FDE68A); }

/* ── Contact card label / value ── */
.ci-lbl-phone   { font-size:.73rem; font-weight:700; color:#EC4899; text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px; }
.ci-lbl-email   { font-size:.73rem; font-weight:700; color:#6366F1;  text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px; }
.ci-lbl-wa      { font-size:.73rem; font-weight:700; color:#16A34A;  text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px; }
.ci-lbl-visit   { font-size:.73rem; font-weight:700; color:#D97706;  text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px; }
.ci-val         { font-size:.88rem; font-weight:500; color:#0F172A; line-height:1.4; }

/* ── Contact home form card ── */
.ch-form-card {
  background:#fff; border-radius:28px; padding:40px 36px;
  box-shadow:0 20px 60px rgba(99,102,241,.1),0 4px 20px rgba(0,0,0,.04);
}
.ch-form-deco {
  position:absolute; top:-30px; right:-30px;
  width:100px; height:100px;
  background:linear-gradient(135deg,#EEF2FF,#FCE7F3);
  border-radius:50%; opacity:.6;
}

/* ── Testimonial stat bar ── */
.tstat-bar   { text-align:center; padding:20px 36px; border-right:1px solid rgba(255,255,255,.08); }
.tstat-bar:last-child { border-right:none; }
.tstat-num   { font-size:2.2rem; font-weight:800; color:#fff; font-family:'DM Sans',sans-serif; line-height:1; }
.tstat-num-g { color:#34A853; }
.tstat-num-b { color:#4285F4; }
.tstat-num-y { color:#FBBC05; }
.tstat-lbl   { font-size:.75rem; color:rgba(255,255,255,.45); margin-top:4px; letter-spacing:.03em; }

/* ── Testimonial section wrapper ── */
.testi-section {
  padding:80px 0 90px;
  background:linear-gradient(170deg,#060D1F 0%,#0E1F3D 45%,#071A12 100%);
  position:relative; overflow:hidden;
}
.testi-glow-1 {
  position:absolute; top:-100px; left:-60px;
  width:480px; height:480px; border-radius:50%;
  background:radial-gradient(circle,rgba(66,133,244,.12),transparent 70%);
}
.testi-glow-2 {
  position:absolute; bottom:-60px; right:-80px;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle,rgba(52,168,83,.1),transparent 70%);
}
.testi-divider {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:600px; height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.05),transparent);
}

/* ── Testimonial card ── */
.testi-card {
  background:linear-gradient(135deg,rgba(66,133,244,.15),rgba(52,168,83,.08));
  border:1px solid rgba(66,133,244,.25); border-radius:24px; padding:28px;
}
.testi-quote-mark {
  position:absolute; top:-30px; left:24px;
  font-size:9rem; font-family:Georgia,serif;
  color:rgba(66,133,244,.12); line-height:1;
}
.testi-text  { color:rgba(255,255,255,.9); font-size:1.08rem; line-height:1.75; margin-bottom:16px; font-style:italic; }
.testi-badge {
  background:rgba(66,133,244,.2); border:1px solid rgba(66,133,244,.35);
  border-radius:50px; padding:3px 12px; font-size:.7rem; font-weight:600; color:#93b4ff;
}

/* ── Testimonial avatar ── */
.testi-av {
  width:60px; height:60px; border-radius:50%;
  background:linear-gradient(135deg,#4285F4,#1565C0);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.3rem; font-weight:700;
}

/* ── Course hero / enroll section ── */
.enroll-section {
  padding:100px 0;
  background:linear-gradient(150deg,#FFF8F3 0%,#FFF0F9 40%,#F0F4FF 100%);
  position:relative; overflow:hidden;
}
.enroll-glow-1 {
  position:absolute; top:-80px; right:-80px;
  width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle,rgba(251,188,5,.18),transparent 65%);
}
.enroll-glow-2 {
  position:absolute; bottom:-100px; left:-60px;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle,rgba(99,102,241,.12),transparent 65%);
}

/* ── Enroll form heading ── */
.enroll-h2 {
  font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:800; color:#0F172A;
  margin-bottom:16px; letter-spacing:-.02em; line-height:1.15;
}
.enroll-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,#FCE7F3,#FEE2E2);
  border:1px solid #FBCFE8; border-radius:50px; padding:6px 16px;
  font-size:.78rem; font-weight:700; color:#BE185D; margin-bottom:20px;
}
.enroll-pulse {
  width:8px; height:8px; border-radius:50%;
  background:linear-gradient(135deg,#EC4899,#F43F5E);
  display:inline-block;
}

/* ── Newsletter section ── */
.nl-section {
  padding:80px 0 90px;
  background:linear-gradient(170deg,#060D1F 0%,#0E1F3D 45%,#071A12 100%);
  position:relative; overflow:hidden;
}
.nl-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(66,133,244,.12); border:1px solid rgba(66,133,244,.25);
  border-radius:50px; padding:5px 16px;
  font-size:.75rem; font-weight:600; color:#93b4ff;
  letter-spacing:.06em; text-transform:uppercase; margin-bottom:18px;
}
.nl-h2 {
  color:#fff; font-size:clamp(1.7rem,3.5vw,2.5rem); font-weight:800;
  font-family:'DM Sans',sans-serif; line-height:1.2; margin-bottom:14px;
}

/* ── Social proof / feature badges (course cards) ── */
.sp-badge {
  border-radius:50px; padding:3px 10px;
  font-size:.68rem; font-weight:600; display:inline-block;
}
.sp-red    { background:rgba(234,67,53,.15);  color:#ff8a80; }
.sp-green  { background:rgba(52,168,83,.15);  color:#69f0ae; }
.sp-yellow { background:rgba(251,188,5,.12);  color:#ffe57f; }
.sp-blue   { background:rgba(66,133,244,.15); color:#93b4ff; }
.sp-purple { background:rgba(156,39,176,.15); color:#ea80fc; }
.sp-orange { background:rgba(255,87,34,.13);  color:#ff8a65; }

/* ── Course grid responsive helpers ── */
.nc-auto-grid-280 { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; margin-bottom:20px; }
.nc-auto-grid-250 { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; margin-bottom:44px; }

/* ── CTA button group ── */
.cta-group {
  text-align:center; margin-top:52px;
  display:flex; gap:16px; flex-wrap:wrap; justify-content:center;
}


/* ══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE STYLESHEET — Clean rewrite
   Targets: 820px (tablet), 768px (mobile), 480px (small)
══════════════════════════════════════════════════════ */

/* ── 1. Global box-sizing & overflow guard ── */
*, *::before, *::after { box-sizing: border-box; }
@media (max-width: 820px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .container  { padding-left: 16px !important; padding-right: 16px !important; width: 100% !important; max-width: 100% !important; }
}

/* ── 2. Navbar ── */
@media (max-width: 768px) {
  #navbar .nav-wrap { height: 60px; padding: 0 16px; }
  .nav-logo-img     { height: 34px !important; width: auto; }
  .hamburger        { width: 42px !important; height: 42px !important; }
  .nav-links, .nav-cta { display: none !important; }
  .hamburger        { display: flex !important; }
}

/* ── 3. HERO ── */
@media (max-width: 820px) {
  #hero { padding-bottom: 0; }
  .hero-inner {
    flex-direction: column !important;
    padding-top: 72px !important;
    padding-bottom: 0 !important;
    gap: 32px !important;
    align-items: stretch !important;
  }
  .hero-left  { text-align: center; }
  .hero-right { width: 100% !important; max-width: 100% !important; flex-shrink: unset; transform: none !important; opacity: 1 !important; }

  .hero-badge { margin-left: auto; margin-right: auto; }

  .hero-headline { font-size: clamp(1.85rem, 7vw, 2.6rem) !important; letter-spacing: -.02em; }

  .hero-sub { font-size: .92rem !important; max-width: 100% !important; margin-left: auto; margin-right: auto; text-align: center; }

  .hero-bullets { align-items: flex-start; max-width: 340px; margin-left: auto; margin-right: auto; }

  /* Stats — 2×2 grid on mobile */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .hs { flex-direction: row !important; align-items: center !important; gap: 8px !important; padding: 10px 12px !important; }
  .hs-icon { width: 28px !important; height: 28px !important; border-radius: 7px !important; flex-shrink: 0 !important; }
  .hs-icon svg { width: 14px !important; height: 14px !important; }
  .hs-num   { font-size: 1.2rem !important; }
  .hs-suf   { font-size: .9rem !important; }
  .hs-body p { font-size: .65rem !important; white-space: normal !important; }
  .hs-d     { display: none !important; }

  /* hide 3d canvas on mobile — saves paint */
  .hero-3d-wrap, #threeCanvas { display: none !important; }

  /* form card */
  .form-card {
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.08) !important;
    padding: 28px 20px 24px !important;
    border: 1px solid #E8EAED !important;
    margin: 0 16px;
  }
  .form-card-head h2 { font-size: 1.2rem !important; }
  /* form-row → single column on mobile */
  .form-row { grid-template-columns: 1fr !important; gap: 0 !important; }
  /* Inputs — 16px prevents iOS zoom */
  .form-card input, .form-card select { font-size: 16px !important; padding-top: 16px !important; }
}

/* ── 4. Courses section ── */
@media (max-width: 900px) {
  .nc-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
}
@media (max-width: 520px) {
  .nc-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .nc-card { padding: 16px 14px 12px !important; border-radius: 14px !important; }
  .nc-badges { flex-direction: row !important; align-items: center !important; }
  .nc-footer { flex-wrap: wrap; gap: 8px; }
  .nc-enroll { flex: 1; text-align: center; justify-content: center; }
}

/* filter tabs — horizontal scroll on mobile */
@media (max-width: 640px) {
  .nc-filter-row {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nc-filter-row::-webkit-scrollbar { display: none; }
  .nc-tab { flex-shrink: 0; padding: 8px 14px !important; font-size: .78rem !important; }
}

/* ── 5. Features grid ── */
@media (max-width: 768px) {
  .feat-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .feat-card { padding: 24px 20px !important; }
}

/* ── 6. Scrolltelling ── */
@media (max-width: 820px) {
  .st-scene  { padding: 48px 0 !important; }
  .st-grid   { grid-template-columns: 1fr !important; gap: 24px !important; }
  .st-grid.reverse { direction: ltr !important; }
  .st-canvas-wrap  { height: 200px !important; order: -1; }
  .st-text h2      { font-size: 1.45rem !important; }
  .st-badge        { display: none; }
}

/* ── 7. Hiring partners ── */
@media (max-width: 768px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .partner-card  { padding: 18px 12px !important; height: 72px !important; }
  .partner-logo-img { width: 80px !important; }
}

/* ── 8. Placement ── */
@media (max-width: 820px) {
  .place-stats-row { flex-wrap: wrap !important; gap: 0 !important; padding: 20px 12px !important; }
  .place-stat  { padding: 12px 14px !important; min-width: 45%; }
  .place-num   { font-size: 2rem !important; }
  .place-div   { display: none !important; }
  .place-cards { grid-template-columns: 1fr !important; gap: 10px !important; }
  .place-card  { padding: 14px 16px !important; }
}

/* ── 9. Batch schedule ── */
@media (max-width: 768px) {
  .batch-table-wrap { border-radius: 14px !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
  .batch-table      { min-width: 540px; font-size: .76rem !important; }
  .batch-table th, .batch-table td { padding: 10px 10px !important; }
}

/* ── 10. Contact section ── */
@media (max-width: 820px) {
  .contact-split {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  #contact-home { padding: 60px 0 !important; }
  #contact-home .container > div > div:last-child > div {
    padding: 28px 20px !important;
    border-radius: 20px !important;
  }
  .ch-input { font-size: 16px !important; }
}

/* ── 11. Comparison table ── */
@media (max-width: 768px) {
  #compTable { font-size: .78rem !important; }
  #compTable th, #compTable td { padding: 10px 10px !important; }
  #comparison-section > .container > div:nth-child(2) { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; }
}

/* ── 12. Instagram grid ── */
@media (max-width: 640px) {
  #igFeed { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  #igFeed > div { border-radius: 10px !important; }
}

/* ── 13. Testimonials ── */
@media (max-width: 768px) {
  #testimonials { padding: 56px 0 64px !important; }
  .tstat-bar    { padding: 14px 18px !important; }
  .tstat-num    { font-size: 1.5rem !important; }
  .tstat-lbl    { font-size: .66rem !important; }
  .tm-card      { padding: 18px 16px !important; }
  .tm-text      { font-size: .8rem !important; }
  .tm-row2      { grid-template-columns: 1fr !important; }
}

/* ── 14. FAQ ── */
@media (max-width: 640px) {
  .faq-home-grid { grid-template-columns: 1fr !important; }
  .faq-home-q    { font-size: .88rem !important; padding: 16px !important; }
}

/* ── 15. Blog preview ── */
@media (max-width: 768px) {
  .blog-preview-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .bp-card-thumb     { height: 100px !important; }
}

/* ── 16. Newsletter ── */
@media (max-width: 768px) {
  .newsletter-wrap { flex-direction: column !important; gap: 24px !important; text-align: center !important; padding: 32px 20px !important; border-radius: 18px !important; }
  .newsletter-form { flex-direction: column !important; }
  .newsletter-form input  { width: 100% !important; font-size: 16px !important; }
  .newsletter-form button { width: 100% !important; border-radius: 10px !important; }
}

/* ── 17. Roadmap teaser ── */
@media (max-width: 768px) {
  #courses-new + .section > .container > .reveal { flex-direction: column !important; padding: 28px 20px !important; border-radius: 18px !important; }
}

/* ── 18. General section headings & spacing ── */
@media (max-width: 768px) {
  .section { padding: 56px 0 !important; }
  .section-heading { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  .section-sub     { font-size: .88rem !important; }
  .section-header  { margin-bottom: 32px !important; }
  .cta-group { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
  .cta-group a { width: 100%; text-align: center; }
  .btn-primary, .btn-outline { padding: 13px 24px !important; font-size: .9rem !important; }
}

/* ── 19. Chatbot position ── */
@media (max-width: 768px) {
  #chatWidget { width: calc(100vw - 24px) !important; right: 12px !important; bottom: 130px !important; max-height: 68vh !important; }
  #chatBtn    { right: 18px !important; bottom: 20px !important; width: 52px !important; height: 52px !important; }
  #scrollTop  { right: 80px !important; bottom: 24px !important; }
}

/* ── 20. Footer ── */
@media (max-width: 768px) {
  .footer-grid          { grid-template-columns: 1fr !important; gap: 24px !important; }
  .footer-bottom        { flex-direction: column !important; gap: 8px !important; text-align: center !important; }
  .footer-stats         { justify-content: center !important; gap: 16px !important; }
  .footer-contact-chips { flex-direction: column !important; }
  .footer-brand p       { max-width: 100% !important; }
}

/* ── Small phone tweaks ── */
@media (max-width: 380px) {
  .hero-headline { font-size: 1.7rem !important; }
  .hero-stats    { grid-template-columns: repeat(2, 1fr) !important; gap: 6px !important; }
  .hs            { padding: 8px 10px !important; gap: 7px !important; }
  .hs-icon       { width: 26px !important; height: 26px !important; display:none !important; }
  .hs-num        { font-size: 1.1rem !important; }
  .hs-suf        { font-size: .85rem !important; }
  .hs-body p     { font-size: .6rem !important; }
  .nc-grid       { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════
   DESIGN POLISH v8 — extracted from inline styles
   ═══════════════════════════════════════════════════════ */

/* === Section utilities === */
.sec-deco-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, #d0d8f0 1px, transparent 1px);
  background-size: 36px 36px; opacity: .45;
}
.sec-top-wave {
  position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: #fff; clip-path: ellipse(55% 100% at 50% 0%);
}
.sec-hdr-center { text-align: center; margin-bottom: 52px; }
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 50px; padding: 6px 18px; margin-bottom: 18px; border: 1px solid;
}
.pill-badge-indigo { background: linear-gradient(135deg,#EEF2FF,#E0E7FF); border-color: #C7D2FE; }
.pill-badge-pink   { background: linear-gradient(135deg,#FCE7F3,#FEE2E2); border-color: #FBCFE8; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
.pulse-dot-indigo { background: linear-gradient(135deg,#6366F1,#8B5CF6); }
.pulse-dot-pink   { background: linear-gradient(135deg,#EC4899,#F43F5E); }
.sec-h2-xl {
  font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #0F172A;
  margin-bottom: 14px; letter-spacing: -.02em; font-family: 'DM Sans', sans-serif;
}
.sec-sub-indigo { font-size: 1.05rem; color: #64748B; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.grad-text-indigo {
  background: linear-gradient(135deg,#6366F1 0%,#8B5CF6 50%,#EC4899 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-pink {
  background: linear-gradient(135deg,#EC4899 0%,#6366F1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-google {
  background: linear-gradient(90deg,#4285F4,#34A853);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-note { text-align: center; font-size: .82rem; color: #94A3B8; margin: -30px 0 36px; }

/* === Courses section === */
#courses-new { padding: 90px 0 100px; background: #F7F9FF; position: relative; overflow: hidden; }

/* === Roadmap teaser === */
.roadmap-card {
  background: linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);
  border-radius: 24px; padding: 44px 32px;
  display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between;
}
.roadmap-card-left  { flex: 1; min-width: 260px; }
.roadmap-card-right { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }
.roadmap-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 5px 14px; margin-bottom: 16px;
}
.roadmap-badge-txt { color: #4dff91; font-size: .75rem; font-weight: 700; letter-spacing: .06em; }
.roadmap-title { color: #fff; font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
.roadmap-title-grad {
  background: linear-gradient(90deg,#4285F4,#34A853);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.roadmap-body { color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 0; }
.roadmap-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: .88rem; }
.roadmap-item-icon { font-size: 1.1rem; }
.roadmap-item-muted { color: rgba(255,255,255,.55); font-size: .82rem; }

/* === Placement section === */
#placement-results { background: #fff; position: relative; overflow: hidden; }
.place-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle,#DADCE0 1px,transparent 1px);
  background-size: 32px 32px; opacity: .35; pointer-events: none;
}
.place-center-txt { text-align: center; margin-top: 44px; }
.place-center-note { font-size: .8rem; color: var(--muted); margin-top: 12px; }

/* === Contact home section === */
#contact-home {
  padding: 100px 0;
  background: linear-gradient(150deg,#FFF8F3 0%,#FFF0F9 40%,#F0F4FF 100%);
  position: relative; overflow: hidden;
}
.deco-circle-tr {
  position: absolute; top: -80px; right: -80px; width: 360px; height: 360px;
  border-radius: 50%; background: radial-gradient(circle,#FBCFE8 0%,transparent 70%);
  opacity: .5; pointer-events: none;
}
.deco-circle-bl {
  position: absolute; bottom: -100px; left: -60px; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle,#C7D2FE 0%,transparent 70%);
  opacity: .6; pointer-events: none;
}
.deco-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle,#D1D5DB .8px,transparent .8px);
  background-size: 28px 28px; opacity: .3; pointer-events: none;
}
.contact-inner { position: relative; z-index: 2; }
.contact-title {
  font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; color: #0F172A;
  margin-bottom: 16px; letter-spacing: -.02em; line-height: 1.15; font-family: 'DM Sans', sans-serif;
}
.contact-body { font-size: 1rem; color: #64748B; line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
.ci-links-col { display: flex; flex-direction: column; gap: 14px; }
.ci-map-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1.5px solid #FEF3C7; border-radius: 16px;
  padding: 16px 20px; box-shadow: 0 2px 8px rgba(245,158,11,.08);
}
.ci-map-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg,#FEF3C7,#FDE68A);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.ci-map-val { font-size: .88rem; font-weight: 500; color: #475569; line-height: 1.4; }
.contact-form-card {
  background: #fff; border-radius: 28px; padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(99,102,241,.1), 0 4px 20px rgba(0,0,0,.06);
  border: 1.5px solid rgba(99,102,241,.12); position: relative; overflow: hidden;
}
.contact-form-card-corner {
  position: absolute; top: -30px; right: -30px; width: 100px; height: 100px;
  background: linear-gradient(135deg,#EEF2FF,#FCE7F3); border-radius: 50%; opacity: .8;
}
.contact-form-title { font-size: 1.3rem; font-weight: 700; color: #0F172A; margin-bottom: 6px; position: relative; }
.contact-form-sub   { font-size: .85rem; color: #94A3B8; margin-bottom: 28px; position: relative; }
.contact-form-body  { display: flex; flex-direction: column; gap: 16px; position: relative; }
.contact-two-col    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#chBtn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg,#EC4899,#6366F1);
  color: #fff; font-size: .95rem; font-weight: 700;
  border: none; border-radius: 14px; cursor: pointer;
  transition: all .2s; letter-spacing: .02em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
#chBtn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(99,102,241,.4); }
#chSuccess {
  display: none; text-align: center; padding: 14px;
  background: linear-gradient(135deg,#DCFCE7,#BBF7D0);
  border-radius: 12px; color: #15803D; font-weight: 600; font-size: .9rem;
}
.contact-privacy { text-align: center; font-size: .75rem; color: #CBD5E1; margin: 0; }

/* === Comparison section === */
#comparison-section { padding: 90px 0 100px; background: #F7F9FF; position: relative; overflow: hidden; }
.comp-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle,#d0d8f0 1px,transparent 1px);
  background-size: 36px 36px; opacity: .35;
}
.comp-inner   { position: relative; z-index: 1; }
.comp-table-wrap { overflow-x: auto; margin-top: 48px; }
.comp-cta     { text-align: center; margin-top: 36px; }
#compTable tbody tr:hover { background: #EEF2FF !important; }


/* === Testimonials section === */
#testimonials {
  padding: 80px 0 90px;
  background: linear-gradient(170deg,#060D1F 0%,#0E1F3D 45%,#071A12 100%);
  position: relative; overflow: hidden;
}
.tm-blobs { position: absolute; inset: 0; pointer-events: none; }
.tm-blob-tl {
  position: absolute; top: -100px; left: -60px; width: 480px; height: 480px;
  border-radius: 50%; background: radial-gradient(circle,rgba(66,133,244,.12) 0%,transparent 65%);
}
.tm-blob-br {
  position: absolute; bottom: -60px; right: -80px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle,rgba(52,168,83,.10) 0%,transparent 65%);
}
.tm-blob-line {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.05),transparent);
}
.tm-header { text-align: center; margin-bottom: 16px; }
.tm-google-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(66,133,244,.12); border: 1px solid rgba(66,133,244,.25);
  border-radius: 50px; padding: 5px 16px; font-size: .75rem; font-weight: 600;
  color: #93b4ff; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px;
}
.tm-section-h2 {
  color: #fff; font-size: clamp(1.7rem,3.5vw,2.5rem); font-weight: 800;
  font-family: 'DM Sans', sans-serif; line-height: 1.2; margin-bottom: 12px;
}
.tm-section-sub { color: rgba(255,255,255,.55); font-size: .97rem; max-width: 480px; margin: 0 auto 48px; }
.tm-stats-row   { display: flex; justify-content: center; gap: 0; margin-bottom: 56px; flex-wrap: wrap; }
.tstat-last     { text-align: center; padding: 20px 36px; }
.tm-featured {
  background: linear-gradient(135deg,rgba(66,133,244,.15),rgba(52,168,83,.08));
  border: 1px solid rgba(66,133,244,.25); border-radius: 20px;
  padding: 36px 40px; margin-bottom: 28px; position: relative; overflow: hidden;
}
.tm-featured-quote-mark {
  position: absolute; top: -30px; left: 24px; font-size: 9rem;
  font-family: Georgia, serif; color: rgba(66,133,244,.12); line-height: 1; pointer-events: none;
}
.tm-featured-inner  { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; position: relative; }
.tm-featured-av-wrap{ flex-shrink: 0; }
.tm-featured-av {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg,#4285F4,#1565C0);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #fff; border: 3px solid rgba(66,133,244,.4);
}
.tm-featured-body  { flex: 1; min-width: 220px; }
.tm-featured-stars { color: #FBBC05; font-size: 1rem; margin-bottom: 10px; letter-spacing: .05em; }
.tm-featured-text  { color: rgba(255,255,255,.9); font-size: 1.08rem; line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.tm-featured-meta  { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tm-featured-name  { font-weight: 700; color: #fff; font-size: .92rem; }
.tm-featured-role  { color: rgba(255,255,255,.45); font-size: .78rem; }
.tm-verified {
  background: rgba(66,133,244,.2); border: 1px solid rgba(66,133,244,.35);
  border-radius: 50px; padding: 3px 12px; font-size: .7rem; font-weight: 600; color: #93b4ff;
}
.tm-grid-3  { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; margin-bottom: 20px; }
.tm-grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.tm-grid-3b { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 20px; margin-bottom: 44px; }

/* tm-card hover via data attribute — replaces all onmouseover/onmouseout */
.tm-card { transition: border-color .2s, background .2s; }
.tm-card[data-hover="red"]:hover    { border-color: rgba(234,67,53,.35)  !important; background: rgba(234,67,53,.06)  !important; }
.tm-card[data-hover="green"]:hover  { border-color: rgba(52,168,83,.35)  !important; background: rgba(52,168,83,.06)  !important; }
.tm-card[data-hover="yellow"]:hover { border-color: rgba(251,188,5,.35)  !important; background: rgba(251,188,5,.05)  !important; }
.tm-card[data-hover="blue"]:hover   { border-color: rgba(66,133,244,.35) !important; background: rgba(66,133,244,.06) !important; }
.tm-card[data-hover="purple"]:hover { border-color: rgba(156,39,176,.35) !important; background: rgba(156,39,176,.06) !important; }
.tm-card[data-hover="orange"]:hover { border-color: rgba(255,87,34,.35)  !important; background: rgba(255,87,34,.06)  !important; }

.tm-gr-cta { text-align: center; margin-bottom: 32px; }
.tm-gr-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: 50px;
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .88rem; font-weight: 500; transition: background .25s, color .25s; margin-bottom: 24px;
}
.tm-gr-btn:hover { background: rgba(255,255,255,.12); color: #fff; }
.tm-bottom-cta  { text-align: center; }
.tm-bottom-note { margin-top: 14px; font-size: .82rem; color: rgba(255,255,255,.35); }

/* === Sticky WhatsApp CTA (mobile only) === */
.wa-sticky {
  display: none;
  position: fixed;
  bottom: 82px;   /* sits directly above chatBtn at 20px + 52px + 10px gap */
  right: 18px;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 4px 16px rgba(37,211,102,.45),
    0 1px 4px rgba(0,0,0,.12);
  transition: transform .15s, box-shadow .15s, opacity .25s;
}
.wa-sticky svg { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
.wa-sticky:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.5); }

/* Pulse ring on wa-sticky */
.wa-sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: waStickyPulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes waStickyPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.55); }
  60%  { box-shadow: 0 0 0 12px rgba(37,211,102,.0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,.0); }
}
@media (max-width: 768px) { .wa-sticky { display: flex; } }

/* Hide ALL floating elements when mobile menu is open */
body.menu-open .wa-sticky,
body.menu-open #chatBtn,
body.menu-open #chatWidget,
body.menu-open #scrollTop,
body.menu-open #waBtn {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* === Batch schedule section === */
#batch-schedule { position: relative; overflow: hidden; }

/* === Accessibility: screen-reader only utility === */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === Comparison table row hover — CSS replaces JS onmouseover === */
.comp-tr { cursor: default; }
.comp-tr:hover { background: #EEF2FF !important; }

/* === Focus-visible ring for keyboard navigation === */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid #185FA5;
  outline-offset: 3px;
  border-radius: 4px;
}

/* === Skip to main content link (keyboard/screen reader) === */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 99999;
  background: #185FA5; color: #fff; padding: 10px 18px;
  border-radius: 0 0 6px 6px; font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: 0; }

/* === contact.html — CSS hover replaces JS onmouseover === */
.wa-cta-btn:hover { filter: brightness(1.07); transform: translateY(-2px); }
.maps-cta-btn:hover { filter: brightness(1.07); }

/* ═══════════════════════════════════════════════════════
   nc-* COURSE CARD COMPONENT SYSTEM — base styles
   (CSS custom props --nc-accent and --nc-glow set per card)
   ═══════════════════════════════════════════════════════ */

/* Grid */
.nc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.nc-card.hidden { display: none; }

/* Card */
.nc-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease, border-color .2s;
  position: relative;
  overflow: hidden;
}
.nc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top left, var(--nc-glow, rgba(99,102,241,.1)), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.nc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--nc-glow, rgba(99,102,241,.18)), 0 2px 8px rgba(0,0,0,.06);
  border-color: var(--nc-accent, #6366F1);
}
.nc-card:hover::before { opacity: 1; }

/* Top row: logo + badges */
.nc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

/* Logo wrap */
.nc-logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.nc-logo-img { width: 28px; height: 28px; object-fit: contain; }

/* Multi-tech icon row (Web Designing card etc.) */
.nc-logo-wrap-multi {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  max-width: 90px;
}

/* Badges column */
.nc-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.nc-badge-mode {
  font-size: .68rem;
  font-weight: 600;
  color: #4338CA;
  background: #EEF2FF;
  border: 1px solid #C7D2FE;
  border-radius: 50px;
  padding: 3px 9px;
  white-space: nowrap;
}
.nc-badge-hot {
  font-size: .68rem;
  font-weight: 700;
  color: #9A3412;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 50px;
  padding: 3px 9px;
  white-space: nowrap;
}

/* Title & description */
.nc-title {
  font-size: .98rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  margin: 0;
}
.nc-desc {
  font-size: .82rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Skill tags */
.nc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.nc-tags span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--nc-accent, #6366F1);
  background: color-mix(in srgb, var(--nc-accent, #6366F1) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--nc-accent, #6366F1) 20%, transparent);
  border-radius: 50px;
  padding: 2px 9px;
}

/* Footer row */
.nc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}

/* Duration pill */
.nc-dur {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: #64748B;
  font-weight: 500;
}
.nc-dur-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nc-accent, #6366F1);
  flex-shrink: 0;
}

/* Price text */
.nc-price {
  font-size: .75rem;
  color: #6366F1;
  font-weight: 600;
}

/* Enroll CTA */
.nc-enroll {
  font-size: .78rem;
  font-weight: 700;
  color: var(--nc-accent, #6366F1);
  background: color-mix(in srgb, var(--nc-accent, #6366F1) 10%, #fff);
  border: 1.5px solid color-mix(in srgb, var(--nc-accent, #6366F1) 25%, transparent);
  border-radius: 50px;
  padding: 5px 13px;
  white-space: nowrap;
  transition: background .15s, color .15s, transform .15s;
  text-decoration: none;
}
.nc-enroll:hover {
  background: var(--nc-accent, #6366F1);
  color: #fff;
  transform: scale(1.04);
}

/* Filter tabs */
.nc-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid #E2E8F0;
  border-radius: 50px;
  background: #fff;
  font-size: .84rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}
.nc-tab:hover {
  border-color: #6366F1;
  color: #6366F1;
  background: #EEF2FF;
}
.nc-tab.active {
  background: #6366F1;
  border-color: #6366F1;
  color: #fff;
}
.nc-tab-icon { font-size: .9rem; }

/* ── Accessible focus rings ── */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid #4285F4;
  outline-offset: 2px;
  border-radius: 3px;
}
button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid #4285F4;
  outline-offset: 3px;
  border-radius: 4px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #4285F4;
  outline-offset: 0;
  box-shadow: 0 0 0 3px rgba(66,133,244,.18);
}
