@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

a,
input[type=submit] {
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
}

li {
  list-style: none;
}

img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

input,
fieldset,
textarea {
  border: none;
  background: none;
  outline: none;
  border-radius: 0.5rem;
  font-family: "Roboto", sans-serif;
}

:root {
  --color-white: hsl(0 0% 100%);
  --color-navy-dark: #111232;
  --color-green-light: hsl(126 30% 58%);
  --color-green-medium: hsl(126 30% 45%);
  --color-green-tint: #e3f0e4;
  --color-mint-green: #bde3c1;
  --color-blue-dark: hsl(219, 49%, 47%);
  --color-blue-bright: #578fff;
  --color-light-greyish-blue: hsl(210, 14%, 89%);
  --color-cyan-light: hsl(180 50% 91%);
  --color-cyan-lightest: #f7fbfb;
  --color-fb: #1877f2;
  --color-twitter: #1d9bf0;
  --color-ig: #e4405f;
  --color-yt: #ff0000;
  /* Gradient Variables */
  --gradient-cyan: linear-gradient( #f7fbfb , #d8f2f2);
  --gradient-nav-btn: linear-gradient(to bottom right, #bde3c1 , #dff3f3);
}

.container {
  display: grid;
  grid-template-columns: [container-start] repeat(12, minmax(min-content, 12.5rem)) [container-end];
  justify-content: center;
}

.page-width {
  grid-column: container-start/container-end;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-nav-btn);
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show-back-to-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.padd {
  padding: calc(1rem + 6vh) calc(1rem + 2vw);
}

.sec-link {
  color: var(--color-green-light);
  background-color: var(--color-white);
  border: 1px solid var(--color-green-light);
  font-size: 1.8rem;
  padding: 1rem 3rem;
}
.sec-link:hover {
  background-color: var(--color-green-medium);
  color: var(--color-white);
}

.sec-para {
  font-size: 1.8rem;
  color: var(--color-navy-dark);
  text-align: start;
  margin-bottom: 2rem;
}

.sec-title {
  font-size: calc(1rem + 2vw);
  font-weight: 900;
  color: var(--color-blue-dark);
  text-align: center;
}

.sec-sub-para {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-navy-dark);
}

.responsive-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.sec-mini-title {
  font-size: 1.8rem;
  color: var(--color-blue-dark);
  position: relative;
  display: inline-block;
}
.sec-mini-title::before, .sec-mini-title::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 0.2rem;
  width: 2rem;
  transform: translateY(-50%);
  background-color: var(--color-white);
}
.sec-mini-title::before {
  left: -60%;
}
.sec-mini-title::after {
  right: -60%;
}

.sec-sub-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-navy-dark);
  transition: all 0.25s ease-in-out;
  text-align: start;
}

.cta {
  color: var(--color-white);
  background-color: var(--color-green-light);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 3rem;
  border: 1px solid var(--color-green-light);
}
.cta:hover {
  background-color: var(--color-green-medium);
  color: var(--color-white);
}

.sec-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.legal-container {
  max-width: 65ch;
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.header {
  background-color: var(--color-white);
  padding: calc(1rem + 1vh) calc(1rem + 6vw);
  box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.header__logo-link {
  width: 20rem;
}
.header__logo {
  height: 30%;
  width: 30%;
}
.header__nav {
  display: flex;
  gap: 3rem;
  margin-left: auto;
  z-index: 9999;
}
.header__nav-link {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-blue-dark);
}

.notice-bar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
  /* 🔹 UL that moves */
}
.notice-bar__title {
  position: absolute;
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 1.2rem 2.4rem;
  font-size: 1.8rem;
  z-index: 200;
}
.notice-bar__title-mobile {
  position: absolute;
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  z-index: 200;
  display: none;
}
.notice-bar__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 0;
  transform: translateX(0);
  will-change: transform;
}
.notice-bar__notice {
  white-space: nowrap;
  padding: 1rem 2.4rem;
  font-size: 1.5rem;
  position: relative;
}
.notice-bar__notice::after {
  content: "";
  width: 1px;
  height: 100%;
  opacity: 0.4;
  background-color: #b8b8b8;
  position: absolute;
  top: 0;
  right: 0;
}
.notice-bar__notice:last-child::after {
  display: none;
}
.notice-bar__time {
  color: #949393;
}

/* ❌ Remove your old @keyframes notice-scroll completely */
.hero {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.hero__content {
  flex-basis: 55%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero__title {
  font-size: calc(2rem + 3vw);
}
.hero__title span {
  color: var(--color-blue-bright);
}
.hero__subtitle {
  font-size: calc(1rem + 2vw);
  font-weight: 300;
  font-style: italic;
}
.hero__subtitle span {
  color: var(--color-blue-bright);
}
.hero__para {
  font-size: 1.8rem;
}
.hero__btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 22rem));
  gap: 2rem;
}
.hero__btns a {
  text-align: center;
}
.hero__image-container {
  flex-basis: 45%;
  position: relative;
}
.hero__image-container::before, .hero__image-container::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.hero__image-container::before {
  top: -7%;
  right: 0%;
  width: 50%;
  height: 50%;
  background-color: var(--color-cyan-light);
}
.hero__image-container::after {
  bottom: -7%;
  left: 0%;
  width: 50%;
  height: 50%;
  background-color: var(--color-cyan-light);
}

