 
/* -------------------------------------------------------
   HERO SECTION
------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 4px;
  z-index: 0;
}

.hero-bg__panel {
  flex: 1 0 0;
  min-width: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg__panel--left {
  background-image: url('../images/campus-life/diversity/header-1.webp');
  background-position: center top;
}

.hero-bg__panel--center {
  background-image: url('../images/campus-life/diversity/header-2.webp');
  background-position: center;
}

.hero-bg__panel--right {
  background-image: url('../images/campus-life/diversity/header-3.webp');
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.60);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 120px;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: bold;
  font-size: 45px;
  line-height: 55px;
  
  letter-spacing: 0.123px;
  color: #ffffff;
  margin: 0;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.0703px;
  color: #e5e7eb;
  margin: 0;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 175px;
  height: 56px;
  background-color: #fdc700;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  padding: 16px;
}

.hero-btn:hover {
  background-color: #e6b300;
  color: #000000;
  transform: translateY(-1px);
}

.hero-btn:active {
  transform: translateY(0);
  background-color: #cca000;
}

.hero-btn__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll__mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 2px;
}

.hero-scroll__wheel {
  width: 4px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 9999px;
  animation: heroScrollBounce 1.6s ease-in-out infinite;
}

@keyframes heroScrollBounce {
  0%, 100% { opacity: 1;   transform: translateY(0); }
  50%       { opacity: 0.4; transform: translateY(6px); }
}

/* -------------------------------------------------------
   HERO — RESPONSIVE
------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 42px;
    line-height: 54px;
  }
  .hero-subtitle {
    font-size: 18px;
    line-height: 28px;
  }
  .hero-btn {
    width: auto;
    min-width: 240px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767.98px) {
  .hero-bg { gap: 2px; }
  .hero-content {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .hero-text-block {
    gap: 16px;
    margin-bottom: 28px;
  }
  .hero-title {
    font-size: 32px;
    line-height: 42px;
  }
  .hero-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
  .hero-btn {
    width: 100%;
    max-width: 295px;
    font-size: 15px;
  }
}

@media (max-width: 479.98px) {
  .hero-title {
    font-size: 26px;
    line-height: 36px;
  }
  .hero-subtitle {
    font-size: 15px;
    line-height: 24px;
  }
  .hero-bg__panel--left,
  .hero-bg__panel--right { flex: 0 0 0%; }
  .hero-bg__panel--center { flex: 1 0 100%; }
  .hero-scroll { bottom: 24px; }
}

/* -------------------------------------------------------
   SHARED UTILITY
------------------------------------------------------- */
.gradient-text {
  background: linear-gradient(90deg, #f0b100 0%, #ff6900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* -------------------------------------------------------
   STATS SECTION
------------------------------------------------------- */
.stats-section {
  background-color: #fff9f2;
  padding-top: 96px;
  padding-bottom: 80px;
}

.stats-section__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 32px;
  letter-spacing: 0.0703px;
  color: #4a5565;
  text-align: center;
  margin: 0 0 30px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 0 24px;
}

.stat-card__number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 35px;
  line-height: 60px;
  letter-spacing: 0.2637px;
  margin: 0;
  white-space: nowrap;
}

.stat-card__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4395px;
  color: #364153;
  margin: 0;
}

.stat-card__label--bold {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.stats-grid .col-md-3:not(:first-child) .stat-card {
  border-left: 1px solid rgba(74, 85, 101, 0.12);
}

@media (max-width: 991.98px) {
  .stats-section {
    padding-top: 72px;
    padding-bottom: 64px;
  }
  .stats-section__heading {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 56px;
  }
  .stat-card__number {
    font-size: 35px;
    line-height: 56px;
  }
}

@media (max-width: 767.98px) {
  .stats-section {
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .stats-section__heading {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 40px;
  }
  .stat-card {
    align-items: center;
    padding: 20px 16px;
    border-left: none !important;
    border-bottom: 1px solid rgba(74, 85, 101, 0.10);
  }
  .stat-card__number {
    font-size: 35px;
    line-height: 48px;
  }
  .stat-card__label { font-size: 15px; }
}

@media (max-width: 479.98px) {
  .stat-card__number {
    font-size: 28px;
    line-height: 42px;
  }
}

/* -------------------------------------------------------
   DIVERSITY TEXT SECTION
------------------------------------------------------- */
.diversity-section {
  position: relative;
  background-color: #ffffff;
  padding-top: 52px;
  padding-bottom: 52px;
  overflow: hidden;
  min-height: 296px;
  display: flex;
  align-items: center;
}

.diversity-section__map {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64.4%;
  pointer-events: none;
  z-index: 0;
}

.diversity-section__map img {
  width: 100%;
  height: auto;
  opacity: 0.70;
  display: block;
}

.diversity-section .container {
  position: relative;
  z-index: 1;
}

.diversity-section__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 8px;
}

.diversity-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.3516px;
  color: #0a0a0a;
  margin: 0;
}

