/* -------------------------------------------------------
   LPU-inspired Blue + Orange + Gold theme (fast & modern)
   ------------------------------------------------------- */

:root{
  /* Brand-like accents */
  --blue:#0b3d91;
  --blue2:#062a62;
  --orange:#f58220;
  --gold:#ffcc00;
  --wa:#25D366;

  /* Surfaces */
  --bg:#f5f7fb;
  --bg2:#ffffff;
  --card:#ffffff;
  --card2:#ffffff;

  /* Text */
  --text:#0f172a;
  --muted:rgba(15,23,42,.68);

  /* Border / shadow */
  --border:rgba(15,23,42,.10);
  --shadow:0 20px 44px rgba(15,23,42,.12);

  /* Radii */
  --radius:18px;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--orange), var(--gold));
  --grad-blue: linear-gradient(135deg, var(--blue), var(--orange));
}

html[data-theme="dark"]{
  --bg:#07101f;
  --bg2:#0b1426;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --border:rgba(255,255,255,.14);
  --shadow:0 26px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(11,61,145,.18), transparent 60%),
    radial-gradient(820px 520px at 85% 15%, rgba(245,130,32,.16), transparent 55%),
    radial-gradient(800px 520px at 40% 100%, rgba(255,204,0,.10), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{color:inherit}
.container{width:min(1150px, 92vw); margin:0 auto}

/* ------------------------------------
   Announcement
------------------------------------ */
.announce{
  position:sticky; top:0; z-index:60;
  background: rgba(11,61,145,.92);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.12);
}
html[data-theme="dark"] .announce{background: rgba(6,42,98,.88)}
.announce__inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:10px 0;
  font-size:13px;
}
.announce__left{display:flex; align-items:center; gap:10px}
.dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--grad-primary);
  box-shadow:0 0 0 6px rgba(245,130,32,.18);
}
.announce__right{display:flex; align-items:center; gap:10px}
.link{opacity:.9; color:#fff; text-decoration:none; font-weight:800}
.link:hover{opacity:1}
.sep{opacity:.6}
.countdown{
  display:inline-flex; align-items:center; gap:6px;
  margin-left:10px; padding:4px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  font-weight:900;
}
.countdown::before{content:"⏳";}

/* ------------------------------------
   Nav
------------------------------------ */
.nav{
  position:sticky; top:44px; z-index:55;
  border-bottom:1px solid var(--border);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
}
html[data-theme="dark"] .nav{background: rgba(11,20,38,.58)}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand__mark{
  width:46px;height:46px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:1000; letter-spacing:-.5px;
  background: var(--grad-primary);
  color:#111;
  box-shadow:0 18px 34px rgba(245,130,32,.22);
}
html[data-theme="dark"] .brand__mark{color:#111}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__title{font-weight:1000}
.brand__sub{font-size:12px; opacity:.75}

.nav__links{display:flex; gap:18px; align-items:center}
.nav__links a{font-weight:900; text-decoration:none; color:var(--blue); opacity:.9}
html[data-theme="dark"] .nav__links a{color:#fff}
.nav__links a:hover{opacity:1}

.nav__cta{display:flex; gap:10px; align-items:center}

.iconbtn{
  width:42px;height:42px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(15,23,42,.04);
  color:var(--text);
  cursor:pointer;
}
html[data-theme="dark"] .iconbtn{background: rgba(255,255,255,.06)}
.icon{font-size:16px}

/* Buttons */
.btn{
  border:1px solid var(--border);
  padding:10px 14px;
  border-radius:14px;
  font-weight:1000;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  background: rgba(255,255,255,.75);
  color:var(--text);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
html[data-theme="dark"] .btn{background: rgba(255,255,255,.06)}
.btn:hover{transform: translateY(-1px); box-shadow: 0 18px 34px rgba(0,0,0,.14)}
.btn--primary{border:none; background: var(--grad-primary); color:#111}
.btn--wa{border:none; background: var(--wa); color:#fff}
.btn--ghost{background: rgba(15,23,42,.04)}
html[data-theme="dark"] .btn--ghost{background: rgba(255,255,255,.08)}
.btn--outline{background: transparent}
.btn--sm{padding:9px 12px; border-radius:12px; font-size:13px}
.btn--outline:hover{border-color: rgba(245,130,32,.35)}
.w100{width:100%}

/* ------------------------------------
   Hero
------------------------------------ */
.hero{padding:34px 0 22px}
.hero__grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; align-items:start}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.80);
  font-weight:1000;
  font-size:12px;
}
html[data-theme="dark"] .pill{background: rgba(255,255,255,.06)}

h1{font-size: clamp(30px, 4vw, 46px); margin:12px 0 10px; line-height:1.05}
.grad{background: var(--grad-blue); -webkit-background-clip:text; background-clip:text; color:transparent}
.grad2{background: linear-gradient(135deg, var(--blue), var(--gold)); -webkit-background-clip:text; background-clip:text; color:transparent}

.lead{font-size:16px; color:var(--muted); margin:0 0 14px}

.ticks{margin:0; padding:0; list-style:none; display:grid; gap:8px}
.ticks li{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:800}
.ticks li::before{content:"✓"; font-weight:1000; color:var(--orange)}

.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0 12px}

.trust{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.trust__item{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.70);
  font-weight:1000;
}
html[data-theme="dark"] .trust__item{background: rgba(255,255,255,.06)}
.emoji{font-size:18px}

/* Card + form */
.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.apply{padding:16px}
.apply__head h2{margin:0}
.apply__head p{margin:6px 0 0}
.alert{margin:12px 0; padding:10px 12px; border-radius:14px; font-weight:1000}
.ok{background:rgba(37,211,102,.12); border:1px solid rgba(37,211,102,.25)}
.err{background:rgba(245,130,32,.12); border:1px solid rgba(245,130,32,.25)}

.form{margin-top:12px}
label{display:block; font-weight:1000; margin:12px 0 6px; font-size:13px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(15,23,42,.03);
  color:var(--text);
  outline:none;
}
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
textarea{resize:vertical}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:10px}

.consent{display:flex; gap:10px; align-items:flex-start; margin:12px 0 8px; color:var(--muted)}
.consent input{width:18px; height:18px; margin-top:2px}

.mini{display:flex; gap:10px; margin-top:12px}
.mini__btn{
  flex:1; text-align:center; padding:10px 12px;
  border-radius:14px; border:1px dashed var(--border);
  font-weight:1000; text-decoration:none; opacity:.95;
  background: rgba(255,255,255,.55);
}
html[data-theme="dark"] .mini__btn{background: rgba(255,255,255,.06)}
.mini__btn:hover{opacity:1}
.fine{font-size:12px; color:var(--muted); margin:12px 0 0}
.muted{color:var(--muted)}
.hp{display:none}

/* Highlights strip */
.strip{display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:16px}
.strip__card{
  display:flex; align-items:center; gap:12px;
  padding:14px; border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.70);
}
html[data-theme="dark"] .strip__card{background: rgba(255,255,255,.06)}
.strip__icon{
  width:44px;height:44px;border-radius:16px;
  display:grid; place-items:center;
  background: rgba(11,61,145,.10);
  border:1px solid rgba(11,61,145,.20)
}

