/* ==========================================================================
   landing-2026.css
   Design tokens + landing-page/header/footer styles for the 2026 redesign.
   Source of truth: design/landing-page.svg
   ========================================================================== */

/* Fonts: Inter is loaded via <link> in header-imports.php for better performance. */

:root {
  /* ----- Brand / accents ------------------------------------------------ */
  --color-primary: #E11C1B;
  /* red action strip, CTAs, icons    */
  --color-primary-dark: #6C1917;
  /* hover / pressed state for red    */
  --color-footer: #400606;
  /* footer dark maroon               */
  --color-marquee-icon: #E11C1B;
  /* sun/bell icons in marquee strip  */

  /* ----- Section backgrounds (taken directly from SVG rects) ----------- */
  --bg-marquee: #FFFFFF;
  /* marquee strip bg (white in SVG)  */
  --bg-events: #F8F4F1;
  /* Upcoming Events (cream)          */
  --bg-courses: #EDE8F4;
  /* Courses Offered (lavender)       */
  --bg-achievements: #F4E8EE;
  /* Achievements (blush pink)        */
  --bg-campus: #E6F0F5;
  /* Campus Experience (light blue)   */
  --bg-organised: #FFFFFF;
  /* Organised Events (white in SVG)  */
  --bg-testimonials: #EDE8F4;
  /* Testimonials (reuses courses)    */
  --bg-page: #FFFFFF;

  /* ----- Text ----------------------------------------------------------- */
  --text-heading: #060D0E;
  /* near-black headings + body       */
  --text-navy: #071247;
  /* accent dark-navy heading variant */
  --text-body: #202020;
  --text-muted: #9D9D9D;
  --text-muted-2: #949494;
  --text-on-primary: #FFFFFF;

  /* ----- Card/decorative tints ---------------------------------------- */
  --tint-pink-soft: #FCE8E8;
  --tint-pink: #F6B9B8;
  --tint-pink-2: #F5E8EA;
  --tint-lavender-2: #EEEAF5;
  --tint-cream: #F4EDE5;
  --tint-linen: #F8F4F1;
  --tint-green-1: #E5F1EB;
  --tint-green-2: #E4F0EA;
  --tint-gray: #F3F3F3;
  --star-yellow: #F5DC76;
  --accent-blue: #207BF3;
  --accent-blue-2: #0A88C4;

  /* ----- Typography ---------------------------------------------------- */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --fs-hero: 56px;
  --fs-h1: 44px;
  --fs-h2: 36px;
  --fs-h3: 24px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-xsmall: 12px;

  --lh-tight: 1.15;
  --lh-normal: 1.5;
  --lh-loose: 1.7;

  /* ----- Layout scale (derived from 1920 SVG canvas) ------------------- */
  --container-max: 1560px;
  --container-gutter: 20px;
  --section-py: 80px;
  --section-py-sm: 48px;
  --grid-gap: 24px;
  --card-radius: 16px;
  --button-radius: 999px;

  /* ----- Z-index + misc ----------------------------------------------- */
  --z-social-rail: 40;
  --z-header: 50;
  --z-modal: 100;
  --shadow-card: 0 8px 24px rgba(6, 13, 14, 0.08);
  --shadow-card-hover: 0 16px 32px rgba(6, 13, 14, 0.12);

  /* ----- Transitions ---------------------------------------------------- */
  --t-fast: 150ms ease;
  --t-base: 240ms ease;
}

/* ==========================================================================
   Base + utilities (scoped, minimal — do not override webflow globals).
   ========================================================================== */

html,
body {
  overflow-x: hidden;
}

/* global safety against side-scroll */

body.page-2026 {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-page);
}

.ij-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
  box-sizing: border-box;
}

/* Shared section-heading underline (decorative divider used under H2s).
   Use as a span inside / after the heading. */
.ij-underline {
  display: inline-block;
  width: 260px;
  height: 26px;
  background: url('../images/heading-underline.png') no-repeat center;
  background-size: contain;
}

.ij-underline--left {
  display: block;
  background-position: left center;
  width: 200px;
  height: 24px;
}

/* ==========================================================================
   Site header — three stacked strips
   ========================================================================== */

.ij-header {
  position: relative;
  z-index: var(--z-header);
  font-family: var(--font-sans);
  overflow-x: clip;
}

.ij-header *,
.ij-header *::before,
.ij-header *::after {
  box-sizing: border-box;
}

.ij-header a {
  text-decoration: none;
}

.ij-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---- Strip 1: white utility bar ---- */
.ij-header__top {
  background: #ffffff;
  border-bottom: 1px solid rgba(6, 13, 14, 0.06);
}

.ij-header__top-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.ij-brand {
  display: inline-flex;
  align-items: center;
  color: var(--text-heading);
  flex: 0 0 auto;
}

