@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
  --bg: #ffffff;
  --text: #1b1b1b;
  --muted: #5a5a5a;
  --brand-red: #b42b35;
  --brand-blue: #083860;
  /* sampled from section background */
  --brand-navy: #0b3b63;
  --line-blue: #3c6183;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, .18);
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1200px;
}
* {
  box-sizing: border-box;
  font-family: sans-serif;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: 'Open Sans',Arial,sans-serif;
  color: var(--text);
  background: var(--bg);
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  font-family: sans-serif;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 18px;
  line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: #fff;
  color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
}
.btn--primary:hover {
  box-shadow: 0 12px 26px rgba(0, 0, 0, .26);
	background: #b42b35;
	color: #fff;
}
/* HERO */
.hero {
  position: relative;
  padding: 54px 0;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .75) 50%, rgba(0, 0, 0, .75) 100%), url("../images/hero-bg.jpg") center/cover no-repeat;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.hero__logoWrap {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 12px 14px;
  margin-bottom: 2px;
	position: relative;
    top: -54px;
}
.hero__logo {
  height: 34px;
  width: auto;
}
.hero__title {
  margin: 10px 0 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 34px;
  line-height: 1.02;
}
.hero__subtitle {
  margin: 0 0 18px;
  max-width: 64ch;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.45;
  font-family: sans-serif;
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
  margin: 18px 0 22px;
  max-width: 520px;
  font-family: sans-serif;
}
.stat {
  display: grid;
  gap: 0px;
	border-left: 1px solid;
    padding-left: 15px;
}
.stat__value {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.stat__label {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, .90);
}
/* Video card */
.hero__media {
  display: flex;
  justify-content: flex-end;
}
.videoCard {
  width: min(100%, 820px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
}
.videoCard__frame {
  width: 100%;
  border: 0;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #e9e9e9;
  display: block;
  aspect-ratio: var(--video-ratio, 16 / 9);
}
.videoCard__skeleton {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #efefef;
  aspect-ratio: var(--video-ratio, 16 / 9);
}
/* USP STRIP */
.uspStrip {
  background: var(--brand-red);
  color: #fff;
  padding: 16px 0;
}
.uspStrip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 14px;
  align-items: center;
}
.uspStrip__item {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 54px;
}
.uspStrip__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
}
.uspStrip__icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  opacity: .95;
}
.uspStrip__kicker {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .9;
  font-weight: 700;
}
.uspStrip__value {
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}
/* WHY SECTION */
.why {
  padding: 42px 0 54px;
  background: #fff;
  font-family: sans-serif;
}
.why__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}
.why__kicker {
  font-size: 14px;
  color: #3f3f3f;
  margin-bottom: 10px;
}
.why__title {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
}
.why__desc {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 64ch;
}
.why__figure {
  margin: 0;
}
.why__image {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  display: block;
  background: #f0f0f0;
}
.why__right {
  border-left: 4px solid var(--line-blue);
  padding-left: 18px;
  display: grid;
  gap: 18px;
}
.fact {
  display: grid;
  gap: 8px;
}
.fact__value {
  color: var(--brand-red);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 36px;
  line-height: 1;
	padding:22px 0 0 0;
}
.fact__text {
  color: #111;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.35;
}
.fact__source {
  color: #6b6b6b;
  font-size: 11px;
  line-height: 1.35;
  font-family: sans-serif;
}
/* WHY ASHOKA FOR CS (TABS) */
.whyAshokaCS {
  background: var(--brand-navy);
  color: #fff;
  padding: 56px 0 64px;
}
.whyAshokaCS__header {
  max-width: 980px;
}
.whyAshokaCS__kicker {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .92;
  margin-bottom: 8px;
  font-family: sans-serif;
}
.whyAshokaCS__title {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 2.5vw, 46px);
  line-height: 1.08;
}
.whyAshokaCS__titleStrong {
  font-weight: 800;
}
.whyAshokaCS__titleSoft {
  font-weight: 700;
  opacity: .98;
}
.whyAshokaCS__sub {
  margin: 0;
  max-width: 95ch;
  color: rgba(255, 255, 255, .90);
  font-size: 14px;
  line-height: 1.55;
}
/* layout */
.csTabs {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: center;
}
/* left nav */
.csNav {
  display: grid;
}
.csNav {
  display: grid;
}
.csNav__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .92);
  text-align: left;
  padding: 14px 0;
  font-size: 16px;
  /* ✅ default regular */
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .25);
}
.csNav__btn::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(255, 255, 255, .88);
  margin-left: 2px;
}
.csNav__btn.is-active {
  color: #fff;
  /* ✅ only active bold */
  font-weight: 700;
}
.csNav__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .65);
  outline-offset: 6px;
  border-radius: 8px;
  /* ✅ don’t change weight on focus */
  font-weight: inherit;
}
/* right card */
.csCard {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
  overflow: hidden;
}
/* panels */
.csPanel {
  display: block;
}
.csPanel[hidden] {
  display: none;
}
.csPanel__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
  padding: 26px 26px;
}
.csPanel__title {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 22px;
  line-height: 1.12;
}
.csPanel__desc {
  margin: 0 0 18px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  max-width: 60ch;
  font-family: sans-serif;
}
/* next arrow under content */
.csNext {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.csNext__icon {
  color: var(--brand-red);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.csNext:focus-visible {
  outline: 2px solid rgba(180, 43, 53, .35);
  outline-offset: 6px;
  border-radius: 8px;
}
/* media */
.csPanel__media {
  display: flex;
  justify-content: flex-end;
}
.csPanel__img {
  width: 100%;
  max-width: 420px;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  background: #eaeaea;
}
/* placeholder apply anchor */
.applyAnchor {
  min-height: 1px;
  background: #efd7da;
  padding-top: 30px;
}
/* RESPONSIVE */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    justify-content: flex-start;
  }
  .videoCard {
    width: 100%;
    padding: 14px;
  }
  .uspStrip__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .uspStrip__item {
    justify-content: flex-start;
  }
  .why__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .csTabs {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
  .csPanel__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .csPanel__media {
    justify-content: flex-start;
  }
  .csPanel__img {
    max-width: 100%;
    height: 220px;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 20px 0 18px;
  }
  .hero__logo {
    height: 30px;
  }
  .hero__subtitle {
    font-size: 13px;
  }
  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
  }
  .stat__value {
    font-size: 20px;
  }
  .stat__label {
    font-size: 12px;
  }
  .csNav__btn {
    font-size: 15px;
    padding: 13px 0;
  }
  .csPanel__grid {
    padding: 18px 18px;
  }
}
/* COMPARISON SECTION */
.compare {
  padding: 54px 0 66px;
  background: #fff;
}
.compare__header {
  margin-bottom: 22px;
}
.compare__kicker {
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 6px;
  font-family: sans-serif;
}
.compare__title {
  margin: 0;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.15;
}
.compare__stack {
  display: grid;
  gap: 18px;
}
.compareRow {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  font-family: sans-serif;
}
.compareRow__left {
  padding: 6px 6px 6px 10px;
}
.compareRow__num {
  color: var(--brand-red);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}
