:root {
  --primary: #19bd94;
  --primary-dark: #078067;
  --ink: #1d1d22;
  --charcoal: #222024;
  --muted: #667085;
  --soft: #f7fbfa;
  --line: #e6eaef;
  --card: #ffffff;
  --accent: #15a6e8;
  --gold: #f5a524;
  --rose: #f05f7f;
  --shadow: 0 20px 60px rgba(16, 24, 40, .10);
  --shadow-soft: 0 10px 34px rgba(16, 24, 40, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(25, 189, 148, .12), transparent 31rem),
    radial-gradient(circle at 92% 20%, rgba(34, 32, 36, .08), transparent 24rem),
    #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: linear-gradient(90deg, var(--charcoal), #151416 55%, var(--primary-dark));
  color: #fff;
  font-size: 13px;
  border-bottom: 0;
  box-shadow: 0 10px 28px rgba(34, 32, 36, .12);
}
.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar__inner span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
}
.topbar__inner span:first-child {
  background: rgba(25, 189, 148, .22);
  border-color: rgba(25, 189, 148, .38);
}
.topbar__inner span:nth-child(2) {
  background: rgba(255, 255, 255, .14);
}
.topbar__inner span:last-child {
  background: rgba(245, 165, 36, .18);
  border-color: rgba(245, 165, 36, .36);
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 234, 239, .82);
}
.navbar__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: min(250px, 54vw); }
.nav-links { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; }
.nav-links a {
  color: #344054;
  padding: 9px 12px;
  border-radius: 8px;
  transition: .2s ease;
}
.nav-links a.active, .nav-links a:hover { color: var(--primary-dark); background: rgba(18,185,143,.08); }
.nav-toggle { display: none; border: 0; background: var(--soft); border-radius: 8px; min-width: 64px; height: 44px; font-size: 14px; font-weight: 900; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(18, 185, 143, .24);
  cursor: pointer;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(18, 185, 143, .30); }