.ij-header .ij-brand__logo {
  /* higher specificity — beat webflow img rules */
  height: 60px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
}

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

.ij-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  /* fail-safe: wrap rather than overflow */
  justify-content: flex-end;
}

.ij-nav__link {
  color: #000000;
  /* SVG primary-nav fill = pure black */
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  padding: 8px 2px;
  position: relative;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.ij-nav__link:hover,
.ij-nav__link.is-active {
  color: var(--color-primary);
}

.ij-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.ij-nav__item.dropdown>.ij-nav__link::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: middle;
  transform: translateY(2px);
}

/* Bootstrap dropdown menu restyle (already works with data-bs-toggle) */
.ij-header .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 8px;
  margin-top: 8px;
  font-family: var(--font-sans);
  min-width: 240px;
}

.ij-header .dropdown-item {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ij-header .dropdown-item:hover,
.ij-header .dropdown-item.active,
.ij-header .dropdown-item.is-active {
  background: var(--bg-courses);
  color: var(--color-primary);
}

.ij-header .dropdown-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ---- Mobile nav toggle ---- */
.ij-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}

.ij-nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-heading);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* ---- Strip 2: red action bar ---- */
.ij-header__action {
  background: var(--color-primary);
  color: var(--text-on-primary);
}

.ij-header__action-inner {
  display: flex;
  align-items: center;
  min-height: 80px;
  /* SVG red strip is 80px tall */
}

.ij-nav-action {
  width: 100%;
}

.ij-nav-action__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* avg ~30px visual gap once padding added */
  flex-wrap: wrap;
}

.ij-nav-action__link {
  color: var(--text-on-primary);
  font-size: 14px;
  font-weight: var(--fw-medium);
  /* matches pill weight (SVG Medium/500) */
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  line-height: 1;
}

.ij-nav-action__link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Admissions pill — exact SVG specs: 180×56, rx=10, 22px Medium, centered */
.ij-nav-action__link.is-pill {
  background: #ffffff;
  color: var(--text-heading);
  width: 140px;
  height: 46px;
  padding: 0 24px;
  border-radius: 10px;
  /* rx=10 from the SVG rect */
  font-size: 16px;
  /* Figma spec */
  font-weight: var(--fw-medium);
  /* 500 / Medium */
  line-height: 1;
  /* 100% */
  letter-spacing: 0;
  justify-content: center;
  text-align: center;
}

.ij-nav-action__link.is-pill.is-active {
  background: #ffffff;
  color: var(--color-primary);
}

.ij-nav-action__item.dropdown>.ij-nav-action__link::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}

/* ---- Strip 3: marquee ---- */
.ij-header__marquee {
  background: var(--bg-marquee);
  overflow: hidden;
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(6, 13, 14, 0.06);
  border-bottom: 1px solid rgba(6, 13, 14, 0.06);
}

.ij-marquee__track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: ij-marquee-scroll 38s linear infinite;
  will-change: transform;
  padding-right: 60px;
}

.ij-header__marquee:hover .ij-marquee__track {
  animation-play-state: paused;
}

.ij-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: var(--fw-semibold);
  font-size: 16px;
  color: var(--text-heading);
}

