/* ================= HERO ================= */
.page-hero {
  min-height: 90vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  bottom: 60px;
  left: 70px;
  z-index: 2;
  color: white;
}

.hero-overlay h1 {
  font-size: 50px;
  font-weight: 400;
}

/* ================= MAIN ================= */
.admissions-page {
  background: #f4f4f4;

  padding-top: 110px;
  padding-bottom: 110px;

  padding-left: 60px;
  padding-right: 0;
}
.page-layout {
  width: 100%;
  max-width: 100%;
  margin: 0;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;

  gap: 70px;
  align-items: start;
}
.page-content {
  background: white;
  padding: 60px;
  overflow: hidden;
}

.page-content > .inner-page {
  padding: 0;
  margin-bottom: 50px;
}

.page-content > .inner-page p {
  font-size: 20px;
  line-height: 1.8;
  color: #0d2d5c;
}

/* ================= ADMISSION TEAM SLIDER ================= */
.admission-slider-section {
  padding: 80px 0 40px;
  background: #fff;
  overflow: hidden;
  text-align: center;
}

.admission-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 55px;
}

.admission-slider-track {
  display: flex;
  gap: 22px;
  align-items: center;
  width: max-content;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(.77, 0, .175, 1);
}

.admission-slide {
  position: relative;
  width: 210px;
  height: 420px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #ddd;
  opacity: 0.55;
  transform: scale(0.9);
  border: 4px solid transparent;
  transition: 0.45s ease;
}

.active-admission-slide {
  width: 450px;
  opacity: 1;
  transform: scale(1);
  border-color: #0099e5;
  z-index: 2;
}

.admission-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.admission-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.15),
    transparent
  );
}

.member-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 2;
  font-weight: 600;
  white-space: nowrap;
}

.admission-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border: none;
  background: #0099e5;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.admission-arrow.prev {
  left: 0;
}

.admission-arrow.next {
  right: 0;
}

.admission-details {
  max-width: 850px;
  margin: auto;
  padding: 0 20px;
}

.admission-details h2 {
  font-size: 52px;
  margin-bottom: 16px;
  font-weight: 400;
  color: #111;
}

.admission-details h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #555;
}

.admission-details p {
  font-size: 19px;
  line-height: 1.8;
  color: #222;
}
.admission-slider-section {
  padding-bottom: 10px;
}
.admission-details {
  margin-bottom: 0;
  padding-bottom: 10px;
}
/* ================= RIGHT SIDEBAR ================= */
.enquire-sidebar {
  background: #0d2d5c;
  color: white;

  padding: 32px 30px;

  position: sticky;
  top: 100px;

  width: 100%;
  max-width: 300px;

  margin-left: auto;
  margin-right: 0;

  align-self: start;
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.enquire-sidebar h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 28px;
  text-transform: capitalize;
}

.enquire-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enquire-sidebar li {
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.enquire-sidebar li a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 0;
  font-size: 16px;
  transition: 0.3s;
}

.enquire-sidebar li a:hover,
.enquire-sidebar li a.active {
  color: #ffd700;
  padding-left: 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .admissions-page {
    padding: 75px 28px;
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .page-content {
    padding: 45px 28px;
  }

  .enquire-sidebar {
    position: relative;
    top: 0;
    width: 100%;
  }

  .hero-overlay {
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    text-align: center;
  }

  .hero-overlay h1 {
    font-size: 42px;
  }

  .admission-slide {
    width: 130px;
    height: 300px;
  }

  .active-admission-slide {
    width: 280px;
  }

  .admission-details h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .page-hero {
    min-height: 65vh;
  }

  .admissions-page {
    padding: 55px 18px;
  }

  .page-content {
    padding: 35px 20px;
  }

  .hero-overlay h1 {
    font-size: 34px;
  }

  .admission-arrow {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .admission-slide {
    width: 92px;
    height: 230px;
  }

  .active-admission-slide {
    width: 185px;
  }

  .member-name {
    font-size: 13px;
  }

  .admission-details h2 {
    font-size: 32px;
  }

  .admission-details h4 {
    font-size: 17px;
  }

  .admission-details p {
    font-size: 15px;
  }
}