/* =========================================================
   Ignition Edutech — Shared Stylesheet
   Color scheme sampled from the live site (NMIMS blog page)
   ========================================================= */

:root {
  /* Brand */
  --ie-orange: #f5922a;
  --ie-orange-dark: #d97a1a;
  --ie-green: #6c9218;
  --ie-green-dark: #547310;
  --ie-green-bright: #26c164;
  --ie-dark: #1a1a1a;
  --ie-dark-green: #24301a;
  --ie-dark-green-2: #2c3a1f;

  /* Tints / backgrounds */
  --ie-peach: #fef4e8;
  --ie-cream: #fef8e0;
  --ie-light-green: #f2f7e0;
  --ie-blush: #fff5f4;
  --ie-gray-bg: #f3f4f8;
}

/* =========================================================
   Header / Nav
   ========================================================= */

.btn-orange {
  background: var(--ie-orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(245, 146, 42, 0.28);
}
.btn-orange:hover {
  background: var(--ie-orange-dark);
  transform: translateY(-1px);
  color: white;
}
.btn-green {
  background: var(--ie-green-bright);
  color: #fff;
  box-shadow: 0 6px 16px rgba(38, 193, 100, 0.28);
}
.btn-green:hover {
  background: #1fa956;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ie-dark);
  border: 1.5px solid var(--ie-border);
}
.btn-outline:hover {
  border-color: rgba(0, 0, 0, 0.096);
  color: white;
}
.btn-block {
  width: 100%;
}

.nav-toggle {
  display: none;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* =========================================================
   Hero (page banners)
   ========================================================= */
.page-hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(15, 17, 13, 0.88), rgba(26, 29, 20, 0.72)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="500"><rect width="800" height="500" fill="%23394a20"/></svg>');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 64px 0 56px;
}
.page-hero .eyebrow {
  background: rgba(245, 146, 42, 0.2);
  color: #ffb46b;
}
.page-hero h1 {
  color: #fff;
  font-size: 40px;
  max-width: 760px;
  margin-top: 14px;
}
.page-hero h1 .accent {
  color: var(--ie-orange);
}
.page-hero p.lede {
  color: #d8dccf;
  max-width: 620px;
  font-size: 16.5px;
  margin-top: 14px;
}
.page-hero .hero-meta {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  font-size: 13px;
  color: #b7bcac;
  flex-wrap: wrap;
}
.page-hero .hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-hero .hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   Layout: content + sidebar
   ========================================================= */
.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 48px 0 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

.intro-block {
  border-left: 4px solid var(--ie-orange);
  background: var(--ie-peach);
  padding: 20px 24px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.intro-block ul {
  margin: 10px 0 0;
}
.intro-block li {
  list-style: none;
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 500;
}
.intro-block li::before {
  content: "?";
  color: var(--ie-orange);
  font-weight: 800;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.side-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ie-border);
}
.side-card .side-card-head {
  background: var(--ie-dark);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-card .side-card-head::before {
  content: "\25CF";
  color: var(--ie-green-bright);
  font-size: 10px;
}
.side-card .side-card-body {
  padding: 14px 18px;
  background: #fff;
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc-list li {
  margin-bottom: 4px;
}
.toc-list a {
  display: block;
  font-size: 13.5px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ie-text-muted);
}
.toc-list a:hover,
.toc-list a.active {
  background: var(--ie-light-green);
  color: var(--ie-green-dark);
  font-weight: 600;
}

.mini-cta {
  background: var(--ie-green-dark);
  color: #fff;
  text-align: center;
  padding: 22px 18px;
  border-radius: 10px;
}
.mini-cta p {
  font-size: 13px;
  color: #dfeecb;
  margin: 6px 0 14px;
}
.mini-cta .phone {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-top: 6px;
}

.quick-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.quick-facts li {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 9px 0;
  border-bottom: 1px solid var(--ie-border);
}
.quick-facts li:last-child {
  border-bottom: none;
}
.quick-facts .val {
  font-weight: 700;
  color: var(--ie-dark);
}

/* =========================================================
   Callout boxes
   ========================================================= */
.callout {
  border-radius: 10px;
  padding: 18px 22px;
  margin: 22px 0;
  display: flex;
  gap: 14px;
}
.callout .icon {
  flex: none;
  font-size: 18px;
}
.callout .body strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.callout p {
  margin: 0;
  font-size: 14.5px;
}

.callout-major {
  background: var(--ie-peach);
  border-left: 4px solid var(--ie-orange);
}
.callout-major strong {
  color: var(--ie-orange-dark);
}
.callout-tip {
  background: var(--ie-cream);
  border-left: 4px solid #e0b400;
}
.callout-tip strong {
  color: #9a7c00;
}
.callout-tip-green {
  background: var(--ie-light-green);
  border-left: 4px solid var(--ie-green);
}
.callout-tip-green strong {
  color: var(--ie-green-dark);
}

/* =========================================================
   Cards
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
.info-card {
  border: 1px solid var(--ie-border);
  border-radius: 10px;
  padding: 18px 20px;
}
.info-card .ic {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--ie-light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}
.info-card h4 {
  margin: 0 0 4px;
  font-size: 15.5px;
}
.info-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ie-text-muted);
}

/* Services grid (3 col) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #fff;
  border: 1px solid var(--ie-border);
  border-radius: 14px;
  padding: 26px 24px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(26, 26, 26, 0.08);
  border-color: transparent;
}
.service-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ie-orange);
  letter-spacing: 0.05em;
}
.service-card .ic-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ie-dark-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 12px 0 14px;
}
.service-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13.8px;
  color: var(--ie-text-muted);
  margin: 0;
}

/* =========================================================
   Numbered process timeline
   ========================================================= */
.process-track {
  position: relative;
  margin-top: 40px;
}
.process-track::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--ie-green) 0 8px,
    transparent 8px 16px
  );
}
.process-step {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}
.process-step:last-child {
  padding-bottom: 0;
}
.process-step .step-num {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ie-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  z-index: 1;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--ie-green);
}
.process-step.active .step-num {
  background: var(--ie-orange);
  box-shadow: 0 0 0 2px var(--ie-orange);
}
.process-step .step-body {
  padding-top: 6px;
}
.process-step .step-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ie-green-dark);
}
.process-step h3 {
  margin: 4px 0 6px;
  font-size: 19px;
}
.process-step p {
  margin: 0;
  color: var(--ie-text-muted);
  font-size: 14.5px;
  max-width: 620px;
}