.ij-marquee__icon {
  width: 24px;
  height: 24px;
  color: var(--color-marquee-icon);
  flex: 0 0 auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

@keyframes ij-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Floating social rail (fixed to left edge, all pages)
   ========================================================================== */

.ij-social-rail {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: var(--z-social-rail);
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.ij-social-rail__link,
.ij-social-rail__link:visited,
.ij-social-rail__link:hover,
.ij-social-rail__link:focus,
.ij-social-rail__link:active {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--t-fast);
}

.ij-social-rail__link:hover {
  transform: translateX(2px);
}

.ij-social-rail__link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.ij-social-rail__link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Brand-specific backgrounds (match the Figma target) */
.ij-social-rail__link--fb {
  background: #1877F2;
}

.ij-social-rail__link--ig {
  background: radial-gradient(circle at 30% 110%, #FDCB5C 0%, #F47133 25%, #BC3081 55%, #4C63D2 90%);
}

.ij-social-rail__link--li {
  background: #0A66C2;
}

.ij-social-rail__link--x {
  background: #000000;
}

/* ==========================================================================
   Responsive — stacked nav under 1080px, mobile overlay under 768px
   ========================================================================== */

@media (max-width: 1399px) {
  :root {
    --container-gutter: 32px;
  }

  .ij-nav__list {
    gap: 24px;
  }

  .ij-nav__link {
    font-size: 15px;
  }

  .ij-nav-action__link {
    padding: 10px 12px;
    font-size: 14px;
  }

  .ij-nav-action__link.is-pill {
    padding: 10px 24px;
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .ij-nav__list {
    gap: 18px;
  }

  .ij-nav__link {
    font-size: 14px;
  }

  .ij-nav-action__link {
    padding: 9px 10px;
    font-size: 13px;
  }

  .ij-brand__logo {
    height: 56px;
    max-width: 320px;
  }
}

@media (max-width: 991px) {
  .ij-nav-toggle {
    display: block;
  }

  .ij-header__top-inner {
    min-height: 72px;
  }

  .ij-brand__logo {
    height: 52px;
    max-width: 280px;
  }

  .ij-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(6, 13, 14, 0.08);
    box-shadow: var(--shadow-card);
    padding: 12px;
    display: none;
    z-index: 5;
  }

  .ij-nav.is-open {
    display: block;
  }

  .ij-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .ij-nav__link {
    padding: 12px;
    width: 100%;
    display: block;
  }

  .ij-header__action-inner {
    overflow-x: auto;
  }

  .ij-nav-action__list {
    flex-wrap: nowrap;
  }
}

@media (max-width: 640px) {
  .ij-social-rail {
    display: none;
  }

  .ij-marquee__item {
    font-size: 14px;
  }
}

/* ==========================================================================
   Footer — matches design/landing-page.svg (y=7570–8263, fill #400606)
   ========================================================================== */

.ij-footer {
  background: var(--color-footer);
  color: #ffffff;
  font-family: var(--font-sans);
  padding: 50px 0 28px;
  position: relative;
  overflow: hidden;
}

.ij-footer__inner {
  max-width: 1560px;
  margin: 0 auto;
  /* Extra left padding so the seal clears the fixed social rail (~72px wide) */
  padding: 0 40px 0 110px;
  box-sizing: border-box;
}

.ij-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr 0.95fr 0.55fr;
  gap: 32px;
  align-items: flex-start;
}

/* ---- Brand column ---------------------------------------------------- */
.ij-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ij-footer__brand-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Beats webflow's img rules + inline width attribute issues */
.ij-footer .ij-footer__seal {
  width: 96px !important;
  max-width: 96px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.ij-footer__promo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ffffff;
}

.ij-footer__promo-label {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.85;
}

.ij-footer__promo-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.ij-footer__address {
  font-size: 12px;
  line-height: 1.55;
  color: #ffffff;
  opacity: 0.9;
  max-width: 280px;
  margin-top: 4px;
}

/* Contact list (plain white icons — no colored bg) */
.ij-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ij-footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ij-footer__contact a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: opacity 0.15s ease;
}

.ij-footer__contact a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.ij-footer__contact-icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  opacity: 0.95;
}

/* ---- Link columns ---------------------------------------------------- */
.ij-footer__title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 10px;
  letter-spacing: 0.01em;
}

.ij-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ij-footer__links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.95;
  transition: opacity 0.15s ease, padding-left 0.15s ease;
}

.ij-footer__links a:hover {
  opacity: 1;
  padding-left: 4px;
  text-decoration: underline;
}

/* ---- Bottom strip: socials left, copyright right -------------------- */
.ij-footer__bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* Social icons — white circles with brand-colored glyphs */
.ij-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.ij-footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ij-footer__social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.ij-footer__social-link--fb {
  color: #1877F2;
}

.ij-footer__social-link--ig {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #ffffff;
}

.ij-footer__social-link--li {
  color: #0A66C2;
}

.ij-footer__social-link--x {
  color: #000000;
}

.ij-footer__copy {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.95;
}

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 1200px) {
  .ij-footer__inner {
    padding: 0 40px;
  }

  .ij-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .ij-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .ij-footer {
    padding: 50px 0 30px;
  }

  .ij-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ij-footer__bottom {
    justify-content: center;
    text-align: center;
    margin-top: 36px;
  }
}

/* ==========================================================================
   Landing page shared primitives
   ========================================================================== */

.ij-page {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-page);
}

.ij-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.ij-section-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.ij-section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 14px auto 0;
}

.ij-placeholder {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  padding: 40px 0;
  margin: 0;
}

/* ==========================================================================
   Section 4.1 — Hero
   Full-bleed campus photo with a floating red notification bell bottom-right.
   ========================================================================== */

.ij-hero {
  width: 100%;
  background: #000;
  position: relative;
}

.ij-hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 720;
  max-height: 720px;
  overflow: hidden;
}

.ij-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ij-hero__notif {
  position: absolute;
  right: 36px;
  bottom: 36px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(225, 28, 27, 0.35), 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: ij-pulse 2.4s ease-in-out infinite;
}

.ij-hero__notif:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(225, 28, 27, 0.45), 0 6px 16px rgba(0, 0, 0, 0.25);
  animation-play-state: paused;
}

