
    :root {
      --primary: #217353;
      --secondary: #0e4a30;
      --accent: #f6b10a;
      --bg: #f6f8f6;
      --card: #fff;
      --radius: 13px;
      --shadow: 0 3px 16px 0 rgba(33,115,83,0.07);
      --text-main: #133e27;
      --text-muted: #666;
      --gradient: linear-gradient(90deg, #217353 0%, #0e4a30 100%);
      --quick-link-bg: linear-gradient(90deg, #f6b10a22 0%, #21735308 100%);
    }
    * { box-sizing: border-box; }
    html,body {
      margin: 0;
      padding: 0;
      background: var(--bg);
      font-family: 'Inter', Arial, sans-serif;
      color: var(--text-main);
      scroll-behavior: smooth;
    }
    /* Global safety net */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}
    .hero-images {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  animation: none;
}

.hero-img.active {
  opacity: 1;
  animation: heroZoom 6s ease-in-out;
  z-index: 1;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}
    /* HEADER */
    .topbar {
      background: var(--gradient);
      color: #fff;
      padding: 0;
      text-align: center;
      font-size: 1.14rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      border-bottom: 3px solid #f6b10a22;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      min-height: 74px;
    }
    .school-logo {
      position: absolute;
      left: 2vw;
      top: 9px;
      display: flex;
      align-items: center;
      gap: 13px;
    }
    .school-logo img {
      width: 70px; height: 80px;
      border-radius: 14px;
      box-shadow: 0 2px 8px #00000022;
      background: #fff;
      object-fit: cover;
      border: 2px solid #fff;
    }
    .school-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.41rem;
      color: #fff;
      letter-spacing: 1.5px;
      font-weight: 800;
      text-shadow: 0 1px 5px #0e3b1f66;
      margin-left: 68px;
      margin-right: 68px;
    }
    @media (max-width: 700px) {
      .school-logo img { width: 38px; height: 38px;}
      .school-name { font-size: 1.06rem; margin-left: 48px; margin-right: 48px;}
      .topbar { min-height: 48px; font-size: 1.01rem; }
    }
    /* NAVIGATION STYLES */
.navbar {
  background: #fff;
  box-shadow: 0 1px 9px #e0ede6;
  border-bottom: 1.5px solid #ecf7f1;
  font-size: 1.01rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--primary);
  padding: 14px 0;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  display: none;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-block;
  padding: 17px 7px 13px 7px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2.5px solid transparent;
  transition: color .16s, border .18s;
  border-radius: 0 0 8px 8px;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--accent);
  border-bottom: 2.5px solid var(--accent);
  background: #f6f8f7;
}

.nav-portal {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 21px !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 7px;
  margin-bottom: 7px;
  box-shadow: 0 2px 8px #00000012;
  border: none;
  transition: background .18s;
}

.nav-portal:hover {
  background: var(--accent);
  color: var(--primary) !important;
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    overflow-y: auto;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e3f1ea;
    display: none;
    padding: 20px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .nav-list.show {
    display: flex;
  }

  .nav-list li {
    text-align: center;
  }

  .nav-portal {
    width: 80%;
    margin: 10px auto;
  }
}

/* PROPRIETOR WELCOME SECTION */
.welcome-section {
  background-color: #fefdfc;
  padding: 70px 20px;
  border-top: 1px solid #edf2ef;
}

.welcome-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-image {
  flex: 1 1 300px;
  max-width: 340px;
  text-align: center;
  margin-bottom: 3px;
}
.welcome-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px; /* reduced from 40px */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}

.welcome-image {
  flex: 0 0 300px;
  max-width: 300px;
}

.welcome-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.welcome-content {
  flex: 1;
  min-width: 280px;
  max-width: 680px;
}

.welcome-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.welcome-content {
  flex: 2 1 500px;
  color: #2d2d2d;
}

.welcome-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #216f53;
  margin-bottom: 20px;
}