.leadership__title {
  padding-bottom: calc(1rem + 6vh);
}
.leadership__card-body {
  display: flex;
  justify-content: center;
}
.leadership .slider-wrapper {
  overflow: hidden;
  /* based on your screen size */
  max-width: 1200px;
  margin: 0 70px 55px;
}
.leadership .slider-wrapper .swiper-pagination-bullet {
  background: var(--color-blue-dark);
  height: 15px;
  width: 15px;
}
.leadership .slider-wrapper .swiper-slide-button {
  color: var(--color-green-light);
  margin-top: -50px;
  transition: 0.2s ease;
}
.leadership .slider-wrapper .swiper-slide-button:hover {
  color: var(--color-green-medium);
}
.leadership__card {
  height: 300px !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(to right, aliceblue, rgb(88, 87, 87), var(--color-blue-dark));
  border-radius: 20px;
  justify-content: center;
  align-items: end;
  display: flex;
  flex-direction: column;
  box-shadow: rgb(255, 255, 255) 0px 20px 30px -10px;
  transition: all 0.2s ease-in-out;
}
.leadership__card-top {
  height: 65%;
  width: 100%;
  background-color: aliceblue;
  border-radius: 20px 20px 40px 0px;
  display: flex;
}
.leadership__circle {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.leadership .circle {
  height: 100px;
  width: 100px;
  border: 2px solid var(--color-blue-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.leadership .circle img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}
.leadership__card-info {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.leadership__name {
  font-size: 1.8rem;
  align-self: flex-start;
}
.leadership__position {
  font-size: 1.5rem;
  align-self: flex-start;
}
.leadership__quotes {
  height: 35%;
  width: 100%;
  background-color: var(--color-blue-dark);
  color: white;
  border-radius: 40px 0px 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.leadership__quotes p {
  font-size: 1.5rem;
}

.principal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.principal__photo {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
}
.principal__photo img {
  border: 2px solid var(--color-blue-dark);
  width: 40%;
  height: 40%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.principal__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-basis: 60%;
}
.principal__content-title {
  text-align: start;
}
.principal__content-name-box {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
}
.principal__content-name {
  font-size: 2rem;
}

.about {
  display: flex;
  gap: 2rem;
  background: var(--gradient-cyan);
}
.about__content {
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__content h2 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  text-align: start;
}
.about__content h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-blue-dark);
}
.about__content .cta {
  align-self: start;
}
.about__content-link {
  color: var(--color-navy-dark);
  font-size: 2rem;
  font-weight: 500;
}
.about__group-photo {
  width: 50%;
  height: 50%;
  display: flex;
  align-self: center;
}
.about__group-photo img {
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.academics__cards {
  display: flex;
  gap: 2rem;
}
.academics__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 50%;
}
.academics__card-title {
  font-weight: 800;
}
.academics__card-para {
  color: var(--color-blue-dark);
}
.academics__card-icons {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.academics__card-icons li {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 2rem;
}
.academics__card-icons li a {
  font-size: calc(1rem + 2vw);
  color: var(--color-navy-dark);
  text-decoration: none;
}
.academics__card-icons li a i {
  color: var(--color-green-medium);
}
.academics__card .btn {
  align-self: flex-start;
}

.gallery {
  background: var(--gradient-cyan);
}
.gallery .slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto 55px;
}
.gallery .slider-wrapper .swiper-pagination-bullet {
  background: var(--color-blue-dark);
  height: 15px;
  width: 15px;
}
.gallery .slider-wrapper .swiper-slide-button {
  color: var(--color-green-light);
  margin-top: -50px;
  transition: 0.2s ease;
}
.gallery .slider-wrapper .swiper-slide-button:hover {
  color: var(--color-green-medium);
}
.gallery__card {
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease-in-out;
  border: 2px solid transparent;
}
.gallery__card:hover {
  border-color: var(--color-blue-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.gallery__card:hover .gallery__link i {
  background-color: var(--color-blue-dark);
  color: #fff;
  border-radius: 50%;
  border: 2px solid transparent;
}
.gallery__image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  padding: 1.1rem;
}
.gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.gallery__badge {
  font-size: 1.5rem;
  background: var(--color-green-light);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-navy-dark);
}
.gallery__text {
  color: var(--color-navy-dark);
  font-size: 1.8rem;
  line-height: 1.6;
}
.gallery__link {
  align-self: flex-start;
  border: 2px solid var(--color-navy-dark);
  border-radius: 50%;
  transition: all 0.4s ease;
}
.gallery__link i {
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  font-size: 1.8rem;
  transform: rotate(45deg);
}

.recent-news {
  background-color: var(--color-white);
  padding: calc(1rem + 6vh);
  /* IMAGE FULL WIDTH */
  /* TAGS LEFT */
  /* INFO RIGHT */
  /* TITLE FULL WIDTH */
  /* PARA FULL WIDTH */
  /* Hover effect */
}
.recent-news__card {
  padding: 1.5rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.recent-news__img-photo {
  grid-column: 1/-1;
  width: 100%;
  height: 180px;
}
.recent-news__img-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.recent-news__tags {
  grid-column: 1/span 2;
  font-size: 1.5rem;
  padding: 0.6rem 1.2rem;
  background-color: var(--color-green-tint);
  color: var(--color-green-medium);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}
.recent-news__info {
  grid-column: 4/-1;
  font-size: 1.5rem;
  text-align: right;
}
.recent-news__news-title {
  grid-column: 1/-1;
  font-size: 1.8rem;
}
.recent-news__para {
  grid-column: 1/-1;
  font-size: 1.5rem;
}
.recent-news__btn {
  transition: all 0.25s ease;
  grid-column: 1/-1;
  /* width: -moz-fit-content; */
  width: fit-content;
  justify-self: start;

    /* 🔧 normalization */
  line-height: 1;
  padding: 0.8rem 1.6rem;
  white-space: nowrap;
}
.recent-news__btn:hover {
  background-color: var(--color-blue);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  color: var(--color-green-medium);
}

.teachers {
  background-color: var(--color-white);
  padding: calc(1rem + 6vh);
  /* THE CARD */
  /* PHOTO */
  /* NAME */
  /* SUBJECTS */
}
.teachers__title {
  padding-bottom: 2rem;
}
.teachers .slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto 55px;
}
.teachers .slider-wrapper .swiper-pagination-bullet {
  background-color: var(--color-blue-dark);
  height: 15px;
  width: 15px;
}
.teachers .slider-wrapper .swiper-slide-button {
  color: var(--color-green-light);
  margin-top: -50px;
  transition: 0.2s ease;
}
.teachers .slider-wrapper .swiper-slide-button:hover {
  color: var(--color-green-medium);
}
.teachers__person {
  width: 100%;
  height: 300px !important;
  background: var(--color-cyan-lightest);
  border: 1px solid var(--color-blue-dark);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
}
.teachers__person:hover {
  border-color: var(--color-blue-dark);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.teachers__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  text-align: center;
  border: 2px solid var(--color-blue-dark);
  padding: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.teachers__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 1rem;
}
.teachers__subject {
  font-size: 1.5rem;
  color: var(--color-gray-dark);
  line-height: 1.5;
}

.events {
  padding: 2rem 0;
  width: 100%;
  /* Header */
  /* TABLE */
  /* RESPONSIVE */
}
.events__title {
  padding-bottom: 2rem;
}
.events .events__container {
  background: #fff;
  padding: 1.3rem;
  border-radius: 10px;
  max-width: 820px;
  margin: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.events .events__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.events .events__header .events__chevrons {
  display: flex;
  gap: 0.5rem;
}
.events .events__header .events__chevron-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease;
}
.events .events__header .events__chevron-btn:hover {
  background: #e4e4e4;
}
.events .events__header .events__month {
  font-size: 1.8rem;
  font-weight: 600;
}
.events .events__header .events__badge {
  background: #e8f0ff;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 1.5rem;
  color: #3259a5;
}
.events .events__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}
.events .events__table .events__date-row {
  background: #f7f7f7;
  border-left: 4px solid #1a73e8;
}
.events .events__table .events__date-row td {
  padding: 0.8rem 1rem;
}
.events .events__table .events__date-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.events .events__table .events__date {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
.events .events__table .events__day {
  font-size: 1.5rem;
  font-weight: 500;
  color: #777;
}
.events .events__table .events__event-row {
  background: #ffffff;
  border: 1px solid #e6e6e6;
}
.events .events__table .events__event-row td {
  padding: 0.75rem 1rem;
}
.events .events__table .events__event-row .events__time {
  width: 160px;
  font-weight: 400;
  font-size: 1.5rem;
  color: #444;
  white-space: nowrap;
}
.events .events__table .events__event-row .events__details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  font-size: 1.5rem;
}
.events .events__table .events__event-row .events__details .events__dot {
  width: 8px;
  height: 8px;
  background: #1a73e8;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 600px) {
  .events .events__container {
    padding: 1rem;
  }
  .events .events__date-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .events .events__event-row td {
    display: block;
    width: 100%;
    padding: 0.5rem 0.8rem;
  }
  .events .events__time {
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
}

.testimonials {
  background: var(--gradient-cyan);
  /* ---- WIDE CARD WITH BACKGROUND QUOTE ---- */
  /* Decorative left bar */
  /* Big Soft Quote - background */
  /* PHOTO */
  /* CONTENT */
  /* Rating stars */
  /* Main comment large text */
  /* Extended paragraph text */
  /* Name */
  /* Profession */
  /* Swiper pagination */
}
.testimonials .slider-wrapper {
  max-width: 850px;
  padding: 0 20px;
  margin: 0 auto 55px;
  overflow: visible;
}
.testimonials__card {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 2.4rem 2rem;
  gap: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transition: all 0.25s ease;
}
.testimonials__card:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.15);
}
.testimonials__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--color-blue-dark);
  border-radius: 1.4rem 0 0 1.4rem;
}
.testimonials__card::after {
  content: "“";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.08;
  font-family: serif;
  color: var(--color-navy-dark);
  pointer-events: none;
}
.testimonials__photo {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  display: inline-block;
}
.testimonials__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-blue-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.testimonials__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonials__rating {
  display: flex;
  gap: 3px;
}
.testimonials__rating span {
  color: #ffc107;
  font-size: 1.25rem;
}
.testimonials__comment {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.testimonials__text {
  color: var(--color-gray-dark);
  font-size: 1.8rem;
  line-height: 1.55;
  max-width: 95%;
}
.testimonials__name {
  margin-top: 0.4rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-navy-dark);
}
.testimonials__role {
  font-size: 1.5rem;
  color: var(--color-gray-medium);
}
.testimonials .swiper-pagination {
  bottom: -30px !important;
  display: flex;
  justify-content: center;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-blue-dark);
  width: 12px;
  height: 12px;
  opacity: 0.45;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ---------- MOBILE (STACKED VERSION) ---------- */
