:root{
  --bg:#020617;
  --bg-soft:#0f172a;
  --panel:rgba(15,23,42,0.72);
  --panel-strong:rgba(15,23,42,0.88);
  --line:rgba(148,163,184,0.16);
  --text:#e5eefc;
  --muted:#94a3b8;
  --primary:#38bdf8;
  --primary-2:#0ea5e9;
  --white:#ffffff;
  --shadow:0 20px 50px rgba(0,0,0,0.28);
  --radius:22px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.10), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(59,130,246,0.12), transparent 20%),
    linear-gradient(135deg,#020617 0%, #081120 45%, #0f172a 100%);
  color:var(--text);
  overflow-x:hidden;
  position:relative;
}

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

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

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.section{
  padding:90px 0;
  position:relative;
  z-index:2;
}

.alt-section{
  background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.03));
  border-top:1px solid rgba(255,255,255,0.03);
  border-bottom:1px solid rgba(255,255,255,0.03);
}

.section-head{
  max-width:760px;
  margin:0 auto 48px;
  text-align:center;
}

.section-head h2{
  font-size:clamp(30px, 4vw, 46px);
  line-height:1.14;
  margin-bottom:14px;
  font-weight:800;
  letter-spacing:-0.02em;
}

.section-head p{
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

.section-tag,
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(56,189,248,0.10);
  border:1px solid rgba(56,189,248,0.18);
  color:#7dd3fc;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}

.bg-grid{
  position:fixed;
  inset:0;
  z-index:0;
  background-image:
    linear-gradient(rgba(56,189,248,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.05) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom, rgba(255,255,255,0.75), transparent);
  pointer-events:none;
}

.glow{
  position:fixed;
  border-radius:999px;
  filter:blur(80px);
  opacity:0.24;
  z-index:0;
  pointer-events:none;
}

.glow-1{
  width:320px;
  height:320px;
  background:#0ea5e9;
  top:110px;
  left:-80px;
}

.glow-2{
  width:360px;
  height:360px;
  background:#2563eb;
  top:40px;
  right:-90px;
}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(18px);
  background:rgba(2,6,23,0.72);
  border-bottom:1px solid rgba(148,163,184,0.10);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.brand-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg, var(--primary), #2563eb);
  color:#00131b;
  font-weight:800;
  box-shadow:0 12px 30px rgba(14,165,233,0.28);
}

.brand-text{
  font-weight:800;
  letter-spacing:-0.02em;
  font-size:18px;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav-menu a{
  color:#d9e6f5;
  font-size:14px;
  transition:0.25s ease;
}

.nav-menu a:hover{
  color:var(--primary);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-login{
  color:#dce9f8;
  font-size:14px;
}

.menu-toggle{
  display:none;
  border:none;
  background:rgba(255,255,255,0.08);
  color:white;
  width:42px;
  height:42px;
  border-radius:12px;
  cursor:pointer;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:13px 20px;
  font-weight:700;
  transition:0.25s ease;
  border:1px solid transparent;
}

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

.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#00131b;
  box-shadow:0 16px 35px rgba(14,165,233,0.25);
}

.btn-secondary{
  background:rgba(255,255,255,0.04);
  color:var(--white);
  border-color:rgba(255,255,255,0.10);
}

.btn-small{
  padding:10px 16px;
  border-radius:12px;
  font-size:14px;
}

.full-btn{
  width:100%;
}

/* HERO */
.hero{
  padding:84px 0 70px;
  position:relative;
  z-index:2;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr 0.92fr;
  gap:44px;
  align-items:center;
}

.hero-left h1{
  font-size:clamp(40px, 6vw, 68px);
  line-height:1.02;
  letter-spacing:-0.04em;
  font-weight:800;
  max-width:760px;
  margin-bottom:18px;
}

.hero-left h1 span{
  color:#7dd3fc;
}

.hero-left p{
  max-width:640px;
  color:var(--muted);
  font-size:17px;
  line-height:1.85;
  margin-bottom:26px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:30px;
}

.hero-mini-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  max-width:650px;
}

.mini-stat{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  backdrop-filter:blur(14px);
}