@keyframes ij-pulse {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(225, 28, 27, 0.35), 0 0 0 0 rgba(225, 28, 27, 0.5);
  }

  50% {
    box-shadow: 0 10px 30px rgba(225, 28, 27, 0.35), 0 0 0 18px rgba(225, 28, 27, 0);
  }
}

@media (max-width: 768px) {
  .ij-hero__frame {
    aspect-ratio: 16 / 10;
  }

  .ij-hero__notif {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

/* ==========================================================================
   Section 4.2 — Empowering the Next Generation of Innovators
   Two-col intro (H2 left, body right) + two-up media + accreditation badges.
   ========================================================================== */

.ij-empowering {
  padding: 90px 0 100px;
  background: var(--bg-page);
}

.ij-empowering>.ij-container {
  padding-left: 96px;
  padding-right: 96px;
}

.ij-empowering__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}

.ij-empowering__heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0;
  letter-spacing: -0.01em;
}

.ij-empowering__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 8px 0 0;
  max-width: 560px;
}

/* Overlapping two-up: wide left image, video card offset down-right on top.
   Media height is driven by the left image card's aspect ratio (no padding-bottom). */
.ij-empowering__media {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.ij-empowering__image-card {
  position: relative;
  margin: 0;
  width: 54%;
  aspect-ratio: 884 / 625;
  border-radius: 28px;
  overflow: hidden;
  background: var(--tint-gray);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
}

.ij-empowering__image-card img,
.ij-empowering__video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right column floats over the right side of the left card.
   Spans top: 11.5% to bottom: 0 so video + badges fill the available height
   and the badges' bottom aligns with the left card's bottom (per design). */
.ij-empowering__right {
  position: absolute;
  top: 11.5%;
  bottom: 0;
  right: 0;
  width: 53.2%;
}

.ij-empowering__video-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 78.5%;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--tint-gray);
  border: 6px solid #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Centered play button overlay */
.ij-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  font-size: 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.ij-play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  animation: ij-play-halo 2.2s ease-out infinite;
}

.ij-play-btn i {
  margin-left: 4px;
}

.ij-play-btn:hover {
  background: #ffffff;
  transform: scale(1.06);
}

@keyframes ij-play-halo {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Accreditation badge row — three small colored pill cards.
   Anchored to bottom-right of the right column so the badge bottom edge
   aligns with the left image card's bottom edge. */
.ij-empowering__badges {
  position: absolute;
  bottom: 0;
  right: 6.6%;
  width: 72.6%;
  height: 16.5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ij-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  height: 100%;
}

.ij-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.ij-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: var(--font-sans);
  color: #2a2a2a;
}

.ij-badge__text em {
  font-style: normal;
  font-size: 10px;
  font-weight: 400;
  color: #5a5a5a;
}

.ij-badge__text strong {
  font-size: 11px;
  font-weight: 600;
  color: #1f1f1f;
}

.ij-badge--pink {
  background: #f4e8ee;
}

.ij-badge--gold {
  background: #efeacf;
}

.ij-badge--teal {
  background: #e6f0f5;
}

@media (max-width: 1100px) {
  .ij-empowering>.ij-container {
    padding-left: 72px;
    padding-right: 72px;
  }
}