@media (max-width: 600px) {
  .testimonials .slider-wrapper {
    max-width: 100% !important;
    padding: 0 12px !important;
    padding-bottom: 3.5rem !important;
  }
  .testimonials__card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.2rem;
    gap: 1.2rem;
  }
  .testimonials__card::before {
    width: 100%;
    height: 6px;
    border-radius: 1.4rem 1.4rem 0 0;
  }
  .testimonials__card::after {
    font-size: 4rem;
    top: 5px;
    right: 16px;
  }
  .testimonials__photo {
    width: 90px;
    height: 90px;
  }
  .testimonials__text {
    max-width: 100%;
    font-size: 1.5rem;
  }
}
.contact {
  background: var(--gradient-cyan);
}
.contact__title {
  padding-bottom: 2rem;
}
.contact__form {
  max-width: 755px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__row {
  display: flex;
  gap: 2rem;
}
.contact__row fieldset {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-basis: 50%;
}
.contact__row fieldset label, .contact__row fieldset input {
  font-size: 1.5rem;
  display: block;
}
.contact__row fieldset input {
  border: none;
  outline: none;
  border: 1px solid var(--color-light-greyish-blue);
  border-radius: 20px;
  background-color: #fff;
  padding: 1.1rem 1.6rem;
  font-size: 1.5rem;
}
.contact__row fieldset input:focus {
  outline: 3px solid var(--color-mint-green); /* your focus color */
}
.contact__full {
  display: flex;
  flex-direction: column;
}
.contact__full label {
  font-size: 1.5rem;
}
.contact__full textarea {
  border: 1px solid gray;
  padding: 1.1rem 1.6rem;
  font-size: 1.5rem;
  background-color: #fff;
  border: 1px solid var(--color-light-greyish-blue);
  border-radius: 20px;
}
.contact__full input[type=submit] {
  border-radius: 20px;
}
/* ----------------------------------
   reCAPTCHA visibility control
---------------------------------- */

/* Hidden by default */
.contact__captcha {
  display: none;
  justify-content: center;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
}

/* Visible when JS adds this class */
.contact__captcha.is-visible {
  display: flex;
}

/* Center the Google widget */
.contact__captcha .g-recaptcha {
  margin-left: auto !important;
  margin-right: auto !important;
  width: fit-content !important;
}


.footer {
  background-color: var(--color-navy-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-evenly;
}
.footer h2 {
  color: var(--color-white);
  font-size: 2rem;
}
.footer p {
  color: var(--color-white);
  font-size: 1.5rem;
}
.footer a {
  color: var(--color-green-light);
}
.footer__contact-list {
  font-size: 1.5rem;
}
.footer__socials-list {
  display: flex;
  font-size: 1.5rem;
  gap: 1.5rem;
}
.footer__socials-list a .fb {
  color: var(--color-fb) !important;
}
.footer__socials-list a .tw {
  color: var(--color-twitter);
}
.footer__socials-list a .ig {
  color: var(--color-ig);
}
.footer__socials-list a .yt {
  color: var(--color-yt);
}
.footer__legal-list {
  font-size: 1.3rem;
}
.footer__bottom {
  padding-top: 2rem;
}
.footer__bottom p {
  text-align: center;
}

.privacy__title {
  padding-bottom: 2rem;
}
.privacy__updated {
  font-size: 1.6rem;
  color: rgb(131, 131, 131);
}
.privacy__text {
  font-size: 1.4rem;
}
.privacy__list {
  font-size: 1.4rem;
  padding-left: 2.4rem;
}
.privacy__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.privacy__list li::before {
  content: "\f3ed";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #0073e6;
  font-size: 15px;
}

.terms-of-use {
  /* LI styling with FA icons */
  /* OPTIONAL: different icon for nested lists */
}
.terms-of-use__updated {
  font-size: 1.6rem;
  color: #aaa;
}
.terms-of-use__subtitle {
  margin-top: 1.5rem;
}
.terms-of-use__subtitle:first-of-type {
  margin-top: 0;
}
.terms-of-use__text {
  font-size: 1.4rem;
}
.terms-of-use ul {
  list-style: none;
  padding-left: 2.4rem;
  margin: 1.2rem 0 1.6rem 0;
}
.terms-of-use li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.5;
  /* Font Awesome icon */
}
.terms-of-use li::before {
  content: "\f111";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.2rem;
  color: #505050;
}
.terms-of-use ul ul li::before {
  content: "\f111";
}

.disclaimer__updated {
  font-size: 1.6rem;
  color: #aaa;
}
.disclaimer__subtitle {
  margin-top: 1.5rem;
}
.disclaimer__subtitle:first-of-type {
  margin-top: 0;
}
.disclaimer__text {
  font-size: 1.4rem;
}

.gallery-list {
  background: var(--gradient-cyan);
  width: 100%;
  max-width: 100%;
}
.gallery-list__category {
  margin-bottom: 3rem;
}
.gallery-list__heading {
  font-size: 1.8rem;
  color: var(--color-navy-dark);
  margin-bottom: 1.2rem;
  border-left: 6px solid var(--color-blue-dark);
  padding-left: 1rem;
}
.gallery-list__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}
.gallery-list__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.gallery-list__image {
  width: 100%;
  height: 170px;
}
.gallery-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery-list__title {
  padding: 1rem 1.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  border-top: 1px solid var(--color-light-greyish-blue);
}

