<style>

:root{
  --g1:#0b3d91;--g2:#0b3d91;--g3:#0b3d91;--g4:#0b3d91;
  --accent:#fdb813;--accent2:#fdb813;--light:#f0f7ff;--lighter:#f8fbff;
  --text:#0b3d91;--mid:#2a4a6a;--muted:#5a82a6;--white:#ffffff;
  --border:rgba(9,87,145,.12);--r:14px;--rl:22px;
  --sh:0 8px 40px rgba(9,87,145,.12);--shl:0 20px 80px rgba(9,87,145,.18);
}
*{margin:0;padding:0;box-sizing:border-box}

/* ── CRITICAL FIX: prevent horizontal overflow on ALL elements ── */
html{
  scroll-behavior:smooth;
  font-size:16px;
  overflow-x:hidden; /* FIX: root overflow */
}
body{
  font-family:'Roboto',sans-serif;
  color:var(--text);
  background:var(--white);
  overflow-x:hidden; /* FIX: body overflow */
  max-width:100vw;   /* FIX: body cannot exceed viewport width */
  padding:0;
}

/* ─── PARTICLES ─── */
#particles-canvas{position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:0;opacity:.35}

/* ─── SCROLL BAR ─── */
#scroll-bar{position:fixed;top:0;left:0;height:3px;background:linear-gradient(90deg,var(--g4),var(--accent));z-index:10001;transition:width .1s}

/* ─── SCROLL TOP ─── */
#scrolltop{position:fixed;bottom:90px;right:20px;width:44px;height:44px;background:var(--g1);color:white;border:none;border-radius:14px;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:1000;opacity:0;transform:translateY(20px);transition:all .3s;box-shadow:var(--sh)}
#scrolltop.show{opacity:1;transform:translateY(0)}
#scrolltop:hover{background:#073f6a;transform:translateY(-3px)}

/* ─── POPUP ─── */
#popup{
  position:fixed;
  top:0;left:0;
  width:100vw;
  height:100%;
  background:rgba(0,0,0,0.75);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:16px;
  box-sizing:border-box;
  overflow-y:auto;
}
#popup-box{
  position:relative;
  width:100%;
  max-width:460px;
  background:#fff;
  border-radius:14px;
  padding:8px;
  box-shadow:0 16px 48px rgba(0,0,0,0.4);
  margin:auto;
  flex-shrink:0;
}
#popup-close{
  position:absolute;
  top:-13px;right:-13px;
  background:#ff3b3b;
  color:#fff;
  width:30px;height:30px;
  border-radius:50%;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:bold;
  box-shadow:0 3px 10px rgba(0,0,0,0.3);
  line-height:1;
  border:none;
  z-index:2;
}
#popup-box img{
  width:100%;
  height:auto;
  border-radius:10px;
  display:block;
  max-height:80vh;
  object-fit:contain;
}
@media(max-width:480px){
  #popup{padding:20px 12px;align-items:center;}
  #popup-box{max-width:100%;border-radius:12px;padding:6px;}
  #popup-close{top:-11px;right:-11px;width:28px;height:28px;font-size:13px;}
}

