@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* p{
    font-family: "Plus Jakarta Sans", sans-serif;
    font-family: "Outfit", sans-serif;
} */

:root {
  --text-color: #4b5563;
  --primary-color: #f9fafb;
  --accent-color: #9e1e22;
  --heading-color: #111111;

  --f-display: "Outfit", system-ui, sans-serif;
  --f-body: "Plus Jakarta Sans", system-ui, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}
p {
  font-size: 16px;
}
a {
  text-decoration: none;
  transition: color 0.16s ease;
}
li {
  list-style: none;
}
ul {
  padding: 0;
  margin: 0;
}
body {
  background-color: #fff;
}
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1330px;
  }
}
@media (max-width: 1366px) {
  .container {
    max-width: 1200px;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
  background-color: var(--primary-color);
  border-bottom: 1px solid #eeeeee;
  transition:
    padding 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Homepage header only */
body.home-page .navbar {
  position: absolute;
  background-color: transparent;
  border-bottom-color: transparent;
}

/* Scrolled header — homepage and inner pages */
.navbar.is-stuck,
body.home-page .navbar.is-stuck {
  position: fixed;
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* animation: headerSlideDown 0.35s ease; */
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar-brand {
  position: relative;
  z-index: 1002;
}

.navbar-brand img {
  width: 8vw;
  min-width: 100px;
  max-width: 235px;
  transition: width 0.3s ease;
}

.navbar-nav {
  gap: 30px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 8px 0 !important;
  color: var(--text-color) !important;
  text-transform: capitalize;
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--accent-color);
  border-radius: 10px;
  transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.nav-btn {
  margin: 0;
  padding: 0;
}

.navbar .btn {
  padding: 10px 20px;
  color: #fff;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(155, 28, 28, 0.22);
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.navbar .btn:hover {
  color: #fff;
  background: #80171b;
  border-color: #80171b;
  transform: translateY(-3px);
  box-shadow: 0 14px 22px rgba(155, 28, 28, 0.3);
}

/* Navbar toggle */
.navbar-toggler {
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: var(--accent-color);
  border: none !important;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(158, 30, 34, 0.25);
}

.navbar-toggler:focus {
  box-shadow: 0 8px 22px rgba(158, 30, 34, 0.25) !important;
}

.navbar-toggler .navbar-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.navbar-toggler .navbar-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

/* Hamburger to cross */
.navbar-toggler[aria-expanded="true"] .navbar-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Prevent scrolling while mobile menu is open */
body.menu-open {
  overflow: hidden;
}


/* =========================================
   MEGA MENU 
   ========================================= */

/* Courses link + caret button */
.navbar-nav .has-mega {
  display: flex;
  align-items: center;
  gap: 2px;
}

.mega-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: var(--text-color);
  background: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mega-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s ease;
}

.mega-toggle:hover,
.has-mega.is-open .mega-toggle {
  color: var(--accent-color);
}

.mega-toggle:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.has-mega.is-open .mega-toggle::before {
  transform: translateY(1px) rotate(225deg);
}

.has-mega.is-open > .nav-link {
  color: var(--accent-color) !important;
}

.has-mega.is-open > .nav-link::after {
  width: 100%;
}

/* Desktop panel — navbar (sticky/fixed/absolute) is the positioning parent */
.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding-top: 10px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.has-mega.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding: 32px 40px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

/* Category colours: BCAT uses your accent red, the rest are tuned to sit with it */
/* .mega-col {
  --col: var(--accent-color);
} */

/* .mega-col--bcat {
  --col: var(--accent-color);
} */

/* .mega-col--ecat {
  --col: #d39200;
}

.mega-col--mdcat {
  --col: #3f86c9;
}

.mega-col--intl {
  --col: #4a9a42;
} */

.mega-title {
  margin: 0 0 12px;
  padding-bottom: 10px;
  color: var(--accent-color);
  border-bottom: 2px solid
    color-mix(in srgb, var(--accent-color) 20%, transparent);
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.mega-list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-list a {
  display: block;
  padding: 6px 0;
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.mega-list a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.mega-list a:focus-visible {
  color: var(--accent-color);
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu,
  .mega-list a,
  .mega-toggle::before {
    transition: none;
  }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

   /* Tablet / small laptop */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .mega-menu__inner {
    gap: 24px;
    padding: 28px 28px 24px;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 15px 0;
    background-color: var(--primary-color);
  }

  body.home-page .navbar {
    background-color: transparent;
  }

  .navbar.is-stuck,
  body.home-page .navbar.is-stuck {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
  }

  .navbar-brand img {
    width: 125px;
    min-width: 125px;
  }

  .navbar.is-stuck .navbar-brand img {
    width: 115px;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1001;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    width: min(86%, 380px);
    height: 100dvh;
    padding: 105px 28px 35px;
    visibility: hidden;
    background:
      radial-gradient(
        circle at top right,
        rgba(158, 30, 34, 0.1),
        transparent 35%
      ),
      #ffffff;
    box-shadow: -15px 0 40px rgba(17, 17, 17, 0.14);
    transform: none;
    transition:
      right 0.35s ease,
      visibility 0.35s ease;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    right: 0;
    visibility: visible;
  }

  .navbar-collapse.collapsing {
    height: 100dvh !important;
  }

  .navbar-nav {
    width: 100%;
    gap: 0;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid #eeeeee;
  }

  .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px !important;
    color: var(--heading-color) !important;
    font-family: var(--f-display);
    font-size: 17px;
    font-weight: 600;
  }

  .navbar-nav .nav-link::after {
    width: 7px;
    height: 7px;
    margin-right: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 7px;
    opacity: 1;
    transform: scale(1);
  }

  .nav-btn {
    width: 100%;
    margin-top: auto;
  }

  .nav-btn li {
    width: 100%;
  }

  .navbar .nav-btn .btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
  }

  /* =========================================
   MEGA MENU 
   ========================================= */
  .navbar-collapse {
    overflow-y: auto;
  }

  .navbar-nav .has-mega {
    flex-wrap: wrap;
    gap: 0;
  }

  .navbar-nav .has-mega > .nav-link {
    flex: 1 1 0;
  }

  .navbar-nav .has-mega > .nav-link::after {
    display: none;
  }

  .mega-toggle {
    width: 40px;
    height: 40px;
    color: var(--heading-color);
  }

  .mega-menu {
    position: static;
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition:
      grid-template-rows 0.3s ease,
      visibility 0.3s ease;
  }

  .has-mega.is-open .mega-menu {
    grid-template-rows: 1fr;
  }

  .mega-menu .container {
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .mega-menu__inner {
    display: block;
    padding: 0 0 12px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .mega-col {
    padding: 12px 0 4px 12px;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 10px;
  }

  .mega-title {
    margin-bottom: 6px;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 15px;
  }

  .mega-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background-image: url(../images/Section.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 900px;
  padding: 210px 0 60px;
}

.hero .hero-copy h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 22px;
}
.hero .hero-copy h1 .accent {
  color: var(--accent-color);
}
.hero .hero-copy .hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-color);
  font-family: var(--f-body);
  margin: 0 0 32px;
  max-width: 450px;
}
.hero .hero-copy .hero-lede strong {
  color: var(--heading-color);
}
.hero .hero-copy .hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.hero .hero-copy .hero-checks li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--f-body);
}
.hero .hero-copy .ic-check {
  width: 18px;
  height: 18px;
  flex: none;
}

.hero .hero-copy .hero-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  padding: 8px;
  max-width: 544px;
}
.hero .hero-copy .sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.hero .hero-copy .sel {
  flex: 1;
  min-width: 0;
}
.hero .hero-copy .sel select {
  width: 100%;
  border: 0;
  background: none;
  appearance: none;
  font-family: var(--f-body);
  font-size: 13.5px;
  color: var(--text-color);
  padding: 11px 30px 11px 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%23111' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  cursor: pointer;
}
.hero .hero-copy .sel select:focus {
  outline: none;
}
.hero .hero-copy .sel:focus-within {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: 8px;
}
.hero .hero-copy .sel-divider {
  width: 1px;
  height: 32px;
  background: #e0e0e0;
  flex: none;
}
.hero .hero-copy .hero-form .btn {
  border-radius: 8px;
  padding: 12px 28px;
  flex: none;
  font-size: 13.5px;
  font-family: var(--f-body);
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px 0 rgba(155, 28, 28, 0.22);
  transition: 0.3s ease;
  border: none;
}
.hero .hero-copy .hero-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(155, 28, 28, 0.3);
}
.hero .hero-art {
  position: relative;
}
.hero .hero-art img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 650px;
  border-radius: 20px;
  box-shadow: 0 30px 70px 0 rgba(17, 17, 17, 0.16);
}
.hero .hero-art .chip-a {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 21px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(8px);
}
.hero-art .chip-a svg {
  width: 28px;
  height: 28px;
}
.hero-art .chip-a .position-icon {
  padding: 8px;
  border-radius: 13px;
  background: linear-gradient(160deg, #3a3a3a 0%, #151515 100%);
  box-shadow:
    0 10px 20px 0 rgba(17, 17, 17, 0.28),
    0 1px 0 0 rgba(255, 255, 255, 0.28) inset;
}
.hero-art .chip-a .position-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.hero-art .chip-a .position-text b {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--heading-color);
}
.hero-art .chip-a .position-text small {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--text-color);
}
.hero .hero-art .chip-b {
  top: auto;
  bottom: -10px;
  left: -8%;
  transform: none;
}
.hero .hero-art .chip-c {
  top: auto;
  bottom: -10px;
  right: -8%;
  left: auto;
  transform: none;
}
.hero-art .chip-c .position-icon {
  background: linear-gradient(
    160deg,
    var(--color-red-48, #c23434) 0%,
    var(--color-red-36, #9b1c1c) 55%,
    var(--color-red-28, #7b1515) 100%
  );
  box-shadow:
    0 10px 20px 0 rgba(155, 28, 28, 0.32),
    0 1px 0 0 rgba(255, 255, 255, 0.45) inset;
}
.hero-art .chip-c .position-text b {
  color: var(--accent-color);
}

/* ========================================
   HERO CHIPS - FLOATING ANIMATION
======================================== */

.hero .hero-art .chip-a {
  animation: chipFloatA 3s ease-in-out infinite;
  will-change: transform;
}

.hero .hero-art .chip-b {
  animation: chipFloatB 3.5s ease-in-out infinite;
  animation-delay: -0.8s;
  will-change: transform;
}

.hero .hero-art .chip-c {
  animation: chipFloatC 3.2s ease-in-out infinite;
  animation-delay: -1.4s;
  will-change: transform;
}

/* ========================================
   DESKTOP ANIMATION
======================================== */

@keyframes chipFloatA {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(-50%) translateY(-12px) scale(1.025);
  }
}

@keyframes chipFloatB {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg) scale(1.025);
  }
}