@media (max-width: 768px) {
  .ij-empowering>.ij-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 900px) {
  .ij-empowering {
    padding: 60px 0 70px;
  }

  .ij-empowering__intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  /* Drop the overlap on small screens — stack everything */
  .ij-empowering__media {
    position: static;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ij-empowering__image-card {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .ij-empowering__right {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ij-empowering__video-card {
    position: static;
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .ij-empowering__badges {
    position: static;
    width: 100%;
    height: auto;
    min-height: 56px;
    grid-template-columns: 1fr;
    gap: 10px;
    right: auto;
  }

  .ij-play-btn {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
}

/* ==========================================================================
   Section 4.3 — Upcoming Events
   Left intro (heading + view-all + 2 thumbnails) + right Slick carousel.
   ========================================================================== */

.ij-events {
  padding: 80px 0 90px;
  background: #f8f4f1;
}

.ij-events>.ij-container {
  padding-left: 96px;
  padding-right: 96px;
}

.ij-events__layout {
  display: grid;
  grid-template-columns: 32% minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* --- Left intro column --- */
.ij-events__intro {
  display: flex;
  flex-direction: column;
}

.ij-events__heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.ij-events__divider {
  display: block;
  align-self: flex-start;
  width: 240px;
  height: 24px;
  margin: 6px 0 22px;
  background: url('../images/heading-underline.png') no-repeat center;
  background-size: contain;
}

.ij-events__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 26px;
  border: 2px solid #e11c1b;
  border-radius: 9px;
  color: #e11c1b;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  margin-bottom: 26px;
}

.ij-events__view-all:hover {
  background: #e11c1b;
  color: #ffffff;
}

.ij-events__thumbs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ij-events__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 519 / 187;
  border-radius: 10px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

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

.ij-events__thumb:hover img {
  transform: scale(1.04);
}

/* --- Right carousel column --- */
.ij-events__carousel-wrap {
  position: relative;
  min-width: 0;
}

.ij-events__nav {
  position: absolute;
  top: -56px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.ij-events__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
  background: #ffffff;
  color: #2a2a2a;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ij-events__nav-btn:hover {
  background: #e11c1b;
  border-color: #e11c1b;
  color: #ffffff;
}

/* --- Custom slider (no Slick dependency) --- */
.ij-events__viewport {
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

.ij-events__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* --- Event card --- */
.ij-event-card {
  flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ij-event-card__media {
  width: 100%;
  aspect-ratio: 387 / 220;
  overflow: hidden;
  background: #ddd;
}

.ij-event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ij-event-card__body {
  padding: 18px 20px 20px;
}

.ij-event-card__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 12px;
}

.ij-event-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
  font-size: 13px;
  color: #6a6a6a;
}

.ij-event-card__meta i {
  width: 14px;
  color: #e11c1b;
}

.ij-event-card__brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #ececec;
  font-size: 13px;
  color: #444;
  text-decoration: none;
  width: 100%;
  transition: color 0.2s ease;
}

.ij-event-card__brochure i {
  color: #e11c1b;
}

.ij-event-card__brochure:hover {
  color: #e11c1b;
}

/* Tablet: tighten the gap so the right column has room for 2 cards */
@media (max-width: 1100px) {
  .ij-events__layout {
    gap: 36px;
  }
}

@media (max-width: 1100px) {
  .ij-events>.ij-container {
    padding-left: 72px;
    padding-right: 72px;
  }
}

@media (max-width: 768px) {
  .ij-events>.ij-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Stack the section on smaller screens; show one card per view */
@media (max-width: 900px) {
  .ij-events {
    padding: 60px 0 70px;
  }

  .ij-events__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .ij-events__nav {
    position: static;
    margin-bottom: 16px;
    justify-content: flex-end;
  }

  .ij-events__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ij-event-card {
    flex-basis: 100%;
  }
}

@media (max-width: 560px) {
  .ij-events__thumbs {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Section 4.4 — Courses Offered
   Centered heading + decorative divider + UG/PG toggle + responsive grid
   of icon-led course cards.
   ========================================================================== */

.ij-courses {
  padding: 80px 0 90px;
  background: #ede8f4;
}

.ij-courses__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.ij-courses__heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.ij-courses__divider {
  display: inline-block;
  width: 260px;
  height: 26px;
  margin: 6px auto 28px;
  background: url('../images/heading-underline.png') no-repeat center;
  background-size: contain;
}

/* UG / PG toggle */
.ij-courses__toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #ede4e8;
  border-radius: 10px;
  padding: 6px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.ij-courses__tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #6a6a6a;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px;
  min-width: 92px;
  text-align: center;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ij-courses__tab.is-active {
  background: #ffffff;
  color: var(--text-heading);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Full-bleed wrapper for the cards (cards extend wider than the section
   container, like the design). Uses small viewport-side padding only. */
.ij-courses__bleed {
  padding: 0 18px;
  margin-top: 12px;
}

/* Course grid: 8-col grid lets row-2 cards offset by half a card.
   Row 1: cards 1-4 each span 2 cols  -> fills 8 cols.
   Row 2: cards 5-7 each span 2 cols, starting at col 2/4/6 (brick offset). */
.ij-courses__grid {
  display: none;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  row-gap: 18px;
}

.ij-courses__grid.is-active {
  display: grid;
}

.ij-courses__grid>.ij-course-card {
  grid-column: span 2;
}

.ij-courses__grid>.ij-course-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.ij-courses__grid>.ij-course-card:nth-child(6) {
  grid-column: 4 / span 2;
}

.ij-courses__grid>.ij-course-card:nth-child(7) {
  grid-column: 6 / span 2;
}

/* Course card — fixed height so wrapping titles don't make cards uneven */
.ij-course-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  height: 122px;
  overflow: hidden;
}

/* Hover state: peach (bottom-left) → lavender (top-right) diagonal gradient
   matching the design spec the user provided. */
.ij-course-card:hover {
  background: linear-gradient(45deg, #fad4d4 0%, #faece5 45%, #ebe9f4 70%, #d6dbf2 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.ij-course-card__icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #fce8e8;
  color: #e11c1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ij-course-card__content {
  flex: 1 1 auto;
  min-width: 0;
}

.ij-course-card__title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.3;
  margin: 4px 0 0;
}

/* "4 Years" sits at the card's bottom-left, vertically aligned under the
   icon column (same left padding as the icon). */
.ij-course-card__meta {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8a8a8a;
  margin: 0;
}

.ij-course-card__meta i {
  color: #b0b0b0;
}

/* "Check Now" CTA — hidden by default, fades in on hover.
   Its bottom matches the card's bottom padding so it aligns with "4 Years". */
.ij-course-card__cta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #e11c1b;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ij-course-card:hover .ij-course-card__cta {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1200px) {

  /* 6-col grid: row 1 = 3 cards, row 2 staggered with 2 cards */
  .ij-courses__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .ij-courses__grid>.ij-course-card {
    grid-column: span 2;
  }

  .ij-courses__grid>.ij-course-card:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .ij-courses__grid>.ij-course-card:nth-child(6) {
    grid-column: 4 / span 2;
  }

  .ij-courses__grid>.ij-course-card:nth-child(7) {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .ij-courses {
    padding: 60px 0 70px;
  }

  .ij-courses__bleed {
    padding: 0 12px;
  }

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

  .ij-courses__grid>.ij-course-card,
  .ij-courses__grid>.ij-course-card:nth-child(5),
  .ij-courses__grid>.ij-course-card:nth-child(6),
  .ij-courses__grid>.ij-course-card:nth-child(7) {
    grid-column: span 1;
  }

  .ij-courses__tab {
    padding: 9px 26px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .ij-courses__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ij-course-card__cta {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   YouTube lightbox (shared)
   ========================================================================== */

.ij-yt-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.ij-yt-modal.is-open {
  display: flex;
}

.ij-yt-modal__frame {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.ij-yt-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ij-yt-modal__close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ij-yt-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Section 4.5 — Achievements
   Centered heading with the same decorative underline as Courses, then a
   3-up grid of banner cards. Each card has a full-bleed image, a small
   accent tag, a gradient base for legibility, and a title+meta block.
   ========================================================================== */

.ij-achievements {
  padding: 80px 0 70px;
  background: #f5e6ea;
}

.ij-achievements>.ij-container,
.ij-stats>.ij-container {
  padding-left: 96px;
  padding-right: 96px;
}

@media (max-width: 1100px) {

  .ij-achievements>.ij-container,
  .ij-stats>.ij-container {
    padding-left: 72px;
    padding-right: 72px;
  }
}

@media (max-width: 768px) {

  .ij-achievements>.ij-container,
  .ij-stats>.ij-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.ij-achievements__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.ij-achievements__heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.ij-achievements__divider {
  display: inline-block;
  width: 260px;
  height: 26px;
  margin: 6px auto 0;
  background: url('../images/heading-underline.png') no-repeat center;
  background-size: contain;
}

.ij-achievements__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ij-achievement-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1a1a;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}

.ij-achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.ij-achievement-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.ij-achievement-card:hover .ij-achievement-card__image {
  transform: scale(1.06);
}

.ij-achievement-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 35%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 0.85) 100%);
}

.ij-achievement-card__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(225, 28, 27, 0.35);
}

.ij-achievement-card__body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.ij-achievement-card__title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.ij-achievement-card__title sup {
  font-size: 0.6em;
  top: -0.6em;
}

.ij-achievement-card__meta {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px;
}

.ij-achievement-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ij-achievement-card__cta i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.ij-achievement-card:hover .ij-achievement-card__cta {
  opacity: 1;
  transform: translateX(0);
}

.ij-achievement-card:hover .ij-achievement-card__cta i {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .ij-achievements {
    padding: 60px 0 50px;
  }

  .ij-achievements__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .ij-achievement-card {
    aspect-ratio: 3 / 4;
  }

  .ij-achievement-card__title {
    font-size: 18px;
  }

  .ij-achievement-card__cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .ij-achievements__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ij-achievement-card {
    aspect-ratio: 16 / 11;
  }
}

/* ==========================================================================
   Section 4.6 — Stats Strip
   Four equally-sized stats with bold red numbers and grey labels,
   separated by thin vertical dividers.
   ========================================================================== */

.ij-stats {
  padding: 50px 0 70px;
  background: #ffffff;
}

.ij-stats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ij-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 32px;
  border-radius: 16px;
  min-height: 160px;
}

.ij-stats__item--lavender {
  background: #ebe7f4;
}

.ij-stats__item--peach {
  background: #f7ebe1;
}

.ij-stats__item--mint {
  background: #e2efe5;
}

.ij-stats__item--pink {
  background: #f4e7ea;
}

.ij-stats__value {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;
  color: #0b0b0b;
  letter-spacing: -0.02em;
}

.ij-stats__label {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: #9a9a9a;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .ij-stats {
    padding: 0 0 60px;
  }

  .ij-stats__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .ij-stats__item {
    padding: 28px 24px;
    min-height: 140px;
  }
}

@media (max-width: 420px) {
  .ij-stats__list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   Section 4.7 — Our Prominent Recruiters
   Centered heading + an infinite, hover-pausable marquee of recruiter chips.
   The track holds two copies of the chip list back-to-back; we translate
   it by exactly half its width to loop seamlessly. Edge fades soften the
   ends so chips don't pop in/out.
   ========================================================================== */

.ij-recruiters {
  padding: 60px 0 80px;
  background: #ffffff;
}

.ij-recruiters>.ij-container {
  padding-left: 24px;
  padding-right: 24px;
}

.ij-recruiters__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.ij-recruiters__heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.ij-recruiters__divider {
  display: inline-block;
  width: 260px;
  height: 26px;
  margin: 6px auto 0;
  background: url('../images/heading-underline.png') no-repeat center;
  background-size: contain;
}

.ij-recruiters__marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0,
      #000 8%,
      #000 92%,
      transparent 100%);
  mask-image: linear-gradient(90deg,
      transparent 0,
      #000 8%,
      #000 92%,
      transparent 100%);
}

.ij-recruiters__track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: ij-marquee 32s linear infinite;
}

.ij-recruiters__marquee:hover .ij-recruiters__track {
  animation-play-state: paused;
}

@keyframes ij-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ij-recruiters__track {
    animation: none;
  }
}

.ij-recruiter-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 90px;
  padding: 0 24px;
  background: transparent;
  transition: transform 0.25s ease;
}

.ij-recruiter-chip:hover {
  transform: translateY(-2px);
}

.ij-recruiter-chip__logo {
  display: block;
  max-height: 60px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .ij-recruiters>.ij-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 768px) {
  .ij-recruiters {
    padding: 50px 0 60px;
  }

  .ij-recruiters>.ij-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ij-recruiter-chip {
    min-width: 170px;
    height: 70px;
    padding: 0 18px;
  }

  .ij-recruiter-chip__logo {
    max-height: 46px;
  }

  .ij-recruiters__track {
    animation-duration: 24s;
    gap: 12px;
  }

  @keyframes ij-marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-50% - 8px));
    }
  }
}