/* =========================================================
   Tables
   ========================================================= */
table.ie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
  font-size: 14.5px;
  border-radius: 8px;
  overflow: hidden;
}
table.ie-table thead th {
  background: var(--ie-dark);
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
}
table.ie-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ie-border);
  color: var(--ie-text);
}
table.ie-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* =========================================================
   Tabs (interactive widget)
   ========================================================= */
.tab-widget {
  border: 1px solid var(--ie-border);
  border-radius: 14px;
  overflow: hidden;
  margin: 26px 0;
}
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  background: var(--ie-gray-bg);
  border-bottom: 1px solid var(--ie-border);
}
.tab-nav button {
  flex: 1 1 auto;
  min-width: 110px;
  border: none;
  background: transparent;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  color: var(--ie-text-muted);
  border-bottom: 3px solid transparent;
}
.tab-nav button.active {
  color: var(--ie-green-dark);
  border-bottom-color: var(--ie-green);
  background: #fff;
}
.tab-panels {
  padding: 22px 24px;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: fadein 0.25s ease;
}
.tab-panel h4 {
  margin: 0 0 8px;
  font-size: 16.5px;
}
.tab-panel ul {
  margin: 8px 0 0;
}
.tab-panel li {
  font-size: 14px;
  margin-bottom: 5px;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   Accordion (FAQ + checklist widget)
   ========================================================= */
.accordion {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ie-border);
}
.acc-item {
  border-bottom: 1px solid var(--ie-border);
}
.acc-item:last-child {
  border-bottom: none;
}
.acc-trigger {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--ie-dark);
}
.acc-trigger:hover {
  background: #fafafa;
}
.acc-trigger .plus {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ie-light-green);
  color: var(--ie-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.acc-item.open .acc-trigger .plus {
  background: var(--ie-orange);
  color: #fff;
  transform: rotate(45deg);
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: #fcfcfa;
}
.acc-panel-inner {
  padding: 2px 20px 18px;
  font-size: 14.3px;
  color: var(--ie-text-muted);
}
.acc-item.open .acc-panel {
  max-height: 400px;
}

/* =========================================================
   Quiz / stream selector widget
   ========================================================= */
.quiz-widget {
  background: var(--ie-dark-green);
  border-radius: 16px;
  padding: 30px;
  color: #fff;
  margin: 30px 0;
}
.quiz-widget h3 {
  color: #fff;
  margin-bottom: 6px;
}
.quiz-widget p.hint {
  color: #c9d6b4;
  font-size: 13.8px;
  margin: 0 0 18px;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 700px) {
  .quiz-options {
    grid-template-columns: repeat(2, 1fr);
  }
}
.quiz-options button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 12px 10px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.quiz-options button:hover {
  background: rgba(255, 255, 255, 0.16);
}
.quiz-options button.active {
  background: var(--ie-orange);
  border-color: var(--ie-orange);
}
.quiz-result {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  display: none;
}
.quiz-result.show {
  display: block;
  animation: fadein 0.3s ease;
}
.quiz-result strong {
  color: var(--ie-orange);
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: radial-gradient(
    120% 140% at 0% 0%,
    var(--ie-dark-green-2),
    var(--ie-dark) 75%
  );
  color: #fff;
  border-radius: 18px;
  padding: 40px;
  margin: 48px 0 8px;
}
.cta-band .cta-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.cta-band h2 {
  color: #fff;
  font-size: 26px;
  margin: 0;
}
.cta-band h2 .accent {
  color: var(--ie-orange);
}
.cta-band p.cta-copy {
  color: #cfd6c2;
  font-size: 14.5px;
  max-width: 640px;
  margin-top: 10px;
}
.cta-checks {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.cta-checks li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #e7ebd9;
}
.cta-checks li::before {
  content: "\2713";
  color: var(--ie-green-bright);
  font-weight: 800;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-contact {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 13.8px;
  color: #cfd6c2;
}
.cta-contact strong {
  color: #fff;
}

/* =========================================================
   Home hero
   ========================================================= */
.home-hero {
  background: linear-gradient(
    135deg,
    var(--ie-dark) 0%,
    var(--ie-dark-green) 100%
  );
  color: #fff;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.home-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 146, 42, 0.22),
    transparent 70%
  );
}
.home-hero .container {
  position: relative;
  z-index: 1;
}
.home-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffb46b;
}
.home-hero h1 {
  color: #fff;
  font-size: 44px;
  max-width: 700px;
  margin: 16px 0 6px;
}
.home-hero h1 .accent {
  color: var(--ie-orange);
}
.home-hero h2.subline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: #dfe6cd;
  max-width: 640px;
  margin: 0 0 22px;
}
.home-hero p.lede {
  color: #c3c9b6;
  max-width: 600px;
  font-size: 15.5px;
}
.home-checks {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  max-width: 620px;
}
.home-checks li {
  font-size: 14.5px;
  color: #eef1e4;
  display: flex;
  gap: 8px;
}
.home-checks li::before {
  content: "\2713";
  color: var(--ie-green-bright);
  font-weight: 800;
}
.home-hero .hero-actions {
  margin-top: 8px;
}
.home-hero .tagline {
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ie-orange);
}
.uni-strip {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.uni-strip p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a9b096;
  margin: 0 0 4px;
}
.uni-strip .mark {
  color: var(--ie-green-bright);
  font-weight: 600;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ie-gray-bg);
  padding: 56px 0 0;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-grid h4 {
  font-size: 14px;
  color: var(--ie-orange);
  margin-bottom: 14px;
}
.footer-grid p {
  font-size: 13.5px;
  color: var(--ie-text-muted);
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  margin-bottom: 9px;
  font-size: 13.5px;
}
.footer-grid a {
  color: var(--ie-text-muted);
}
.footer-grid a:hover {
  color: var(--ie-green-dark);
}
.footer-contact li {
  display: flex;
  gap: 8px;
  color: var(--ie-text-muted);
}
.footer-bottom {
  border-top: 1px solid var(--ie-border);
  padding: 18px 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--ie-text-muted);
}