@keyframes chipFloatC {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-11px) rotate(1deg) scale(1.025);
  }
}

/* ============================================================
   Ticker
   ============================================================ */
.ticker {
  padding: 30px 0;
  background-color: var(--primary-color);
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  overflow: hidden;
}
.ticker .myswiper1::before,
.ticker .myswiper1::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 10px;
  pointer-events: none;
}
.ticker .myswiper1::before {
  left: 0;
  background: linear-gradient(to right, #f9fafb, transparent);
}

.ticker .myswiper1::after {
  right: 0;
  background: linear-gradient(to left, #f9fafb, transparent);
}
.ticker .myswiper1 {
  margin: 0 -40rem 0 0;
}
.ticker .myswiper1 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.ticker .ticker-label span {
  color: #999;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.15px;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs {
  padding: 120px 0;
  background-image: url(../images/Courses.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.programs .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-color);
}
.programs .link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}
.programs .link-arrow:hover svg {
  transform: translateX(4px);
}
.programs .sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.programs .sec-head h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin: 0;
  max-width: 22ch;
}

.programs .prog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.programs .prog {
  background-color: var(--primary-color);
  border: 1px solid #ebebeb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;

  will-change: transform;
}

/* Icon */
.prog-ic {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: var(--heading-color);
  transition: color 0.35s ease;
}

.prog-ic svg {
  display: block;
  width: 32px;
  height: 32px;
}

/* Override inline SVG colors */
.prog-ic svg [stroke] {
  stroke: currentColor;
  transition: stroke 0.35s ease;
}

.prog-ic svg [fill]:not([fill="none"]) {
  fill: currentColor;
  transition: fill 0.35s ease;
}

/* Heading */
.prog h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin: 0 0 8px;

  transition: color 0.35s ease;
}

/* Subtitle */
.prog-sub {
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.46px;
  text-transform: uppercase;
  color: #999999;
  line-height: 1.5;
  margin: 0 0 16px;

  transition: color 0.35s ease;
}

/* Description */
.prog-txt {
  font-family: var(--f-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: #999999;
  margin: 0 0 26px;
  flex: 1;

  transition: color 0.35s ease;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tags span {
  background-color: #f4f4f4;
  color: #666666;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;

  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}

/* CTA */
.prog-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: auto;

  transition: color 0.35s ease;
}

.prog-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Complete card hover */
.programs .prog:hover {
  background-color: #050606;
  border-color: #050606;
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.programs .prog:hover .prog-ic {
  color: var(--accent-color);
}

.programs .prog:hover h3 {
  color: #ffffff;
}

.programs .prog:hover .prog-txt {
  color: #fff;
}

.programs .prog:hover .tags span {
  background-color: #2d1414;
  color: #f05f53;
}

.programs .prog:hover .prog-cta {
  color: var(--accent-color);
}

.programs .prog:hover .prog-cta svg {
  transform: translateX(4px);
}

/* Keyboard accessibility */
.programs .prog:focus-within {
  background-color: #050606;
  border-color: #050606;
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

/* Respect reduced-motion setting */
@media (prefers-reduced-motion: reduce) {
  .programs .prog,
  .programs .prog * {
    transition-duration: 0.01ms;
  }
}

/* ============================================================
   MATERIAL TABS
   ============================================================ */

.section-material {
  padding: 90px 0;
  background: var(--primary-color);
}

/* Heading */
.section-material .sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-material .sec-head h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin: 0;
  max-width: 560px;
}

.sec-head-split p {
  font-family: var(--f-body);
  max-width: 380px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-color);
}

/* Tabs */
.filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.pill {
  font-family: var(--f-display);
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #e4e5ea;
  border-radius: 100px;
  color: #4a4c55;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: #b8b8bc;
}

.pill i {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--heading-color);
}

.pill em {
  min-width: 22px;
  padding: 2px 7px;
  border-radius: 100px;
  background: #f1f1f3;
  color: #9b9ba1;
  font-size: 11px;
  font-style: normal;
  text-align: center;
}

.pill.is-active {
  background: var(--heading-color);
  border-color: var(--heading-color);
  color: #ffffff;
}

.pill.is-active i {
  background: var(--accent-color);
}

.pill.is-active em {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.filter-note {
  font-family: var(--f-body);
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-color);
}

/* Main grid */
.material-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: start;
}

.mat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 14px;
}

/* Material cards */
.mat {
  min-height: 158px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  background: #fdfdfe;
  border: 1px solid #ececf0;
  border-radius: 18px;
  color: var(--heading-color);
  text-decoration: none;

  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.mat:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 28, 28, 0.22);
  box-shadow: 0 16px 35px rgba(20, 20, 30, 0.1);
}

.mat-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.mat-top h4 {
  flex: 1;
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
}

.mat > p {
  flex: 1;
  margin: 0 0 12px;
  color: #8b8d96;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tags-soft span {
  padding: 3px 8px;
  background: #f2f2f4;
  border-radius: 100px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
}

.mat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 11px;
  margin-top: auto;
  border-top: 1px solid #ededf0;
}

.mat-foot b {
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 700;
}

.mat-add {
  font-family: var(--f-body);
  color: var(--accent-color);
  font-size: 11.5px;
  font-weight: 600;
}

/* Right column */
.mat-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.promo {
  position: relative;
  min-height: 158px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(150, 34, 42, 0.85),
      transparent 42%
    ),
    linear-gradient(145deg, #19191b, #09090a);
  border-radius: 20px;
  color: #ffffff;
}

.promo-orb {
  display: none;
}

.promo-eyebrow {
  margin: 0 0 10px;
  color: #e8767b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.promo h4 {
  margin: 0 0 11px;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.promo-txt {
  font-family: var(--f-body);
  font-weight: 500;
  margin: 0 0 20px;
  color: #a8aab4;
  font-size: 12.5px;
  line-height: 1.55;
}

.promo-cta {
  font-family: var(--f-body);
  align-self: flex-end;
  margin-top: auto;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.promo-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}
.promo-cta:hover svg {
  transform: translateX(4px);
}
.promo-cta:hover {
  color: var(--accent-color);
}

.inside {
  padding: 22px;
  background: #fdfdfe;
  border: 1px solid #ececf0;
  border-radius: 20px;
}

.inside-title {
  margin: 0 0 16px;
  color: #a6a8b0;
  font-size: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.inside ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.inside li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--f-body);
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.tick {
  width: 16px;
  height: 16px;
  flex: none;
  display: grid;
  place-items: center;
  margin-top: 1px;
  background: rgba(200, 45, 54, 0.1);
  border-radius: 50%;
  color: #d12e37;
  font-size: 9px;
  font-weight: 700;
}

.inside-counselor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--accent-color);
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}
.inside-counselor svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}
.inside-counselor:hover svg {
  transform: translateX(4px);
}
.inside-counselor:hover {
  color: var(--heading-color);
}
/* Card change animation */
.mat-list.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.mat-list {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.promo,
.inside {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.promo.is-changing,
.inside.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

/* ============================================================
   FUTURE OF LEARNING
   ============================================================ */

.section-future {
  position: relative;
  overflow: hidden;
  padding: 90px 0 44px;
  background:
    radial-gradient(circle at 92% 0%, rgba(119, 18, 25, 0.28), transparent 34%),
    linear-gradient(145deg, #111112, #080809);
  color: #ffffff;
}

/* Top area */
.future-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0px, 0.95fr);
  align-items: center;
  gap: 50px;
  margin-bottom: 58px;
}

.future-copy h2 {
  max-width: 590px;
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--f-display);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -2.4px;
}