.diversity-section__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32.5px;
  letter-spacing: -0.4492px;
  color: #364153;
  margin: 0;
}

@media (max-width: 991.98px) {
  .diversity-section__title {
    font-size: 28px;
    line-height: 38px;
  }
  .diversity-section__text {
    font-size: 16px;
    line-height: 28px;
  }
  .diversity-section__map { width: 90%; }
}

@media (max-width: 767.98px) {
  .diversity-section {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .diversity-section__title {
    font-size: 22px;
    line-height: 30px;
  }
  .diversity-section__text {
    font-size: 15px;
    line-height: 26px;
  }
  .diversity-section__map {
    width: 120%;
    opacity: 0.5;
  }
}

/* -------------------------------------------------------
   STORIES SECTIONS
------------------------------------------------------- */
.stories-section {
  background-color: #f1f2f4;
  padding-top: 52px;
  padding-bottom: 52px;
  overflow: hidden;
}

.stories-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 48px;
}

.stories-intro__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.3516px;
  color: #0a0a0a;
  margin: 0;
}

.stories-intro__title strong { font-weight: 700; }

.stories-intro__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32.5px;
  letter-spacing: -0.4492px;
  color: #364153;
  margin: 0;
}

/* -------------------------------------------------------
   VIDEO SLIDER
------------------------------------------------------- */
.video-track-wrap {
  width: 100%;
  overflow: hidden;
  min-height: 320px;
}

/* RTL: double scaleX(-1) flip reverses scroll direction */
.video-track-wrap--rtl .video-track { transform: scaleX(-1); }
.video-track-wrap--rtl .vs-slide    { transform: scaleX(-1); }

.video-track .slick-list {
  margin: 0;
  overflow: visible;
}

.video-track .slick-track {
  display: flex;
  align-items: stretch;
}

.vs-slide {
  padding: 0 3.5px;
  outline: none;
}

.vs-card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  height: 320px;
  background-color: #000;
}

.vs-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.vs-card:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}

.vs-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.vs-card:hover::before { background: rgba(0, 0, 0, 0.18); }

.vs-card__label {
  position: absolute;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: stretch;
  height: 42px;
  z-index: 2;
}

.vs-card__play {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background-color: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.vs-card:hover .vs-card__play { background-color: #fdc700; }

.vs-card:hover .vs-card__play svg path {
  fill: #000;
  stroke: #000;
}

.vs-card__play svg {
  display: block;
  flex-shrink: 0;
}

.vs-card__loc {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  min-width: 140px;
  max-width: 200px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.74);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .stories-intro__title {
    font-size: 28px;
    line-height: 38px;
  }
  .stories-intro__text {
    font-size: 16px;
    line-height: 28px;
  }
  .vs-card { height: 260px; }
  .vs-card__loc {
    font-size: 14px;
    min-width: 110px;
  }
}

@media (max-width: 767.98px) {
  .stories-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .stories-intro {
    gap: 16px;
    padding-bottom: 36px;
  }
  .stories-intro__title {
    font-size: 22px;
    line-height: 30px;
  }
  .stories-intro__text {
    font-size: 15px;
    line-height: 26px;
  }
  .vs-card { height: 220px; }
  .vs-card__label {
    bottom: 16px;
    height: 36px;
  }
  .vs-card__play {
    width: 36px;
    height: 36px;
  }
  .vs-card__loc {
    font-size: 13px;
    min-width: 90px;
    height: 36px;
    padding: 0 10px;
  }
}

/* -------------------------------------------------------
   MAGNIFIC POPUP
------------------------------------------------------- */
.mfp-iframe-holder .mfp-content { max-width: 900px; }
.mfp-bg { background: rgba(0, 0, 0, 0.88); }

.mfp-close {
  color: #fff !important;
  opacity: 1 !important;
  font-size: 32px !important;
  right: -8px !important;
  top: -44px !important;
}

.mfp-close:hover { color: #fdc700 !important; }

/* -------------------------------------------------------
   ACADEMIC DIVERSITY SECTION
------------------------------------------------------- */
.academic-section {
  background-color: #f1f2f4;
  padding-top: 96px;
  padding-bottom: 96px;
}

.academic-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

.academic-header__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.3516px;
  color: #0a0a0a;
  margin: 0;
}

.academic-header__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32.5px;
  letter-spacing: -0.4492px;
  color: #364153;
  margin: 0;
}