/* ------------------------------------
   Sections
------------------------------------ */
.section{padding:34px 0}
.section.alt{background: linear-gradient(180deg, rgba(11,61,145,.05), transparent)}
.section__head{display:flex; gap:14px; align-items:flex-end; justify-content:space-between; flex-wrap:wrap}
.controls{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

.tabs{
  display:flex; gap:8px; padding:6px;
  border-radius:999px; border:1px solid var(--border);
  background: rgba(255,255,255,.60)
}
html[data-theme="dark"] .tabs{background: rgba(255,255,255,.06)}
.tab{
  border:none; background:transparent; color:var(--text);
  padding:10px 12px; border-radius:999px;
  font-weight:1000; cursor:pointer; opacity:.85
}
.tab.is-active{
  background: var(--grad-blue);
  color:#fff; opacity:1;
}
.select, .search{
  padding:12px 12px; border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.75);
  color:var(--text)
}
html[data-theme="dark"] .select, html[data-theme="dark"] .search{background: rgba(255,255,255,.06)}
.search{min-width:240px}

/* Courses grid */
.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:16px}

.course{padding:16px; position:relative; overflow:hidden}
.course::before{
  content:""; position:absolute; inset:-2px;
  background: radial-gradient(600px 240px at 20% 0%, rgba(11,61,145,.14), transparent 70%);
  pointer-events:none;
}
.course__head{display:flex; gap:12px; align-items:flex-start; position:relative}
.course__icon{
  width:46px;height:46px;border-radius:16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.80);
  border:1px solid var(--border)
}
html[data-theme="dark"] .course__icon{background: rgba(255,255,255,.06)}
.course h3{margin:0; font-size:18px}