.float-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}
.float-actions a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  font-size: 19px;
}
.float-actions .wa {
  background: #25d366;
}
.float-actions .call {
  background: var(--ie-orange);
}
.float-actions .mail {
  background: var(--ie-dark);
}

@media (max-width: 700px) {
  .page-hero h1,
  .home-hero h1 {
    font-size: 30px;
  }
  .cta-checks,
  .home-checks {
    grid-template-columns: 1fr;
  }
  .quiz-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   Courses module — matches live homepage palette
   (navy / orange / blue-CTA / lime-green accents)
   ========================================================= */
:root {
  --navy: #0b2a49;
  --navy-deep: #001435;
  --navy-mid: #163e72;
  --gold: #e8c458;
  --blue-cta: #2563ea;
  --blue-cta-dark: #1d4fc4;
  --green-check: #1f8a5f;
  --lime: #c9ec78;
  --teal-circle: #1c3f3d;
}

.btn-blue {
  background: var(--blue-cta);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 234, 0.3);
}
.btn-blue:hover {
  background: var(--blue-cta-dark);
  transform: translateY(-1px);
}

/* Courses hero */
.courses-hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(11, 42, 73, 0.94), rgba(0, 20, 53, 0.9)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="500"><rect width="800" height="500" fill="%230b2a49"/></svg>');
  background-size: cover;
  color: #fff;
  padding: 60px 0 46px;
}
.courses-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #cfe0ff;
}
.courses-hero h1 {
  color: #fff;
  font-size: 38px;
  max-width: 720px;
  margin-top: 14px;
}
.courses-hero h1 .accent {
  color: var(--gold);
}
.courses-hero p.lede {
  color: #c3d2e8;
  max-width: 600px;
  font-size: 16px;
  margin-top: 12px;
}

