/* ===== SCHOOL THEME ===== */
:root {
  --school-primary: #0b47a1;
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #093c86;
  font-weight: 600;
}

.page-loader__spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(9, 60, 134, 0.2);
  border-top-color: #093c86;
  animation: page-loader-spin 0.9s linear infinite;
}

.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.bg-primary {
  background-color: var(--school-primary) !important;
}

.btn-primary {
  background-color: var(--school-primary) !important;
  border-color: var(--school-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #093c86 !important;
  border-color: #093c86 !important;
}

/* ===== SCHOOL NAVBAR STYLING ===== */

.navbar {
  background-color: var(--school-primary); /* Bootstrap primary */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 0.8rem 0;
}

/* School name / logo */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffdd57 !important;
}

/* Dropdown menu */
.dropdown-menu {
  border-radius: 0;
  border: none;
  margin-top: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Dropdown items */
.dropdown-item {
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
}

/* Dropdown hover */
.dropdown-item:hover {
  background-color: #0b47a1;
  color: #ffffff;
}

/* Mobile navbar */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile dropdown spacing */
@media (max-width: 991px) {
  .dropdown-menu {
    box-shadow: none;
  }
}

/* ===== HERO BANNER ===== */
.hero-banner {
  height: 500px;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide {
  height: 500px;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel {
  overflow: hidden;
}

.hero-caption {
  left: 8%;
  right: auto;
  bottom: 20%;
  text-align: left;
  max-width: 50%;
  background: rgba(9, 60, 134, 0.65);
  padding: 18px 20px;
  border-radius: 12px;
}

.hero-caption h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-caption p {
  font-size: 1rem;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .hero-caption {
    max-width: 80%;
    left: 6%;
    bottom: 14%;
  }
}

/* ===== HOME CARDS ===== */
.home-cards {
  margin-top: -20px;
  padding-top: 0;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(9, 60, 134, 0.12);
  color: #093c86;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(2, 59, 145, 0.15);
}

.card:hover .card-icon {
  background: #093c86;
  color: #ffffff;
}

/* ===== ABOUT IMAGE ===== */
.about-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.about-carousel,
.about-carousel .carousel-inner,
.about-carousel .carousel-item {
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: #f7f9fc;
  border: 1px solid rgba(9, 60, 134, 0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.08);
}

.video-header h3 {
  color: #093c86;
  font-weight: 700;
  margin-bottom: 6px;
}

.video-header p {
  margin-bottom: 16px;
  color: #4a5568;
}

.video-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(9, 60, 134, 0.15);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.gallery-header h3 {
  color: #093c86;
  font-weight: 700;
}

.gallery-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(9, 60, 134, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(9, 60, 134, 0.16);
}

.gallery-image-wrap {
  position: relative;
  height: 220px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 60, 134, 0) 0%, rgba(9, 60, 134, 0.7) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.gallery-overlay h5 {
  margin-bottom: 4px;
  font-weight: 700;
}

.gallery-count {
  font-size: 0.85rem;
  opacity: 0.85;
}

.gallery-footer {
  padding: 12px 14px 16px;
  display: flex;
  justify-content: flex-end;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-tab {
  border: 1px solid rgba(9, 60, 134, 0.2);
  background: #ffffff;
  color: #093c86;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-tab.active,
.gallery-tab:hover {
  background: #093c86;
  color: #ffffff;
  border-color: #093c86;
}

/* ===== NEWS PAGE ===== */
.news-hero {
  background: linear-gradient(135deg, #093c86 0%, #0b47a1 100%);
  color: #fff;
  padding: 60px 0;
  text-align: left;
}

.news-hero__content h1 {
  font-weight: 700;
  margin-bottom: 8px;
}

.news-hero__content p {
  margin-bottom: 0;
  opacity: 0.9;
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-tab {
  border: 1px solid rgba(9, 60, 134, 0.2);
  background: #ffffff;
  color: #093c86;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.news-tab.active,
.news-tab:hover {
  background: #093c86;
  color: #ffffff;
  border-color: #093c86;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(9, 60, 134, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card__body {
  padding: 16px 18px;
  flex: 1;
}

.news-card__title {
  font-weight: 700;
  margin: 10px 0 8px;
}

.news-card__summary {
  color: #4a5568;
  margin-bottom: 0;
}

.news-badge {
  display: inline-block;
  background: rgba(9, 60, 134, 0.1);
  color: #093c86;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.news-meta {
  color: #6b7280;
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.news-card__footer {
  padding: 0 18px 18px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, #093c86 0%, #0b47a1 100%);
  color: #fff;
  padding: 60px 0;
}

.about-hero__content h1 {
  font-weight: 700;
  margin-bottom: 8px;
}

.about-hero__content p {
  margin-bottom: 0;
  opacity: 0.9;
}

.about-hero-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(9, 60, 134, 0.12);
}

.about-title {
  font-weight: 700;
  color: #093c86;
  margin-bottom: 12px;
}

.about-card {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.08);
}

.why-choose {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(9, 60, 134, 0.1);
}

.why-choose h2 {
  color: #093c86;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-choose ul {
  padding-left: 18px;
  margin: 0;
}

.why-choose li {
  margin-bottom: 8px;
  color: #4a5568;
}

/* ===== TEACHERS PAGE ===== */
.teachers-hero {
  background: linear-gradient(135deg, #093c86 0%, #0b47a1 100%);
  color: #fff;
  padding: 60px 0;
}

.teachers-hero__content h1 {
  font-weight: 700;
  margin-bottom: 8px;
}

.teachers-hero__content p {
  margin-bottom: 0;
  opacity: 0.9;
}

.teachers-section-title {
  font-weight: 700;
  color: #093c86;
  margin-bottom: 6px;
}

.teacher-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.teacher-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(9, 60, 134, 0.14);
}

.teacher-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.teacher-card__image {
  height: 300px;
  overflow: hidden;
  background: #f1f5f9;
}

.teacher-card--head .teacher-card__image {
  height: 340px;
}

.teacher-card--admin .teacher-card__image {
  height: 280px;
}

.teacher-card--teacher .teacher-card__image {
  height: 220px;
}

.teacher-card:hover .teacher-card__image img {
  transform: scale(1.04);
}

.teacher-card__body {
  padding: 16px 18px 20px;
}

.teacher-card__body h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.teacher-subjects {
  color: #4a5568;
  margin-bottom: 10px;
}

.teacher-meta {
  font-size: 0.9rem;
  color: #6b7280;
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
}

.teachers-tree {
  display: grid;
  gap: 36px;
}

.teachers-tree__level {
  position: relative;
  padding-bottom: 8px;
}

.teachers-tree__level:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 2px;
  height: 18px;
  background: rgba(9, 60, 134, 0.25);
  transform: translateX(-50%);
}

.teachers-tree__level h3 {
  margin-bottom: 6px;
  text-align: center;
}

.teachers-tree__level > p {
  text-align: center;
  margin-bottom: 20px;
}

/* ===== ACADEMICS PAGE ===== */
.academics-hero {
  background: linear-gradient(135deg, #093c86 0%, #0b47a1 100%);
  color: #fff;
  padding: 60px 0;
}

.academics-hero__content h1 {
  font-weight: 700;
  margin-bottom: 8px;
}

.academics-hero__content p {
  margin-bottom: 0;
  opacity: 0.9;
}

.academics-section-title {
  font-weight: 700;
  color: #093c86;
  margin-bottom: 6px;
}

.academics-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.08);
  border: 1px solid rgba(9, 60, 134, 0.08);
}

.academics-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.academics-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(9, 60, 134, 0.12);
  color: #093c86;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.academics-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 60, 134, 0.12);
  color: #093c86;
  font-weight: 600;
  font-size: 0.85rem;
}

.academics-highlight {
  background: #f8fafc;
  border: 1px solid rgba(9, 60, 134, 0.12);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.academics-highlight h3 {
  font-weight: 700;
  color: #093c86;
  margin-bottom: 10px;
}

.academics-list {
  margin: 0;
  padding-left: 18px;
  color: #4a5568;
}

.academics-list li {
  margin-bottom: 8px;
}

.academics-image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(9, 60, 134, 0.12);
  background: #f1f5f9;
  height: 100%;
}

.academics-image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.academics-image-card:hover img {
  transform: scale(1.04);
}

/* ===== HEAD TEACHERS PAGE ===== */
.headteachers-hero {
  background: linear-gradient(135deg, #093c86 0%, #0b47a1 100%);
  color: #fff;
  padding: 60px 0;
}

.headteachers-hero__content h1 {
  font-weight: 700;
  margin-bottom: 8px;
}

.headteachers-hero__content p {
  margin-bottom: 0;
  opacity: 0.9;
}

.headteacher-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.08);
  padding: 18px;
  height: 100%;
}

.headteacher-card__image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

.headteacher-card__body h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.headteacher-badge {
  display: inline-block;
  background: rgba(9, 60, 134, 0.12);
  color: #093c86;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.headteacher-term {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.headteacher-bio {
  color: #4a5568;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .headteacher-card {
    grid-template-columns: 1fr;
  }
}

.headteacher-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

.headteacher-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(9, 60, 134, 0.15);
  transform: translateX(-50%);
}

.headteacher-item {
  position: relative;
  width: 100%;
  display: flex;
}

.headteacher-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  width: 14px;
  height: 14px;
  background: #093c86;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(9, 60, 134, 0.12);
}