.academic-cols {
  --bs-gutter-x: 90px;
  --bs-gutter-y: 48px;
}

.academic-left {
  display: flex;
  flex-direction: column;
}

.academic-img-wrap {
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  line-height: 0;
}

.academic-img-wrap img {
  width: 100%;
  height: 384px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.academic-quote {
  background-color: #fecd46;
  padding: 14px 16px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.academic-quote__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4395px;
  color: #000000;
  text-align: center;
  margin: 0;
  white-space: pre-wrap;
}

.acad-card {
  background-color: #ffffff;
  box-shadow:
    0px 10px 15px 0px rgba(0, 0, 0, 0.10),
    0px 4px  6px  0px rgba(0, 0, 0, 0.10);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.acad-card__icon-wrap {
  width: 48px;
  height: 48px;
  background-color: #fecd46;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.acad-card__icon-wrap img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.acad-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #0a0a0a;
  margin: 0 0 8px;
}

.acad-card__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #4a5565;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .academic-cols { --bs-gutter-x: 48px; }
  .academic-img-wrap img { height: 320px; }
}

@media (max-width: 991.98px) {
  .academic-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .academic-cols { --bs-gutter-x: 24px; }
  .academic-header__title {
    font-size: 28px;
    line-height: 38px;
  }
  .academic-header__text {
    font-size: 16px;
    line-height: 28px;
  }
  .academic-header { margin-bottom: 40px; }
  .academic-img-wrap img { height: 280px; }
}

@media (max-width: 767.98px) {
  .academic-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .academic-header__title {
    font-size: 24px;
    line-height: 34px;
  }
  .academic-header__text {
    font-size: 15px;
    line-height: 26px;
  }
  .academic-img-wrap img { height: 240px; }
  .academic-quote__text {
    font-size: 15px;
    line-height: 24px;
  }
  .acad-card { padding: 18px; }
  .acad-card__title {
    font-size: 15px;
    line-height: 22px;
  }
  .acad-card__desc {
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 479.98px) {
  .academic-cards .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* -------------------------------------------------------
   FACULTY INNOVATION SECTION
------------------------------------------------------- */
.faculty-section {
  background-color: #f1f2f4;
  padding-top: 96px;
  padding-bottom: 96px;
}

.faculty-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

.faculty-header__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.3516px;
  color: #0a0a0a;
  margin: 0;
}

.faculty-header__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  color: #4a5565;
  margin: 0;
}

.faculty-cols {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 40px;
}

.faculty-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.faculty-item {
  background-color: #ffffff;
  box-shadow:
    0px 10px 15px 0px rgba(0, 0, 0, 0.10),
    0px 4px  6px  0px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  min-height: 108px;
  padding: 24px;
  flex: 1;
}

.faculty-list .faculty-item + .faculty-item { margin-top: 16px; }

.faculty-item__icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background-color: #fecd46;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faculty-item__icon-wrap img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.faculty-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.faculty-item__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  color: #0a0a0a;
  margin: 0;
  white-space: nowrap;
}

.faculty-item__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #4a5565;
  margin: 0;
}

.faculty-img-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
  line-height: 0;
}

.faculty-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (min-width: 992px) {
  .faculty-cols { align-items: stretch; }
  .faculty-list { height: 500px; }
  .faculty-list .faculty-item + .faculty-item { margin-top: 0; }
}

@media (max-width: 1199.98px) {
  .faculty-item__title {
    font-size: 18px;
    white-space: normal;
  }
}

@media (max-width: 991.98px) {
  .faculty-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .faculty-header { margin-bottom: 48px; }
  .faculty-header__title {
    font-size: 28px;
    line-height: 38px;
  }
  .faculty-header__text {
    font-size: 16px;
    line-height: 26px;
  }
  .faculty-img-wrap { height: 380px; }
  .faculty-list { height: auto; }
  .faculty-item { min-height: 90px; }
}

@media (max-width: 767.98px) {
  .faculty-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .faculty-header__title {
    font-size: 24px;
    line-height: 34px;
  }
  .faculty-header__text {
    font-size: 15px;
    line-height: 24px;
  }
  .faculty-header { margin-bottom: 36px; }
  .faculty-img-wrap { height: 300px; }
  .faculty-item {
    min-height: auto;
    padding: 18px;
  }
  .faculty-item__icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .faculty-item__icon-wrap img {
    width: 22px;
    height: 22px;
  }
  .faculty-item__title {
    font-size: 16px;
    line-height: 24px;
    white-space: normal;
  }
  .faculty-item__desc {
    font-size: 14px;
    line-height: 20px;
  }
}