/* Search + filter bar */
.course-toolbar {
  background: #fff;
  border: 1px solid var(--ie-border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 30px rgba(11, 42, 73, 0.1);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.course-search {
  flex: 1 1 260px;
  position: relative;
}
.course-search input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid var(--ie-border);
  border-radius: 9px;
  font-size: 14.5px;
  font-family: var(--font-body);
}
.course-search::before {
  content: "\1F50D";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ie-text-muted);
  font-size: 14px;
}
.course-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.course-filters button {
  border: 1px solid var(--ie-border);
  background: #fff;
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.course-filters button.active,
.course-filters button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Course grid + card */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
@media (max-width: 900px) {
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}

.course-card {
  background: #fff;
  border: 1px solid var(--ie-border);
  border-radius: 14px;
  padding: 22px;
  border-bottom: 4px solid var(--lime);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(11, 42, 73, 0.12);
}
.course-card .cc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.course-card .cc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal-circle);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: none;
}
.course-card h3 {
  font-size: 17px;
  margin: 0;
}
.course-card .cc-cat {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-cta);
}
.course-card p.cc-desc {
  font-size: 13.7px;
  color: var(--ie-text-muted);
  flex: 1;
  margin: 0 0 14px;
}
.course-card .cc-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.course-card .cc-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: #eef3fb;
  padding: 5px 10px;
  border-radius: 999px;
}
.course-card .btn {
  width: 100%;
}

/* Course detail hero */
.course-hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(11, 42, 73, 0.94), rgba(0, 20, 53, 0.88)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="500"><rect width="800" height="500" fill="%230b2a49"/></svg>');
  background-size: cover;
  color: #fff;
  padding: 56px 0 42px;
}
.course-hero .breadcrumb {
  font-size: 12.5px;
  color: #a9bfdf;
  margin-bottom: 14px;
}
.course-hero .breadcrumb a {
  color: #a9bfdf;
}
.course-hero .breadcrumb a:hover {
  color: #fff;
}
.course-hero .cat-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(232, 196, 88, 0.16);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.course-hero h1 {
  color: #fff;
  font-size: 34px;
  max-width: 700px;
  margin: 0 0 10px;
}
.course-hero p.lede {
  color: #c3d2e8;
  max-width: 600px;
  font-size: 15.5px;
  margin: 0 0 20px;
}
.course-hero .quick-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.course-hero .quick-badges span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 13px;
  color: #e7edf7;
  display: flex;
  gap: 6px;
  align-items: center;
}
.course-hero .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Navy CTA band (course-specific) */
.cta-band-navy {
  background: linear-gradient(120deg, var(--navy), var(--navy-deep));
  color: #fff;
  border-radius: 18px;
  padding: 34px 36px;
  margin: 40px 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band-navy h3 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 21px;
}
.cta-band-navy p {
  color: #c3d2e8;
  margin: 0;
  font-size: 13.8px;
}
.cta-band-navy .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Highlight strip */
.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0;
}
@media (max-width: 760px) {
  .highlight-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
.highlight-strip .hs-item {
  background: #eef3fb;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.highlight-strip .hs-item .hv {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.highlight-strip .hs-item .hl {
  font-size: 12px;
  color: var(--ie-text-muted);
  margin-top: 2px;
}

/* Career path pills */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
}
.pill-list span {
  background: #eef3fb;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}
.check-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  margin-bottom: 9px;
  color: var(--ie-text);
}
.check-list li::before {
  content: "\2713";
  color: var(--green-check);
  font-weight: 800;
  flex: none;
}