/* ==========================================================================
   Section 4.8 — Campus Experience
   Centered heading + 5-column photo grid. Each card has a portrait image
   that zooms gently on hover, with a flat label bar under it that fills
   with the brand red on hover.
   ========================================================================== */

.ij-campus {
  padding: 70px 0 80px;
  background: #eef4f9;
}

.ij-campus>.ij-container {
  padding-left: 96px;
  padding-right: 96px;
}

.ij-campus__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.ij-campus__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ij-campus__heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.ij-campus__divider {
  display: inline-block;
  width: 220px;
  height: 22px;
  background: url('../images/heading-underline.png') no-repeat left center;
  background-size: contain;
}

.ij-campus__nav {
  display: inline-flex;
  gap: 12px;
}

.ij-campus__nav-btn {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  color: #2b2b2b;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.ij-campus__nav-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.ij-campus__viewport {
  overflow: hidden;
}

.ij-campus__track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.ij-campus-card {
  flex: 0 0 calc((100% - 54px) / 4);
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #f3f3f3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}

.ij-campus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.ij-campus-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ij-campus-card:hover .ij-campus-card__image {
  transform: scale(1.06);
}

.ij-campus-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.30) 55%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.ij-campus-card__label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1100px) {
  .ij-campus>.ij-container {
    padding-left: 72px;
    padding-right: 72px;
  }

  .ij-campus-card {
    flex: 0 0 calc((100% - 36px) / 3);
  }
}

