/* ================= LEADERSHIP PAGE ================= */

.leadership-section {
  background: #f7f7f7;
  padding: 90px 7%;
}

.leadership-intro {
  max-width: 850px;
  margin: 0 auto 80px;
  text-align: center;
}

.leadership-intro h2 {
  font-size: 46px;
  font-weight: 300;
  color: #002b5c;
  margin-bottom: 35px;
}

.leadership-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 22px;
}

.lead-bold {
  font-weight: 700;
  color: #002b5c;
}

/* ================= SLIDER ================= */

.leader-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 90px;
  overflow: hidden;
}

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

.leader-card {
  position: relative;
  width: 260px;
  height: 500px;
  flex: 0 0 auto;
  overflow: hidden;
  opacity: 0.42;
  transform: scale(0.84);
  transition:
    transform .55s ease,
    opacity .55s ease,
    width .55s ease;
  background: #ddd;
}

.leader-card.active {
  width: 540px;
  opacity: 1;
  transform: scale(1);
  border: 5px solid #0088c7;
  z-index: 5;
}
.leader-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.leader-card img {
  transition: transform .8s ease;
}

.leader-card.active img {
  transform: scale(1.03);
}
.leader-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.12),
    transparent
  );
}

.leader-card h3 {
  position: absolute;
  bottom: 66px;
  left: 30px;
  z-index: 2;
  color: white;
  font-size: 31px;
  font-weight: 300;
  line-height: 1.15;
}

.leader-card p {
  position: absolute;
  bottom: 34px;
  left: 30px;
  z-index: 2;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.5;
}

.leader-card span {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 2;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================= CONTROLS ================= */

.leader-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 35px;
}

.leader-controls button {
  width: 58px;
  height: 58px;
  border: none;
  background: #0088c7;
  color: white;
  font-size: 34px;
  cursor: pointer;
  transition: 0.3s ease;
}

.leader-controls button:hover {
  background: #006799;
}

/* ================= MESSAGE ================= */

.leader-message {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.leader-message.active {
  display: block;
}

.leader-message h2 {
  font-size: 48px;
  font-weight: 300;
  color: #555;
  margin-bottom: 10px;
}

.leader-message h4 {
  font-size: 17px;
  color: #0088c7;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-message p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 45px;
}

.leader-message blockquote {
  font-size: 34px;
  line-height: 1.3;
  color: #555;
  font-weight: 300;
  max-width: 1000px;
  margin: auto;
}

/* ================= BACK BUTTON AREA ================= */

.premium-back-wrapper {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 60px 20px 90px;
  background: #f7f7f7;
}

.premium-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  background: #002b5c;
  color: white;
  transition: 0.3s ease;
}

.premium-nav-btn:hover {
  background: #0088c7;
}

.premium-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-label {
  font-size: 15px;
}

@media (max-width: 600px) {

  .leadership-section {
    padding: 60px 18px;
  }

  .leadership-intro h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .leadership-intro p {
    font-size: 15px;
    line-height: 1.8;
  }

  .leader-slider {
    overflow: hidden;
  }

  .leader-track {
    gap: 12px;
  }

  .leader-card {
    width: 82px;
    height: 220px;
    opacity: 0.35;
    transform: scale(0.82);
  }

  .leader-card.active {
    width: 190px;
    opacity: 1;
    transform: scale(1);
    border-width: 3px;
  }

  .leader-card h3 {
    font-size: 16px;
    left: 14px;
    bottom: 44px;
    line-height: 1.1;
  }

  .leader-card p {
    font-size: 10px;
    left: 14px;
    bottom: 20px;
    line-height: 1.4;
  }

  .leader-card span {
    font-size: 8px;
    padding: 6px 9px;
    left: 10px;
    top: 10px;
  }

  .leader-controls {
    margin-top: 25px;
    gap: 12px;
  }

  .leader-controls button {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .leader-message {
    margin-top: 20px;
  }

  .leader-message h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .leader-message h4 {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .leader-message p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .leader-message blockquote {
    font-size: 18px;
    line-height: 1.6;
  }

  .premium-back-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 45px 18px 70px;
  }

  .premium-nav-btn {
    width: 100%;
    justify-content: center;
  }

}

/* ================= WELLBEING SECTION ================= */

.wellbeing-section {
  max-width: 1250px;
  margin: 120px auto 0;
}

.wellbeing-heading {
  text-align: center;
  margin-bottom: 55px;
}

.wellbeing-heading h4 {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0088c7;
  font-weight: 500;
}

/* ================= WELLBEING COUNSELLOR ================= */

.wellbeing-leader {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
  background: white;
  padding: 55px;
}

.wellbeing-leader img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.wellbeing-content h2 {
  font-size: 52px;
  font-weight: 300;
  color: #111;
  margin-bottom: 22px;
}

.wellbeing-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  max-width: 620px;
}

/* ================= TABLET ================= */

@media (max-width: 1000px) {

  .wellbeing-section {
    margin-top: 90px;
  }

  .wellbeing-heading {
    margin-bottom: 40px;
  }

  .wellbeing-leader {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 40px;
  }

  .wellbeing-leader img {
    height: 500px;
  }

  .wellbeing-content {
    text-align: center;
  }

  .wellbeing-content h2 {
    font-size: 38px;
  }

  .wellbeing-content p {
    max-width: 100%;
  }

}

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

@media (max-width: 600px) {

  .wellbeing-section {
    margin-top: 70px;
  }

  .wellbeing-heading {
    margin-bottom: 30px;
  }

  .wellbeing-heading h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .wellbeing-leader {
    padding: 24px;
    gap: 28px;
  }

  .wellbeing-leader img {
    height: 360px;
  }

  .wellbeing-content h2 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .wellbeing-content p {
    font-size: 15px;
    line-height: 1.8;
  }

}