/* -------------------------------------------------------
   ALUMNI IMPACT SECTION
------------------------------------------------------- */
.alumni-section {
  background-color: #ffffff;
  padding-top: 96px;
  padding-bottom: 0;
}

.alumni-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

.alumni-header__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.3516px;
  color: #0a0a0a;
  margin: 0;
}

.alumni-header__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  color: #4a5565;
  margin: 0;
}

.alumni-content-row {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 40px;
  margin-bottom: 48px;
}

.alumni-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  line-height: 0;
}

.alumni-img-wrap img {
  width: 100%;
  height: 384px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.alumni-img-wrap__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.alumni-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 24px 16px 28px;
  height: 100%;
  background: linear-gradient(152deg, rgb(249, 250, 251) 0%, rgb(255, 255, 255) 100%);
  box-shadow:
    0px 10px 15px 0px rgba(0, 0, 0, 0.10),
    0px 4px  6px  0px rgba(0, 0, 0, 0.10);
}

.alumni-card__icon-wrap {
  width: 56px;
  height: 56px;
  background-color: #fecd46;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.alumni-card__icon-wrap img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.alumni-card__label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: #364153;
  margin: 0;
}

.alumni-cta {
  background: linear-gradient(to right, #f0b100 0%, #f37d00 36.058%, #fecd46 87.981%);
  padding-top: 0;
  padding-bottom: 0;
}

.alumni-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 16px;
}

.alumni-cta__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0.3955px;
  color: #231f20;
  margin: 0 0 12px;
}

.alumni-cta__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  color: #231f20;
  margin: 0 0 32px;
}

.alumni-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 231px;
  height: 48px;
  background-color: #ffffff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #f54900;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.alumni-cta__btn:hover {
  background-color: #231f20;
  color: #fecd46;
  transform: translateY(-1px);
}

.alumni-cta__btn:active { transform: translateY(0); }

@media (max-width: 991.98px) {
  .alumni-section { padding-top: 72px; }
  .alumni-header { margin-bottom: 40px; }
  .alumni-header__title {
    font-size: 28px;
    line-height: 38px;
  }
  .alumni-header__text {
    font-size: 16px;
    line-height: 26px;
  }
  .alumni-img-wrap img { height: 300px; }
  .alumni-cta__title {
    font-size: 28px;
    line-height: 36px;
  }
  .alumni-cta__text { font-size: 16px; }
}

@media (max-width: 767.98px) {
  .alumni-section { padding-top: 52px; }
  .alumni-header__title {
    font-size: 24px;
    line-height: 34px;
  }
  .alumni-header__text {
    font-size: 15px;
    line-height: 24px;
  }
  .alumni-header { margin-bottom: 32px; }
  .alumni-img-wrap img { height: 240px; }
  .alumni-content-row { margin-bottom: 36px; }
  .alumni-card { padding: 20px 12px 24px; }
  .alumni-card__icon-wrap {
    width: 44px;
    height: 44px;
  }
  .alumni-card__icon-wrap img {
    width: 22px;
    height: 22px;
  }
  .alumni-card__label { font-size: 13px; }
  .alumni-cta__inner { padding: 40px 16px; }
  .alumni-cta__title {
    font-size: 22px;
    line-height: 30px;
  }
  .alumni-cta__text {
    font-size: 15px;
    line-height: 24px;
  }
  .alumni-cta__btn {
    width: 100%;
    max-width: 231px;
  }
}

@media (max-width: 479.98px) {
  .alumni-cta__title {
    font-size: 20px;
    line-height: 28px;
  }
}

/* -------------------------------------------------------
   CAMPUS LIFE SECTION
------------------------------------------------------- */
.campus-section {
  background-color: #fff9f2;
  padding-top: 96px;
  padding-bottom: 96px;
}

.campus-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.campus-header__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.3516px;
  color: #0a0a0a;
  margin: 0;
}

.campus-header__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32.5px;
  letter-spacing: -0.4492px;
  color: #364153;
  margin: 0;
}

.campus-features {
  --bs-gutter-x: 52px;
  --bs-gutter-y: 40px;
  margin-bottom: 51px;
}

.campus-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.campus-feat__icon-wrap {
  width: 64px;
  height: 64px;
  background-color: #fecd46;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.campus-feat__icon-wrap img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.campus-feat__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.campus-feat__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4492px;
  color: #0a0a0a;
  margin: 0;
}