@media (max-width: 768px) {
  .ij-campus {
    padding: 56px 0 60px;
  }

  .ij-campus>.ij-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .ij-campus__head {
    align-items: center;
  }

  .ij-campus-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .ij-campus-card__label {
    font-size: 17px;
    left: 18px;
    bottom: 16px;
  }

  .ij-campus__nav-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .ij-campus__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .ij-campus-card {
    flex: 0 0 100%;
  }

  .ij-campus-card__image {
    aspect-ratio: 16 / 11;
  }
}

/* ==========================================================================
   Section 4.9 — Organised Events
   Centered heading + 3 horizontal cards. Each card has a 16:11 image on
   top and a body block with title + date/venue meta. Hover lifts the
   card and scales the image gently.
   ========================================================================== */

.ij-organised {
  padding: 70px 0 90px;
  background: #ffffff;
  overflow: hidden;
}

.ij-organised>.ij-container {
  padding-left: 96px;
  padding-right: 96px;
}

.ij-organised__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.ij-organised__heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.ij-organised__divider {
  display: inline-block;
  width: 260px;
  height: 26px;
  margin: 6px auto 0;
  background: url('../images/heading-underline.png') no-repeat center;
  background-size: contain;
}

/* ----- 3D rotating ring ------------------------------------------------- */
.ij-organised__stage {
  position: relative;
  width: 100%;
  height: 310px;
  perspective: 2400px;
  perspective-origin: 50% 42%;
  margin: 60px auto 50px;
}