.gallery-category {
  background: var(--gradient-cyan);
}
.gallery-category__grid {
  -moz-columns: 1;
       columns: 1;
  -moz-column-gap: 1.4rem;
       column-gap: 1.4rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem;
}
.gallery-category__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 1.4rem;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: zoom-in;
  transition: transform 0.2s ease;
}
.gallery-category__item:hover {
  transform: scale(1.02);
}
.gallery-category__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Responsive Columns */
@media (min-width: 600px) {
  .gallery-category__grid {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (min-width: 900px) {
  .gallery-category__grid {
    -moz-columns: 3;
         columns: 3;
  }
}
.nursery-academics {
  background: var(--gradient-cyan);
  /* HERO */
  /* FACT GRID */
  /* CONTENT SECTION */
  /* LIST */
  /* SCHEDULE */
  /* GALLERY */
  /* CTA */
}
.nursery-academics__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
}
.nursery-academics__hero {
  text-align: center;
  padding-bottom: 2rem;
}
.nursery-academics__title {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-navy-dark);
}
.nursery-academics__subtitle {
  margin-top: 0.8rem;
  color: var(--color-gray-dark);
  font-size: 1.5rem;
}
.nursery-academics__facts {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.nursery-academics__facts .fact {
  text-align: center;
}
.nursery-academics__facts .fact h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 0.4rem;
}
.nursery-academics__facts .fact p {
  color: var(--color-gray-dark);
  font-size: 1.3rem;
}
.nursery-academics__section {
  margin-bottom: 2rem;
}
.nursery-academics__section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 1rem;
}
.nursery-academics__section p {
  color: var(--color-gray-dark);
  font-size: 1.5rem;
  line-height: 1.6;
}
.nursery-academics__list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.nursery-academics__list li {
  margin-bottom: 0.7rem;
  padding-left: 1.4rem;
  position: relative;
  font-size: 1.5rem;
}
.nursery-academics__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-blue-dark);
  font-size: 1.4rem;
}
.nursery-academics__schedule {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 12px;
  display: grid;
  gap: 1rem;
}
.nursery-academics__schedule div {
  font-size: 1.5rem;
}
.nursery-academics__schedule div span {
  width: 100px;
  display: inline-block;
  font-weight: 700;
  color: var(--color-blue-dark);
  font-size: 1.5rem;
}
.nursery-academics__gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.nursery-academics__gallery img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.nursery-academics__cta {
  text-align: center;
  margin: 2rem 0;
}
.nursery-academics__cta h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-navy-dark);
}
.nursery-academics__cta .cta {
  padding: 1rem 2.5rem;
  border-radius: 20px;
  font-size: 1.8rem;
}