.future-lede {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

/* Feature chips */
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
}

.fchip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 11px 17px 11px 11px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  color: #ffffff;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.fchip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.fchip i {
  padding: 6px 10px 6px 10px;
  flex: none;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #e27575 0%, #9b1c1c 100%);
  border-radius: 9px;
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
}

/* Video */
.future-art {
  position: relative;
  min-width: 0;
}

.video-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)),
    url("../images/live.png") center / cover no-repeat;
  border-radius: 24px;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.45);
  transform: rotate(2.4deg);
}

/* Play button */
.play {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  padding: 0;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease;
}

.play:hover {
  transform: scale(1.1);
  background: #f8e8e9;
}

.play svg {
  width: 25px;
  height: 25px;
  /* margin-left: 4px; */
}

.play svg path {
  fill: var(--accent-color);
}

.video-cap {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 7px 12px;
  /* background: rgba(6, 6, 7, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px; */
  color: #ffffff;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
}

/* Learn badge */
.learn-badge {
  position: absolute;
  right: 22px;
  bottom: 15px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
}

.avatars {
  display: flex;
}

.avatars i {
  width: 29px;
  height: 29px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.avatars i:nth-child(1) {
  background-image: url("../images/student.png");
  background-color: #bf7377;
}

.avatars i:nth-child(2) {
  background-image: url("../images/student1.png");
  background-color: #cfaa7e;
}

.avatars i:nth-child(3) {
  background-image: url("../images/student2.png");
  background-color: #6d8aa5;
}

.avatars i + i {
  margin-left: -9px;
}

.learn-tx {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.25;
}

/* Statistics */
.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 34px 0 32px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  min-width: 0;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.stat:last-child {
  padding-right: 0;
}

.stat b {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
}

.stat:nth-child(3) b {
  color: #e27575;
}

.stat span {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.stat small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--f-body);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Bottom CTA */
.commit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 24px;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.045)
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
}

.commit-badge {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--item-spacing-12, 12px);
  background: linear-gradient(160deg, #c23434 0%, #9b1c1c 55%, #7b1515) 100%;
  box-shadow:
    0 10px 22px 0 rgba(155, 28, 28, 0.4),
    0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
  color: #ffffff;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 800;
}

.commit-tx {
  min-width: 220px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.commit-tx b {
  color: #ffffff;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
}

.commit-tx span {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--f-body);
  font-size: 14.5px;
}

.commit .btn-primary {
  min-width: 145px;
  padding: 15px 26px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;

  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background-color 0.3s;
}

.commit .btn-primary::after {
  content: "↗";
  display: inline-block;
  margin-left: 9px;
  transition: transform 0.25s ease;
  font-size: 18px;
}

.commit .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 22px rgba(155, 28, 28, 0.3);
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
}

/* ============================================================
   WHY
   ============================================================ */
.section-why {
  padding: 90px 0;
  background-color: var(--primary-color);
}

/* Section heading */
.section-why .sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-why .sec-head h2 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.section-why .sec-head p {
  max-width: 370px;
  margin: 0;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
}

/* Main layout */
.why-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 20px;
}