.ij-organised__ring {
  --ij-ring-count: 12;
  --ij-ring-radius: 420px;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 210px;
  height: 200px;
  transform-style: preserve-3d;
  animation: ij-ring-spin 32s linear infinite;
  will-change: transform;
}

.ij-organised__stage:hover .ij-organised__ring {
  animation-play-state: paused;
}

@keyframes ij-ring-spin {
  from {
    transform: rotateX(-8deg) rotateY(0deg);
  }

  to {
    transform: rotateX(-8deg) rotateY(-360deg);
  }
}

.ij-organised-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 6px 6px 12px;
  border-radius: 18px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 28px rgba(60, 30, 110, 0.16);
  border: 2px solid #5cc6c7;
  backface-visibility: visible;
  transition: box-shadow 0.3s ease, transform 0.35s ease;
}

.ij-organised-card:hover {
  --ij-card-scale: 1.18;
  z-index: 10;
  box-shadow: 0 22px 48px rgba(60, 30, 110, 0.32);
}

.ij-organised-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  border-radius: 12px;
}

.ij-organised-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ij-organised-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 8px 4px 0;
  text-align: center;
}

.ij-organised-card__title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: #2c2c2c;
}

.ij-organised-card__cta {
  display: none;
  width: 100%;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(225, 28, 27, 0.28);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ij-organised-card:hover .ij-organised-card__cta {
  background: var(--color-primary-dark);
  box-shadow: 0 8px 18px rgba(108, 25, 23, 0.38);
}

@media (prefers-reduced-motion: reduce) {
  .ij-organised__ring {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .ij-organised>.ij-container {
    padding-left: 72px;
    padding-right: 72px;
  }

  .ij-organised__ring {
    --ij-ring-radius: 355px;
    width: 190px;
    height: 180px;
  }

  .ij-organised__stage {
    height: 290px;
  }
}

@media (max-width: 768px) {
  .ij-organised {
    padding: 56px 0 70px;
  }

  .ij-organised>.ij-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .ij-organised__ring {
    --ij-ring-radius: 295px;
    width: 170px;
    height: 160px;
  }

  .ij-organised__stage {
    height: 255px;
    perspective: 1800px;
  }

  .ij-organised-card__title {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .ij-organised__ring {
    --ij-ring-radius: 220px;
    width: 150px;
    height: 150px;
  }

  .ij-organised__stage {
    height: 240px;
    perspective: 1400px;
  }

  .ij-organised-card__cta {
    font-size: 11px;
    padding: 6px 14px;
  }
}

/* ==========================================================================
   Section 4.10 — Testimonials
   Heading left, prev/next buttons floating top-right, then a horizontal
   carousel of 3-up testimonial cards. Each card has a coral quote icon
   and 5 yellow stars at the top, body copy, a divider rule, and an
   avatar + name + role footer.
   ========================================================================== */

.ij-testimonials {
  padding: 80px 0 90px;
  background: #ede5ec;
}

.ij-testimonials>.ij-container {
  padding-left: 96px;
  padding-right: 96px;
}

.ij-testimonials__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}

.ij-testimonials__heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0;
  letter-spacing: -0.01em;
}

.ij-testimonials__nav {
  display: inline-flex;
  gap: 12px;
}

.ij-testimonials__nav-btn {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  color: #2b2b2b;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.ij-testimonials__nav-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.ij-testimonials__viewport {
  overflow: hidden;
}

.ij-testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.ij-testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.ij-testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ij-testimonial-card__quote {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.ij-testimonial-card__quote img {
  display: block;
  width: 36px;
  height: auto;
}

.ij-testimonial-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ij-testimonial-card__stars img {
  display: block;
  width: 16px;
  height: 16px;
}

.ij-testimonial-card__body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 18px;
  flex: 1 1 auto;
}

.ij-testimonial-card__rule {
  border: 0;
  border-top: 1px solid #ececec;
  margin: 0 0 18px;
}

.ij-testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ij-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ij-testimonial-card__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ij-testimonial-card__name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.ij-testimonial-card__role {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 1100px) {
  .ij-testimonials>.ij-container {
    padding-left: 72px;
    padding-right: 72px;
  }

  .ij-testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .ij-testimonials__track {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .ij-testimonials {
    padding: 60px 0 70px;
  }

  .ij-testimonials>.ij-container {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .ij-testimonial-card {
    flex: 0 0 100%;
    padding: 24px;
  }

  .ij-testimonials__nav-btn {
    width: 48px;
    height: 48px;
  }
}