.middle-academics {
  background: var(--gradient-cyan);
  /* HERO */
  /* QUICK FACTS */
  /* CONTENT SECTIONS */
  /* LISTS */
  /* WEEKLY ROUTINE */
  /* GALLERY */
  /* CTA */
}
.middle-academics__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
}
.middle-academics__hero {
  text-align: center;
  padding-bottom: 2rem;
}
.middle-academics__title {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-navy-dark);
}
.middle-academics__subtitle {
  margin-top: 0.8rem;
  color: var(--color-gray-dark);
  font-size: 1.5rem;
}
.middle-academics__facts {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.middle-academics__facts .fact {
  text-align: center;
}
.middle-academics__facts .fact h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 0.4rem;
}
.middle-academics__facts .fact p {
  color: var(--color-gray-dark);
  font-size: 1.3rem;
}
.middle-academics__section {
  margin-bottom: 2rem;
}
.middle-academics__section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 1rem;
}
.middle-academics__section p {
  font-size: 1.5rem;
  color: var(--color-gray-dark);
  line-height: 1.6;
}
.middle-academics__list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}
.middle-academics__list li {
  padding-left: 1.3rem;
  margin-bottom: 0.7rem;
  font-size: 1.5rem;
  position: relative;
}
.middle-academics__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-blue-dark);
  font-size: 1.4rem;
}
.middle-academics__schedule {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 12px;
  display: grid;
  gap: 1rem;
}
.middle-academics__schedule div {
  font-size: 1.5rem;
}
.middle-academics__schedule div span {
  width: 70px;
  display: inline-block;
  font-weight: 700;
  color: var(--color-blue-dark);
  font-size: 1.5rem;
}
.middle-academics__gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.middle-academics__gallery img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.middle-academics__cta {
  text-align: center;
  margin: 2rem 0;
}
.middle-academics__cta h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-navy-dark);
}
.middle-academics__cta .cta {
  padding: 1rem 2.5rem;
  border-radius: 20px;
  font-size: 1.8rem;
}