.not-found-box {
  text-align: center;
  padding: 80px 20px;
}
.not-found-box h1 {
  font-size: 32px;
}
.not-found-box p {
  color: var(--ie-text-muted);
  margin-bottom: 22px;
}

/* =========================================================
   Courses Marketplace — listing page (Collegedunia-style, but ours)
   ========================================================= */
.courses-layout {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0 60px;
}
@media (max-width: 940px) {
  .courses-layout {
    grid-template-columns: 1fr;
  }
}

/* Filter panel */
.filter-panel {
  position: static;
  top: 96px;
  background: #fff;
  border: 1px solid var(--ie-border);
  border-radius: 14px;
  overflow: hidden;
}
.filter-panel .fp-head {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14.5px;
}
.filter-panel .fp-head button {
  background: none;
  border: none;
  color: #a9bfdf;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.filter-group {
  padding: 16px 18px;
  border-bottom: 1px solid var(--ie-border);
}
.filter-group:last-child {
  border-bottom: none;
}
.filter-group h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 12px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 13.8px;
  color: var(--ie-text);
  cursor: pointer;
}
.filter-option input {
  accent-color: var(--blue-cta);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.filter-option .fo-count {
  margin-left: auto;
  color: var(--ie-text-muted);
  font-size: 12px;
}
.fee-range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fee-range-inputs input[type="range"] {
  width: 100%;
  accent-color: var(--blue-cta);
}
.fee-range-value {
  font-size: 12.5px;
  color: var(--ie-text-muted);
  margin-top: 8px;
}

/* Toolbar */
.listing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.listing-count {
  font-size: 14.5px;
  color: var(--ie-text);
}
.listing-count strong {
  color: var(--navy);
}
.listing-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ie-text-muted);
}
.listing-sort select {
  padding: 9px 12px;
  border: 1px solid var(--ie-border);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: var(--font-body);
  color: var(--navy);
  font-weight: 600;
}
.active-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.active-chips .chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eef3fb;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 10px 6px 12px;
  border-radius: 999px;
}
.active-chips .chip button {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}

/* Listing cards */
.listing-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.listing-card {
  background: #fff;
  border: 1px solid var(--ie-border);
  border-radius: 14px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
@media (max-width: 720px) {
  .listing-card {
    grid-template-columns: 1fr;
  }
}
.listing-card .lc-uni-badge {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--teal-circle);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  flex: none;
}
.listing-card .lc-main .lc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.listing-card .lc-tags span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: 999px;
}
.listing-card .lc-tags .tag-cat {
  background: #f5922a1c;
  color: #f5922a;
}
.listing-card .lc-tags .tag-popular {
  background: rgba(232, 196, 88, 0.18);
  color: #a3801f;
}
.listing-card h3 {
  margin: 0 0 3px;
  font-size: 17.5px;
}
.listing-card h3 a {
  color: var(--navy);
}
.listing-card .lc-uni-name {
  font-size: 13.5px;
  color: var(--ie-text-muted);
  margin-bottom: 8px;
}
.listing-card .lc-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ie-text-muted);
}
.listing-card .lc-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.listing-card .lc-rating {
  color: var(--gold);
  font-weight: 700;
}
.listing-card .lc-side {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.listing-card .lc-fees {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.listing-card .lc-fees .lbl {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ie-text-muted);
  font-family: var(--font-body);
}
.listing-card .lc-actions {
  display: flex;
  gap: 8px;
}
.listing-card .lc-actions .btn {
  padding: 9px 14px;
  font-size: 13px;
}
.compare-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ie-text-muted);
  cursor: pointer;
}
.compare-check input {
  accent-color: var(--blue-cta);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--ie-text-muted);
}
.no-results .nr-icon {
  font-size: 34px;
  margin-bottom: 10px;
}