.headteacher-item--current::before {
  background: #d4af37;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.25), 0 0 18px rgba(212, 175, 55, 0.7);
}

.headteacher-item--current .headteacher-card {
  border: 2px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.25);
}

.headteacher-item--current .headteacher-badge {
  background: rgba(212, 175, 55, 0.18);
  color: #8a6d1a;
}

.headteacher-number {
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  background: #093c86;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(9, 60, 134, 0.2);
}

.headteacher-item--left {
  justify-content: flex-start;
}

.headteacher-item--right {
  justify-content: flex-end;
}

.headteacher-item .headteacher-card {
  width: 45%;
}

@media (max-width: 992px) {
  .headteacher-timeline::before {
    left: 8px;
  }

  .headteacher-item {
    padding-left: 24px;
  }

  .headteacher-item::before {
    left: 8px;
    transform: none;
  }

  .headteacher-number {
    left: 8px;
    transform: none;
  }

  .headteacher-item--left,
  .headteacher-item--right {
    justify-content: flex-start;
  }

  .headteacher-item .headteacher-card {
    width: 100%;
  }
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-highlight {
  background: #f8fafc;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(9, 60, 134, 0.1);
}

.about-highlight h3 {
  color: #093c86;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-cta {
  background: #093c86;
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* ===== EVENTS SECTION ===== */
.event-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.event-section__header h3 {
  color: #093c86;
  font-weight: 700;
}

.event-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(9, 60, 134, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-card--past {
  border-left: 4px solid rgba(9, 60, 134, 0.4);
}

.event-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #093c86;
}

.event-card__title {
  font-weight: 700;
  margin-bottom: 0;
}

.event-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 0.95rem;
}

.event-card__description {
  margin-bottom: 0;
  color: #4a5568;
  font-size: 0.95rem;
}

/* ===== CONTACT PAGE ===== */
.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.contact-card__title {
  color: #093c86;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #4a5568;
}

.contact-item i {
  color: #093c86;
  font-size: 1.1rem;
  margin-top: 4px;
}

.contact-map {
  background: #f8fafc;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.contact-map__header h4 {
  color: #093c86;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-map__canvas {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
}

/* ===== ALUMNI FRATERNITY ===== */
.alumni-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.alumni-card__title {
  color: #093c86;
  font-weight: 700;
  margin-bottom: 12px;
}

.alumni-hero {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.alumni-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(9, 60, 134, 0.12);
  color: #093c86;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.alumni-hero__title {
  color: #093c86;
  font-weight: 700;
  margin-bottom: 12px;
}

.alumni-hero__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.alumni-message {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.alumni-message__title {
  color: #093c86;
  font-weight: 700;
  margin-bottom: 12px;
}

.alumni-message__media {
  background: #f8fafc;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(9, 60, 134, 0.08);
}

.alumni-message__image {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  object-fit: cover;
}

.alumni-projects {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.alumni-project-feature {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(9, 60, 134, 0.12);
  box-shadow: 0 12px 28px rgba(9, 60, 134, 0.12);
}

.alumni-project-feature__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.alumni-project-feature__caption {
  background: rgba(9, 60, 134, 0.65);
  padding: 10px 16px;
  border-radius: 10px;
}

.alumni-project-feature__caption h5 {
  margin: 0;
  font-weight: 700;
}

@media (min-width: 992px) {
  .alumni-project-feature__image {
    height: 420px;
  }
}

.alumni-project-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  height: 100%;
}

.alumni-project-card__media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.alumni-project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alumni-project-card__media--single {
  height: 220px;
}

.alumni-contribution {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(9, 60, 134, 0.1);
}

.alumni-contribution h5 {
  color: #093c86;
  font-weight: 700;
  margin-bottom: 8px;
}

.alumni-project-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.alumni-project-card__header h4 {
  margin: 0;
  color: #093c86;
  font-weight: 700;
}

.alumni-project-card__badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.alumni-project-card__badge--done {
  background: rgba(16, 185, 129, 0.15);
  color: #0f766e;
}

.alumni-project-card__badge--progress {
  background: rgba(245, 158, 11, 0.2);
  color: #92400e;
}

.alumni-project-card ul {
  margin: 0;
  padding-left: 18px;
  color: #4a5568;
}

.alumni-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.alumni-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a5568;
}

.alumni-list i {
  color: #093c86;
}

.alumni-highlight {
  display: grid;
  gap: 16px;
}

.alumni-highlight__item {
  background: #f8fafc;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 8px 18px rgba(9, 60, 134, 0.06);
}

.alumni-highlight__item h4 {
  color: #093c86;
  font-weight: 700;
}

.alumni-leadership {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.alumni-leader-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(9, 60, 134, 0.08);
}

.alumni-leader-card__image {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(9, 60, 134, 0.15);
}

.alumni-leader-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== NEWS PAGE ===== */
.news-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(9, 60, 134, 0.08);
  box-shadow: 0 10px 24px rgba(9, 60, 134, 0.06);
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.news-tab {
  border: 1px solid rgba(9, 60, 134, 0.2);
  background: #ffffff;
  color: #093c86;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.news-tab.active,
.news-tab:hover {
  background: #093c86;
  color: #ffffff;
  border-color: #093c86;
}

.news-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(9, 60, 134, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card__body {
  padding: 16px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card__title {
  font-weight: 700;
  color: #093c86;
  margin: 0;
}

.news-card__summary {
  color: #4a5568;
  margin: 0;
}

.news-badge {
  background: rgba(9, 60, 134, 0.12);
  color: #093c86;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.75rem;
  width: fit-content;
}

.news-meta {
  color: #4a5568;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-card__footer {
  padding: 12px 18px 18px;
  margin-top: auto;
}

.alumni-cta {
  background: #093c86;
  color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .alumni-cta {
    flex-direction: row;
    align-items: center;
  }
}

/* ===== SCHOOL FOOTER ===== */

.school-footer {
  background-color: #0b47a1;
  color: #ffffff;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 1rem;
}

/* Footer text */
.school-footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffdd57;
  padding-left: 5px;
}

/* Social icons */
.footer-social a {
  color: #ffffff;
  font-size: 1.1rem;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffdd57;
}

/* Bottom bar */
.footer-bottom {
  background-color: #083a86;
  font-size: 0.9rem;
}