.btn--small { min-height: 38px; padding: 0 16px; color: #fff !important; background: var(--primary) !important; }
.btn--ghost { background: #fff; color: var(--charcoal); box-shadow: none; border: 1px solid rgba(34,32,36,.16); }

.hero {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  background: #fff;
}
.hero-slider { width: 100%; }
.hero-slide {
  display: none;
  width: 100%;
  background: #fff;
}
.hero-slide.active { display: block; }
.hero-slide a { display: block; }
.hero-banner-img {
  width: 100%;
  height: clamp(520px, 38vw, 720px);
  max-height: none;
  object-fit: cover;
  object-position: center center;
}
.hero-layout { display: flex; align-items: center; min-height: inherit; }
.hero__content { padding: 96px 0 110px; max-width: 760px; animation: riseIn .7s ease both; }
.hero h1 { margin: 0 0 20px; font-size: clamp(42px, 6vw, 74px); line-height: 1.04; letter-spacing: 0; }
.hero p { max-width: 670px; font-size: 19px; color: rgba(255, 255, 255, .90); }
.hero .eyebrow { color: #6df0cc; }
.hero .fancy-title::after { background: linear-gradient(90deg, var(--primary), var(--gold), rgba(255,255,255,.72)); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero .btn--ghost { background: rgba(255, 255, 255, .94); color: var(--charcoal); border-color: rgba(255, 255, 255, .72); }

.eyebrow { margin: 0 0 12px; color: var(--primary-dark); font-weight: 900; text-transform: uppercase; letter-spacing: 0; font-size: 13px; }
.section { padding: 78px 0; }
.surface { background: linear-gradient(180deg, #fff, var(--soft)); border-block: 1px solid rgba(230,234,239,.7); }
.intro-band { padding: 52px 0; border-bottom: 1px solid var(--line); }
.intro-grid, .split, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
h1, h2, h3 { line-height: 1.16; letter-spacing: 0; }
h2 { margin: 0; font-size: clamp(30px, 3.2vw, 46px); }
.fancy-title {
  position: relative;
  width: fit-content;
  max-width: 100%;
}
.fancy-title span {
  color: var(--primary-dark);
  background: linear-gradient(90deg, var(--primary-dark), var(--charcoal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fancy-title::after {
  content: "";
  display: block;
  width: min(180px, 60%);
  height: 5px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--gold), transparent);
}
.contact-card .fancy-title::after,
.course-rich-card .fancy-title::after,
.career-info .fancy-title::after {
  height: 4px;
  width: 110px;
  margin-top: 10px;
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-head a { color: var(--primary-dark); font-weight: 900; }
.form-alert, .form-success {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 900;
}
.form-alert { background: #fff1f0; color: #b42318; border: 1px solid #ffd6d2; }
.form-success { background: #e8f8f3; color: var(--primary-dark); border: 1px solid rgba(25,189,148,.25); }

.focus-grid, .card-grid, .course-grid, .testimonial-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.focus-card, .md-card, .course-card, .story-card, .timeline-card, .contact-card, blockquote, .blog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.focus-card, .md-card, .course-card, .portfolio-card, .blog-card, .story-card, .timeline-card, blockquote { transition: .22s ease; }
.focus-card:hover, .md-card:hover, .course-card:hover, .portfolio-card:hover, .blog-card:hover, .story-card:hover, .timeline-card:hover, blockquote:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.focus-card span, .icon-chip {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(25,189,148,.16), rgba(34,32,36,.08));
  color: var(--primary-dark);
  font-weight: 900;
}
.focus-card:nth-child(2) span { background: linear-gradient(135deg, rgba(21,166,232,.16), rgba(25,189,148,.14)); color: #08739f; }
.focus-card:nth-child(3) span { background: linear-gradient(135deg, rgba(245,165,36,.18), rgba(25,189,148,.12)); color: #9a6407; }
.focus-card h3, .md-card h3, .course-card h3 { margin: 18px 0 10px; }
.focus-card p, .md-card p, .course-card p, .timeline-card p, blockquote p, .blog-card p { color: var(--muted); }
.md-card a, .blog-card a, .timeline-card a { color: var(--primary-dark); font-weight: 900; }
.card-img { height: 160px; width: 100%; object-fit: contain; padding: 18px; border-radius: 8px; background: var(--soft); }

.learning-tabs {
  background: linear-gradient(135deg, rgba(25,189,148,.08), rgba(34,32,36,.04));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.tab-controls {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  margin: 0 auto 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16,24,40,.06);
}
.tab-controls button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: .22s ease;
}
.tab-controls button.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(25,189,148,.25);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabIn .28s ease both; }
.premium-grid { align-items: stretch; }
.course-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(25,189,148,.55), rgba(34,32,36,.18)) border-box;
  border: 1px solid transparent;
}
.course-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--charcoal)); }
.course-card:nth-child(3n + 2)::before { background: linear-gradient(90deg, var(--accent), var(--primary)); }
.course-card:nth-child(3n + 3)::before { background: linear-gradient(90deg, var(--gold), var(--primary)); }
.course-card span { color: var(--primary-dark); font-weight: 900; font-size: 13px; }
.course-card strong { display: block; margin-top: 18px; }
.premium-course h3, .internship-card h3 { min-height: 52px; }
.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.course-meta strong { margin: 0; color: var(--charcoal); }
.course-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(25,189,148,.1);
  color: var(--primary-dark);
  font-weight: 900;
}
.skill-mini { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.skill-mini small {
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 800;
}
.internship-card:nth-child(2) .skill-mini small { background: rgba(21,166,232,.08); }
.internship-card:nth-child(3) .skill-mini small { background: rgba(245,165,36,.10); }
.internship-card:nth-child(4) .skill-mini small { background: rgba(240,95,127,.08); }

.stack { display: grid; gap: 16px; }
.timeline-card time, .blog-card time { color: var(--gold); font-weight: 900; font-size: 13px; }
.story-card { text-align: center; }
.story-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--soft);
  margin: 0 auto 14px;
  border: 1px solid var(--line);
}
.story-card small { color: var(--primary-dark); font-weight: 800; }

.portfolio-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.portfolio-card {
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  padding: 20px;
  opacity: .9;
  background: linear-gradient(180deg, #fff, var(--soft));
  border-bottom: 1px solid var(--line);
}
.portfolio-card div {
  position: static;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 18px;
}
.portfolio-card h3 { margin: 6px 0 0; font-size: 18px; }
.portfolio-card span { color: var(--primary-dark); font-weight: 900; font-size: 13px; }

.student-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.student-project-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(25,189,148,.45), rgba(34,32,36,.18)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: .22s ease;
}
.student-project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.student-project-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.student-project-head img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--soft);
  border: 3px solid rgba(25,189,148,.18);
}
.student-project-head span {
  display: block;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 13px;
}
.student-project-head h3 { margin: 4px 0 0; }
.student-project-card h4 {
  margin: 0 0 10px;
  font-size: 20px;
}
.student-project-card p { color: var(--muted); }
.project-showcase {
  position: relative;
  margin: 20px 0;
  padding: 12px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25,189,148,.10), rgba(34,32,36,.04)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.showcase-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.showcase-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(16,24,40,.10);
}
.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.showcase-thumbs:empty { display: none; }
.showcase-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
.showcase-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed rgba(25,189,148,.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25,189,148,.08), rgba(21,166,232,.06)),
    #fff;
}
.showcase-empty strong { display: block; color: var(--charcoal); font-size: 18px; }
.showcase-empty span { display: block; color: var(--muted); font-weight: 800; }
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.project-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  background: rgba(25,189,148,.10);
  color: var(--primary-dark);
  font-weight: 900;
}
.project-actions a:nth-child(2) {
  background: rgba(21,166,232,.10);
  color: #08739f;
}