/* Compare bar + modal */
.compare-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  bottom: 20px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease;
  max-width: 92vw;
}
.compare-bar.show {
  transform: translateX(-50%) translateY(0);
}
.compare-bar .cb-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.compare-bar .cb-chips span {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12.5px;
}
.compare-bar .cb-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: none;
}
.compare-bar button.cb-clear {
  background: none;
  border: none;
  color: #a9bfdf;
  font-size: 12.5px;
  cursor: pointer;
}

.compare-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 35, 0.6);
  z-index: 300;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px;
  overflow-y: auto;
}
.compare-modal-overlay.show {
  display: flex;
}
.compare-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  padding: 26px 28px 30px;
}
.compare-modal .cm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.compare-modal h3 {
  margin: 0;
  font-size: 20px;
}
.compare-modal .cm-close {
  background: var(--ie-gray-bg);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
.compare-modal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.8px;
}
.compare-modal th,
.compare-modal td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--ie-border);
  text-align: left;
}
.compare-modal th {
  color: var(--ie-text-muted);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.compare-modal td.cm-course {
  font-weight: 700;
  color: var(--navy);
}

/* Course detail: "Available at these universities" table */
.uni-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 8px;
  font-size: 14px;
}
.uni-compare-table thead th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.uni-compare-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--ie-border);
}
.uni-compare-table tbody tr:hover {
  background: #f7f9fc;
}
.uni-compare-table .uc-name {
  font-weight: 700;
  color: var(--navy);
}
.uni-compare-table .uc-badges {
  display: flex;
  gap: 5px;
  margin-top: 3px;
}
.uni-compare-table .uc-badges span {
  font-size: 10.5px;
  background: #eef3fb;
  color: var(--blue-cta);
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
}
.uni-compare-table .btn {
  padding: 8px 14px;
  font-size: 12.5px;
}

.mini-cta-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  text-align: center;
  padding: 22px 18px;
  border-radius: 10px;
}
.mini-cta-navy p {
  font-size: 13px;
  color: #c3d2e8;
  margin: 6px 0 14px;
}
.mini-cta-navy .phone {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-top: 6px;
}

/* =========================================================
   RESPONSIVE FIXES
========================================================= */

/************ 1200px ************/
@media (max-width: 1200px) {
  .courses-layout {
    grid-template-columns: 240px 1fr;
    gap: 20px;
  }

  .listing-card {
    gap: 15px;
  }

  .listing-card h3 {
    font-size: 16px;
  }
}

/************ 992px ************/
@media (max-width: 992px) {
  .courses-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }

  .listing-card {
    grid-template-columns: 70px 1fr;
  }

  .listing-card .lc-side {
    grid-column: 1 / -1;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    text-align: left;
  }

  .listing-card .lc-actions {
    flex-wrap: wrap;
  }
}