/* Shared cards */
.why-tall,
.why-card,
.why-dark {
  border-radius: 20px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.why-tall:hover,
.why-card:hover,
.why-dark:hover {
  transform: translateY(-5px);
}

/* Large result card */
.why-tall {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 2;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 26px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.why-tall:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(20, 20, 30, 0.12);
}

/* 300px Figma gradient circle */
.grad {
  position: absolute;
  top: -68px;
  right: -70px;
  width: 300px;
  height: 300px;
  border-radius: var(--corner-radius-150, 150px);

  background: radial-gradient(
    99.04% 99.04% at 32% 28%,
    var(--color-grey-94-2, #fce4e4) 0%,
    var(--color-red-54, #c94a4a) 46%,
    var(--color-red-28, #7b1515) 100%
  );

  box-shadow:
    -22px -26px 52px rgba(0, 0, 0, 0.28) inset,
    0 26px 50px rgba(155, 28, 28, 0.24);

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

/* Target icon inside gradient */
.why-target-img {
  position: absolute;
  top: 80%;
  left: 20%;
  width: 400px;
  height: 400px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 15px 14px rgba(72, 5, 10, 0.2));
  transform: translate(-50%, -50%) rotate(100deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-tall:hover .grad {
  transform: scale(1.025);
}

/* Text remains above other elements */
.why-tall-body {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 2;
}

.why-big {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-color);
  font-family: var(--f-display);
  font-size: clamp(58px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -3px;
}

/* Common typography */
.why-tall-body h3,
.why-card h3,
.why-dark h3 {
  margin: 0 0 8px;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.6px;
}

.why-tall-body h3 {
  color: var(--heading-color);
  font-size: 26px;
}

.why-tall-body p,
.why-card p,
.why-dark p {
  margin: 0;
  font-family: var(--f-body);
}

.why-tall-body p {
  max-width: 38ch;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

/* Two small cards */
.why-card {
  position: relative;
  overflow: hidden;
  padding: 28px 26px;
  display: flex;
  align-items: flex-end;
  background: #ffffff;
  border: 1px solid #ececf0;
  box-shadow: 0 10px 28px rgba(20, 20, 30, 0.06);
}

.why-card:hover {
  border-color: rgba(179, 33, 42, 0.22);
  box-shadow: 0 18px 38px rgba(20, 20, 30, 0.11);
}

.why-card-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 150px;
  height: 150px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 12px rgba(139, 19, 27, 0.16));

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: rotate(-17.242deg);
}

.why-card-icon1 {
  transform: none;
}
.why-card-content {
  position: relative;
  z-index: 1;
}

.why-card h3 {
  color: var(--heading-color);
  font-size: 20px;
}

.why-card p {
  max-width: 32ch;
  color: var(--text-color);
  font-size: 14.5px;
  line-height: 1.5;
}

/* Dark card */
.why-dark {
  position: relative;
  grid-column: 2 / span 2;
  grid-row: 2;
  overflow: hidden;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background:
    radial-gradient(circle at 93% 6%, rgba(114, 25, 30, 0.45), transparent 45%),
    linear-gradient(140deg, #171718, #09090a);
  box-shadow: 0 20px 40px rgba(10, 10, 12, 0.18);
}

.why-dark:hover {
  box-shadow: 0 28px 55px rgba(10, 10, 12, 0.28);
}

.why-dark-tx {
  position: relative;
  z-index: 1;
}

.why-dark h3 {
  color: #ffffff;
  font-size: 24px;
}

.why-dark p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

/* Chart */
.bars {
  height: 105px;
  flex: none;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.bars i {
  width: 25px;
  border-radius: 7px 7px 4px 4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0.1)
  );

  transition:
    height 0.35s ease,
    transform 0.35s ease,
    background-color 0.35s ease;
}

.bars i:nth-child(1) {
  height: 44px;
}

.bars i:nth-child(2) {
  height: 68px;
}

.bars i:nth-child(3) {
  height: 100px;
}

.bars i:nth-child(4) {
  height: 58px;
}

.bars i:nth-child(5) {
  height: 38px;
}

.bars i.hot {
  background: linear-gradient(180deg, #df4149, #a71922);
  box-shadow: 0 12px 25px rgba(177, 29, 38, 0.35);
}

.why-dark:hover .bars i:nth-child(1) {
  height: 54px;
}

.why-dark:hover .bars i:nth-child(2) {
  height: 78px;
}

.why-dark:hover .bars i:nth-child(3) {
  height: 105px;
}

.why-dark:hover .bars i:nth-child(4) {
  height: 70px;
}

.why-dark:hover .bars i:nth-child(5) {
  height: 48px;
}

/* ============================================================
   CAMPUSES
   ============================================================ */
.campus-showcase {
  padding: 90px 0;
  background-image: url(../images/Courses.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.campus-showcase__header {
  display: flex;
  /* grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); */
  align-items: flex-end;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 38px;
}

.campus-showcase__title {
  max-width: 500px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 44px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -2px;
}

.campus-showcase__intro {
  max-width: 370px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
}

.campus-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.campus-card {
  padding: 23px;
  display: flex;
  flex-direction: column;
  background: var(--primary-color);
  border: 1px solid #ececf0;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(20, 20, 20, 0.025);
  font-family: var(--f-body, sans-serif);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.campus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(25, 25, 25, 0.09);
}

.campus-card__number {
  display: block;
  margin-bottom: 24px;
  color: #c9cbd3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.campus-card__name {
  margin: 0 0 8px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.35px;
}

.campus-card__address {
  min-height: 36px;
  margin: 0;
  color: var(--text-color);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
}

.campus-card__timing {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px dashed #e7e7ec;
}

.campus-card__timing span,
.campus-card__timing strong {
  display: block;
}

.campus-card__timing span {
  margin-bottom: 2px;
  color: #a6a8b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.campus-card__timing strong {
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 700;
}

.campus-card__links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 17px;
}

.campus-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.campus-card__direction {
  color: var(--accent-color);
}

.campus-card__direction svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.campus-card__direction:hover svg {
  transform: translateX(4px);
}

.campus-card__contact {
  color: var(--text-color);
}

.campus-card__contact:hover {
  color: var(--heading-color, #17171a);
}

@media (prefers-reduced-motion: reduce) {
  .campus-card,
  .campus-card * {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testi {
  padding: 90px 0;
  background-color: var(--primary-color, #ffffff);
}

.section-testi .sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.section-testi .sec-head h2 {
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(34px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.7px;
}

.section-testi .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 22px;
  color: #ffffff;
  background-color: var(--accent-color);
  border: 0;
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.section-testi .btn-primary svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.section-testi .btn-primary:hover {
  background: #80171b;
  transform: translateY(-3px);
  box-shadow: 0 14px 22px rgba(155, 28, 28, 0.3);
}

.section-testi .btn-primary:hover svg {
  transform: translateX(3px);
}

/* Main grid */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "feature hamza sara"
    "zara merit maham";
  align-items: start;
  gap: 18px;
}

/* Exact screenshot card placement */
.testi-grid > .testi:nth-child(1) {
  grid-area: feature;
}

.testi-grid > .testi:nth-child(2) {
  grid-area: hamza;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
}

.testi-grid > .testi:nth-child(3) {
  grid-area: sara;
}

.testi-grid > .testi:nth-child(4) {
  grid-area: zara;
}

.testi-grid > .testi:nth-child(5) {
  grid-area: merit;
}

.testi-grid > .testi:nth-child(6) {
  grid-area: maham;
}

/* Testimonial card */
.testi {
  position: relative;
  padding: 27px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  font-family: var(--f-body);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.testi:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

/* Subtle grey cards */
.testi-grid > .testi:nth-child(3),
.testi-grid > .testi:nth-child(4) {
  background: #f9fafb;
  border: 1px solid #eff0f2;
}

/* Highlighted cards */
.testi.is-feature,
.testi-grid > .testi:nth-child(6) {
  border: 1px solid #f0dfdf;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
}

/* Person information */
.testi header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
}

.testi header > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
}

.testi header b {
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.25;
}

.testi header small {
  overflow: hidden;
  color: #92939a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

/* Avatar */
.av {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
}

.av-f {
  background: linear-gradient(140deg, #c23434, #7b1515);
}

.av-h {
  background: linear-gradient(140deg, #666666, #151515);
}

.av-s {
  background: linear-gradient(140deg, #b06060, #7b1515);
}

.av-z {
  background: linear-gradient(140deg, #8a4a4a, #3a1010);
}

.av-m {
  background: linear-gradient(140deg, #c23434, #9b1c1c);
}

/* If an image is inserted inside the avatar */
.av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Review text */
.testi > p {
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.65;
  padding-right: 15px;
}

/* Featured card */
.is-feature {
  padding-top: 27px;
}

.testi-tag {
  position: absolute;
  top: 0;
  right: 16px;
  padding: 6px 11px;
  color: #ffffff;
  font-family: var(--f-display);
  background-color: var(--accent-color);
  border-radius: 0 0 8px 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.testi > .testi-score {
  margin: 2px 0 13px;
  color: var(--accent-color);
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

/* Tags */
.testi .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0 0;
}

.testi .tags span {
  padding: 6px 11px;
  color: var(--text-color);
  background-color: #f3f4f6;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

/* Merit card */
.testi-merit {
  min-height: 108px;
  padding: 26px;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(130% 120% at 90% 0%, #3a1010 0%, #111 60%);
  border-color: transparent;
  border-radius: 22px;
}

.testi-merit .merit-orb {
  position: absolute;
  top: -42px;
  right: -25px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 36% 30%,
    #ff8888,
    #c93438 43%,
    #6e1114 76%
  );
  box-shadow: inset -12px -14px 24px rgba(0, 0, 0, 0.3);
}

.testi-merit b {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 9px;
  color: #ffffff;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 800;
}

.testi-merit > p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .testi,
  .section-testi .btn-primary {
    transition: none;
  }
}

/* ============================================================
   ISTAGRAM
   ============================================================ */

.insta {
  padding: 100px 0;
  overflow: hidden;
  background-color: #f7f8fb;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

.insta__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.insta__title {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(34px, 3.3vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.insta__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  color: var(--accent-color);
  background-color: transparent;
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.insta__social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.insta__social-link:hover {
  color: #ffffff;
  background: #80171b;
  border-color: #80171b;
  transform: translateY(-3px);
  box-shadow: 0 14px 22px rgba(155, 28, 28, 0.3);
}

.insta__slider-container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.insta__slider {
  width: 100%;
  overflow: visible;
  padding: 15px 10px 28px;
  transform: rotate(-1.5deg);
}

.insta__grid {
  display: flex;
  align-items: stretch;
  transition-timing-function: linear !important;
}

.insta__slider .swiper-slide {
  width: auto;
  height: auto;
}

.insta__slider .insta-card {
  width: 100%;
  height: 100%;
}

/* Slider ko hover karne par pause */
.insta__slider:hover .swiper-wrapper {
  animation-play-state: paused;
}

.insta-card {
  display: block;
  padding: 14px 18px;
  color: inherit;
  background-color: #ffffff;
  border: 1px solid #eeeeef;
  border-radius: 8px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.07);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.insta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(27, 30, 42, 0.1);
}

.insta-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.72;
  background-color: #e8e8e8;
}

.insta-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.insta-card:hover .insta-card__media img {
  transform: scale(1.035);
}

.insta-card__views {
  position: absolute;
  right: 7px;
  bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
  color: #ffffff;
  background-color: rgba(17, 17, 17, 0.7);
  border-radius: 6px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.insta-card__views svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.insta-card__caption {
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--text-color);
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .insta-card,
  .insta-card__media img,
  .insta__social-link {
    transition: none;
  }
}

/* ============================================================
   News & Updates
   ============================================================ */
.news {
  width: 100%;
  padding: 90px 0;
  background-image: url(../images/Courses.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Card */
.news-card {
  display: flex;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #eff0f2;
  border-radius: 22px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(25, 25, 25, 0.11);
}

/* Card image */
.news-card__image {
  display: block;
  height: 210px;
  overflow: hidden;
  background-color: #e7e7e7;
}

.news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.04);
}

/* Card content */
.news-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 24px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.news-card__type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.news-card__type--pdf {
  color: var(--accent-color);
  background-color: #fff0f0;
}

.news-card__type--article {
  color: #656871;
  background-color: #f0f1f3;
}

.news-card__details {
  color: #9ca3af;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
}

.news-card__heading {
  margin: 0 0 9px;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.45px;
}

.news-card__heading a {
  color: var(--heading-color, #18181b);
}

.news-card__heading a:hover {
  color: var(--accent-color, #ad2528);
}

.news-card__description {
  margin: 0 0 20px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Download and Read More buttons */
.news-card__action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  margin-top: auto;
  color: var(--accent-color);
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1;
}

.news-card__action svg {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.news-card__action:hover {
  color: #80171b;
}

.news-card__action:hover svg {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-card__image img,
  .news-card__action svg,
  .news__view-all,
  .news__view-all svg {
    transition: none;
  }
}

/* ============================================================
   FAQs
   ============================================================ */
.faq-section {
  padding: 90px 0;
  background-color: var(--primary-color);
  overflow: hidden;
}

.faq-section__intro h2 {
  margin: 0 0 20px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

.faq-section__intro > p {
  max-width: 390px;
  margin: 0 0 30px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
}

/* Bootstrap navigation pills */
.faq-tabs {
  display: flex;
  gap: 10px;
}

.faq-tabs .nav-link {
  padding: 12px 21px;
  color: var(--text-color);
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  box-shadow: none;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-tabs .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.faq-tabs .nav-link.active {
  color: #ffffff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 12px 22px rgba(173, 37, 40, 0.22);
}

/* Bootstrap accordion */
.faq-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: #e9e9ec;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: var(--heading-color);
}

.faq-accordion .accordion-item {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #eff0f2;
  border-radius: 0;
}

.faq-accordion .accordion-button {
  position: relative;
  padding: 20px 52px 20px 0;
  color: var(--heading-color);
  background-color: transparent;
  box-shadow: none;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-accordion .accordion-button:not(.collapsed) {
  padding-bottom: 12px;
  color: var(--heading-color);
  background-color: transparent;
  box-shadow: none;
}

/* Remove Bootstrap default arrow */
.faq-accordion .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  margin: 0;
  place-items: center;
  content: "+";
  color: #303138;
  background-color: #f0f1f3;
  background-image: none;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

/* Open accordion icon */
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "×";
  color: #ffffff;
  background-color: var(--accent-color);
  transform: translateY(-50%) rotate(0);
}

.faq-accordion .accordion-body {
  max-width: 630px;
  padding: 0 52px 22px 0;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111;
  padding: 74px 0px 30px;
}
.foot-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 55px;
}
.foot-cta h2 {
  font-family: var(--f-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.16;
  letter-spacing: -1.1px;
  max-width: 20ch;
}
.foot-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 30px;
  color: #ffffff;
  background-color: var(--accent-color);
  box-shadow: 0 14px 32px 0 rgba(155, 28, 28, 0.4);
  border: 0;
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.foot-cta .btn-primary:hover {
  background: #80171b;
  transform: translateY(-3px);
  box-shadow: 0 14px 22px rgba(155, 28, 28, 0.3);
}
.foot-cta .btn-primary svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.foot-cta .btn-primary:hover svg {
  transform: translateX(3px);
}
.foot-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
  margin-bottom: 22px;
}
.foot-brand p {
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 26ch;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.foot-h {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px;
}
.foot-col a,
.foot-col span {
  font-family: var(--f-body);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.16s ease;
}
.foot-col a:hover {
  color: var(--accent-color);
  transition: 0.5s ease;
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.foot-bottom p {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}
.foot-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-legal a {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: 0.5s ease;
}
.foot-legal a:hover {
  color: var(--accent-color);
}

/* ============================================================
   RESULTS PAGE
   ============================================================ */

.result-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 34px;
  background-color: var(--primary-color);
}

.result-hero__slider {
  width: 100%;
  padding-bottom: 38px;
}

.result-hero__slider .swiper-slide {
  height: auto;
}

.result-hero__content {
  max-width: 440px;
}

.result-hero__content h1,
.result-hero__content h2 {
  margin: 0 0 15px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

.result-hero__content p {
  max-width: 390px;
  margin: 0 0 24px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
}

.result-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-hero__btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.result-hero__btn--primary {
  color: #ffffff;
  background-color: var(--accent-color);
  box-shadow: 0 10px 22px rgba(173, 37, 40, 0.2);
}

.result-hero__btn--outline {
  color: var(--accent-color);
  background-color: transparent;
}

.result-hero__btn:hover {
  color: #ffffff;
  background-color: #80171b;
  border-color: #80171b;
  transform: translateY(-3px);
  box-shadow: 0 13px 24px rgba(173, 37, 40, 0.24);
}

/* Result image */
.result-hero__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1.55;
  background-color: #f1f1f1;
  border-radius: 20px;
}

.result-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper pagination */
.result-hero__pagination {
  position: absolute;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 0px;
}

.result-hero__pagination .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  margin: 0 !important;
  background-color: #d8d8d8;
  border-radius: 0 100px 100px 0;
  opacity: 1;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.result-hero__pagination .swiper-pagination-bullet-active {
  width: 48px;
  background-color: var(--accent-color);
  border-radius: 0 100px 100px 0;
}

/* Slide animation */
.result-hero__content h1,
.result-hero__content h2,
.result-hero__content p,
.result-hero__actions {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.result-hero__media {
  opacity: 0;
  transform: translateX(25px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.result-hero__slider .swiper-slide-active h1,
.result-hero__slider .swiper-slide-active h2,
.result-hero__slider .swiper-slide-active p,
.result-hero__slider .swiper-slide-active .result-hero__actions,
.result-hero__slider .swiper-slide-active .result-hero__media {
  opacity: 1;
  transform: translate(0);
}

.result-hero__slider .swiper-slide-active p {
  transition-delay: 0.08s;
}

.result-hero__slider .swiper-slide-active .result-hero__actions {
  transition-delay: 0.16s;
}

.result-hero__slider .swiper-slide-active .result-hero__media {
  transition-delay: 0.08s;
}

@media (prefers-reduced-motion: reduce) {
  .result-hero__content h1,
  .result-hero__content h2,
  .result-hero__content p,
  .result-hero__actions,
  .result-hero__media,
  .result-hero__btn {
    transition: none;
  }
}

/* ============================================================
   RESULTS TABS
   ============================================================ */
.result-board {
  padding: 80px 0 90px;
  background-color: var(--primary-color);
  border-bottom: 1px solid #e0e0e0;
}

/* Bootstrap pills */
.result-board__tabs {
  gap: 10px;
  margin-bottom: 8px;
}

.result-board__tabs .nav-link {
  min-width: 86px;
  padding: 12px 22px;
  color: var(--text-color);
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.result-board__tabs .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.result-board__tabs .nav-link.active {
  color: #ffffff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Main panel */
.result-panel {
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 24px;
}

/* Panel header */
.result-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 24px;
  background-color: #fafafb;
  border-bottom: 1px solid #ececf0;
}

.result-panel__header h2 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.result-panel__header p,
.result-panel__header small {
  display: block;
  margin: 0;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

/* Search and filter */
.result-panel__filters {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.result-search {
  display: flex;
  width: 260px;
  height: 38px;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  background-color: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 100px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.result-search:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(173, 37, 40, 0.08);
}

.result-search svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #a6a8b0;
}

.result-search__input {
  width: 100%;
  padding: 0;
  color: #757575;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
}

.result-search__input::placeholder {
  color: #757575;
}

.result-university {
  width: 105px;
  height: 38px;
  padding: 0 30px 0 14px;
  color: #757575;
  background-color: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 100px;
  outline: none;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
}

.result-university:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(173, 37, 40, 0.08);
}

/* Bootstrap table */
.result-table {
  min-width: 650px;
  margin: 0;
  vertical-align: middle;
}

.result-table > :not(caption) > * > * {
  padding: 11px 20px;
  background-color: transparent;
  border-bottom-color: #ececf0;
  box-shadow: none;
}

.result-table thead th {
  color: var(--text-color);
  background-color: #ffffff;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.result-table tbody tr:nth-child(even) {
  background-color: #fcfcfd;
}

.result-table tbody tr {
  transition: background-color 0.2s ease;
}

.result-table tbody tr:hover {
  background-color: #fff7f7;
}

.result-table tbody td {
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
}

.result-table th:first-child,
.result-table td:first-child {
  width: 65px;
}

.result-table th:last-child,
.result-table td:last-child {
  width: 90px;
  text-align: right;
}

.result-table .result-name {
  font-size: 14px;
  color: var(--heading-color);
  font-weight: 700;
}

.result-score {
  color: var(--accent-color) !important;
  font-weight: 800 !important;
}

/* Rank badge */
.result-rank {
  display: inline-flex;
  min-width: 44px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  background-color: #f1f2f6;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
}

.result-rank--top {
  color: #ffffff;
  background-color: var(--accent-color);
}

/* Empty state */
.result-panel__empty {
  display: none;
  padding: 35px 20px;
  color: #8b8d96;
  text-align: center;
  font-family: var(--f-body);
  font-size: 13px;
}

/* Footer */
.result-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
  color: #8b8d96;
  background-color: rgba(248, 248, 250, 0.75);
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 500;
}

/* Testimonials */
.result-testi {
  background-image: url(../images/Courses.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

/* ============================================================
   COURSES PAGE
   ============================================================ */

.course-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  padding: 55px 0;
  overflow: hidden;
  background-color: var(--primary-color);
}

.course-hero__content {
  max-width: 620px;
}

/* Eyebrow */
.course-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 13px;
  color: var(--accent-color);
  background-color: #f9ecec;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.course-hero__eyebrow > span {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background-color: var(--accent-color);
  border-radius: 50%;
}

/* Main heading */
.course-hero__title {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(46px, 5vw, 56px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -2px;
}

.course-hero__title strong {
  color: var(--accent-color);
  font-weight: inherit;
}

.course-hero__description {
  max-width: 580px;
  margin: 0;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.7;
}

/* Statistics */
.course-hero__stats {
  max-width: 545px;
  margin-top: 25px;
}

.course-stat {
  height: 100%;
  min-height: 92px;
  padding: 15px 17px;
  background-color: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 16px;
  box-shadow: 0 6px 18px 0 rgba(23, 24, 28, 0.05);
}

.course-stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-color);
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.course-stat span {
  display: block;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.45;
}

/* Hero buttons */
.course-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.course-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.course-hero__button svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.course-hero__button--primary {
  color: #ffffff;
  background-color: var(--accent-color);
  box-shadow: 0 10px 23px rgba(173, 37, 40, 0.22);
}

.course-hero__button--outline {
  color: var(--text-color);
  background-color: #ffffff;
  border-color: #dddee3;
}

.course-hero__button:hover {
  color: #ffffff;
  background-color: #80171b;
  border-color: #80171b;
  transform: translateY(-3px);
  box-shadow: 0 13px 25px rgba(173, 37, 40, 0.25);
}

.course-hero__button:hover svg {
  transform: translateX(4px);
}

/* Registration form */
.course-form {
  /* max-width: 470px; */
  background-color: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 24px;
  box-shadow: 0 20px 46px 0 rgba(23, 24, 28, 0.12);
}

.course-form__header {
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid #f1f1f5;
}

.course-form__header h2 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.course-form__header p {
  margin: 0;
  color: #8b8d96;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 500;
}

.course-form__body {
  padding: 20px 24px 24px;
}

.course-form__group {
  margin-bottom: 13px;
}

.course-form__group label,
.course-form__course-type legend {
  display: block;
  width: auto;
  margin: 0 0 6px;
  color: var(--heading-color);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.course-form__group label > span,
.course-form__course-type legend > span {
  color: var(--accent-color);
}

.course-form .form-control,
.course-form .form-select {
  min-height: 42px;
  padding: 13px 15px;
  color: var(--text-color);
  background-color: #ffffff;
  border: 1px solid #e4e5ea;
  border-radius: 10px;
  box-shadow: none;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.course-form .form-control::placeholder {
  color: var(--text-color);
}

.course-form .form-control:focus,
.course-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(173, 37, 40, 0.08);
}

/* Phone field */
.course-form__phone .input-group-text {
  min-width: 62px;
  justify-content: center;
  padding: 0 12px;
  background-color: #f6f7f9;
  border: 1px solid #e4e5ea;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  font-size: 12px;
}

.course-form__phone .form-control {
  border-radius: 0 10px 10px 0;
}

/* Course radio options */
.course-form__course-type {
  padding: 0;
  border: 0;
}

.course-type__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.course-type__option {
  display: flex !important;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 !important;
  padding: 9px 11px;
  color: var(--text-color) !important;
  background-color: #ffffff;
  border: 1px solid #dedfe3;
  border-radius: 10px;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.course-type__radio {
  position: relative;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background-color: #ffffff;
  border: 2px solid #cfd0d5;
  border-radius: 50%;
  padding: 7px;
}

.course-type__input:checked + .course-type__option {
  color: var(--accent-color) !important;
  background-color: #fff8f8;
  border-color: var(--accent-color);
}

.course-type__input:checked + .course-type__option .course-type__radio {
  border-color: #f1d3d4;
}

.course-type__input:checked + .course-type__option .course-type__radio::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  content: "";
  background-color: var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.course-type__input:focus-visible + .course-type__option {
  box-shadow: 0 0 0 3px rgba(173, 37, 40, 0.12);
}

/* Submit */
.course-form__submit {
  width: 100%;
  min-height: 45px;
  margin-top: 8px;
  padding: 11px 20px;
  color: #ffffff;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  box-shadow: 0 10px 22px rgba(173, 37, 40, 0.2);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.course-form__submit:hover {
  background-color: #80171b;
  border-color: #80171b;
  transform: translateY(-2px);
  box-shadow: 0 13px 25px rgba(173, 37, 40, 0.26);
}

.course-form__required {
  margin: 14px 0 0;
  color: #a6a8b0;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .course-hero__button,
  .course-hero__button svg,
  .course-form__submit,
  .course-form .form-control,
  .course-form .form-select,
  .course-type__option {
    transition: none;
  }
}

/* ============================================================
   COURSES PLANS
   ============================================================ */
.course-plans {
  padding: 90px 0;
  background-color: var(--primary-color);
}

.course-plans__header {
  margin-bottom: 36px;
}

.course-plans__header h2 {
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.47px;
  max-width: 22ch;
}

.course-plans__header p {
  max-width: 420px;
  margin: 0 0 5px auto;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* Card */
.course-plan {
  display: flex;
  height: 100%;
  min-height: 350px;
  flex-direction: column;
  padding: 21px;
  background-color: #fdfdfe;
  border: 1px solid #ececf0;
  border-radius: 22px;
  box-shadow: 0 4px 12px rgba(20, 20, 25, 0.025);
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.course-plan:hover {
  background-color: #fffdfd;
  border-color: var(--accent-color);
  box-shadow: 0 14px 34px 0 rgba(158, 30, 34, 0.14);
  transform: translateY(-5px);
}

/* Badge */
.course-plan__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 10px;
  color: var(--text-color);
  background-color: #f1f2f6;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.course-plan:hover .course-plan__badge {
  color: #ffffff;
  background-color: var(--accent-color);
}

.course-plan__top h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.course-plan:hover .course-plan__top h3 {
  color: var(--accent-color);
}

.course-plan__top > p {
  min-height: 42px;
  margin: 0;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

/* Details */
.course-plan__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 20px;
  margin-top: 17px;
  padding-top: 16px;
  border-top: 1px dashed #e9e9ee;
}

.course-plan__details div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.course-plan__details span {
  color: #a6a8b0;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.course-plan__details strong {
  color: var(--heading-color);
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
}

/* Footer */
.course-plan__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 28px;
}

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

.course-plan__price strong {
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.3s ease;
}

.course-plan:hover .course-plan__price strong {
  color: var(--accent-color);
}

.course-plan__price span {
  color: #a6a8b0;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
}

/* Add to cart */
.course-plan__button {
  padding: 12px 18px;
  color: #ffffff;
  background-color: var(--heading-color);
  border: 1px solid var(--heading-color);
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.course-plan:hover .course-plan__button {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 9px 18px rgba(173, 37, 40, 0.22);
}

.course-plan__button:hover {
  background-color: #80171b !important;
  border-color: #80171b !important;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .course-plan,
  .course-plan *,
  .course-plan__button {
    transition: none;
  }
}

/* ============================================================
   CAMPUS ADMISSIONS
   ============================================================ */
.campus-admissions {
  padding: 90px 0;
  background-color: var(--primary-color);
}

.campus-admissions__header {
  margin-bottom: 36px;
}

.campus-admissions__header h2 {
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
}

.campus-admissions__header p {
  margin: 0 0 5px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

/* Admission card */
.admission-card {
  height: 100%;
  padding: 19px 21px;
  background-color: #fdfdfe;
  border: 1px solid #ececf0;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(25, 25, 30, 0.025);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.admission-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 15px 28px rgba(173, 37, 40, 0.09);
  transform: translateY(-4px);
}

.admission-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
}

.admission-card__type {
  color: #a6a8b0;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Status badges */
.admission-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.admission-card__status--urgent,
.admission-card__status--waitlist {
  color: var(--accent-color);
  background-color: #fdebed;
}

.admission-card__status--open {
  color: var(--accent-color);
  background-color: #eaf0fc;
}

/* Card content */
.admission-card__content h3 {
  margin: 0 0 4px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.admission-card:hover .admission-card__content h3 {
  color: var(--accent-color);
}

.admission-card__content p {
  min-height: 17px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

/* Card footer */
.admission-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px dashed #e9e9ee;
}

.admission-card__footer > span {
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
}

.admission-card__footer a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-color);
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.admission-card__footer svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.admission-card__footer a:hover svg {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .admission-card,
  .admission-card *,
  .admission-card__footer svg {
    transition: none;
  }
}

/* ============================================================
   STUDY MATERIAL
   ============================================================ */
.material-hero {
  padding: 42px 0 45px;
  background-color: var(--primary-color);
}

/* Breadcrumb */
.material-hero__breadcrumb {
  align-items: center;
  margin: 0 0 17px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
}

.material-hero__breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 9px;
  display: flex;
  align-items: center;
}

.material-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 9px;
  color: #9b9ca3;
  content: "›";
  font-size: 11px;
}

.material-hero__breadcrumb a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.material-hero__breadcrumb a:hover {
  color: var(--accent-color);
}

.material-hero__breadcrumb .active {
  color: #313238;
  font-weight: 700;
}

/* Eyebrow */
.material-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 12px;
  color: var(--accent-color);
  background-color: #fbeded;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Heading */
.material-hero__title {
  margin: 0 0 15px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2.8px;
}

/* Description */
.material-hero__description {
  max-width: 550px;
  margin: 0 0 18px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.material-hero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.material-hero__button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  color: var(--text-color);
  background-color: #ffffff;
  border: 1px solid #e4e5ea;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.material-hero__button:hover {
  color: #ffffff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 8px 17px rgba(173, 37, 40, 0.18);
  transform: translateY(-2px);
}

/* ============================================================
   STUDY MATERIAL PRODUCTS
   ============================================================ */

html {
  scroll-behavior: smooth;
}

.study-products {
  padding: 90px 0;
  background-color: var(--primary-color);
}

.study-category {
  scroll-margin-top: 110px;
}

.study-category + .study-category {
  margin-top: 60px;
}

/* Category heading */
.study-category__header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f1f5;
}

.study-category__number {
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  padding: 6px 15px;
  color: #ffffff;
  background-color: #17181c;
  border-radius: 11px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 800;
}

.study-category__header h2 {
  margin: 0 0 3px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.study-category__header p {
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

/* Product card */
.material-card {
  position: relative;
  display: flex;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 20px;
  box-shadow: 0 6px 18px 0 rgba(23, 24, 28, 0.05);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.material-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 16px 30px rgba(173, 37, 40, 0.1);
  transform: translateY(-5px);
}

/* Badge */
.material-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 11px;
  color: #ffffff;
  background-color: var(--accent-color);
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Product image */
.material-card__image {
  display: block;
  height: 250px;
  padding: 18px 18px 0px 18px;
  overflow: hidden;
  background-color: #f6f7fa;
}

.material-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  box-shadow: 0 8px 18px 0 rgba(23, 24, 28, 0.14);
}

.material-card:hover .material-card__image img {
  transform: scale(1.045);
}

/* Card content */
.material-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px 18px;
}

.material-card__content h3 {
  margin: 0 0 6px;
  padding-right: 1.5rem;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.material-card__content h3 a {
  color: var(--heading-color);
  transition: color 0.2s ease;
}

.material-card:hover .material-card__content h3 a {
  color: var(--accent-color);
}

.material-card__content p {
  margin: 0 0 13px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.material-card__price {
  display: block;
  margin-top: auto;
  margin-bottom: 11px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
}

/* Add to cart */
.material-card__button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 10px 16px;
  color: #ffffff;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  box-shadow: 0 8px 18px 0 rgba(193, 39, 45, 0.24);
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.material-card__button svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.material-card__button:hover {
  background-color: #80171b;
  border-color: #80171b;
  box-shadow: 0 9px 17px rgba(173, 37, 40, 0.26);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .material-card,
  .material-card *,
  .material-card__button {
    transition: none;
  }
}

/* ============================================================
   SELF STUDY 
   ============================================================ */

.self-study {
  padding: 40px 0 70px;
  background-color: var(--primary-color);
}

/* Left content */
.self-study__content {
  max-width: 470px;
}

.self-study__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--accent-color);
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.self-study__eyebrow > span {
  display: block;
  width: 27px;
  height: 1px;
  background-color: var(--accent-color);
}

.self-study__content h2 {
  margin: 0 0 17px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(30px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
}

.self-study__content > p {
  margin: 0 0 21px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.7;
}

/* CTA */
.self-study__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 24px;
  color: #ffffff;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  box-shadow: 0 10px 20px rgba(173, 37, 40, 0.22);
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.self-study__button svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.self-study__button:hover {
  color: #ffffff;
  background-color: #80171b;
  border-color: #80171b;
  box-shadow: 0 14px 24px rgba(173, 37, 40, 0.28);
  transform: translateY(-3px);
}

.self-study__button:hover svg {
  transform: translateX(4px);
}

/* Feature cards */
.self-study-card {
  height: 100%;
  padding: 21px 18px;
  background-color: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 20px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.self-study-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 14px 28px rgba(173, 37, 40, 0.09);
  transform: translateY(-5px);
}

.self-study-card__number {
  display: grid;
  width: 32px;
  height: 34px;
  margin-bottom: 17px;
  place-items: center;
  color: var(--accent-color);
  background-color: #fbeded;
  border-radius: 11px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 800;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.self-study-card:hover .self-study-card__number {
  color: #ffffff;
  background-color: var(--accent-color);
}

.self-study-card h3 {
  margin: 0 0 13px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 16.5px;
  font-weight: 700;
  padding-right: 1.5rem;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.self-study-card:hover h3 {
  color: var(--accent-color);
}

.self-study-card p {
  margin: 0;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.65;
}
@media (prefers-reduced-motion: reduce) {
  .self-study__button,
  .self-study__button svg,
  .self-study-card,
  .self-study-card * {
    transition: none;
  }
}

/* ============================================================
  ADD TO CART PAGE
   ============================================================ */
.checkout-page {
  padding: 35px 0 80px;
  background-color: #fefeff;
}

/* Breadcrumb */
.checkout-breadcrumb {
  margin-bottom: 10px;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
}

.checkout-breadcrumb a {
  color: var(--heading-color);
  text-decoration: none;
}

.checkout-breadcrumb a:hover {
  color: var(--accent-color);
}

.checkout-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #a1a2a8;
  content: "›";
}

.checkout-breadcrumb .active {
  color: #292a30;
  font-weight: 700;
}

/* Heading */
.checkout-heading {
  margin-bottom: 25px;
}

.checkout-heading h1 {
  margin: 0 0 5px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.checkout-heading p {
  margin: 0;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
}

/* Shared cards */
.checkout-card {
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 24px;
}

.checkout-card + .checkout-card {
  margin-top: 24px;
}

.checkout-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  background-color: #fafafb;
  border-bottom: 1px solid #ececf0;
}

.checkout-card__header > small {
  color: #8b8d96;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
}

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

.checkout-card__title > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  place-items: center;
  color: #ffffff;
  background-color: var(--heading-color);
  border-radius: 50%;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
}

.checkout-card__title h2 {
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
}

/* Order items */
.order-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid #f4f4f8;
}

.order-item__image {
  width: 68px;
  height: 68px;
  padding: 5px;
  overflow: hidden;
  background-color: #f6f7fa;
  border: 1px solid #f1f1f5;
  border-radius: 14px;
}

.order-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-item__info h3 {
  margin: 0 0 3px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 700;
}

.order-item__info > p {
  margin: 0 0 8px;
  color: #8b8d96;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
}

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

.order-quantity {
  width: 74px;
  height: 29px;
  padding: 4px 10px;
  text-align: center;
  border: 1px solid #e4e5ea;
  border-radius: 100px;
  outline: none;
  font-size: 12.5px;
  font-weight: 700;
}

.order-quantity:focus {
  border-color: var(--accent-color);
}

.order-remove {
  padding: 0;
  color: #a6a8b0;
  background: none;
  border: 0;
  font-size: 11.5px;
  font-weight: 500;
}

.order-remove:hover {
  color: var(--accent-color);
}

.order-item__price {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: right;
}

.order-item__price small {
  color: #a6a8b0;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
}

.order-item__price strong {
  min-width: 64px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 15.5px;
  font-weight: 800;
}

/* Add material */
.order-additions {
  padding: 12px 20px 15px;
  background-color: #fcfcfd;
}

.order-additions > a {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.order-additions__items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.order-additions__items button {
  padding: 8px 14px;
  color: #73747c;
  background-color: #ffffff;
  border: 1px dashed #d8d9df;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.order-additions__items button:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Customer form */
.customer-form {
  padding: 22px 20px;
}

.customer-form label {
  display: block;
  margin-bottom: 6px;
  color: #a6a8b0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.customer-form .form-control {
  min-height: 40px;
  padding: 13px 15px;
  border: 1px solid #e4e5ea;
  border-radius: 10px;
  box-shadow: none;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-color);
}

.customer-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(173, 37, 40, 0.08);
}

.checkout-phone .input-group-text {
  padding: 0 11px;
  color: var(--text-color);
  background-color: #f5f6f7;
  border: 1px solid #e4e5ea;
  border-right: 0;
  border-radius: 9px 0 0 9px;
  font-size: 11px;
  font-weight: 500;
}

.checkout-phone .form-control {
  border-radius: 0 9px 9px 0;
}

/* Summary */
.order-summary {
  border-radius: 24px;
  border: 1px solid #ececf0;
  background: #fff;
  box-shadow: 0 14px 34px 0 rgba(23, 24, 28, 0.07);
}

.order-summary__header {
  padding: 22px 20px 17px;
  border-bottom: 1px solid #f1f1f5;
}

.order-summary__header h2 {
  margin: 0 0 4px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
}

.order-summary__header p {
  color: #8b8d96;
  font-size: 11.5px;
}

.order-summary__body {
  padding: 20px;
}

.summary-row,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--f-body);
}

.summary-row {
  margin-bottom: 18px;
  color: #6e7079;
  font-size: 13px;
  font-weight: 600;
}

.summary-row strong {
  color: var(--heading-color);
  font-size: 13.5px;
  font-weight: 700;
}

.discount-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 8px;
}

.discount-form input,
.discount-form button {
  height: 39px;
  border: 1px solid #e4e5ea;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 500;
  font-family: var(--f-body);
}

.discount-form input {
  padding: 8px 13px;
  outline: none;
}

.discount-form input:focus {
  border-color: var(--accent-color);
}

.discount-form button {
  color: var(--accent-color);
  background-color: #ffffff;
  font-weight: 700;
}

.discount-form button:hover {
  color: #ffffff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.order-summary__body > small {
  display: block;
  margin-top: 8px;
  padding-bottom: 18px;
  color: #a6a8b0;
  border-bottom: 1px dashed #e4e5ea;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
}

.summary-total {
  padding: 19px 0;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 700;
}

.summary-total strong {
  color: var(--accent-color);
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
}

.place-order-button {
  width: 100%;
  padding: 11px 20px;
  color: #ffffff;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  box-shadow: 0 10px 24px 0 rgba(193, 39, 45, 0.26);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.place-order-button:hover {
  background-color: #80171b;
  transform: translateY(-2px);
}

.order-summary__note {
  margin: 11px 0 0;
  color: #a6a8b0;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
}

.order-summary__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 20px 22px;
  background-color: #fafafb;
  border-top: 1px solid #f1f1f5;
}

.order-summary__payments span {
  padding: 7px 12px;
  color: #777880;
  background-color: #ffffff;
  border: 1px solid #ededf1;
  border-radius: 8px;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
}

/* Payment method */
.payment-card__body {
  padding: 20px;
}

.payment-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background-color: #ffffff;
  border: 1px solid #dcdde1;
  border-radius: 14px;
  cursor: pointer;
}

.payment-option__radio {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 2px solid #cecfd4;
  border-radius: 50%;
}

.payment-option > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.payment-option strong {
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 700;
}

.payment-option small {
  color: #8b8d96;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 500;
}

.payment-option__input:checked + .payment-option {
  background-color: #fff8f8;
  border-color: var(--accent-color);
}

.payment-option__input:checked + .payment-option .payment-option__radio {
  border-color: #f1cacc;
}

.payment-option__input:checked + .payment-option .payment-option__radio::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  content: "";
  background-color: var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}



/* ============================================================
  NEWS & UPDATES PAGE
   ============================================================ */
.news-page__hero {
  padding: 55px 0 50px;
  background-image: url(../images/Courses.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-page__breadcrumb {
  margin: 0 0 18px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
}

.news-page__breadcrumb a {
  color: var(--heading-color);
  text-decoration: none;
}

.news-page__breadcrumb a:hover {
  color: var(--accent-color);
}
.news-page__breadcrumb .breadcrumb-item.active {
  color: #313238;
  font-weight: 700;
}

.news-page__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #999aa1;
  content: "›";
}

.news-page__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 12px;
  color: var(--accent-color);
  background-color: #fbeded;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-page__hero h1 {
  margin: 0 0 15px;
  color: var(--heading-color);
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2.8px;
}

.news-page__hero p {
  max-width: 550px;
  margin: 0 0 18px;
  color: var(--text-color);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

/* Search */
.news-page__search {
  display: flex;
  width: 100%;
  max-width: 360px;
  height: 46px;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  padding: 0 16px;
  background-color: #ffffff;
  border: 1px solid #dddfe3;
  border-radius: 100px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.news-page__search:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(173, 37, 40, 0.08);
}

.news-page__search svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #9a9ba2;
}

.news-page__search input {
  width: 100%;
  padding: 0;
  color: #757575;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
}

/* Listing */
.news-page__listing {
  padding: 55px 0 90px;
  background-color: var(--primary-color);
}

/* Filters */
.news-page__filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.news-page__filters button {
  min-width: 86px;
    padding: 12px 22px;
    color: var(--text-color);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.news-page__filters button:hover,
.news-page__filters button.active {
  color: #ffffff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Ensure equal card heights */
.news-page__item {
  display: flex;
}

.news-page__item .news-card {
  width: 100%;
}

.news-page .news-card__heading {
  font-size: 18px;
}

/* Empty message */
.news-page__empty {
  display: none;
  margin: 40px 0 0;
  color: #85868e;
  font-family: var(--f-body);
  font-size: 13px;
  text-align: center;
}

/* Pagination */
.news-page__pagination {
  margin-top: 45px;
}

.news-page__pagination .pagination {
  gap: 7px;
  margin: 0;
}

.news-page__pagination .page-link {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: #565860;
  background-color: #ffffff;
  border: 1px solid #dddfe3;
  border-radius: 50% !important;
  box-shadow: none;
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 700;
}

.news-page__pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.news-page__pagination .page-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}





@media (max-width: 1300px) {
  .hero .hero-art .chip-b {
    top: auto;
    bottom: -10px;
    left: -3%;
    transform: none;
  }
  .hero .hero-art .chip-c {
    top: auto;
    bottom: -10px;
    right: -3%;
    left: auto;
    transform: none;
  }
}
@media (max-width: 1180px) {
  .programs .prog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .faq-section__intro {
    margin-bottom: 10px;
  }
  .foot-cols {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}
/* Tablet */
@media (max-width: 991px) {
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 150px 0 70px;
  }
  .hero-art {
    margin-top: 40px;
  }
  .hero .hero-art .chip-b {
    top: auto;
    bottom: -10px;
    left: 0%;
    transform: none;
  }
  .hero .hero-art .chip-c {
    top: auto;
    bottom: -10px;
    right: 0%;
    left: auto;
    transform: none;
  }
  .programs .prog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "feature hamza"
      "sara zara"
      "merit maham";
  }
  .campus-showcase__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .campus-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 410px 230px 230px;
  }

  .why-tall {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .why-dark {
    grid-column: 1 / span 2;
    grid-row: 3;
  }
  .future-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .stat:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }
  .material-grid {
    grid-template-columns: 1fr;
  }

  .mat-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .result-hero {
    padding: 55px 0 30px;
  }

  .result-hero__content {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .result-hero__content p {
    max-width: 520px;
  }
  .course-hero__content {
    max-width: 720px;
  }

  .course-form {
    max-width: 650px;
    margin: 15px auto 0;
  }
  .campus-admissions__header p {
    text-align: left;
  }
  .self-study__content {
    max-width: 650px;
    margin-bottom: 10px;
  }
   .news-page__search {
    max-width: 100%;
    margin-left: 0;
  }
}
/* Small Tablet */
@media (max-width: 768px) {
  .hero .hero-copy .hero-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hero .hero-copy .sel-divider {
    display: none;
  }

  .hero .hero-copy .hero-form .btn {
    width: 100%;
  }
  .programs .sec-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .programs .prog-grid {
    grid-template-columns: 1fr;
  }
  .foot-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot-bottom {
    flex-direction: column;
    gap: 15px;
  }
  .faq-tabs {
    flex-wrap: wrap;
  }

  .faq-accordion .accordion-button {
    min-height: 64px;
    padding-right: 44px;
    font-size: 15px;
  }

  .faq-accordion .accordion-button::after {
    width: 28px;
    height: 28px;
  }

  .faq-accordion .accordion-body {
    padding-right: 10px;
    font-size: 13px;
  }
  .insta__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
  }
  .insta__slider {
    padding-top: 10px;
    transform: rotate(-1deg);
  }
  .section-testi .sec-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "hamza"
      "sara"
      "zara"
      "merit"
      "maham";
  }

  .testi {
    padding: 22px 18px;
  }

  .is-feature {
    padding-top: 28px;
  }
  .campus-showcase__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .campus-showcase__title {
    font-size: 35px;
    line-height: 1.02;
    letter-spacing: -1.4px;
  }
  .campus-showcase__grid {
    grid-template-columns: 1fr;
  }
  .section-why .sec-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
  }

  .why-grid {
    display: flex;
    flex-direction: column;
  }

  .why-tall {
    min-height: 440px;
  }

  .why-card {
    min-height: 220px;
  }

  .why-dark {
    min-height: 245px;
  }
  .future-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 45px;
  }

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

  .stat,
  .stat:first-child,
  .stat:nth-child(4) {
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

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

  .commit .btn-primary {
    width: 100%;
    margin-top: 8px;
  }
  .section-material .sec-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .mat-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-note {
    width: 100%;
    margin-left: 0;
  }

  .mat-side {
    grid-template-columns: 1fr;
  }

  .result-hero__slider {
    padding-bottom: 32px;
  }

  .result-hero__content h1,
  .result-hero__content h2 {
    margin-bottom: 12px;
    font-size: 36px;
    letter-spacing: -1.4px;
  }

  .result-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .result-hero__btn {
    width: 100%;
  }

  .result-hero__media {
    aspect-ratio: 1.15;
    border-radius: 14px;
  }

  .result-hero__pagination .swiper-pagination-bullet {
    width: 25px;
  }

  .result-hero__pagination .swiper-pagination-bullet-active {
    width: 38px;
  }

  .result-board__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .result-board__tabs::-webkit-scrollbar {
    display: none;
  }

  .result-board__tabs .nav-item {
    flex-shrink: 0;
  }

  .result-panel__header {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .result-panel__filters {
    width: 100%;
  }

  .result-search {
    width: 100%;
  }

  .result-university {
    width: 115px;
    flex-shrink: 0;
  }
  .course-plan__footer {
    align-items: stretch;
    flex-direction: column;
  }
  .study-category + .study-category {
    margin-top: 45px;
  }
  .self-study__button {
    width: 100%;
  }
  .order-item,
  .checkout-card__header,
  .customer-form,
  .order-summary__body,
  .payment-card__body {
    padding-right: 15px;
    padding-left: 15px;
  }

  .summary-total strong {
    font-size: 22px;
  }
  .order-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .order-item__image {
    width: 58px;
    height: 58px;
  }

  .order-item__price {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}
/* Mobile */
@media (max-width: 575.98px) {
  .result-board__tabs .nav-link {
    min-width: 78px;
    padding: 10px 18px;
  }

  .result-panel {
    border-radius: 15px;
  }

  .result-panel__header {
    padding: 20px 16px;
  }

  .result-panel__filters {
    align-items: stretch;
    flex-direction: column;
  }

  .result-university {
    width: 100%;
  }

  .result-table > :not(caption) > * > * {
    padding: 10px 15px;
  }

  .result-panel__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 12px 16px;
  }

  .course-hero__description {
    font-size: 13.5px;
  }

  .course-hero__stats > div {
    width: 100%;
  }

  .course-stat {
    min-height: auto;
  }

  .course-stat span br {
    display: none;
  }

  .course-hero__actions {
    flex-direction: column;
  }

  .course-form__header {
    padding: 23px 18px 16px;
  }

  .course-form__body {
    padding: 20px 18px;
  }

  .course-type__option {
    min-height: 50px;
    padding: 8px;
    text-align: center;
  }
    .news-page__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .news-page__filters::-webkit-scrollbar {
    display: none;
  }

  .news-page__filters button {
    flex-shrink: 0;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .insta__title {
    font-size: 32px;
  }

  .insta__grid::-webkit-scrollbar {
    display: none;
  }
  .insta__slider-container {
    padding: 0;
  }

  .insta__grid {
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
  .why-tall-body {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .why-card {
    padding: 24px 22px;
  }

  .why-dark {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }

  .bars {
    align-self: flex-end;
    height: 90px;
  }

  .bars i {
    width: 21px;
  }
  .feature-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fchip {
    padding-right: 10px;
    font-size: 10.5px;
  }

  .video-card {
    border-radius: 18px;
  }

  .learn-badge {
    right: 10px;
    bottom: 10px;
  }

  .video-cap {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:first-child,
  .stat:nth-child(4),
  .stat:nth-child(odd) {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .mat-list {
    grid-template-columns: 1fr;
  }
}