blockquote { margin: 0; }
blockquote footer { font-weight: 900; }
blockquote span { display: block; color: var(--muted); font-weight: 600; }
.blog-card { padding: 0; overflow: hidden; }
.blog-card img { width: 100%; height: 190px; object-fit: contain; background: var(--soft); padding: 18px; }
.blog-card div { padding: 22px; }

.page-hero {
  padding: 82px 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(18,185,143,.12), transparent 28rem),
    linear-gradient(180deg, #fff, var(--soft));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin: 0 0 12px; font-size: clamp(38px, 5vw, 64px); }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 18px; }
.content-page { display: grid; grid-template-columns: 380px 1fr; gap: 38px; align-items: start; font-size: 18px; }
.content-page img { width: 100%; border-radius: 8px; border: 1px solid var(--line); padding: 22px; background: var(--soft); }
.course-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 34px;
  align-items: center;
}
.course-badges, .course-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.course-badges span {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.course-quick-card, .course-side-card, .course-rich-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(25,189,148,.50), rgba(34,32,36,.18)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.course-quick-card p, .course-side-card p, .course-rich-card p { color: var(--muted); }
.course-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.course-tab-controls {
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
}
.course-rich-card h2 { margin-top: 0; }
.point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.point-grid div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 76px;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 800;
}
.point-grid span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(25,189,148,.16);
  color: var(--primary-dark);
  font-weight: 900;
}
.curriculum-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.curriculum-list article {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(16,24,40,.05);
}
.curriculum-list strong { color: var(--primary-dark); }
.curriculum-list p { margin: 6px 0 0; }
.course-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 112px;
}
.course-side-card p {
  margin: 8px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.course-side-card p:last-of-type { border-bottom: 0; }
.download-form {
  max-width: 520px;
  margin-top: 18px;
}
.career-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.career-info {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(25,189,148,.55), rgba(34,32,36,.22)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.career-info p { color: var(--muted); }
.career-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.career-list span {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 900;
}
.career-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.inquiry-form { display: grid; gap: 14px; }
.inquiry-form label { display: grid; gap: 6px; font-weight: 800; color: #344054; }
.inquiry-form input, .inquiry-form textarea, .inquiry-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
.quick-inquiry {
  position: fixed;
  left: 0;
  top: 48%;
  z-index: 19;
  transform: rotate(-90deg) translateY(-100%);
  transform-origin: left top;
  border: 0;
  border-radius: 8px 8px 0 0;
  padding: 12px 18px;
  background: var(--accent);
  color: #111827;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(16, 24, 40, .55);
}
.modal.active { display: flex; }
.modal__panel {
  width: min(540px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  animation: modalIn .25s ease both;
}
.modal__close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: var(--soft);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.footer { padding: 64px 0 24px; background: var(--charcoal); color: #d8e3e0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.footer img { max-width: 250px; background: #fff; padding: 10px; border-radius: 8px; }
.footer h3 { color: #fff; }
.footer a { display: block; margin: 8px 0; color: #d8e3e0; }
.socials { display: flex; flex-wrap: wrap; gap: 8px; }
.socials a { padding: 8px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; }
.copyright { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; }

.reveal, .md-card, .course-card, .story-card, .timeline-card, blockquote, .blog-card, .portfolio-card {
  animation: riseIn .65s ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(26px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes tabIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .hero__content { padding-bottom: 24px; }
  .focus-grid, .card-grid, .course-grid, .testimonial-grid, .blog-grid, .portfolio-grid, .student-project-grid, .intro-grid, .split, .contact-grid, .content-page, .career-grid, .course-hero-grid, .course-detail-layout, .footer-grid { grid-template-columns: 1fr 1fr; }
  .course-sidebar { position: static; }
  .course-tab-controls { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .topbar__inner { justify-content: center; text-align: center; }
  .brand img { width: min(220px, 54vw); }
  .hero-slide { min-height: 0; }
  .hero-banner-img { height: auto; min-height: 260px; object-fit: cover; }
  .hero__content { padding: 70px 0; }
  .hero p { font-size: 17px; }
  .section { padding: 58px 0; }
  .section-head { display: block; }
  .focus-grid, .card-grid, .course-grid, .testimonial-grid, .blog-grid, .portfolio-grid, .student-project-grid, .intro-grid, .split, .contact-grid, .content-page, .career-grid, .course-hero-grid, .course-detail-layout, .point-grid, .footer-grid { grid-template-columns: 1fr; }
  .learning-tabs { padding: 12px; }
  .premium-course h3, .internship-card h3 { min-height: 0; }
  .course-meta { display: grid; }
  .quick-inquiry { top: auto; bottom: 0; left: 16px; transform: none; border-radius: 8px 8px 0 0; }
}