.welcome-text {
  font-size: 1.0rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}


    @media (max-width: 768px) {
  .welcome-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .welcome-content {
    text-align: center;
    padding: 0 6px;
  }

  .welcome-text {
    text-align: center;
  }
    }
    
    /* HERO */
.hero {
  background: url('https://images.unsplash.com/photo-1588072432836-e10032774350?auto=format&fit=crop&w=1400&q=80') center center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom right, rgba(11, 45, 29, 0.6), rgba(22, 87, 54, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 40px 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #e0f7ec;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-motto {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: #b9f4d4;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

    /* CAROUSEL */
    .carousel-section {
      width: 100%;
      max-width: 1100px;
      margin: 35px auto 0 auto;
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      box-shadow: 0 3px 22px #21735322;
      background: #fff;
    }
    .carousel-images {
      display: flex;
      transition: transform 0.7s cubic-bezier(.55,.19,.37,1.09);
      width: 100%;
    }
    .carousel-image {
      min-width: 100%;
      height: 270px;
      object-fit: cover;
      display: block;
      border-radius: 18px;
      transition: opacity .5s;
      background: #e9f0eb;
    }
    .carousel-controls {
      position: absolute;
      width: 100%;
      top: 50%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      z-index: 2;
      pointer-events: none;
    }
    .carousel-btn {
      pointer-events: all;
      background: rgba(33,115,83,0.82);
      border: none;
      color: #fff;
      font-size: 1.7rem;
      border-radius: 50%;
      width: 38px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      margin: 0 13px;
      transition: background .2s;
    }
    .carousel-btn:hover { background: var(--accent);}
    .carousel-dots {
      position: absolute;
      bottom: 17px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 7px;
      z-index: 5;
    }
    .carousel-dot {
      width: 12px; height: 12px;
      background: #fff;
      border: 2px solid var(--primary);
      border-radius: 50%;
      cursor: pointer;
      opacity: 0.7;
      transition: background .2s, opacity .13s;
    }
    .carousel-dot.active {
      background: var(--accent);
      opacity: 1;
      border: 2px solid var(--accent);
    }
    /* STATS */
    .stats-section {
      display: flex;
      justify-content: center;
      gap: 3vw;
      background: #f6f8f7;
      padding: 33px 5vw 18px 5vw;
      margin-top: -50px;
      position: relative;
      z-index: 3;
      flex-wrap: wrap;
    }
    .stat-card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 23px 36px 17px 36px;
      min-width: 150px;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: box-shadow .16s;
      margin-bottom: 10px;
    }
    .stat-icon {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 6px;
    }
    .stat-value {
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--secondary);
    }
    .stat-label {
      color: var(--text-muted);
      font-size: 1.03rem;
      font-weight: 600;
      margin-top: 2px;
    }
/* OUR PRIDE SECTION */
.pride-section {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #f9fefc;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pride-img {
  flex: 1 1 300px;
  max-width: 350px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.pride-info {
  flex: 2 1 400px;
  color: #2e2e2e;
}

.pride-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #216f53;
  margin-bottom: 10px;
}

.pride-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent, #f4b400);
  margin-bottom: 12px;
}