/* ─── MOBILE NAV ─── */
.mobile-nav{display:none;position:fixed;top:0;left:0;width:290px;height:100%;background:white;z-index:9999;box-shadow:4px 0 30px rgba(0,0,0,.2);transform:translateX(-100%);transition:transform .35s ease;padding:24px 20px;flex-direction:column;gap:6px;overflow-y:auto}
.mobile-nav.open{transform:translateX(0)}
.mobile-nav-close{align-self:flex-end;background:none;border:none;cursor:pointer;font-size:26px;color:var(--g1);margin-bottom:12px}
.mobile-nav a{display:flex;align-items:center;gap:10px;padding:12px 16px;border-radius:12px;font-size:15px;font-weight:500;color:var(--mid);text-decoration:none;transition:all .2s;border-bottom:1px solid #f0f0f0}
.mobile-nav a .material-icons-round{color:var(--g4);font-size:18px}
.mobile-nav a:hover{background:var(--light);color:var(--g1)}
.mobile-nav .mobile-apply{background:var(--g1);color:white!important;margin-top:8px;border-radius:12px;border-bottom:none}
.mobile-dropdown-toggle{display:flex;align-items:center;gap:10px;padding:12px 16px;border-radius:12px;font-size:15px;font-weight:500;color:var(--mid);cursor:pointer;border-bottom:1px solid #f0f0f0;transition:all .2s}
.mobile-dropdown-toggle:hover{background:var(--light);color:var(--g1)}
.mobile-dropdown-toggle .material-icons-round{color:var(--g4);font-size:18px}
.mobile-dropdown-toggle .toggle-arrow{margin-left:auto;font-size:18px;transition:transform .3s}
.mobile-dropdown-toggle.open .toggle-arrow{transform:rotate(180deg)}
.mobile-sub-menu{display:none;padding-left:12px;background:#f9fbff;border-radius:0 0 12px 12px;overflow:hidden}
.mobile-sub-menu.open{display:block}
.mobile-sub-menu a{font-size:13px;padding:10px 14px;border-bottom:1px solid #eef2f8;color:var(--mid)}
.nav-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:9998}
.nav-overlay.open{display:block}

/* ─── HEADER ─── */
header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.97);backdrop-filter:blur(20px);border-bottom:1px solid var(--border);transition:all .4s;width:100%;max-width:100vw;} /* FIX: header width constrained */
header.scrolled{box-shadow:0 4px 30px rgba(9,87,145,.10)}
.header-inner{max-width:1280px;margin:0 auto;padding:0 32px;display:flex;align-items:center;justify-content:space-between;height:76px}
.logo{display:flex;align-items:center;gap:14px;text-decoration:none}
.logo img{height:50px;width:auto}

/* ─── DESKTOP NAV ─── */
nav ul{list-style:none;display:flex;gap:2px;align-items:center}
nav ul li{position:relative}
nav ul li a{display:flex;align-items:center;gap:5px;padding:8px 15px;font-size:14px;font-weight:500;color:var(--mid);text-decoration:none;border-radius:10px;transition:all .2s;white-space:nowrap}
nav ul li a .material-icons-round{font-size:16px;color:var(--g4)}
nav ul li a:hover{background:var(--light);color:var(--g1)}
.nav-apply{background:var(--g1)!important;color:white!important;border-radius:10px;padding:8px 20px!important}
.nav-apply:hover{background:#073f6a!important}

/* ─── HOVER DROPDOWN ─── */
.has-dropdown{position:relative}
.has-dropdown>a{cursor:pointer}
.has-dropdown>a .dd-arrow{font-size:16px;margin-left:2px;transition:transform .3s}
.has-dropdown:hover>a .dd-arrow{transform:rotate(180deg)}
.dropdown-menu{
  position:absolute;top:calc(100% + 8px);left:0;
  width:340px;background:white;border-radius:14px;
  box-shadow:0 12px 48px rgba(9,87,145,.18);
  border:1px solid var(--border);padding:8px;
  opacity:0;visibility:hidden;transform:translateY(-8px);
  transition:all .25s ease;z-index:9999;pointer-events:none
}
.has-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto}
.dropdown-menu a{display:flex;align-items:flex-start;gap:12px;padding:10px 14px;border-radius:10px;font-size:13px;font-weight:500;color:var(--mid);text-decoration:none;transition:all .2s;border-bottom:1px solid rgba(9,87,145,.06)}
.dropdown-menu a:last-child{border-bottom:none}
.dropdown-menu a:hover{background:var(--light);color:var(--g1)}
.dropdown-menu a .dd-icon{width:34px;height:34px;background:var(--light);border-radius:9px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .2s}
.dropdown-menu a .dd-icon .material-icons-round{font-size:17px;color:var(--g3)}
.dropdown-menu a:hover .dd-icon{background:var(--g1)}
.dropdown-menu a:hover .dd-icon .material-icons-round{color:white}
.dropdown-menu a .dd-text{display:flex;flex-direction:column;gap:2px}
.dropdown-menu a .dd-text span{font-size:13px;font-weight:600;color:var(--text);line-height:1.3}
.dropdown-menu a .dd-text small{font-size:11px;color:var(--muted);font-weight:400}
.dropdown-menu a:hover .dd-text span{color:var(--g1)}
.hamburger{display:none;background:none;border:none;cursor:pointer;font-size:26px;color:var(--g1)}

/* ─── WRAP ─── */
.wrap{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
  width:100%; /* FIX: ensure wrap never overflows */
  box-sizing:border-box;
}

/* ─── SECTIONS ─── */
.section{padding:100px 0;position:relative;z-index:1;background:var(--white);overflow:hidden;} /* FIX: overflow hidden on sections */
.section-alt{background:var(--lighter);padding:30px;overflow:hidden;} /* FIX */
.section-label{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--g3);background:var(--light);border:1px solid var(--border);padding:6px 16px;border-radius:30px;margin-bottom:16px}
.section-label .material-icons-round{font-size:14px}
.section-title{font-family:'Roboto',sans-serif;font-size:50px;font-weight:700;color:var(--text);line-height:1.1;margin-bottom:16px}
.section-title em{font-style:normal;color:var(--g3)}
.section-desc{font-size:17px;color:var(--mid);line-height:1.75;max-width:600px}
.divider-line{width:64px;height:4px;background:linear-gradient(90deg,var(--g4),var(--accent));border-radius:2px;margin:18px 0 24px}
.divider-line.c{margin-left:auto;margin-right:auto}