.news-details {
  background: var(--gradient-cyan);
  /* HEADER / TITLE */
  /* FEATURE IMAGE */
  /* MAIN CONTENT (rich text) */
  /* RECENT NEWS */
}
.news-details__container {
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
}
.news-details__header {
  margin-bottom: 1.5rem;
}
.news-details__title {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.news-details__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-gray-dark);
}
.news-details__meta span {
  opacity: 0.85;
}
.news-details__category {
  background-color: var(--color-cyan-light);
  color: var(--color-green-medium);
  padding: 0.7rem 1.2rem;
  border-radius: 1.2rem;
  text-transform: capitalize;
}
.news-details__image {
  margin: 2rem 0;
}
.news-details__image img {
  width: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.news-details__content {
  background: var(--color-white);
  padding: 1.5rem 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--color-light-greyish-blue);
  font-size: 1.5rem;
  color: var(--color-navy-dark);
  line-height: 1.7;
  /* Images inside content */
  /* Paragraph spacing */
  /* Headings from rich text */
  /* Rich text lists */
}
.news-details__content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.6rem;
  margin: 1.2rem 0;
  display: block;
}
.news-details__content p {
  margin-bottom: 1.2rem;
}
.news-details__content h2,
.news-details__content h3 {
  margin: 2rem 0 1rem;
  color: var(--color-blue-dark);
  font-size: 2.5rem;
  font-weight: 700;
}
.news-details__content ul,
.news-details__content ol {
  padding-left: 2rem;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}
.news-details__content ul li,
.news-details__content ol li {
  margin-bottom: 0.6rem;
}
.news-details__recent {
  margin-top: 2rem;
}
.news-details__recent-title {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-navy-dark);
}
.news-details__recent-list {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* --- NEWS CARDS (used inside recent news) --- */
.news-card {
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-light-greyish-blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.news-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card__image img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card__content {
  padding: 1rem;
}
.news-card__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-navy-dark);
}
.news-card__date {
  font-size: 1.3rem;
  color: var(--color-gray-dark);
}

/* ===============================
   NEWS LIST SECTION
================================ */
.news-list {
  background: var(--gradient-cyan);
}
.news-list__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  /* ----------- Desktop ----------- */
  grid-template-columns: repeat(3, 1fr);
}
.news-list__loadmore {
  text-align: center;
  margin-top: 3rem;
}