.mini-stat h3{
  font-size:22px;
  margin-bottom:6px;
  color:#f8fbff;
}

.mini-stat p{
  font-size:13px;
  color:var(--muted);
  margin:0;
  line-height:1.5;
}

.hero-right{
  position:relative;
  min-height:540px;
}

.hero-card{
  background:linear-gradient(180deg, rgba(15,23,42,0.94), rgba(2,6,23,0.90));
  border:1px solid rgba(148,163,184,0.16);
  border-radius:28px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(20px);
}

.main-dashboard-card{
  padding:28px;
  position:relative;
  z-index:3;
}

.card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:22px;
}

.card-badge,
.card-status{
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.card-badge{
  background:rgba(56,189,248,0.12);
  color:#7dd3fc;
  border:1px solid rgba(56,189,248,0.18);
}

.card-status{
  background:rgba(34,197,94,0.12);
  color:#86efac;
  border:1px solid rgba(34,197,94,0.18);
}

.main-dashboard-card h3{
  font-size:26px;
  margin-bottom:20px;
}

.progress-block{
  margin-bottom:24px;
}

.progress-label{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:14px;
  margin-bottom:10px;
  color:#dbe9f8;
}

.progress-bar{
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  overflow:hidden;
}

.progress-fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, #38bdf8, #2563eb);
}

.fill-72{
  width:72%;
}

.dashboard-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.dash-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
}

.dash-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg, #38bdf8, #22c55e);
  margin-top:6px;
  flex-shrink:0;
}

.dash-item h4{
  font-size:15px;
  margin-bottom:4px;
}

.dash-item p{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.floating-card{
  position:absolute;
  background:rgba(15,23,42,0.82);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(16px);
  box-shadow:var(--shadow);
  border-radius:20px;
  padding:16px 18px;
  display:flex;
  flex-direction:column;
  gap:4px;
  z-index:4;
}

.floating-card small{
  color:#7dd3fc;
  font-size:12px;
}

.floating-card strong{
  font-size:16px;
}

.floating-card span{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.card-course{
  left:-10px;
  bottom:60px;
}

.card-mentor{
  right:-10px;
  top:22px;
}

/* TRUST */
.trust-strip{
  padding:0 0 28px;
  position:relative;
  z-index:2;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.trust-card{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}

.trust-card h3{
  font-size:18px;
  margin-bottom:8px;
}

.trust-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

/* COURSES */
.course-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.course-card{
  background:linear-gradient(180deg, rgba(15,23,42,0.92), rgba(2,6,23,0.88));
  border:1px solid rgba(148,163,184,0.16);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:0.28s ease;
}

.course-card:hover,
.feature-card:hover,
.track-card:hover,
.faculty-card:hover,
.placement-card:hover,
.mentor-box:hover,
.trust-card:hover{
  transform:translateY(-6px);
  border-color:rgba(56,189,248,0.28);
}

.course-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:18px;
}

.course-badge,
.course-type{
  font-size:12px;
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
}

.course-badge{
  background:rgba(168,85,247,0.12);
  color:#d8b4fe;
  border:1px solid rgba(168,85,247,0.18);
}

.course-type{
  background:rgba(34,197,94,0.12);
  color:#86efac;
  border:1px solid rgba(34,197,94,0.18);
}

.course-card h3{
  font-size:24px;
  margin-bottom:12px;
}

.course-card p{
  color:var(--muted);
  line-height:1.75;
  margin-bottom:16px;
}

.course-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:22px;
}

.course-card ul li{
  color:#dce8f5;
  font-size:14px;
  position:relative;
  padding-left:18px;
}

.course-card ul li::before{
  content:"";
  position:absolute;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#38bdf8;
  left:0;
  top:7px;
}

.course-footer{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
}

.course-footer small{
  color:var(--muted);
  display:block;
  margin-bottom:4px;
}

.course-footer strong{
  font-size:24px;
}

/* FEATURES */
.feature-grid,
.placement-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.feature-card,
.placement-card{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:0.28s ease;
}

.feature-icon,
.placement-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  font-size:28px;
  margin-bottom:16px;
  background:rgba(56,189,248,0.10);
  border:1px solid rgba(56,189,248,0.14);
}