/* ─── REVEAL ─── */
.reveal{opacity:0;transform:translateY(40px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}
.reveal-left{opacity:0;transform:translateX(-40px);transition:opacity .7s ease,transform .7s ease}
.reveal-left.visible{opacity:1;transform:none}
.reveal-right{opacity:0;transform:translateX(40px);transition:opacity .7s ease,transform .7s ease}
.reveal-right.visible{opacity:1;transform:none}
.reveal-scale{opacity:0;transform:scale(.92);transition:opacity .7s ease,transform .7s ease}
.reveal-scale.visible{opacity:1;transform:scale(1)}
[data-delay="1"]{transition-delay:.1s}[data-delay="2"]{transition-delay:.2s}
[data-delay="3"]{transition-delay:.3s}[data-delay="4"]{transition-delay:.4s}[data-delay="5"]{transition-delay:.5s}

/* ─── HERO ─── */
.hero{
  min-height:100vh;
  background:linear-gradient(160deg,var(--g1) 0%,var(--g2) 50%,#0a7bbf 100%);
  position:relative;
  overflow:hidden; /* FIX: hero overflow */
  display:flex;
  flex-direction:column;
  justify-content:center;
  width:100%;
  max-width:100vw; /* FIX */
}
.hero-bg-img{position:absolute;inset:0;background:url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1800&q=80') center/cover no-repeat;opacity:.07;z-index:0}
.hero-geo{position:absolute;inset:0;overflow:hidden;z-index:0}
.hero-geo span{position:absolute;border-radius:50%;background:rgba(255,255,255,.04);animation:geoFloat 12s ease-in-out infinite}
.hero-geo span:nth-child(1){width:600px;height:600px;top:-200px;right:-150px;animation-delay:0s}
.hero-geo span:nth-child(2){width:400px;height:400px;bottom:-100px;left:-100px;animation-delay:3s}
.hero-geo span:nth-child(3){width:250px;height:250px;top:30%;left:20%;animation-delay:6s;background:rgba(245,166,35,.05)}
@keyframes geoFloat{0%,100%{transform:scale(1) rotate(0deg)}50%{transform:scale(1.08) rotate(5deg)}}
.hero .wrap{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:2;padding-top:60px;padding-bottom:60px}
.hero-left{animation:fadeSlideUp .9s ease both;min-width:0;} /* FIX: min-width:0 on grid children */
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(245,166,35,.15);border:1px solid rgba(245,166,35,.35);color:var(--accent);padding:7px 18px;border-radius:30px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:24px}
.hero-badge .material-icons-round{font-size:14px;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.5}}
.hero-content-area{transition:opacity .4s ease,transform .4s ease}
.hero-content-area.fading{opacity:0;transform:translateY(12px)}
.hero h1{font-family:'Roboto',sans-serif;font-size:58px;line-height:1.05;color:white;font-weight:900;margin-bottom:24px}
.hero h1 .line{display:block;overflow:hidden}
.hero h1 .line span{display:block;animation:lineReveal .8s cubic-bezier(.16,1,.3,1) both}
.hero h1 .line:nth-child(1) span{animation-delay:.2s}
.hero h1 .line:nth-child(2) span{animation-delay:.35s}
.hero h1 .line:nth-child(3) span{animation-delay:.5s}
@keyframes lineReveal{from{transform:translateY(100%)}to{transform:translateY(0)}}
.hero h1 em{font-style:normal;color:var(--accent)}
.hero-desc{font-size:16px;color:rgba(255,255,255,.78);line-height:1.75;margin-bottom:36px}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap}
.btn-gold{background:linear-gradient(135deg,var(--accent),#e8940a);color:#113e8b;padding:15px 32px;border-radius:var(--r);font-weight:700;font-size:15px;text-decoration:none;display:inline-flex;align-items:center;gap:10px;transition:all .3s;box-shadow:0 8px 24px rgba(245,166,35,.35);border:none;cursor:pointer}
.btn-gold:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(245,166,35,.45)}
.btn-glass{background:rgba(255,255,255,.12);border:2px solid rgba(255,255,255,.3);color:white;padding:13px 30px;border-radius:var(--r);font-weight:600;font-size:15px;text-decoration:none;display:inline-flex;align-items:center;gap:10px;transition:all .3s;cursor:pointer;backdrop-filter:blur(10px)}
.btn-glass:hover{background:rgba(255,255,255,.22);transform:translateY(-3px)}
.btn-gold .material-icons-round,.btn-glass .material-icons-round{font-size:18px}
.hero-slide-indicators{display:flex;gap:8px;margin-top:28px;align-items:center}
.hero-dot{width:8px;height:8px;border-radius:4px;background:rgba(255,255,255,.35);cursor:pointer;transition:all .3s}
.hero-dot.active{width:28px;background:var(--accent)}
.hero-stats{display:flex;gap:32px;margin-top:36px;flex-wrap:wrap}
.stat{text-align:left}
.stat-num{font-family:'Roboto',sans-serif;font-size:40px;font-weight:700;color:var(--accent);line-height:1}
.stat-lbl{font-size:12px;color:rgba(255,255,255,.6);margin-top:4px;letter-spacing:.5px}

/* ─── HERO SWIPER ─── */
.hero-right{
  animation:fadeSlideUp .9s .4s ease both;
  width:100%; /* FIX: was 550px fixed - causes overflow on mobile */
  min-width:0; /* FIX: grid child */
  max-width:550px;
}
.hero-swiper-wrap{border-radius:var(--rl);overflow:hidden;position:relative;box-shadow:0 24px 80px rgba(0,0,0,.35)}
.hero-swiper{border-radius:var(--rl);overflow:hidden}
.hero-swiper .swiper-slide{position:relative;height:420px;overflow:hidden}
.hero-swiper .swiper-slide img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.hero-swiper .swiper-slide:hover img{transform:scale(1.05)}
.slide-caption{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(5,24,42,.85));padding:24px 20px 20px;z-index:2}
.slide-caption h4{color:white;font-size:16px;font-weight:700;margin-bottom:4px}
.slide-caption p{color:rgba(255,255,255,.7);font-size:12px;display:flex;align-items:center;gap:5px}
.slide-caption p .material-icons-round{font-size:14px;color:var(--accent)}
.hero-swiper .swiper-pagination-bullet{background:white;opacity:.6}
.hero-swiper .swiper-pagination-bullet-active{opacity:1;background:var(--accent);width:24px;border-radius:4px}
.hero-swiper .swiper-button-prev,.hero-swiper .swiper-button-next{width:40px;height:40px;background:rgba(255,255,255,.18);border-radius:50%;backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.3)}
.hero-swiper .swiper-button-prev::after,.hero-swiper .swiper-button-next::after{font-size:14px;color:white;font-weight:800}