/* ===============================
   NEWS CARD
================================ */
.news-card {
  background: var(--color-white);
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--color-light-greyish-blue);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}
.news-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card__image {
  width: 100%;
  height: 180px;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover img {
  transform: scale(1.05);
}
.news-card__content {
  padding: 1.8rem 2rem;
}
.news-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 0.8rem;
}
.news-card__date {
  font-size: 1.3rem;
  color: var(--color-gray-medium);
  margin-bottom: 1.2rem;
}
.news-card__excerpt {
  font-size: 1.5rem;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

/* ===============================
   RESPONSIVENESS
================================ */
/* 2 CARDS — Tablets / small laptops */
@media (max-width: 900px) {
  .news-list__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-card__image {
    height: 160px;
  }
}
/* 1 CARD — Mobile */
@media (max-width: 600px) {
  .news-list__container {
    grid-template-columns: 1fr;
  }
  .news-card__image {
    height: 150px;
  }
}
.aboutus {
  background: var(--gradient-cyan);
  /* HERO */
  /* MAIN CONTENT LAYOUT */
  /* TEXT BLOCK */
  /* IMAGE BLOCK */
}
.aboutus__container {
  max-width: 1100px;
  margin: 0 auto;
}
.aboutus__hero {
  text-align: center;
  margin-bottom: 2rem;
}
.aboutus__title {
  font-size: calc(2rem + 3vw);
  font-weight: 700;
  color: var(--color-navy-dark);
}
.aboutus__subtitle {
  font-size: 2rem;
  color: var(--color-gray-medium);
  margin-top: 1rem;
}
.aboutus__content {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: var(--color-white);
  border-radius: 1.4rem;
  padding: 2rem 3rem;
  border: 1px solid var(--color-light-greyish-blue);
}
.aboutus__text {
  flex: 1;
}
.aboutus__text p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  color: var(--color-navy-dark);
}
.aboutus__text strong {
  color: var(--color-blue-dark);
  font-weight: 500;
}
.aboutus__heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-blue-dark);
}
.aboutus__image {
  flex: 1.1;
}
.aboutus__image img {
  width: 100%;
  border-radius: 1.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ---------- RESPONSIVE (Mobile) ---------- */
@media (max-width: 768px) {
  .aboutus__content {
    flex-direction: column-reverse;
    padding: 1.5rem 2.5rem;
  }
  .aboutus__image {
    width: 100%;
  }
  .aboutus__image img {
    border-radius: 1rem;
  }
  .aboutus__hero {
    margin-bottom: 1.5rem;
  }
}
/* ======================================================
   ADMISSION PAGE — refined typography + improved CTAs
=========================================================*/
.admission {
  background: var(--gradient-cyan);
  /* HEADER */
  /* MAIN CONTAINER */
  /* SECTIONS */
  /* LIST TEXT — boosted readability */
  /* ADMISSION PROCESS — improved font size */
  /* FEE STRUCTURE BLOCK */
  /* DOWNLOADABLE FORMS — now styled as CTA blocks */
  /* CONTACT SECTION — improved font size */
}
.admission__header {
  text-align: center;
  margin-bottom: 3rem;
}
.admission__header .admission__title {
  font-size: 3.5rem;
  color: var(--color-navy-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}
.admission__header .admission__subtitle {
  font-size: 1.8rem;
  color: var(--color-gray-dark);
}
.admission__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.admission__section {
  background: var(--color-white);
  padding: 1.5rem 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--color-light-greyish-blue);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.admission__section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.admission__section h2 i {
  font-size: 1.8rem;
  color: var(--color-blue-dark);
}
.admission__list, .admission__docs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.admission__list li, .admission__docs li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  color: var(--color-navy-dark);
}
.admission__list li i, .admission__docs li i {
  font-size: 1.6rem;
  color: var(--color-blue-dark);
}
.admission__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 2rem;
}
.admission__steps li i {
  margin-top: 0.3rem;
  color: var(--color-green-medium);
  font-size: 1.8rem;
}
.admission__downloads .admission__info {
  margin-bottom: 1.4rem;
  color: var(--color-gray-dark);
  font-size: 2rem;
}
.admission__downloads .admission__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--color-blue-dark);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 0.7rem;
  font-size: 1.5rem;
  transition: 0.25s ease;
}
.admission__downloads .admission__download-btn i {
  font-size: 1.6rem;
}
.admission__downloads .admission__download-btn:hover {
  background: var(--color-blue-bright);
  transform: translateY(-3px);
}
.admission__download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.admission__download-card {
  background: var(--color-blue-dark);
  color: var(--color-white);
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  transition: 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.admission__download-card i {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}
.admission__download-card h4 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.admission__download-card p {
  font-size: 1.5rem;
  opacity: 0.85;
}
.admission__download-card:hover {
  background: var(--color-blue-bright);
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}
.admission__contact-para {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.admission__contact-list {
  margin: 1rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admission__contact-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.8rem;
}
.admission__contact-list li i {
  color: var(--color-blue-dark);
  font-size: 1.8rem;
}

/* MOBILE FIXES */
@media (max-width: 600px) {
  .admission__section {
    padding: 2rem;
  }
}
.admission-faq {
  max-width: 880px;
  margin: 0 auto;
  background: var(--gradient-cyan);
  border-radius: 1.2rem;
  padding: 2rem 2.5rem;
  /* QUESTION ROW */
  /* ANSWER PANEL */
  /* Expand when active */
}
.admission-faq__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--color-blue-dark);
  font-weight: 700;
}
.admission-faq__item {
  background: var(--color-white);
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--color-light-greyish-blue);
  overflow: hidden;
}
.admission-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-navy-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  /* CIRCULAR ICON */
}
.admission-faq__question span {
  font-weight: 700;
}
.admission-faq__question .faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-blue-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  transition: transform 0.28s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.admission-faq__question.active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-green-medium);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.admission-faq__answer {
  max-height: 0;
  overflow: hidden;
  background: var(--color-cyan-lightest);
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.admission-faq__answer p {
  font-size: 1.5rem;
  padding: 0 2.5rem;
  margin: 1.2rem 0;
  color: var(--color-navy-dark);
  line-height: 1.6;
}
.admission-faq__item.active .admission-faq__answer {
  padding-bottom: 1.2rem;
}

.error-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.error-card {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  max-width: 420px;
  width: 100%;
}

.error-card__title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #d9534f;
}

.error-card__subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-size: 1.4rem;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-secondary {
  background: #f1f1f1;
  color: #333;
}