.campus-feat__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #4a5565;
  margin: 0;
}

/* -------------------------------------------------------
   CAMPUS HIGHLIGHTS SLIDER
------------------------------------------------------- */
.hl-slider-section {
  width: 100%;
  overflow: hidden;
}

.js-highlights-slider {
  width: 100%;
}

.hl-slide {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.hl-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.slick-active .hl-slide img { transform: scale(1.04); }

.hl-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hl-slide__caption {
  position: absolute;
  bottom: 52px;
  left: 60px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.hl-slide__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}

.hl-slide__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* Arrows */
.js-highlights-slider .slick-prev,
.js-highlights-slider .slick-next {
  position: absolute;
  bottom: 52px;
  top: auto;
  transform: none;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.js-highlights-slider .slick-prev { right: 116px; left: auto; }
.js-highlights-slider .slick-next { right: 60px; }

.js-highlights-slider .slick-prev:hover,
.js-highlights-slider .slick-next:hover {
  background: rgba(255, 255, 255, 0.30);
  border-color: #ffffff;
}

.js-highlights-slider .slick-prev:before { content: '\2190'; }
.js-highlights-slider .slick-next:before { content: '\2192'; }

.js-highlights-slider .slick-prev:before,
.js-highlights-slider .slick-next:before {
  font-size: 20px;
  color: #ffffff;
  opacity: 1;
  line-height: 1;
}

/* Dots */
.js-highlights-slider .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 60px;
  right: 60px;
  z-index: 3;
  display: flex !important;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-start;
  width: auto;
}

.js-highlights-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.js-highlights-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.js-highlights-slider .slick-dots li button:before { display: none; }

.js-highlights-slider .slick-dots li.slick-active button {
  width: 24px;
  background: #ffffff;
}

@media (max-width: 767.98px) {
  .hl-slide { height: 420px; }

  .hl-slide__caption {
    bottom: 52px;
    left: 24px;
    right: 24px;
    gap: 8px;
  }

  .hl-slide__title { font-size: 24px; }
  .hl-slide__desc  { font-size: 14px; }

  .js-highlights-slider .slick-prev { right: 80px; }
  .js-highlights-slider .slick-next { right: 24px; }
  .js-highlights-slider .slick-prev,
  .js-highlights-slider .slick-next { bottom: 10px; width: 40px; height: 40px; }
  .js-highlights-slider .slick-dots { left: 24px; right: 24px; }
}

@media (max-width: 479.98px) {
  .hl-slide { height: 340px; }
  .hl-slide__title { font-size: 20px; }
  .hl-slide__desc  { font-size: 13px; line-height: 1.6; }
}

@media (max-width: 991.98px) {
  .campus-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .campus-header__title {
    font-size: 28px;
    line-height: 38px;
  }
  .campus-header__text {
    font-size: 16px;
    line-height: 28px;
  }
  .campus-header { margin-bottom: 48px; }
  .campus-features { --bs-gutter-x: 32px; }
}

@media (max-width: 767.98px) {
  .campus-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .campus-header__title {
    font-size: 24px;
    line-height: 34px;
  }
  .campus-header__text {
    font-size: 15px;
    line-height: 26px;
  }
  .campus-header { margin-bottom: 36px; }
  .campus-features {
    --bs-gutter-x: 16px;
    margin-bottom: 36px;
  }
  .campus-feat__title { font-size: 17px; }
  .campus-feat__text  { font-size: 14px; }
}

@media (max-width: 479.98px) {
  .campus-feat__icon-wrap {
    width: 52px;
    height: 52px;
  }
  .campus-feat__icon-wrap img {
    width: 26px;
    height: 26px;
  }
}

/* -------------------------------------------------------
   CAMPUS GALLERY
------------------------------------------------------- */
.campus-gallery-section {
  background: #fff9f2;
  padding-top: 48px;
  padding-bottom: 96px;
}

.gallery-caption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32.5px;
  letter-spacing: -0.4492px;
  color: #364153;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 35px;
}

.gallery-row {
  --bs-gutter-x: 19px;
  --bs-gutter-y: 0;
}

.gallery-col {
  display: flex;
  flex-direction: column;

}

.gallery-img-box {
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 19px;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .gallery-caption {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 767.98px) {
  .campus-gallery-section {
    padding-top: 36px;
    padding-bottom: 52px;
  }
  .gallery-row > .col-4,
  .gallery-row > .col-8,
  .gallery-row--inner > .col-6 { width: 100%; }
  .gallery-img-box { height: 240px !important; }
  .gallery-caption {
    font-size: 18px;
    line-height: 26px;
  }
}