.feature-card h3,
.placement-card h3{
  margin-bottom:10px;
  font-size:20px;
}

.feature-card p,
.placement-card p{
  color:var(--muted);
  line-height:1.75;
}

/* TRACKS */
.track-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.track-card{
  background:linear-gradient(180deg, rgba(15,23,42,0.92), rgba(2,6,23,0.88));
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:0.28s ease;
}

.track-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.track-card p{
  color:var(--muted);
  line-height:1.7;
}

/* MENTORSHIP */
.mentorship-wrap{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:26px;
  align-items:center;
}

.mentorship-left h2{
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.16;
  margin-bottom:14px;
}

.mentorship-left p{
  color:var(--muted);
  line-height:1.85;
  margin-bottom:24px;
}

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

.point{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  color:#dbe8f6;
  font-size:14px;
}

.mentor-panel{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.mentor-box{
  background:linear-gradient(180deg, rgba(15,23,42,0.94), rgba(2,6,23,0.88));
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
  transition:0.28s ease;
}

.mentor-box span{
  display:block;
  color:#7dd3fc;
  font-size:13px;
  margin-bottom:8px;
  font-weight:700;
}

.mentor-box strong{
  font-size:20px;
  line-height:1.45;
}

/* FACULTY */
.faculty-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}

.faculty-card{
  background:linear-gradient(180deg, rgba(15,23,42,0.92), rgba(2,6,23,0.88));
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow);
  transition:0.28s ease;
}

.faculty-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  object-position:top;
  border-radius:18px;
  margin-bottom:16px;
}

.faculty-card h3{
  font-size:20px;
  margin-bottom:6px;
}

.faculty-card span{
  display:block;
  color:#7dd3fc;
  font-size:13px;
  margin-bottom:10px;
  font-weight:600;
}

.faculty-card p{
  color:var(--muted);
  line-height:1.75;
  font-size:14px;
}

/* PODCAST */
.podcast-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.video-card{
  background:linear-gradient(180deg, rgba(15,23,42,0.94), rgba(2,6,23,0.9));
  border:1px solid var(--line);
  border-radius:22px;
  padding:14px;
  box-shadow:var(--shadow);
  transition:0.28s ease;
}

.video-card:hover{
  transform:translateY(-5px);
  border-color:rgba(56,189,248,0.28);
}

.video-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:16px;
}

.video-card p{
  margin-top:12px;
  color:#f5f9ff;
  line-height:1.65;
  font-size:14px;
}

/* FAQ */
.faq-wrap{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.faq-item{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  color:var(--white);
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:left;
  padding:20px 22px;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
  padding:0 22px;
}

.faq-answer p{
  color:var(--muted);
  line-height:1.8;
  padding-bottom:20px;
}

.faq-item.active .faq-answer{
  max-height:200px;
}

/* ENQUIRY */
.enquiry-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:center;
}

.enquiry-left h2{
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.15;
  margin-bottom:14px;
}

.enquiry-left p{
  color:var(--muted);
  line-height:1.85;
  margin-bottom:20px;
}

.contact-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-list a{
  color:#7dd3fc;
  word-break:break-word;
}

.enquiry-form{
  background:linear-gradient(180deg, rgba(15,23,42,0.94), rgba(2,6,23,0.9));
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

input,
textarea{
  width:100%;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(148,163,184,0.14);
  color:var(--white);
  padding:14px 16px;
  border-radius:16px;
  margin-bottom:14px;
  outline:none;
  font-family:inherit;
  font-size:14px;
}

textarea{
  min-height:130px;
  resize:vertical;
}

input::placeholder,
textarea::placeholder{
  color:#89a0b8;
}

input:focus,
textarea:focus{
  border-color:rgba(56,189,248,0.5);
  box-shadow:0 0 0 4px rgba(56,189,248,0.10);
}

/* FINAL CTA */
.final-cta{
  padding:0 0 90px;
}

.final-cta-box{
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.16), transparent 35%),
    linear-gradient(135deg, rgba(15,23,42,0.96), rgba(2,6,23,0.92));
  border:1px solid rgba(56,189,248,0.16);
  border-radius:30px;
  padding:34px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  box-shadow:var(--shadow);
}