@media screen and (max-width: 320px) {
  .hero__btns .cta {
    font-size: 1.3rem;
  }
  .hero__btns .sec-link {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 500px) {
  .notice-bar__notice {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5 1.6rem;
  }
  .notice-bar__time {
    flex-shrink: 0;
    font-weight: 600;
    opacity: 0.85;
  }
  .notice-bar__text {
    min-width: -moz-max-content;
    min-width: max-content;
    padding-right: 2rem;
  }
  .notice-bar__title {
    display: none;
  }
  .notice-bar__title-mobile {
    display: flex;
  }
  .hero__btns .cta {
    padding: 1rem 2rem;
  }
  .hero__btns .sec-link {
    padding: 1rem 2rem;
  }
  .leadership .slider-wrapper {
    margin: 0 auto !important;
    padding: 0 10px !important;
    max-width: 100% !important;
    padding-bottom: 45px !important;
  }
  .gallery .slider-wrapper {
    margin: 0 auto !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    padding-bottom: 4rem !important;
    overflow: visible !important;
  }
  .gallery__card {
    height: auto !important;
  }
  .gallery__image {
    height: 130px;
    padding: 0.5rem;
  }
  .gallery__content {
    padding: 1rem;
    gap: 0.8rem;
  }
  .gallery__text {
    font-size: 1.5rem;
  }
  .gallery__link i {
    width: 30px;
    height: 30px;
    font-size: 1.4rem;
  }
  .recent-news {
    padding: 2rem 3rem;
  }
  .teachers .slider-wrapper {
    margin: 0 auto !important;
    max-width: 100% !important;
  }
  .testimonials__card {
    width: 100% !important;
  }
  .testimonials__rating {
    justify-content: center;
  }
  .footer {
    justify-content: flex-start;
  }
  .footer__legal {
    width: 100%;
  }
  .footer__bottom {
    order: 3;
  }
}
@media screen and (max-width: 600px) {
  .sec-title {
    font-size: 2.5rem;
  }
  .principal {
    flex-direction: column;
  }
  .admission-faq__question .faq-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
  }
  .admission-faq__question span {
    padding-right: 1rem;
    white-space: normal;
  }
}
@media screen and (max-width: 780px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }
  .slider-wrapper .swiper-slide-button {
    display: none;
  }
  .contact__row {
    flex-wrap: wrap;
  }
  .contact__row fieldset {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 800px) {
  .about {
    flex-direction: column;
  }
  .about__content, .about__group-photo {
    width: 100%;
  }
  .academics .academics__cards {
    flex-direction: column;
    align-content: center;
    gap: 4rem;
  }
  .academics__card {
    width: 100%;
  }
  .news__cards {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .hero {
    flex-direction: column;
  }
  .hero__content {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .header__logo-link {
    top: 2.8rem;
    left: 2.5rem;
  }
  .header__nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(1rem + 4vh) calc(1rem + 6vw);
    transition: all 0.35s ease-in-out;
    background-color: var(--color-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    z-index: 9998;
  }
  .hamburger {
    height: 5rem;
    width: 9rem;
    background: var(--gradient-nav-btn);
    padding: 2rem;
    border-radius: 8px;
    cursor: pointer;
    position: fixed;
    top: 2rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    z-index: 9999;
  }
  .hamburger__line {
    display: block;
    min-height: 3px;
    background-color: var(--color-blue-dark);
    transition: all 0.3s ease;
    z-index: 11;
  }
  .hamburger__line:nth-child(1) {
    width: 50%;
    transition: all 0.25s ease;
  }
  .hamburger__line:nth-child(2) {
    transition: all 0.1s ease;
  }
  .hamburger__line:nth-child(3) {
    width: 50%;
    transition: all 0.25s ease;
    align-self: flex-end;
  }
  .display__nav {
    transform: translateX(0);
  }
  .hamburger__line-1 {
    transform: rotate(45deg) translateX(1.5rem) translateY(-0.2rem);
  }
  .hamburger__line-2 {
    visibility: hidden;
  }
  .hamburger__line-3 {
    transform: rotate(-45deg) translateX(0.2rem) translateY(-2.1rem);
  }
}/*# sourceMappingURL=main-style.css.map */

/* Error message in public UI */
.message {
  font-size: 1.7rem ;
  text-align: start;
  background-color: #ffcccc ;
  padding: 0.5rem 1.7rem;
  border-radius: 2px;
}
.success-message {
  font-size: 1.7rem;
  background: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: 0.6rem;
  margin-bottom: 1rem;
}

/* Login page styles */
/* ===== Admin Login Page Wrapper ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  background: #f4f6fb;      /* soft neutral bg */
  padding: 1.5rem;
}


.login-card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  padding: 2rem;
  border-radius: 0.8rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.login-card__title {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1d29;
}
.login-card__subtitle {
  font-size: 1.5rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.login-card__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.login-card__form .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.login-card__form .form-group label {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #333;
}
.login-card__form .form-group input {
  padding: 0.8rem 1rem;
  font-size: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.login-card__form .form-group input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}
.login-card__form .form-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: #333;
}
.login-card__form .form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #6366f1;
}
.login-card__form .form-check label {
  cursor: pointer;
}
.login-card__form .form-actions {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.login-card__form .form-actions button {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.login-card__form .form-actions button.btn-primary {
  background: #6366f1;
  color: #fff;
}
.login-card__form .form-actions button.btn-primary:hover {
  background: #4f46e5;
}
.login-card__form .form-actions button.btn-secondary {
  background: #f3f4f6;
  color: #333;
}
.login-card__form .form-actions button.btn-secondary:hover {
  background: #e5e7eb;
}
.login-card__footer {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: #6b7280;
}
.login-card__footer a {
  color: #6366f1;
  text-decoration: none;
}
.login-card__footer a:hover {
  text-decoration: underline;
}

/* ================================
   LOGIN ALERTS
================================ */

.login-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
  border-radius: 0.6rem;
  font-size: 1.4rem;   /* IMPORTANT for 62.5% root */
  line-height: 1.4;
  font-weight: 500;
}

.login-alert i {
  font-size: 1.8rem;
}

/* Error */
.login-alert--error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #dc2626;
}

/* Success */
.login-alert--success {
  background: #dcfce7;
  color: #166534;
  border-left: 4px solid #16a34a;
}