.course__fee{margin-top:12px; display:flex; align-items:flex-end; justify-content:space-between; gap:12px; position:relative}
.label{font-size:12px; color:var(--muted); font-weight:1000}
.price{font-size:20px; font-weight:1000}

.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; position:relative}
.badge{
  font-size:12px; font-weight:1000;
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.70)
}
html[data-theme="dark"] .badge{background: rgba(255,255,255,.06)}

.bullets{margin:12px 0 0; padding:0 0 0 18px; color:var(--muted); font-weight:800; display:grid; gap:6px; position:relative}
.course__actions{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; position:relative}
.source{margin:12px 0 0; font-size:12px; color:var(--muted); position:relative}
.source a{font-weight:1000}

.note{margin-top:18px; padding:14px; border-radius:18px; border:1px solid var(--border); background: rgba(255,255,255,.70)}
html[data-theme="dark"] .note{background: rgba(255,255,255,.06)}

/* Why */
.two{display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; align-items:start}
.featurelist{display:grid; gap:12px; margin-top:14px}
.feature{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px; border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.70)
}
html[data-theme="dark"] .feature{background: rgba(255,255,255,.06)}
.feature__icon{
  width:44px;height:44px;border-radius:16px; display:grid; place-items:center;
  background: rgba(245,130,32,.10);
  border:1px solid rgba(245,130,32,.25)
}

.stats{padding:16px}
.stats h3{margin:0 0 10px}
.stats__grid{display:grid; grid-template-columns: repeat(2, 1fr); gap:10px}
.stat{
  padding:14px; border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.70)
}
html[data-theme="dark"] .stat{background: rgba(255,255,255,.06)}
.stat__n{font-size:18px; font-weight:1000; color:var(--blue)}

/* Fees */
.feegrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:16px}
.fee{padding:16px}
.fee h3{margin:0 0 6px}