/* ─── MOBILE HERO SLIDER ─── */
.ws-hero-viewport{
  position:relative;
  width:100%;
  max-width:100vw; /* FIX */
  height:70vw;
  min-height:240px;
  max-height:400px;
  background:#0f172a;
  overflow:hidden;
  display:none
}
.ws-main-slider{width:100%;height:100%}
.ws-slide-item{position:relative;overflow:hidden}
.ws-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.1),rgba(0,0,0,.7));z-index:1}
.ws-slide-img{width:100%;height:100%;object-fit:cover;transform:scale(1.1);animation:ws-kenburns 20s infinite alternate}
@keyframes ws-kenburns{from{transform:scale(1)}to{transform:scale(1.15)}}
.ws-dots .swiper-pagination-bullet{background:#fff!important;opacity:.3}
.ws-dots .swiper-pagination-bullet-active{opacity:1;width:30px!important;border-radius:5px!important}

/* ─── FEATURES ─── */
.features-top-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;margin-bottom:64px}
.img-mosaic{display:grid;grid-template-columns:2fr 1fr;grid-template-rows:220px 220px;gap:16px;border-radius:var(--rl);overflow:hidden}
.mosaic-img{overflow:hidden;position:relative}
.mosaic-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.mosaic-img:hover img{transform:scale(1.07)}
.mosaic-img:nth-child(1){grid-row:1/3}
.mosaic-img .img-overlay{position:absolute;inset:0;background:linear-gradient(160deg,transparent 50%,rgba(9,87,145,.55));display:flex;align-items:flex-end;padding:16px}
.mosaic-img .img-tag{background:var(--accent);color:white;font-size:11px;font-weight:700;padding:4px 12px;border-radius:20px;letter-spacing:.5px}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.feat-card{background:white;border:1px solid #cccccc;border-radius:var(--rl);padding:32px;transition:all .4s;position:relative;overflow:hidden;cursor:default}
.feat-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--g4),var(--accent));transform:scaleX(0);transform-origin:left;transition:transform .4s}
.feat-card:hover{box-shadow:var(--shl);transform:translateY(-6px)}
.feat-card:hover::after{transform:scaleX(1)}
.feat-icon{width:60px;height:60px;background:var(--light);border-radius:16px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;transition:all .3s}
.feat-icon .material-icons-round{font-size:28px;color:var(--g3)}
.feat-card:hover .feat-icon{background:var(--g1);transform:rotate(-8deg) scale(1.1)}
.feat-card:hover .feat-icon .material-icons-round{color:white}
.feat-card h4{font-size:22px;font-weight:700;margin-bottom:10px;color:var(--text)}
.feat-card p{font-size:14px;color:var(--mid);line-height:1.65}
.feat-card .feat-num{position:absolute;top:20px;right:24px;font-size:60px;font-weight:900;color:var(--border);line-height:1;transition:color .3s}
.feat-card:hover .feat-num{color:rgba(0,162,228,.07)}