.pride-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
  max-width: 700px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pride-section {
    flex-direction: column;
    text-align: center;
  }

  .pride-img {
    margin-bottom: 20px;
  }

  .pride-text {
    text-align: center;
  }
}

    /* ABOUT & QUICK LINKS */
    .about-section {
      padding: 48px 9vw 38px 9vw;
      background: #fff;
      display: flex;
      gap: 45px;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .about-main {
  flex: 2;
  min-width: 280px;
  padding: 30px 24px;
  background-color: #f8fefb;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.0rem;
  color: #216f53; /* Or var(--primary) if defined */
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 4px solid #3bb78f;
  padding-left: 14px;
}

.about-text {
  font-size: 1.0rem;
  color: #2d2d2d; /* Or var(--text-main) */
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.about-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.90rem;
  line-height: 1.7;
  color: #334;
}

.about-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.about-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: #2e7d61;
  font-size: 1.1rem;
  top: 0;
}

    .about-side {
      flex: 1;
      min-width: 220px;
      background: var(--quick-link-bg);
      border-radius: var(--radius);
      box-shadow: 0 4px 16px #e9c10a26;
      padding: 22px 14px 14px 19px;
      margin-top: 11px;
      margin-bottom: 9px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      animation: fadein .8s;
    }
    @keyframes fadein { from { opacity:0; transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
    .about-side .quick-title {
      font-weight:700;
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 1.13rem;
      letter-spacing: .04em;
    }
    .quick-links-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 11px 14px;
      width: 100%;
    }
    .quick-link {
      background: linear-gradient(90deg, #ffe8a2 70%, #fff9e4 100%);
      color: #2d3d20;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      padding: 8px 13px;
      box-shadow: 0 2px 7px #f6b10a11;
      transition: background .15s, color .13s, box-shadow .18s;
      border: 1.5px solid #f6b10a22;
    }
    .quick-link i {
      color: var(--primary);
      font-size: 1.2em;
    }
    .quick-link:hover {
      background: var(--accent);
      color: var(--primary);
      box-shadow: 0 5px 15px #21735333;
      text-decoration: underline;
    }
/* GALLERY SECTION */
.gallery-section {
  padding: 60px 20px;
  background-color: #f4fbf7;
  text-align: center;
  overflow-x: hidden;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #216f53;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* MOBILE: Prevent scroll overflow */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .gallery-img {
    height: auto;
    max-height: 250px;
  }
}



    /* TESTIMONIALS */
    .testimonial-section {
      background: #fff;
      padding: 42px 7vw 40px 7vw;
      border-bottom: 1.5px solid #e7f5ea;
    }
    .testimonial-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--secondary);
      font-weight: 700;
      text-align: center;
      margin-bottom: 32px;
    }
    .testimonial-list {
      display: flex;
      flex-wrap: wrap;
      gap: 29px;
      justify-content: center;
    }
    .testimonial-card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 20px 15px 17px 17px;
      min-width: 210px;
      max-width: 340px;
      position: relative;
      text-align: left;
      transition: box-shadow .14s;
    }
    .testimonial-quote {
      font-size: 1.07rem;
      color: #256b42;
      margin-bottom: 9px;
      font-style: italic;
      position: relative;
      padding-left: 20px;
    }
    .testimonial-quote:before {
      content: "“";
      position: absolute;
      left: 1px;
      color: var(--accent);
      font-size: 2.4em;
      top: -14px;
    }
    .testimonial-person {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 5px;
    }
    .testimonial-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #fff;
      box-shadow: 0 1px 7px #21735333;
    }
    .testimonial-name {
      font-weight: 700;
      color: var(--primary);
      font-size: 1.01rem;
    }
    .testimonial-role {
      color: var(--text-muted);
      font-size: 0.95rem;
    }
/* VISION & MISSION SECTION */
.vm-section {
  background: linear-gradient(to right, #f4fbf7, #fdfefd);
  padding: 80px 20px;
}

.vm-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}

.vm-card {
  flex: 1 1 460px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vm-icon {
  font-size: 2.8rem;
  color: #216f53;
  margin-bottom: 16px;
}

.vm-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1d5944;
  margin-bottom: 18px;
}