/* Testimonials */
.tgrid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:14px}
.tcard{
  border:1px solid var(--border);
  border-radius:18px;
  background: rgba(255,255,255,.80);
  padding:16px;
  box-shadow: var(--shadow);
}
html[data-theme="dark"] .tcard{background: rgba(255,255,255,.06)}
.tcard__top{display:flex; align-items:center; gap:12px}
.avatar{
  width:44px;height:44px;border-radius:16px;
  display:grid; place-items:center;
  font-weight:1000; color:#111;
  background: var(--grad-primary);
}
.tcard p{color:var(--muted); font-weight:800; line-height:1.5}
.stars{font-weight:1000; color: #ffb400}

/* FAQ */
.faq{display:grid; gap:10px; margin-top:14px}
.faq__item{
  border:1px solid var(--border);
  border-radius:18px;
  background: rgba(255,255,255,.70);
  padding:4px 10px
}
html[data-theme="dark"] .faq__item{background: rgba(255,255,255,.06)}
.faq__item summary{cursor:pointer; padding:12px 6px; font-weight:1000}
.faq__body{padding:0 6px 12px; color:var(--muted); font-weight:800}

/* Footer */
.footer{padding:26px 0 18px; border-top:1px solid var(--border); background: rgba(255,255,255,.78)}
html[data-theme="dark"] .footer{background: rgba(11,20,38,.58)}
.footer__grid{display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:14px}
.brandfoot{font-weight:1000; margin-bottom:8px; color:var(--blue)}
html[data-theme="dark"] .brandfoot{color:#fff}
.footlinks{display:grid; gap:6px}
.footlinks a{color:var(--muted); text-decoration:none; font-weight:900}
.footlinks a:hover{color:var(--text)}
.footer__bottom{
  margin-top:14px; padding-top:14px;
  border-top:1px solid var(--border);
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap
}

/* Floating */
.float{position:fixed; right:16px; bottom:86px; display:grid; gap:10px; z-index:70}
.float__btn{
  width:48px;height:48px;border-radius:18px;
  display:grid; place-items:center; text-decoration:none;
  border:1px solid var(--border);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
}
html[data-theme="dark"] .float__btn{background: rgba(255,255,255,.08)}

/* Mobile bar */
.mbar{
  position:fixed; left:0; right:0; bottom:0; z-index:75;
  display:none; grid-template-columns:repeat(3,1fr);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-top:1px solid var(--border)
}
html[data-theme="dark"] .mbar{background: rgba(11,20,38,.70)}
.mbar a{padding:14px 10px; text-align:center; text-decoration:none; font-weight:1000}
.mbar a:nth-child(2){background: rgba(37,211,102,.12)}

/* Compare bar */
.comparebar{
  position:fixed; left:0; right:0;
  bottom:58px;
  z-index:78;
  display:none;
}
.comparebar.is-on{display:block}
.comparebar__inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
html[data-theme="dark"] .comparebar__inner{background: rgba(11,20,38,.78)}
.comparebar__title{font-weight:1000; color:var(--blue)}
html[data-theme="dark"] .comparebar__title{color:#fff}
.comparechips{display:flex; gap:8px; flex-wrap:wrap; margin-top:6px}
.cchip{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(245,130,32,.10);
  font-weight:900;
}
.cchip button{
  border:none; background:transparent; cursor:pointer;
  font-weight:1000; opacity:.8
}
.comparebar__right{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

/* Toast */
.toast{
  position:fixed; left:50%; transform:translateX(-50%);
  bottom:132px;
  z-index:85;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.72);
  color:#fff;
  font-weight:900;
  opacity:0;
  pointer-events:none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast.show{opacity:1; transform:translateX(-50%) translateY(-4px)}
html[data-theme="dark"] .toast{background: rgba(0,0,0,.72)}

/* Modal */
.modal{position:fixed; inset:0; display:none; z-index:90}
.modal.is-open{display:block}
.modal__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.55)}
.modal__panel{
  position:relative;
  width:min(860px, 92vw);
  margin:8vh auto;
  border-radius:22px;
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}
.modal__head{display:flex; justify-content:space-between; align-items:flex-start; gap:12px; padding:16px 16px 10px}
.modal__body{padding:0 16px 16px}
.modal__grid{display:grid; grid-template-columns: 1fr 1.3fr; gap:12px; margin-top:12px}
.miniCard{padding:14px}
#modalFee{display:grid; gap:8px; margin-top:8px}
.feerow{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 12px; border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.80);
  font-weight:900
}
html[data-theme="dark"] .feerow{background: rgba(255,255,255,.06)}
.feerow span{color:var(--muted); font-weight:900}
.modal__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

/* Compare table */
.compareTableWrap{overflow:auto; border-radius:18px; border:1px solid var(--border)}
.cTable{border-collapse:collapse; width:100%; min-width:780px}
.cTable th, .cTable td{padding:10px 10px; border-bottom:1px solid rgba(15,23,42,.08); text-align:left; vertical-align:top; font-size:13px}
html[data-theme="dark"] .cTable th, html[data-theme="dark"] .cTable td{border-bottom:1px solid rgba(255,255,255,.10)}
.cTable th{background: rgba(255,255,255,.90); position:sticky; top:0}
html[data-theme="dark"] .cTable th{background: rgba(11,20,38,.78)}

/* Reveal on scroll */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease}
.reveal.in{opacity:1; transform:none}

@media (prefers-reduced-motion: reduce){
  .btn{transition:none}
  .reveal{transition:none}
}

/* Responsive */
@media (max-width: 980px){
  .nav__links{display:none}
  .hero__grid{grid-template-columns:1fr}
  .strip{grid-template-columns:1fr 1fr}
  .grid{grid-template-columns:1fr}
  .feegrid{grid-template-columns:1fr}
  .tgrid{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .mbar{display:grid}
  .float{bottom:74px}
  .comparebar{bottom:62px}
}
@media (max-width: 520px){
  .grid2{grid-template-columns:1fr}
  .strip{grid-template-columns:1fr}
  .search{min-width: 180px}
}