/* ─── ABOUT ─── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.about-img-stack{position:relative;height:480px}
.about-img-main{position:absolute;top:0;left:0;width:75%;height:380px;border-radius:var(--rl);overflow:hidden;box-shadow:var(--shl)}
.about-img-main img{width:100%;height:100%;object-fit:cover}
.about-img-sub{position:absolute;bottom:0;right:0;width:55%;height:240px;border-radius:var(--rl);overflow:hidden;box-shadow:var(--shl);border:2px solid white}
.about-img-sub img{width:100%;height:100%;object-fit:cover}
.about-badge{position:absolute;top:50%;left:65%;transform:translate(-50%,-50%);background:white;border-radius:var(--rl);padding:18px 22px;box-shadow:var(--shl);text-align:center;z-index:3}
.about-badge .num{font-size:44px;font-weight:900;color:var(--g3);line-height:1}
.about-badge .lbl{font-size:11px;color:var(--muted);font-weight:600;margin-top:2px}
.about-list{list-style:none;margin:28px 0}
.about-list li{display:flex;align-items:flex-start;gap:12px;padding:12px 0;border-bottom:1px solid var(--border);font-size:15px;color:var(--mid)}
.about-list li:last-child{border:none}
.about-list li .material-icons-round{color:var(--g4);font-size:20px;margin-top:2px;flex-shrink:0}

/* ─── COURSES ─── */
.courses-list{display:flex;flex-direction:column;gap:28px}
.course-row{
  background:white;
  border:1px solid var(--border);
  border-radius:var(--rl);
  display:grid;
  grid-template-columns:200px 1fr;
  overflow:hidden;
  transition:all .4s;
  cursor:default;
  min-width:0; /* FIX */
}
.course-row:hover{box-shadow:var(--shl);transform:translateY(-4px)}
.course-thumb{position:relative;overflow:hidden}
.course-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.course-row:hover .course-thumb img{transform:scale(1.08)}
.course-thumb .c-tag{position:absolute;top:12px;left:12px;background:var(--accent);color:#113e8b;font-size:13px;font-weight:800;padding:4px 10px;border-radius:20px;letter-spacing:.5px}
.course-body{padding:28px 32px;display:flex;flex-direction:column;justify-content:space-between;min-width:0;} /* FIX: min-width:0 */
.course-body h3{font-size:22px;font-weight:700;color:var(--text);margin-bottom:10px;line-height:1.25}
.course-body p{font-size:14px;color:var(--mid);line-height:1.65;margin-bottom:18px;flex:1}
.course-meta{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.course-pills{display:flex;gap:8px;flex-wrap:wrap}
.pill{display:flex;align-items:center;gap:5px;background:var(--light);border:1px solid var(--border);color:var(--g1);font-size:12px;font-weight:600;padding:5px 12px;border-radius:20px}
.pill .material-icons-round{font-size:13px}
.btn-course{display:inline-flex;align-items:center;gap:8px;background:var(--g1);color:white;padding:10px 22px;border-radius:var(--r);font-weight:700;font-size:13px;text-decoration:none;transition:all .3s;cursor:pointer;white-space:nowrap;} /* FIX: nowrap */
.btn-course:hover{background:#073f6a;transform:translateX(4px)}
.btn-course .material-icons-round{font-size:16px;transition:transform .3s}
.btn-course:hover .material-icons-round{transform:translateX(4px)}

/* ─── TESTIMONIALS ─── */
.testi-section{
  background-color:#0b3d91!important;
  padding:70px 20px;
  text-align:center;
  position:relative;
  z-index:1;
  overflow:hidden; /* FIX */
  width:100%;
}
.testi-section .testi-inner{
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.testi-section .testi-label{
 display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgb(47 90 161);
    border: 1px solid rgb(255 255 255 / 21%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.testi-section .testi-label .material-icons-round{font-size:14px}
.testi-section h2{
  font-size:clamp(26px,5vw,42px);
  font-weight:700;
  color:#fff;
  margin-bottom:12px;
  line-height:1.2;
}
.testi-section h2 em{font-style:normal;color:#fff;}
.testi-section .testi-divider{
  width:64px;height:4px;
  background:linear-gradient(90deg,#fdb813,#e8940a);
  border-radius:2px;
  margin:0 auto 20px;
}

.testi-section .testi-desc{
  font-size:15px;
  color:rgb(255 255 255);
  margin-bottom:32px;
  max-width:560px;
  line-height:1.7;
}
.testi-video-wrap{
  width:100%;
  position:relative;
  padding-bottom:56.25%;
  height:0;
  overflow:hidden;
  border-radius:12px;
  box-shadow:0 16px 48px rgba(0,0,0,0.4);
}
.testi-video-wrap iframe{
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  border:0;
}
@media(max-width:600px){
  .testi-section{padding:50px 16px;}
}

/* ─── PLACEMENT ─── */
.placement-img{width:100%;max-width:800px;display:block;margin:0 auto;border-radius:12px;box-shadow:0 10px 20px rgba(0,0,0,.1)}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:20px;margin-top:32px}
.gallery-tile{background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 4px 8px rgba(0,0,0,.1);transition:all .3s}
.gallery-tile:hover{transform:translateY(-4px);box-shadow:0 10px 24px rgba(9,87,145,.15)}
.gallery-tile img{width:100%;aspect-ratio:1/1;object-fit:cover;display:block}
.gallery-tile figcaption{padding:12px;text-align:center;color:#333;font-size:15px;font-weight:500}

/* ─── CONTACT ─── */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.contact-card{background:white;border:1px solid var(--border);border-radius:var(--rl);padding:28px;transition:all .3s;cursor:default}
.contact-card:hover{box-shadow:var(--sh);transform:translateY(-3px)}
.contact-icon{width:52px;height:52px;background:var(--light);border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.contact-icon .material-icons-round{font-size:24px;color:var(--g3)}
.contact-card h4{font-size:20px;font-weight:700;margin-bottom:12px;color:var(--text)}
.contact-card p,.contact-card a{font-size:14px;color:var(--mid);line-height:1.75;text-decoration:none}
.contact-card a:hover{color:var(--g3)}

/* ─── CTA ─── */
.cta{background:linear-gradient(135deg,var(--g1) 0%,var(--g2) 100%);padding:100px 0;text-align:center;position:relative;overflow:hidden;z-index:1}
.cta::before{content:'';position:absolute;width:600px;height:600px;border-radius:50%;border:100px solid rgba(255,255,255,.04);top:-200px;right:-200px}
.cta h2{font-size:52px;color:white;margin-bottom:18px;font-weight:700}
.cta p{font-size:18px;color:rgba(255,255,255,.78);margin-bottom:40px;max-width:560px;margin-left:auto;margin-right:auto}
.cta-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* ─── FOOTER ─── */
footer{background:#041422;color:rgba(255,255,255,.7);padding:70px 0 0;overflow:hidden;} /* FIX */
.footer-grid{display:grid;grid-template-columns:2.5fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px}
.footer-brand h3{font-size:26px;color:white;margin-bottom:12px;display:flex;align-items:center;gap:10px}
.footer-brand h3 .material-icons-round{color:var(--accent)}
.footer-brand p{font-size:14px;line-height:1.75;margin-bottom:18px}
.footer-contact-item{display:flex;gap:10px;margin-bottom:8px;font-size:13px;align-items:flex-start}
.footer-contact-item .material-icons-round{color:var(--accent);font-size:16px;margin-top:2px;flex-shrink:0}
.footer-col h4{font-size:14px;font-weight:700;color:white;letter-spacing:.5px;text-transform:uppercase;margin-bottom:20px}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{color:rgba(255,255,255,.6);text-decoration:none;font-size:13px;display:flex;align-items:center;gap:6px;transition:all .2s}
.footer-col ul li a .material-icons-round{font-size:13px;color:var(--accent)}
.footer-col ul li a:hover{color:var(--accent);padding-left:4px}
.socials{display:flex;gap:10px;margin-top:20px}
.soc-btn{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:white;text-decoration:none;font-size:15px;transition:all .2s}
.soc-btn:hover{background:var(--accent);transform:translateY(-3px)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:20px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:13px}

/* ─── FLOATING WHATSAPP ─── */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:white;
  width:56px;height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.3);
  z-index:999;
  text-decoration:none;
}
.whatsapp-float i{font-size:28px}

/* ─── FLOATING APPLY BUTTON ─── */
.floating-apply{
  position:fixed;
  bottom:20px;
  left:0;
  background:orange;
  color:#0b3d91;
  display:flex;
  align-items:center;
  text-decoration:none;
  padding:12px 16px 12px 14px;
  border-radius:0 30px 30px 0;
  font-family:'Roboto',sans-serif;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
  z-index:998;
  gap:6px;
  max-width:calc(100vw - 90px);
  overflow:hidden;
}
.floating-apply .text{
  white-space:nowrap;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.3px;
  color:#0b3d91;
  overflow:hidden;
  text-overflow:ellipsis;
}

@keyframes fadeSlideUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}

/* ─── LIGHTBOX ─── */
.lb-wrap{position:fixed;inset:0;background:rgba(0,0,0,0.88);z-index:99999;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity 0.3s ease}
.lb-wrap.lb-active{opacity:1;pointer-events:all}
.lb-inner{position:relative;display:flex;flex-direction:column;align-items:center;max-width:90vw;max-height:90vh}
.lb-img{max-width:85vw;max-height:72vh;border-radius:12px;object-fit:contain;display:block;transition:opacity .25s ease;box-shadow:0 8px 40px rgba(0,0,0,0.6)}
.lb-caption{color:#fff;font-size:15px;font-family:Roboto,sans-serif;margin-top:14px;text-align:center}
.lb-counter{color:rgba(255,255,255,0.5);font-size:12px;margin-top:5px;font-family:Roboto,sans-serif}
.lb-close{position:fixed;top:16px;right:20px;background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.25);color:#fff;font-size:20px;width:44px;height:44px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:100000;transition:background .2s;line-height:1;font-family:Arial,sans-serif}
.lb-close:hover{background:rgba(255,255,255,0.3)}
.lb-prev,.lb-next{position:fixed;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.25);color:#fff;font-size:28px;width:50px;height:50px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:100000;transition:background .2s;font-family:Arial,sans-serif;line-height:1}
.lb-prev{left:14px}.lb-next{right:14px}
.lb-prev:hover,.lb-next:hover{background:rgba(255,255,255,0.3)}

/* ════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════ */
@media(max-width:1200px){
  .hero h1{font-size:48px}
  .hero-swiper .swiper-slide{height:380px}
  .section-title{font-size:44px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
}
@media(max-width:1024px){
  nav{display:none}
  .hamburger{display:block}
  .mobile-nav{display:flex}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr 1fr}
  .course-row{grid-template-columns:160px 1fr}
  .hero .wrap{grid-template-columns:1fr;gap:48px;padding-top:80px}
  .hero-right{max-width:600px;margin:0 auto;width:100%}
  .hero h1{font-size:50px}
  .section-title{font-size:40px}
}
@media(max-width:860px){
  .features-top-grid{grid-template-columns:1fr;gap:40px}
  .img-mosaic{grid-template-columns:1fr 1fr;grid-template-rows:200px 160px}
  .mosaic-img:nth-child(1){grid-row:1;grid-column:1/3}
  .about-img-stack{height:auto;min-height:320px}
  .about-img-main{position:relative;width:100%;height:280px;margin-bottom:16px}
  .about-img-sub{position:relative;width:60%;height:200px;margin:0 auto}
  .about-badge{display:none}
  .section{padding:72px 0}
}
@media(max-width:768px){
  .hero h1{font-size:36px}
  .hero-stats{gap:20px}
  .stat-num{font-size:32px}
  .section-title{font-size:32px}
  .features-grid{grid-template-columns:1fr}
  /* FIX: single-column course rows on tablet/mobile */
  .course-row{
    grid-template-columns:1fr;
    grid-template-rows:180px auto;
  }
  .contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .img-mosaic{grid-template-columns:1fr;grid-template-rows:200px 130px 130px}
  .mosaic-img:nth-child(1){grid-row:1;grid-column:1}
  .cta h2{font-size:32px}
  .hero-swiper .swiper-slide{height:280px}
  .section{padding:60px 0}
  .floating-apply .text{font-size:13px}
  /* FIX: hero right on tablet */
  .hero-right{width:100%;max-width:100%;}
}
@media(max-width:580px){
  .ws-hero-viewport{display:block}
  .hero{display:none}
}

/* ── MOBILE: THE MAIN OVERFLOW FIX BLOCK ── */
@media(max-width:480px){
  /* FIX: core overflow prevention */
  *{max-width:100%;word-break:break-word;}
  img{max-width:100%;height:auto;}

  .about-img-sub{display:none}
  .hero h1{font-size:28px}
  .hero-btns{flex-direction:column;gap:10px}
  .hero-btns a{justify-content:center}
  .hero-stats{flex-wrap:wrap;gap:16px}

  /* FIX: wrap padding tighter on small screens */
  .wrap{padding:0 16px}
  .header-inner{padding:0 16px}

  .section-title{font-size:26px}
  .section{padding:52px 0}
  .feat-card{padding:20px 16px}
  .feat-card h4{font-size:18px}
  .feat-card .feat-num{font-size:48px}
  .feat-icon{width:50px;height:50px}
  .feat-icon .material-icons-round{font-size:22px}
  .course-body{padding:20px}
  .course-body h3{font-size:18px}
  .cta h2{font-size:26px}
  .cta p{font-size:15px}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .features-top-grid{margin-bottom:36px}

  /* FIX: tighter lightbox controls */
  .lb-prev{left:6px;width:40px;height:40px;font-size:22px}
  .lb-next{right:6px;width:40px;height:40px;font-size:22px}
  .lb-close{top:10px;right:10px;width:38px;height:38px;font-size:16px}
  .lb-img{max-width:92vw;max-height:65vh}

  /* FIX: floating buttons on small screens */
  .floating-apply{padding:10px 14px 10px 12px;max-width:calc(100vw - 80px);}
  .floating-apply .text{font-size:12px}
  #scrolltop{bottom:86px;right:16px;width:40px;height:40px}
  .whatsapp-float{width:50px;height:50px;bottom:18px;right:16px}
  .whatsapp-float i{font-size:24px}

  /* FIX: course row on small phones */
  .course-row{
    grid-template-columns:1fr;
    grid-template-rows:160px auto;
    border-radius:14px;
  }
  .course-thumb{height:160px;}

  /* FIX: hero swiper should not push layout */
  .hero-swiper-wrap{border-radius:12px;}
  .hero-swiper .swiper-slide{height:220px;}

  /* FIX: mosaic on small screens */
  .img-mosaic{
    grid-template-columns:1fr;
    grid-template-rows:160px 100px 100px;
  }

  /* FIX: hero stats wrap */
  .hero-stats{gap:12px;}
  .stat-num{font-size:28px;}
}

@media(max-width:360px){
  .floating-apply .text{font-size:11px}
  .gallery-grid{grid-template-columns:1fr}
  .hero h1{font-size:24px;}
  .section-title{font-size:22px;}
}
section#placement {
  background-color: #ddf0fb !important;
}
#placement .section-title {
  color: #0b3d91;
}

#placement .section-title em {
  color: #0b3d91;
  font-style: normal;
}
#placement .section-desc {
  color: #0b3d90;
}


/*@media (min-width: 992px) {
  .feat-card[data-delay="4"] {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}*/
</style>