.vm-text {
  font-size: 1.08rem;
  color: #444;
  line-height: 1.75;
  text-align: justify;
  padding: 0 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vm-title {
    font-size: 1.7rem;
  }

  .vm-text {
    font-size: 1rem;
  }

  .vm-icon {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .vm-wrapper {
    flex-direction: column;
    gap: 28px;
  }

  .vm-card {
    padding: 30px 20px;
  }
}
/* ANIMATION KEYFRAMES */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* APPLY TO BOTH IMAGE + TEXT BLOCK */
.animate-fade-slide {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-slide.visible {
  animation: fadeSlideUp 0.9s ease forwards;
}


    /* NEWS */
    .news-section {
      padding: 42px 7vw 40px 7vw;
      background: #fff;
      border-bottom: 1.5px solid #e7f5ea;
    }
    .news-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--secondary);
      font-weight: 700;
      text-align: center;
      margin-bottom: 32px;
    }
    .news-list {
      display: flex;
      flex-wrap: wrap;
      gap: 29px;
      justify-content: center;
    }
    .news-card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 14px 12px 11px 12px;
      min-width: 210px;
      max-width: 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: box-shadow .14s;
    }
    .news-img {
      width: 100%;
      max-width: 230px;
      height: 90px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 7px;
    }
    .news-headline {
      font-weight: 700;
      color: var(--primary);
      font-size: 1.07rem;
      margin-bottom: 3px;
    }
    .news-date {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 3px;
    }
    .news-text {
      color: var(--text-main);
      font-size: 0.98rem;
    }
/* Section styling */
.faculty-section {
  padding: 60px 20px;
  background-color: #f4fbf7;
  text-align: center;
}

.faculty-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #216f53;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Slider structure */
.faculty-slider {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.faculty-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

/* Card styles */
.faculty-card {
  flex: 0 0 250px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-6px);
}

.faculty-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #2e7d61;
}

.faculty-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
}

.faculty-role {
  font-size: 1rem;
  font-weight: 500;
  color: #2e7d61;
}

.faculty-desc {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

/* Social links */
.faculty-social a {
  margin: 0 6px;
  text-decoration: none;
  font-size: 1.1rem;
  color: #2e7d61;
  transition: color 0.3s ease;
}

.faculty-social a:hover {
  color: #1c5241;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2e7d61;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 80%;
  text-align: left;
  position: relative;
}

.close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

    
    /* FOOTER */
    .footer {
      background: var(--gradient);
      color: #fff;
      padding: 30px 0 16px 0;
      text-align: center;
      font-size: 1.11rem;
      letter-spacing: 0.01em;
      margin-top: 0;
      border-top-left-radius: 22px;
      border-top-right-radius: 22px;
    }
    .footer-links {
      margin: 15px 0 6px 0;
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #fff;
      text-decoration: underline;
      opacity: 0.83;
      transition: color .12s;
    }
    .footer-links a:hover { color: var(--accent);}
    .footer-copy {
      font-size: 0.99rem;
      color: #e0ede6;
      margin-top: 7px;
    }
    .footer-contact {
      margin: 10px 0 0 0;
      font-size: 0.98rem;
      color: #ffe;
    }
    @media (max-width: 900px) {
      .stats-section, .faculty-list, .news-list, .about-section, .gallery-grid, .testimonial-list, .partner-logos { flex-direction: column; align-items: center; gap: 21px;}
      .pride-section { flex-direction: column; gap: 9px;}
      .about-main, .about-side { width: 100%; min-width: unset; }
      .about-section {padding: 36px 3vw;}
      .faculty-section, .gallery-section, .news-section, .testimonial-section, .partner-section {padding-left: 2vw; padding-right: 2vw;}
    }
    @media (max-width: 600px) {
      .hero-title { font-size: 1.22rem;}
      .hero-content { padding: 22px 8px;}
      .stats-section { padding: 18px 3vw 12px 3vw;}
      .stat-card { padding: 18px 10vw;}
      .pride-section {padding: 18px 0;}
      .faculty-section, .news-section, .about-section, .testimonial-section { padding: 18px 2vw;}
      .footer { font-size: 1rem; }
      .carousel-section {height: 170px;}
      .carousel-image {height: 170px;}
      .gallery-img {width: 98vw; height: 28vw;}
    }
  