.final-cta-box h2{
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.16;
}

.final-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* FOOTER */
.footer{
  border-top:1px solid rgba(148,163,184,0.10);
  padding:28px 0 18px;
  background:rgba(2,6,23,0.6);
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:22px;
  align-items:flex-start;
  margin-bottom:18px;
}

.footer h3{
  margin-bottom:8px;
  font-size:20px;
}

.footer p{
  color:var(--muted);
  line-height:1.8;
}

.footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#dbe8f6;
  font-size:14px;
}

.footer-copy{
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

/* RESPONSIVE */
@media (max-width:1100px){
  .hero-grid,
  .mentorship-wrap,
  .enquiry-section{
    grid-template-columns:1fr;
  }

  .hero-right{
    min-height:auto;
  }

  .card-course,
  .card-mentor{
    position:static;
    margin-top:16px;
  }

  .course-grid,
  .feature-grid,
  .placement-grid,
  .faculty-grid,
  .podcast-grid{
    grid-template-columns:repeat(2, 1fr);
  }

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

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

@media (max-width:780px){
  .nav-wrap{
    flex-wrap:wrap;
    padding:12px 0;
  }

  .menu-toggle{
    display:inline-grid;
    place-items:center;
  }

  .nav-menu{
    width:100%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:12px 0 6px;
    gap:14px;
  }

  .nav-menu.show{
    display:flex;
  }

  .nav-actions{
    margin-left:auto;
  }

  .hero{
    padding-top:56px;
  }

  .hero-mini-stats,
  .mentorship-points{
    grid-template-columns:1fr;
  }

  .course-grid,
  .feature-grid,
  .placement-grid,
  .track-grid,
  .faculty-grid,
  .podcast-grid,
  .trust-grid{
    grid-template-columns:1fr;
  }

  .final-cta-box,
  .footer-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .section{
    padding:72px 0;
  }

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

  .section-head{
    margin-bottom:36px;
  }
}

@media (max-width:520px){
  .container{
    width:min(100% - 20px, 1180px);
  }

  .btn{
    width:100%;
  }

  .hero-actions,
  .final-cta-actions{
    width:100%;
    flex-direction:column;
  }

  .main-dashboard-card{
    padding:20px;
  }

  .enquiry-form,
  .course-card,
  .faculty-card,
  .feature-card,
  .placement-card,
  .track-card,
  .trust-card{
    padding-left:18px;
    padding-right:18px;
  }
}
.course-loading-card,
.course-empty-card,
.course-error-card{
  grid-column:1 / -1;
  background:linear-gradient(180deg, rgba(15,23,42,0.92), rgba(2,6,23,0.88));
  border:1px solid rgba(148,163,184,0.16);
  border-radius:24px;
  padding:28px;
  text-align:center;
  color:var(--muted);
  box-shadow:var(--shadow);
}

.course-image-wrap{
  width:100%;
  height:210px;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
}

.course-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.course-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}

.course-chip{
  font-size:12px;
  font-weight:700;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.04);
  color:#dce8f5;
}

.course-chip.level{
  background:rgba(168,85,247,0.12);
  border-color:rgba(168,85,247,0.18);
  color:#e9d5ff;
}

.course-chip.validity{
  background:rgba(56,189,248,0.12);
  border-color:rgba(56,189,248,0.18);
  color:#7dd3fc;
}

.course-chip.notes{
  background:rgba(34,197,94,0.12);
  border-color:rgba(34,197,94,0.18);
  color:#86efac;
}

.course-desc{
  color:var(--muted);
  line-height:1.75;
  margin-bottom:16px;
  min-height:76px;
}

.course-stats{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding-top:14px;
  margin-top:16px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.course-stat{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.course-stat small{
  color:var(--muted);
  font-size:12px;
}

.course-stat strong{
  color:#f8fbff;
  font-size:15px;
}