@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: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  transition:
    padding 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
} */

/* Header after scrolling */
/* .navbar.is-stuck {
  position: fixed;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  animation: headerSlideDown 0.35s ease;
}

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

  to {
    transform: translateY(0);
  }
} */

/* ============================================================
   SHARED HEADER
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
  background-color: #ffffff;
  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;
}

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

/* @media (max-width: 991.98px) {
  .navbar {
    padding: 15px 0;
  }

  .navbar.is-stuck {
    padding: 10px 0;
  }

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

  .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%
      ),
      #fff;
    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 {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
  }

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

  .navbar-nav .nav-link::before {
    display: none;
  }

  .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;
  }
} */

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

  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;
  }
}

/* ============================================================
   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-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-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-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-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;
}
.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%;
}

@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;
  }
}
/* 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;
  }
}
/* 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;
  }
  
}

/* 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;
  }
}