.compareRow__head {
  color: var(--brand-red);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.compareRow__sub {
  margin: 0;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.45;
  max-width: 30ch;
}
.compareRow__mid, .compareRow__right {
  border-radius: 10px;
  padding: 18px 18px;
  display: grid;
  align-content: start;
  min-height: 110px;
}
.compareRow__mid {
  background: #f1f1f1; /* grey card */
}
.compareRow__right {
  background: #ead2d6; /* light pink card */
}
.compareRow__cardTitle {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #2b2b2b;
}
.compareRow__cardText {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4a4a4a;
}
/* Responsive */
@media (max-width: 980px) {
  .compareRow {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .compareRow__sub {
    max-width: 100%;
  }
}
/* CS + X CAROUSEL */
.csx {
  position: relative;
  /* bottom area should be WHITE (as per image) */
  background: #fff;
  color: #111;
  padding: 58px 0 64px;
  overflow: hidden;
}
/* BLUE only till the image/footer line (adjust height if needed) */
.csx::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 420px; /* tweak if blue ends too early/late */
  background: var(--brand-navy);
  z-index: 0;
}
.csx .container {
  position: relative;
  z-index: 1;
}
/* Header stays on BLUE */
.csx__header {
  max-width: 980px;
  color: #fff;
}
.csx__kicker {
  font-size: 16px;
  opacity: .92;
  margin-bottom: 6px;
}
.csx__title {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: 1.08;
  font-family: sans-serif;
}
.csx__sub {
  margin: 0;
  color: rgba(255, 255, 255, .90);
  font-size: 14px;
  line-height: 1.55;
  max-width: 105ch;
  font-family: sans-serif;
}
.csx__slider {
  margin-top: 26px;
}
/* Track sits on BLUE but cards are white */
.csx__track {
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
}
.csx__track::-webkit-scrollbar {
  display: none;
}
/* card sizing: show 3 on desktop */
.csxCard {
  flex: 0 0 calc((100% - 44px) / 3);
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  color: #111;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .18);
  position: relative;
}
.csxCard__media {
  height: 220px;
  background: #e9e9e9;
}
.csxCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.csxCard__body {
  padding: 22px 22px 18px;
  background: #fff;
}
.csxCard__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #2b2b2b;
  font-family: sans-serif;
}
.csxCard__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4b4b4b;
  max-width: 55ch;
  font-family: sans-serif;
}
.csxCard__line {
  height: 3px;
  background: var(--brand-red);
}
/* controls should sit on WHITE */
.csx__controls {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.csxBtn {
  width: 92px;
  height: 56px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.csxBtn--prev {
  background: var(--brand-red);
  color: #fff;
}
.csxBtn--next {
  background: #0f1116;
  color: #fff;
}
/* focus now better on WHITE */
.csxBtn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .25);
  outline-offset: 3px;
}
/* responsive */
@media (max-width: 980px) {
  .csx::before {
    height: 520px; /* blue needs more height on smaller screens */
  }
  .csx__track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }
  .csxCard {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
}
@media (max-width: 520px) {
  .csx::before {
    height: 560px;
  }
  .csxCard {
    flex-basis: 88%;
  }
  .csxCard__media {
    height: 210px;
  }
}
/* CURRICULUM SNAPSHOT */
.curriculum {
  padding: 56px 0 70px;
  background: #fff;
}
.curriculum__header {
  margin-bottom: 18px;
}
.curriculum__kicker {
  font-size: 16px;
  color: #2b2b2b;
  margin-bottom: 6px;
}
.curriculum__title {
  margin: 0;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.15;
  font-family: sans-serif;
}
.curriculum__grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 26px;
  align-items: start;
  margin-top: 22px;
}
/* Accordion */
.currAcc {
  display: grid;
  gap: 14px;
}
.currItem {
  background: #e4e4e4; /* grey bar background */
  border-radius: 0;
  overflow: hidden;
}
.currHead {
  width: 100%;
  border: 0;
  background: #e4e4e4;
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}
.currHead__left {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.currHead__year {
  font-weight: 900;
  font-size: 22px;
  color: #2b2b2b; /* default dark */
  letter-spacing: -0.02em;
}
.currHead__text {
  font-weight: 800;
  font-size: 16px;
  color: #2b2b2b; /* default dark */
}
.currHead__icon {
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  color: var(--brand-red);
  margin-left: 10px;
}
/* Expanded state: header text turns red (as in image) */
.currItem.is-open .currHead__year, .currItem.is-open .currHead__text {
  color: var(--brand-red);
}
.currPanel {
  background: #fff;
  padding: 12px 18px 16px;
}
.currList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  font-family: sans-serif;
}
.currList li {
  position: relative;
  padding-left: 18px;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.4;
  font-family: sans-serif;
}
.currList li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-blue);
  font-weight: 900;
}
/* Right side */
.curriculum__side {
  display: grid;
  gap: 18px;
  justify-items: center;
}
.curriculum__imgWrap {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  overflow: hidden;
  background: #e9e9e9;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}
.curriculum__img {
  width: 100%;
  height: auto;
  display: block;
}
.curriculum__imgPlaceholder {
  background: url("/images/curriculum.jpg") center/cover no-repeat;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.curriculum__cta {
  display: flex;
  justify-content: center;
  width: 100%;
}
.curriculum__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  background: #b5182a; /* pill red */
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}
.curriculum__btn:active {
  transform: translateY(1px);
}
/* Responsive */
@media (max-width: 980px) {
  .curriculum__grid {
    grid-template-columns: 1fr;
  }
  .curriculum__imgWrap {
    max-width: 560px;
  }
  .currList {
    grid-template-columns: 1fr;
  }
}
/* HOW YOU LEARN */
.learn {
  background: #efd7da; /* pink block */
  padding: 56px 0 64px;
}
.learn__header {
  max-width: 1060px;
}
.learn__kicker {
  font-size: 14px;
  letter-spacing: .06em;
  color: #222;
  margin-bottom: 6px;
  font-family: sans-serif;
}
.learn__title {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.15;
  font-family: sans-serif;
}
.learn__sub {
  margin: 0;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.6;
  max-width: 120ch;
  font-family: sans-serif;
}
.learnGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.learnCard {
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  padding: 22px 22px 18px;
  position: relative;
  min-height: 185px;
  /* red underline like screenshot */
  border-bottom: 3px solid var(--brand-red);
  transition: background .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}
.learnCard__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #222;
  transition: color .18s ease;
}
.learnCard__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #3f3f3f;
  max-width: 52ch;
  transition: color .18s ease;
  font-family: sans-serif;
}
.learnCard__arrow {
  position: absolute;
  left: 22px;
  bottom: 14px;
  font-size: 18px;
  font-weight: 900;
  color: var(--brand-red);
  transition: color .18s ease;
}
/* Hover/focus: WHITE cards turn RED (your requirement) */
.learnCard:hover, .learnCard:focus-visible {
  background: var(--brand-red);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
  outline: none;
}
.learnCard:hover .learnCard__title, .learnCard:hover .learnCard__text, .learnCard:focus-visible .learnCard__title, .learnCard:focus-visible .learnCard__text {
  color: #fff;
}
.learnCard:hover .learnCard__arrow, .learnCard:focus-visible .learnCard__arrow {
  color: #fff;
}
/* RESEARCH AT ASHOKA */
.research {
  background: #fff;
  padding: 60px 0 70px;
}
.research__header {
  max-width: 1020px;
  margin-bottom: 20px;
}
.research__kicker {
  font-size: 14px;
  letter-spacing: .06em;
  color: #222;
  margin-bottom: 6px;
  font-family: sans-serif;
}
.research__title {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.15;
}
.research__sub {
  margin: 0;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.6;
  max-width: 120ch;
}
.researchGrid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: start;
  margin-top: 26px;
}
/* Left pillar items with vertical line */
.researchPillar {
  display: grid;
  gap: 18px;
  max-width: 720px;
}
.researchPillar__item {
  border-left: 4px solid var(--brand-blue);
  padding-left: 16px;
}
.researchPillar__title {
  margin: 0 0 6px;
  color: var(--brand-red);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.researchPillar__text {
  margin: 0;
  color: #222;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  font-family: sans-serif;
}
/* Bullets with dividers */
.researchBullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  max-width: 760px;
}
.researchBullets li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid rgba(5, 53, 92, .45);
  color: #2b2b2b;
  font-size: 13.5px;
  line-height: 1.5;
  font-family: sans-serif;
}
.researchBullets li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--brand-blue);
  font-weight: 900;
}
/* Right image + CTA */
.researchRight {
  display: grid;
  gap: 18px;
  justify-items: center;
}
.researchRight__imgWrap {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  overflow: hidden;
  background: #e9e9e9;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}
.researchRight__img {
  width: 100%;
  height: auto;
  display: block;
}
.researchRight__imgPlaceholder {
  background: url("/images/RESEARCH.jpg") center/cover no-repeat;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.researchRight__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  background: #b5182a;
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}
.researchRight__btn:active {
  transform: translateY(1px);
}
/* Responsive */
@media (max-width: 980px) {
  .learnGrid {
    grid-template-columns: 1fr 1fr;
  }
  .researchGrid {
    grid-template-columns: 1fr;
  }
  .researchRight__imgWrap {
    max-width: 560px;
  }
}
@media (max-width: 520px) {
  .learnGrid {
    grid-template-columns: 1fr;
  }
}
/* FACULTY + ADVISORY SECTION */
.people {
  background: #f2f2f2;
  padding: 58px 0 66px;
}
.people__header {
  max-width: 1040px;
}
.people__kicker {
  font-size: 16px;
  color: #222;
  margin-bottom: 6px;
}
.people__title {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-weight: 800; /* was 900 */
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.15;
}
.people__sub {
  margin: 0;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.6;
  max-width: 120ch;
  font-family: sans-serif;
}
/* Tabs */
.peopleTabs {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.peopleTab {
  border: 0;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500; /* was 900 (tabs should be regular) */
  font-size: 16px;
  background: var(--brand-blue); /* inactive = blue */
  color: #fff;
}
.peopleTab.is-active {
  background: var(--brand-red); /* active = red */
}
/* Panels */
.peoplePanel {
  display: none;
}
.peoplePanel.is-active {
  display: block;
}
/* Slider */
.peopleSlider {
  position: relative;
}
.peopleTrack {
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 8px 0 14px;
  scrollbar-width: none;
}
.peopleTrack::-webkit-scrollbar {
  display: none;
}
/* 4 cards visible like screenshot */
.personCard {
  flex: 0 0 calc((100% - 66px) / 4);
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .10);
  overflow: hidden;
}
.personCard__imgWrap {
  height: 230px;
  background: #d9d9d9;
}
.personCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.personCard__body {
  padding: 16px 16px 18px;
}
.personCard__name {
  font-weight: 700; /* was 900 (bold but not extra-bold) */
  font-size: 18px;
  color: #222;
  margin-bottom: 6px;
}
.personCard__role {
  font-size: 14px;
  font-weight: 400; /* ensure regular */
  color: #444;
}
/* Controls (center) */
.peopleControls {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.peopleBtn {
  width: 92px;
  height: 56px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800; /* was 900 */
  line-height: 1;
}
.peopleBtn--prev {
  background: var(--brand-red);
  color: #fff;
}
.peopleBtn--next {
  background: #0f1116;
  color: #fff;
}
.peopleBtn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .25);
  outline-offset: 3px;
}
/* Responsive */
@media (max-width: 1100px) {
  .personCard {
    flex-basis: calc((100% - 44px) / 3);
  }
}
@media (max-width: 820px) {
  .personCard {
    flex-basis: calc((100% - 22px) / 2);
  }
}
@media (max-width: 520px) {
  .peopleTabs {
    flex-wrap: wrap;
  }
  .personCard {
    flex-basis: 88%;
  }
  .peopleTrack {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .personCard {
    scroll-snap-align: start;
  }
}
/* Shared placeholder */
.phBox {
  background: linear-gradient(135deg, #d9d9d9, #efefef);
}
/* OUTCOMES */
.outcomes {
  background: var(--brand-red);
  padding: 58px 0 66px;
  color: #fff;
}
.outcomes__header {
  max-width: 1040px;
  margin-bottom: 18px;
}
.outcomes__kicker {
  font-size: 14px;
  opacity: .95;
  margin-bottom: 6px;
  font-family: sans-serif;
}
.outcomes__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.15;
}
.outcomesGrid {
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}
.outCard {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
  overflow: hidden;
}
.outCard__hero {
  height: 170px; /* image band */
}
.outCard__body {
  padding: 0;
}
.outTag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b5182a;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  margin: -18px 0 0 18px; /* overlaps like screenshot */
  position: relative;
  top: -18px;
}
.outTag__num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 13px;
}
.outTag__text {
  font-size: 14px;
  font-weight: 600;
}
/* Higher Studies logos */
.outLogos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 10px 18px 18px;
}
.logoTile {
  height: 100px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
}
/* Careers list */
.outList {
  list-style: none;
  margin: 6px 0 0;
  padding: 8px 18px 18px;
  display: grid;
  gap: 8px;
  font-family: sans-serif;
}
.outList li {
  position: relative;
  padding-left: 18px;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.35;
}
.outList li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #7a7a7a;
  font-weight: 800;
}
/* RECRUITERS */
.recruiters {
  background: #fff;
  padding: 46px 0 58px;
}
.recruiters__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: #b5182a;
}
.recruiters__num {
  font-weight: 800;
  margin-right: 10px;
}
.recruiters__slider {
  position: relative;
}
.recruiters__track {
  display: flex;
  gap: 16px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 10px 0 14px;
  scrollbar-width: none;
}
.recruiters__track::-webkit-scrollbar {
  display: none;
}
.recLogo {
  flex: 0 0 190px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
  padding: 16px;
}
.recLogo__ph {
  height: 42px;
  width: 100%;
  background: #ededed;
}
/* Controls */
.recruiters__controls {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.recruitersBtn {
  width: 92px;
  height: 56px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.recruitersBtn--prev {
  background: var(--brand-red);
  color: #fff;
}
.recruitersBtn--next {
  background: #0f1116;
  color: #fff;
}
.recruitersBtn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .25);
  outline-offset: 3px;
}
/* CAMPUS */
.campus {
  background: #fff;
  padding: 56px 0 70px;
}
.campus__header {
  max-width: 1040px;
  margin-bottom: 18px;
}
.campus__kicker {
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 6px;
}
.campus__title {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.15;
}
.campus__sub {
  margin: 0;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.6;
  max-width: 120ch;
  font-family: sans-serif;
}
.campusGrid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  margin-top: 18px;
}
/* Left collage */
.campusLeft {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
}
.campusLeft__top {
  min-height: 320px;
}
.campusLeft__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.campusLeft__b1, .campusLeft__b2 {
  min-height: 160px;
}
/* Right collage */
.campusRight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*grid-template-rows: 150px 170px 160px;*/
  gap: 12px;
}
.campusRight__t1 {
  grid-column: 1;
  grid-row: 1;
}
.campusRight__t2 {
  grid-column: 2;
  grid-row: 1;
}
.campusRight__big {
  grid-column: 1;
  grid-row: 2 / span 2;
}
.campusRight__m {
  grid-column: 2;
  grid-row: 2;
}
.campusRight__b {
  grid-column: 2;
  grid-row: 3;
}
/* Responsive */
@media (max-width: 980px) {
  .outcomesGrid {
    grid-template-columns: 1fr;
  }
  .outCard__hero {
    height: 190px;
  }
  .outLogos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .campusGrid {
    grid-template-columns: 1fr;
  }
  .campusLeft__top {
    min-height: 260px;
  }
}
@media (max-width: 520px) {
  .recLogo {
    flex-basis: 78%;
  }
  .recruiters__track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .recLogo {
    scroll-snap-align: start;
  }
  .campusRight {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .campusRight__t1, .campusRight__t2, .campusRight__big, .campusRight__m, .campusRight__b {
    grid-column: auto;
    grid-row: auto;
    min-height: 170px;
  }
}
/* SCHOLARSHIPS (ACCORDION) */
.sch {
  background: #fff;
  padding: 56px 0 64px;
}
.sch__header {
  max-width: 1040px;
  margin-bottom: 18px;
}
.sch__kicker {
  font-size: 14px;
  color: #222;
  margin-bottom: 6px;
}
.sch__title {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.15;
}
.sch__sub {
  margin: 0;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.6;
  max-width: 120ch;
  font-family: sans-serif;
}
.schAcc {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
/* Card */
.schItem {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .06);
}
/* Left colored stripe */
.schItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
}
/* Stripe colors */
.schItem--red::before {
  background: var(--brand-red);
}
.schItem--orange::before {
  background: #d06a2c;
}
.schItem--purple::before {
  background: #6b5aa6;
}
/* Header button */
.schHead {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px 18px 28px; /* room for stripe */
}
.schHead__title {
  font-size: 18px;
  font-weight: 700;
  color: #173b63;
  letter-spacing: -0.01em;
}
.schHead__icon {
  font-size: 22px;
  font-weight: 500; /* icon not bold */
  color: #6d6d6d;
  line-height: 1;
}
/* Expanded styles */
.schItem.is-open .schHead__title {
  color: #173b63; /* stays navy like image */
}
.schPanel {
  padding: 0 22px 18px 28px;
}
.schBody {
  padding-top: 2px;
  font-family: sans-serif;
}
.schBody__lead {
  margin: 0 0 10px;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.6;
}
.schBody__para {
  margin: 0;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.6;
}
.schBody__list {
  margin: 0;
  padding-left: 18px;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.65;
}
.schBody__list li {
  margin: 6px 0;
  font-family: sans-serif;
}
/* Note */
.sch__note {
  margin: 14px 0 0;
  color: #7b7b7b;
  font-size: 12.5px;
  line-height: 1.5;
  font-style: italic;
}
/* Focus */
.schHead:focus-visible {
  outline: 2px solid rgba(23, 59, 99, .35);
  outline-offset: 2px;
  border-radius: 14px;
}
/* Mobile */
@media (max-width: 520px) {
  .schHead__title {
    font-size: 16px;
  }
  .schHead {
    padding-right: 16px;
  }
}
/* YOUR JOURNEY TO ASHOKA */
.journey {
  background: #f2f2f2; /* matches screenshot grey */
  padding: 70px 0 74px;
}
.journey__header {
  max-width: 1040px;
  margin-bottom: 34px;
}
.journey__kicker {
  font-size: 14px;
  color: rgba(0, 0, 0, .78);
  margin-bottom: 10px;
  letter-spacing: .04em;
  text-transform: none; /* keep as provided text */
}
.journey__title {
  margin: 0;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: 1.1;
}
/* Grid wrappers */
.journeyGrid {
  display: grid;
  gap: 0; /* dividers handle separation */
}
.journeyGrid--top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  padding-bottom: 34px;
}
.journeyGrid--bottom {
  grid-template-columns: 340px 1fr;
  align-items: end;
  gap: 34px;
  padding-top: 34px;
}
/* Stage card */
.stageCard {
  position: relative;
  padding: 0 26px;
}
.journeyGrid--top .stageCard:first-child {
  padding-left: 0;
}
.journeyGrid--top .stageCard:last-child {
  padding-right: 0;
}
.journeyGrid--top .stageCard::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: calc(100% - 4px);
  background: rgba(0, 0, 0, .18);
}
.journeyGrid--top .stageCard:last-child::after {
  display: none;
}
/* icon (SVG stroke only) */
.stageCard__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  display: grid;
  place-items: start;
}
.stageIcon {
  width: 46px;
  height: 46px;
  display: block;
  fill: none;
  stroke: var(--brand-red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Stage pill */
.stageCard__pill {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
.stageCard__title {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-weight: 700; /* screenshot = bold, not ultra */
  font-size: 18px;
}
.stageCard__rule {
  height: 2px;
  width: 100%;
  background: var(--brand-red);
  margin-bottom: 12px;
}
.stageCard__text {
  margin: 0;
  color: #232323;
  font-size: 14px;
  line-height: 1.7;
  max-width: 42ch;
  font-family: sans-serif;
}
/* Stage 5: left divider like screenshot */
.stageCard--wide {
  padding-left: 26px;
  padding-right: 0;
  border-left: 1px solid rgba(0, 0, 0, .18);
}
/* Image placeholder / image */
.journeyMedia {
  width: 100%;
  overflow: hidden;
  border-radius: 64px 0 0 0; /* ONLY top-left rounded (matches screenshot) */
}
.journeyMedia__ph {
  width: 100%;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .06), rgba(255, 255, 255, .08)), linear-gradient(0deg, #d5d5d5, #e9e9e9);
}
/* Responsive */
@media (max-width: 1100px) {
  .journeyGrid--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
    padding-bottom: 26px;
  }
  .journeyGrid--top .stageCard {
    padding: 0 22px;
  }
  .journeyGrid--top .stageCard::after {
    display: none;
  }
  /* draw divider between the 2 columns */
  .journeyGrid--top .stageCard:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, .18);
    padding-left: 0;
    padding-right: 22px;
  }
  .journeyGrid--top .stageCard:nth-child(even) {
    padding-left: 0px;
    padding-right: 0;
  }
  .journeyGrid--bottom {
    grid-template-columns: 320px 1fr;
    gap: 26px;
  }
}
@media (max-width: 820px) {
  .journey {
    padding: 56px 0 60px;
  }
  .journeyGrid--bottom {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }
  .stageCard--wide {
    border-left: 0;
    padding-left: 0;
  }
  .journeyMedia {
    border-radius: 44px 0 0 0;
  }
}
@media (max-width: 520px) {
  .journeyGrid--top {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }
  .journeyGrid--top .stageCard {
    border-right: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .journeyMedia__ph {
    min-height: 220px;
  }
}
/* FAQ */
.faq {
  background: #fff;
  padding: 54px 0 40px;
}
.faq__header {
  max-width: 1040px;
  margin-bottom: 16px;
}
.faq__kicker {
  font-size: 14px;
  color: #222;
  margin-bottom: 6px;
}
.faq__title {
  margin: 0;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.15;
}
.faqAcc {
  margin-top: 18px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #f4f4f4; /* matches light grey block */
}
.faqItem {
  border-top: 1px solid rgba(0, 0, 0, .10);
}
.faqItem:first-child {
  border-top: 0;
}
.faqHead {
  width: 100%;
  border: 0;
  background: #f4f4f4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 18px 18px;
}
.faqHead__q {
  display: inline-flex;
  gap: 12px;
  align-items: baseline;
  font-size: 16px;
  color: #1f1f1f;
  font-weight: 700;
}
.faqHead__num {
  font-weight: 800;
  color: #111;
}
.faqHead__icon {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-left: 16px;
}
.faqPanel {
  background: #fff;
  padding: 0 18px 18px;
}
.faqBody {
  padding-top: 14px;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.7;
  max-width: 115ch;
  font-family: sans-serif;
}
.faqHead:focus-visible {
  outline: 2px solid rgba(23, 59, 99, .25);
  outline-offset: 2px;
}
/* FOOTER STRIP */
.footerStrip {
  background: #060606;
  color: #fff;
  padding: 24px 0;
}
.footerStrip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-family: sans-serif;
}
.footerStrip__left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.footerStrip__logo {
  width: 120px;
  height: auto;
  display: block;
  filter: grayscale(1) brightness(2);
}
.footerStrip__copy {
  min-width: 0;
}
.footerStrip__line1 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, .95);
  line-height: 1.25;
}
.footerStrip__line2 {
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.35;
  margin-top: 4px;
  max-width: 72ch;
}
.footerStrip__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a51d2d;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}
.footerStrip__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .6);
  outline-offset: 3px;
}
@media (max-width: 820px) {
  .footerStrip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footerStrip__cta {
    align-self: flex-start;
  }
}
@media (max-width: 520px) {
  .faqHead__q {
    font-size: 15px;
  }
  .footerStrip__logo {
    width: 100px;
  }
	.hero__logoWrap {top: -20px;}
	.fact__text {
   
    font-size: 18px;
		line-height: 1.25;}
	.logoTile {height: auto;}
	.curriculum {padding-top: 0px;}
	.campus{padding-top: 0px;}
	.sch{padding-top: 0px;}
}
/* =========================
   STICKY APPLY + MOVE TOP
   ========================= */