/************ 768px ************/
@media (max-width: 768px) {
  .courses-hero {
    padding: 45px 0;
  }

  .courses-hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .courses-hero p {
    font-size: 15px;
  }

  .course-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .course-search {
    width: 100%;
  }

  .course-filters {
    justify-content: flex-start;
  }

  .course-filters button {
    font-size: 13px;
    padding: 8px 14px;
  }

  .listing-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .listing-sort {
    width: 100%;
  }

  .listing-sort select {
    width: 100%;
  }

  .listing-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .lc-uni-badge {
    margin-bottom: 10px;
  }

  .listing-card .lc-side {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .listing-card .lc-actions {
    width: 100%;
  }

  .listing-card .lc-actions .btn {
    flex: 1;
    text-align: center;
  }

  .cta-band-navy {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-navy .actions {
    width: 100%;
  }

  .cta-band-navy .btn {
    flex: 1;
    text-align: center;
  }
}

/************ 576px ************/
@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .courses-hero h1 {
    font-size: 26px;
  }

  .courses-hero p {
    font-size: 14px;
  }

  .listing-card {
    padding: 16px;
  }

  .listing-card h3 {
    font-size: 17px;
  }

  .listing-card .lc-meta {
    flex-direction: column;
    gap: 8px;
  }

  .compare-check {
    margin-top: 5px;
  }

  .listing-card .lc-fees {
    font-size: 20px;
  }

  .listing-card .lc-actions {
    flex-direction: column;
  }

  .listing-card .lc-actions .btn {
    width: 100%;
  }

  .compare-bar {
    width: 95%;
    left: 50%;
    transform: translateX(-50%) translateY(120%);

    flex-direction: column;
    align-items: stretch;

    padding: 16px;
  }

  .compare-bar.show {
    transform: translateX(-50%) translateY(0);
  }

  .compare-bar .cb-actions {
    width: 100%;
  }

  .compare-bar .btn-blue {
    width: 100%;
  }

  .compare-modal {
    padding: 20px;
  }
}

/************ 420px ************/
@media (max-width: 420px) {
  .courses-hero h1 {
    font-size: 22px;
  }

  .course-filters {
    gap: 6px;
  }

  .course-filters button {
    width: 100%;
  }

  .listing-card {
    border-radius: 10px;
  }

  .listing-card h3 {
    font-size: 15px;
  }

  .listing-card .lc-fees {
    font-size: 18px;
  }
}

/*====================================================
  COURSE DETAIL RESPONSIVE
====================================================*/

/************* 1200px *************/
@media (max-width: 1200px) {
  .layout {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }

  .course-hero h1 {
    font-size: 34px;
  }
}

/************* 992px *************/
@media (max-width: 992px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: 0;
    order: -1;
    margin-bottom: 30px;
  }

  .side-card {
    margin-bottom: 20px;
  }

  .course-hero {
    padding: 55px 0 40px;
  }

  .course-hero h1 {
    font-size: 30px;
  }

  .quick-badges {
    gap: 10px;
  }

  .quick-badges span {
    font-size: 13px;
  }

  .cta-band-navy {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-navy .actions {
    width: 100%;
  }
}

/************* 768px *************/
@media (max-width: 768px) {
  .course-hero {
    text-align: left;
    padding: 45px 0;
  }

  .course-hero h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  .course-hero .lede {
    font-size: 15px;
  }

  .quick-badges {
    display: flex;
    flex-wrap: wrap;
  }

  .quick-badges span {
    flex: 1 1 calc(50% - 10px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .section-heading {
    flex-wrap: wrap;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .uni-compare-table {
    min-width: 700px;
  }

  .pill-list {
    gap: 8px;
  }

  .pill-list span {
    font-size: 12px;
  }

  .cta-band-navy {
    padding: 30px 24px;
  }

  .cta-band-navy h3 {
    font-size: 24px;
  }

  .cta-band-navy .actions {
    display: flex;
    flex-direction: column;
  }

  .cta-band-navy .btn {
    width: 100%;
    text-align: center;
  }
}

/************* 576px *************/
@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .course-hero h1 {
    font-size: 24px;
  }

  .course-hero .lede {
    font-size: 14px;
  }

  .breadcrumb {
    font-size: 12px;
    line-height: 1.6;
  }

  .cat-badge {
    font-size: 11px;
  }

  .quick-badges {
    flex-direction: column;
  }

  .quick-badges span {
    width: 100%;
  }

  .content {
    overflow: hidden;
  }

  .section-heading {
    margin-top: 30px;
  }

  .section-heading h2 {
    font-size: 22px;
  }

  .check-list li {
    font-size: 14px;
  }

  .quick-facts li {
    font-size: 13px;
  }

  .side-card {
    border-radius: 10px;
  }

  .acc-trigger {
    font-size: 14px;
    line-height: 1.5;
  }

  .acc-panel-inner {
    font-size: 14px;
  }

  .cta-band-navy {
    padding: 24px 18px;
  }

  .cta-band-navy h3 {
    font-size: 22px;
  }

  .cta-band-navy p {
    font-size: 14px;
  }
}

/************* 420px *************/
@media (max-width: 420px) {
  .course-hero {
    padding: 40px 0;
  }

  .course-hero h1 {
    font-size: 22px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    font-size: 14px;
    padding: 12px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .pill-list span {
    width: 100%;
    text-align: center;
  }

  .mini-cta-navy {
    padding: 20px 16px;
  }

  .mini-cta-navy .phone {
    font-size: 18px;
  }
}