/* Desktop sticky apply (rotated, right edge center) */
.stickyApply {
  position: fixed;
  top: 50%;
  right: -56px; /* pulls it to edge after rotation */
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 46px;
  background: var(--brand-blue); /* ✅ BLUE (desktop default) */
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, background-color .18s ease;
}
/* ✅ hover turns RED */
.stickyApply:hover {
  background: var(--brand-red);
}
.stickyApply__text {
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 15px;
}
/* visible state */
.stickyApply.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.stickyApply:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .85);
  outline-offset: 4px;
}
/* Mobile sticky footer apply bar */
.stickyApplyBar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  padding: 0; /* ✅ end-to-end */
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, .10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}
.stickyApplyBar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.stickyApplyBar__btn {
  display: block;
  width: 100%; /* ✅ full width */
  height: 52px;
  background: var(--brand-red); /* ✅ red is fine on mobile */
  color: #fff;
  text-decoration: none;
  border-radius: 0; /* ✅ edge-to-edge bar look */
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
  display: grid;
  place-items: center;
  box-shadow: none; /* ✅ clean full-width CTA */
  padding-bottom: env(safe-area-inset-bottom);
}
/* Move to top button */
.toTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: #0f1116;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .20);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}
.toTop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.toTop:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .25);
  outline-offset: 4px;
}
/* Responsive behavior:
   - Desktop CTA visible, mobile footer hidden on desktop
   - Mobile footer visible, rotated CTA hidden on mobile */


@media (max-width: 820px) {
  .stickyApply {
    display: none;
  }
 
  .toTop {
    bottom: 78px;
  }
}
@media (min-width: 821px) {
  .stickyApplyBar {
    display: none;
  }
}