@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@100..800&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --brand-blue: #1c275c;
  --secondary-blue: #1c275c;
  --accent-gold: #e1ba58;
  --dark-navy: #2c314a;
  --light-lavender: #dcdaf0;
  --neutral-dark: #333;
  --neutral-light: #f9f9fb;
}

html {
  scroll-padding: 120px;
}

body {
  overflow-x: hidden;
}

/* ----------------------------- */

.header-top-jsvm {
  background: #f8f9fb;
  border-bottom: 1px solid #e6e6e6;
  font-size: 13px;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.contact-info p {
  margin: 0;
  color: var(--neutral-dark);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-blue);
  margin-left: 8px;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

.social-links a:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header-top-wrapper {
    gap: 5px;
    text-align: center;
  }
}

html {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

/* ============================= */

#header {
  background: #fff;
}

#header .navbar {
  padding: 8px 0;
  transition: all 0.4s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-sub {
  display: none;
}

/* SCROLLED HEADER */
#header.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

#header.scrolled .navbar {
  padding: 8px 0;
}

/* FIXED TEXT COLOR ON SCROLL */
#header.scrolled .nav-link {
  color: var(--neutral-dark) !important;
  font-size: 13px;
}

#header.scrolled .navbar-nav li a:hover {
  color: var(--brand-blue) !important;
}

/* LOGO SWITCH */
#header.scrolled .logo {
  display: none;
}

#header.scrolled .logo-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  top: 5px;
}

#header.scrolled .logo-sub h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-blue);
  margin: 0;
}

#header.scrolled .logo-sub h6 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--brand-blue);
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
  margin-right: 10px;
}

#header.scrolled .helpdesk-link {
  color: var(--brand-blue);
}

#header.scrolled .logo-sub small {
  font-size: 11px;
  color: #777;
}

/* ---------------------------------- */

.navbar {
  background: transparent !important;
}

.navbar-brand img {
  width: 135px;
  transition: all 0.4s ease;
}

.logo-divider {
  width: 2px;
  height: 32px;
  background-color: var(--brand-blue);
}

/* TOP ICONS */
.nav-top-media a i {
  font-size: 10px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue);
  justify-content: center;
  border-radius: 50%;
  background-color: var(--accent-gold);
}

/* TOP LINKS */
.nav-top-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
  margin-right: 20px;
}

.nav-top-links li {
  cursor: pointer;
  padding-bottom: 2px;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}

/* REMOVE HARSH BORDER */
.top-div2 li:nth-child(-n + 9):after {
  content: "";
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  height: 12px;
  margin-top: -14px;
}

.top-div2 .dropdown li:nth-child(-n + 8):after {
  display: none;
}

/* BUTTONS */

a[class^="btn-"] {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 6px;
  font-size: 12px;
  transition: 0.3s;
}

.btn-volunteer {
  background-color: var(--brand-blue);
  color: #fff;
  font-weight: 500;
}

.btn-volunteer:hover {
  background-color: #121a45;
}

.btn-sponsor {
  background-color: var(--accent-gold);
  color: #000;
}

.btn-sponsor:hover {
  background-color: #d4aa3f;
}

/* CONTACT LINKS */
.helpdesk-link,
.email-link {
  color: var(--neutral-dark);
  font-size: 13px;
}

/* NAVBAR LINKS (IMPORTANT FIX) */
.navbar .navbar-nav .nav-link {
  color: var(--neutral-dark);
  padding: 15px 9px !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  transition: 0.3s;
}

/* CLEAN HOVER */
.navbar-nav li a:hover {
  color: var(--brand-blue);
  background: transparent;
}

/* DROPDOWN */

.dropdown-toggle::after {
  display: none;
}

.dropdown a {
  font-size: 13px;
  color: var(--neutral-dark);
}

.dropdown a:hover {
  background-color: var(--brand-blue);
  color: #fff;
}

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .dropend:hover > .dropdown-menu {
    display: block;
    position: absolute;
    top: -0.5rem;
    left: 100%;
  }
}

/* TOP SECTION */

.nav-top-section {
  background-color: var(--brand-blue);
  padding: 6px 0;
}

.nav-top-section .top-div2 p,
.nav-top-section .top-div1 a {
  color: #fff;
  font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .header-top-wrapper {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

/* ------------------------------------ */
/* -------------ABout-us-section------ */
/* ---------------------------------- */

.lp-about-section {
  padding: 80px 0px 100px 0px;
  position: relative;
}

.lp-about-content {
  padding-right: 40px;
}

.lp-about-subtitle {
  letter-spacing: 4px;
  font-size: 12px;
  color: #f4b400;
  font-weight: 600;
}

.lp-about-title {
  font-size: 42px;
  font-weight: 700;
  color: #1c275c;
  margin: 15px 0;
  line-height: 1.2;
}

.lp-about-title span {
  color: var(--accent-gold);
}

.lp-about-text {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 25px;
  max-width: 450px;
}

.lp-about-buttons .btn {
  padding: 5px 20px;
  border-radius: 10px;
  font-size: 14px;
  margin-right: 10px;
}

.lp-btn-primary {
  background: #1c275c;
  color: #fff;
  border: none;
}

.lp-btn-primary:hover {
  background: #14204a;
  color: #fff;
}

.lp-btn-outline {
  border: 2px solid #f4b400;
  color: #f4b400;
}

.lp-btn-outline:hover {
  background: #f4b400;
  color: #fff;
}

.lp-about-image img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lp-feature-strip {
  margin-top: 60px;
}

.lp-feature-box {
  padding: 30px;
  gap: 15px;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.lp-feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: -2;
}

.lp-feature-box::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.89;
  z-index: -1;
}

.lp-feature-box:hover::before {
  transform: scale(1.1);
}

.lp-feature-1::before {
  background-image: url("../images/home/box-red.webp");
}
.lp-feature-1::after {
  background: linear-gradient(135deg, #ff6a6a, #ff3d3d);
}

.lp-feature-2::before {
  background-image: url("../images/home/box-yellow.webp");
}
.lp-feature-2::after {
  background: linear-gradient(135deg, #f4b400, #e09e00);
}

.lp-feature-3::before {
  background-image: url("../images/home/box-green.webp");
}
.lp-feature-3::after {
  background: linear-gradient(135deg, #00a99d, #007f75);
}

.lp-feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-feature-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.lp-feature-content h5 {
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.lp-feature-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
  color: #fff;
}

@media (max-width: 991px) {
  .lp-about-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .lp-about-text {
    margin: 0 auto 20px;
  }

  .lp-feature-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* -------------------------------------------- */
/* ------------------News-Events-------------- */
/* -------------------------------------------- */

.news-container {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.news-title {
  min-width: 180px;
  padding: 0 20px;
  border-right: 1px solid #eee;
}

.news-title h5 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1f2d3d;
  margin: 0;
  letter-spacing: 0.5px;
}

.news-scroll {
  overflow: hidden;
  flex: 1;
  padding-left: 15px;
}

.news-scroll-content {
  display: flex;
  animation: scroll 45s linear infinite;
  white-space: nowrap;
}

.news-scroll:hover .news-scroll-content {
  animation-play-state: paused;
}

.news-item {
  margin-right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  background-color: #fafbff;
  border: 1px solid #f1f3f7;
  transition: all 0.3s ease;
  font-size: 12.5px;
}

.news-item:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.news-badge {
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-course {
  background: #3a7bd5;
  color: #fff;
}
.badge-exam {
  background: #ff4757;
  color: #fff;
}
.badge-update {
  background: #20bf6b;
  color: #fff;
}
.badge-workshop {
  background: #8e44ad;
  color: #fff;
}

.news-item span:nth-child(2) {
  font-weight: 500;
  color: #2c3e50;
}

.news-date {
  font-size: 10.5px;
  color: #8892a6;
}

.news-download {
  color: #6b7280;
  font-size: 16px;
  transition: color 0.3s ease;
}

.news-download:hover {
  color: #111827;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .news-title {
    min-width: 130px;
    padding: 0 12px;
  }

  .news-title h5 {
    font-size: 13px;
  }

  .news-item {
    font-size: 11px;
    padding: 6px 10px;
    gap: 8px;
  }

  .news-download {
    font-size: 10px;
    padding: 3px 7px;
  }
}

/* ----------------------------------- */
/* -----------Acadamics-section------ */
/* --------------------------------- */

.anps-academics-banner {
  background:
    linear-gradient(rgba(28, 39, 92, 0.75), rgba(28, 39, 92, 0.75)),
    url(../images/home/class-room.webp) no-repeat center center;
  background-size: cover;
  background-color: #1c275c;
  padding: 100px 20px 160px;
  position: relative;
}

.anps-academics-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 39, 92, 0.75);
}

.anps-banner-text {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #f5f0dc;
  font-size: 18px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.anps-cards-fluid {
  width: 100%;
  padding: 0 24px 0px;
}

.anps-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  transform: translateY(-80px);
}

.anps-flip-wrap {
  perspective: 1000px;
}

.anps-flip-card {
  position: relative;
  width: 100%;
  height: 320px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.anps-flip-wrap:hover .anps-flip-card {
  transform: rotateY(180deg);
}

.anps-flip-front,
.anps-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.anps-flip-front {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.anps-flip-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 39, 92, 0.88) 0%,
    rgba(28, 39, 92, 0.2) 55%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.anps-flip-front,
.anps-flip-back {
  z-index: 1;
}

.anps-flip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.anps-flip-front h3 {
  position: relative;
  text-transform: uppercase;
  z-index: 2;
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  padding: 16px;
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}

.anps-flip-back {
  background-color: #1c275c;
  transform: rotateY(180deg);
  padding: 28px 22px;
  color: #f5f0dc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.anps-flip-back h3 {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  color: #e1ba58;
  font-weight: 500;
}

.anps-flip-back p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #d8d0b8;
  margin: 0 0 20px 0;
  flex: 1;
}

.anps-btn-learn {
  display: inline-block;
  background-color: #e1ba58;
  color: #1c275c;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
  position: relative;
  z-index: 5;
}

.anps-btn-learn:hover {
  background-color: #c9a340;
  color: #1c275c;
  text-decoration: none;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
  .anps-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .anps-cards-row {
    grid-template-columns: 1fr;
  }
  .anps-flip-card {
    height: 280px;
  }
}

/* ------------------------------------ */
/* -----------WHY-APPOLLO------------- */
/* ---------------------------------- */

.why-section {
  padding: 0px 0;
}

.why-section .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #c9a23a;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-section .heading {
  font-size: 32px;
  font-weight: 700;
  color: #1c275c;
  line-height: 1.3;
  margin-bottom: 14px;
}

.why-section .desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
}

.why-section .img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
}

.why-section .img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.why-section .stat-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 16px;
}

.why-section .stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #1c275c;
  line-height: 1;
}

.why-section .stat-label {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.why-section .why-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px;
  height: 100%;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}

.why-section .why-card:hover {
  border-color: #c9a23a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.why-section .why-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1c275c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: background 0.25s;
}

.why-section .why-card:hover .why-num {
  background: #c9a23a;
}

.why-section .why-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1c275c;
  margin-bottom: 7px;
}

.why-section .why-card-body {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

.why-section .why-card.horizontal {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-section .why-card.horizontal .why-num {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .why-section .heading {
    font-size: 26px;
  }
}

/* ============================= */
/* Apollo Facilities Section */
/* ============================= */

.facilities-apollo {
  padding: 60px 0;
}

/* Heading */
.facilities-apollo .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.facilities-apollo .section-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* Card */
.facilities-apollo .facility-card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.facilities-apollo .facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* Image */
.facilities-apollo .facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.facilities-apollo .facility-card:hover img {
  transform: scale(1.08);
}

/* Layer */
.facilities-apollo .card-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title */
.facilities-apollo .card-title {
  padding: 18px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.facilities-apollo .card-title h3 {
  display: inline-block;
  background: #ffffff;
  color: #1e293b;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

/* Overlay */
.facilities-apollo .card-overlay {
  padding: 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.4s ease;
}

.facilities-apollo .facility-card:hover .card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.facilities-apollo .card-overlay p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Button */
.facilities-apollo .card-overlay a {
  display: inline-block;
  background: #ffffff;
  color: #1e293b;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.facilities-apollo .card-overlay a:hover {
  background: #1e293b;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .facilities-apollo {
    padding: 60px 0;
  }

  .facilities-apollo .facility-card {
    height: 260px;
  }

  .facilities-apollo .section-title {
    font-size: 26px;
  }
}

/* ------------------------------------- */
/* ----------------Footer-section------ */
/* ----------------------------------- */

.footer-jsvm {
  background: #020617;
  color: #cbd5e1;
  padding: 60px 0 25px;
  font-family: "Poppins", sans-serif;
}

.footer-jsvm .footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-jsvm .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-jsvm .footer-links li {
  margin-bottom: 10px;
}

.footer-jsvm .footer-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s ease;
}

.footer-jsvm .footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-jsvm .footer-address {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 15px;
}

.footer-jsvm .footer-contact a {
  display: block;
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.footer-jsvm .footer-contact a:hover {
  color: #ffffff;
}

.footer-jsvm .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 35px;
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-jsvm .footer-bottom a {
  text-decoration: none;
  color: #94a3b8;
  margin-left: 15px;
  transition: 0.3s ease;
}

.footer-jsvm .footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-jsvm .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-jsvm .footer-bottom a {
    margin: 0 8px;
  }
}

/* -------------------------------------- */
/* -----------EVents-ACtivities--------- */
/* ------------------------------------ */

.only-events-title .heading-programs {
  color: #333;
  font-weight: 700;
}

.only-events-title .heading-programs span {
  color: var(--brand-blue);
  line-height: 50px;
}

.event-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0px 60px 0px;
  cursor: auto;
}

.event-marquee:active {
  cursor: grabbing;
}

.event-marquee__wrapper {
  width: 100%;
  overflow: hidden;
}

.event-marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: eventMarqueeScroll 60s linear infinite;
  will-change: transform;
}

.event-marquee__wrapper:hover .event-marquee__track,
.event-marquee.is-dragging .event-marquee__track {
  animation-play-state: paused;
}

.event-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-marquee__item img {
  height: 260px;
  width: auto;
  max-width: 1000px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  user-select: none;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.event-marquee__item img:hover {
  transform: scale(1.03);
}

@keyframes eventMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .event-marquee__item img {
    height: 210px;
  }
}

@media (max-width: 768px) {
  .event-marquee {
    padding: 20px 0;
  }

  .event-marquee__track {
    gap: 40px;
  }

  .event-marquee__item img {
    height: 160px;
    max-width: 600px;
  }
}

/* --------------------------------------- */
/* -------------Modal-------------------- */
/* ------------------------------------- */

.auto .modal-content {
  border-radius: 10px;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.auto .modal-body {
  text-align: center;
  background-color: transparent;
  border: none;
  padding: 0;
}

.auto iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
}

.auto .btn-close {
  background-color: #fdf9c8 !important;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  opacity: 1;
  z-index: 10;
}

.auto .btn-close:hover {
  background-color: #fdf9c8 !important;
}

/* --------------------------------------- */
/* -------------Modal-------------------- */
/* ------------------------------------- */

.jsvm-banner-slide-one,
.jsvm-banner-slide-two,
.jsvm-banner-slide-three {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.jsvm-banner-slide-one {
  background-image: url("../images/home/banners/slider-one.webp");
}

.jsvm-banner-slide-two {
  background-image: url("../images/home/banners/slider-two.webp");
}

.jsvm-banner-slide-three {
  background-image: url("../images/home/banners/slider-three.webp");
}

.jsvm-banner-slide-four {
  background-image: url("../images/home/banners/slider-four.webp");
}

.jsvm-banner-slide-five {
  background-image: url("../images/home/banners/slider-five.webp");
}

.jsvm-banner {
  position: relative;
  width: 100%;
}

.jsvm-banner-slide {
  position: relative;
  height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay for depth */
.jsvm-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Content */
.jsvm-banner-content {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 520px;
  color: #fff;
  text-align: right;
}

/* Heading */
.jsvm-banner-content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* Paragraph */
.jsvm-banner-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}

.jsvm-banner-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* Primary Button */
.jsvm-btn-primary {
  background: linear-gradient(135deg, #f8a502, #ffcc33);
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jsvm-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Outline Button */
.jsvm-btn-outline {
  border: 1.5px solid #fff;
  padding: 12px 28px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jsvm-btn-outline:hover {
  background: #fff;
  color: #094b92;
}

/* Dots */
.jsvm-banner .owl-dots {
  position: absolute;
  bottom: 80px !important;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.jsvm-banner .owl-dot span {
  background: rgba(255, 255, 255, 0.4) !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
}

.jsvm-banner .owl-dot.active span {
  background: #f8a502 !important;
  width: 30px !important;
  border-radius: 6px;
}

/* ---------------------------------- */
/* ------------About Us------------- */
/* -------------------------------- */

.about-anps {
  padding: 80px 0;
  background-color: var(--neutral-light);
}

/* Image Styling */
.about-anps .build-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-anps .build-image img {
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.about-anps .build-image:hover img {
  transform: scale(1.05);
}

/* Content Styling */
.abt-content-anps {
  padding-left: 30px;
}

.abt-content-anps h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 20px;
  position: relative;
}

/* Gold underline */
.abt-content-anps h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 2px;
}

/* Paragraphs */
.abt-content-anps p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-dark);
  margin-bottom: 15px;
}

/* Subtle Card Feel */
.about-anps .row {
  align-items: center;
}

/* Responsive */
@media (max-width: 991px) {
  .abt-content-anps {
    padding-left: 0;
    margin-top: 30px;
  }

  .abt-content-anps h3 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .about-anps {
    padding: 50px 0;
  }

  .abt-content-anps p,
  .continue-text p {
    font-size: 15px;
  }
}

/* ================================
   SHANTALA SECTION
================================ */

.shantala {
  padding: 0px 0px;
  background-color: #9e9e9e3d;
}

.shantala .row {
  align-items: center;
}

.shantala img {
  max-width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.shantala h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1c275c;
  margin-bottom: 15px;
}

.shantala p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-dark);
  margin-bottom: 15px;
}

.shantala .col-lg-4 {
  text-align: center;
}

.shantala .col-lg-8 {
  padding-left: 30px;
}

.vmg {
  padding: 80px 0;
  background: #f8f9fc;
}

.vmg-logo-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vmg-logo-box img {
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

.vmg-vision-box,
.vmg-mission-box,
.vmg-goal-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  border-left: 5px solid #e1ba58;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.vmg-vision-box:hover,
.vmg-mission-box:hover,
.vmg-goal-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vmg h5 {
  font-size: 20px;
  font-weight: 600;
  color: #1c275c;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.vmg p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.vmg .row > div {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .vmg {
    padding: 50px 0;
  }

  .vmg-logo-box {
    margin-bottom: 30px;
  }
}

.lt-heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 600;
  color: #1c275c;
  margin-bottom: 25px;
}

.leadership-team {
  padding: 60px 0;
}

.leadership-team h3 {
  color: var(--brand-blue);
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
}

.leadership-team .title_all {
  margin-bottom: 40px;
}

.leadership-team img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.leadership-team img:hover {
  transform: scale(1.05);
}

.leadership-team h5 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #222;
}

.chairperson-img {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.chairperson-img img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 5px solid #2d4063;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .chairperson-img {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .chairperson-img img {
    width: 140px;
    height: 140px;
  }

  .chairperson-img h5 {
    font-size: 26px;
  }

  .chairperson-img span {
    font-size: 16px;
  }
}

/* -------------SCHOOL_INFO----------------- */

.school-info {
  padding: 60px 0;
  background: #f8f9fc;
}

.school-info h5 {
  text-align: center;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 600;
  color: #1c275c;
  margin-bottom: 25px;
}

.school-info .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.school-info-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.school-info-table thead {
  background: #1c275c;
}

.school-info-table th {
  color: #fff;
  text-transform: uppercase;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}

.school-info-table td {
  padding: 14px 16px;
  text-transform: uppercase;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #eee;
}

.school-info-table tbody tr:hover {
  background: #f4f6fb;
}

.school-info-table td:nth-child(2) {
  font-weight: 500;
  color: #1c275c;
}

.school-info-table td:nth-child(3) {
  color: #555;
}

.school-info-table tr:last-child td {
  border-bottom: none;
}

/* --------------------------------- */
/* ------------ACADAMICS----------- */
/* ------------------------------- */

.pre-primary {
  padding: 80px 20px;
  background: #f8f9fc;
}

.pre-primary .row.align-items-center {
  margin-bottom: 40px;
}

.imag-pre-primary img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.text-pp {
  padding-left: 20px;
}

.text-pp p:first-child {
  color: #e1ba58;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 13px;
}

.text-pp h3 {
  font-size: 34px;
  color: #1c275c;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}

.text-pp p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

.pre-primary .row img.img-fluid {
  border-radius: 12px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.pre-primary .row img.img-fluid:hover {
  transform: translateY(-5px);
}

.pre-primary .row > .col-lg-4 {
  margin-bottom: 20px;
}

.continue-para {
  margin-top: 30px;
  padding: 30px;
  background: #ffffff;
  border-left: 5px solid #e1ba58;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.continue-para p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.cta-all {
  background: linear-gradient(135deg, #27397f, #1a2a5c);
  padding: 60px 20px;
  color: #fff;
}

.preprimary-cta-box h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.preprimary-cta-box p {
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 25px;
  line-height: 1.6;
  opacity: 0.9;
}

.preprimary-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.preprimary-cta-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-preprimary-admission {
  background: #ffffff;
  color: #27397f;
  font-weight: 600;
}

.btn-preprimary-admission:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

.btn-preprimary-call {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-preprimary-call:hover {
  background: #ffffff;
  color: #27397f;
}

.btn-preprimary-mail {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff30;
  color: #ffffff;
}

.btn-preprimary-mail:hover {
  background: #ffffff;
  color: #27397f;
}

.preprimary-cta-buttons i {
  font-size: 14px;
}

@media (max-width: 768px) {
  .preprimary-cta-box h3 {
    font-size: 24px;
  }

  .preprimary-cta-box p {
    font-size: 14px;
  }

  .preprimary-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .preprimary-cta-buttons a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ---------------------------------- */

.prim-three {
  margin-top: 40px;
  row-gap: 20px;
}

/* IMAGE STYLE */
.prim-three img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* HOVER EFFECT (SUBTLE) */
.prim-three img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .prim-three img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .prim-three {
    row-gap: 15px;
  }

  .prim-three img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .prim-three img {
    height: auto;
  }
}

.primary-edu {
  padding: 80px 20px;
  background: #ffffff;
}

.primary-edu .row {
  margin-bottom: 40px;
}

.primary-edu p:first-child {
  color: #e1ba58;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
}

.primary-edu h3 {
  font-size: 34px;
  color: #1c275c;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.primary-edu p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

.primary-edu img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.continue-text-pe {
  background: #f8f9fc;
  padding: 25px;
  border-radius: 12px;
  border-left: 5px solid #e1ba58;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.primary-edu img:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.primary-edu .row.align-items-center {
  align-items: center;
}

@media (max-width: 992px) {
  .primary-edu h3 {
    font-size: 26px;
  }

  .primary-edu img {
    margin-top: 20px;
  }
}

.pc-text {
  padding: 40px 0px;
}

/* ------------------------------- */

/* Section */
.middle-school {
  padding: 80px 20px;
  background: #f8f9fc;
}

/* Row spacing */
.middle-school .row {
  margin-bottom: 40px;
}

/* Text Block */
.text-ms {
  padding-left: 20px;
}

/* Label */
.text-ms p:first-child {
  color: #e1ba58;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
}

/* Heading */
.text-ms h3 {
  font-size: 34px;
  color: #1c275c;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Paragraph */
.text-ms p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

/* Images */
.middle-school img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.middle-school img:hover {
  transform: translateY(-5px);
}

/* Continue Text Box */
.continue-text-ms {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border-left: 5px solid #e1ba58;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
  .text-ms {
    padding-left: 0;
    margin-top: 20px;
  }

  .text-ms h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .middle-school {
    padding: 50px 15px;
  }

  .text-ms h3 {
    font-size: 22px;
  }

  .text-ms p,
  .continue-text-ms p {
    font-size: 14px;
  }

  .middle-school img {
    margin-top: 20px;
  }
}

/* ----------------------------- */

/* Section */
.high-school {
  padding: 90px 20px;
  background: linear-gradient(135deg, #1c275c, #2a3d8f);
  color: #fff;
}

/* Header */
.hs-header p:first-child {
  color: #e1ba58;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.hs-header h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hs-subtext {
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
  font-size: 16px;
}

/* Card */
.hs-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  color: #333;
}

/* Text */
.hs-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

/* Image */
.hs-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Highlights */
.hs-highlight {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.hs-highlight h5 {
  color: #e1ba58;
  font-size: 18px;
  margin-bottom: 8px;
}

.hs-highlight p {
  font-size: 14px;
  opacity: 0.9;
}

.hs-highlight:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .hs-header h3 {
    font-size: 28px;
  }

  .hs-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .high-school {
    padding: 60px 15px;
  }

  .hs-header h3 {
    font-size: 24px;
  }

  .hs-subtext {
    font-size: 14px;
  }

  .hs-text p {
    font-size: 14px;
  }

  .hs-highlight {
    margin-top: 20px;
  }
}

/*--------------------------------- */

/* Section */
.high-school {
  padding: 90px 20px;
  background: #f8f9fc;
  color: #333;
}

/* Header */
.hs-header p:first-child {
  color: #e1ba58;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.hs-header h3 {
  font-size: 36px;
  font-weight: 700;
  color: #1c275c;
  margin-bottom: 15px;
}

.hs-subtext {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
}

/* Card */
.hs-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Text */
.hs-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

/* Image */
.hs-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Highlights */
.hs-highlight {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-top: 30px;
  border-top: 3px solid #e1ba58;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hs-highlight h5 {
  color: #1c275c;
  font-size: 18px;
  margin-bottom: 8px;
}

.hs-highlight p {
  font-size: 14px;
  color: #555;
}

.hs-highlight:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
  .hs-header h3 {
    font-size: 28px;
  }

  .hs-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .high-school {
    padding: 60px 15px;
  }

  .hs-header h3 {
    font-size: 24px;
  }

  .hs-subtext {
    font-size: 14px;
  }

  .hs-text p {
    font-size: 14px;
  }
}

/* ----------------------------------- */

/* Section */
.anps-admission-process {
  background: #f8f9fc;
}

/* Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c275c;
}

/* Tabs */
.admission-tabs .nav-link {
  border: none;
  color: #555;
  font-weight: 500;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.admission-tabs .nav-link.active {
  background: #1c275c;
  color: #fff;
}

.admission-tabs .nav-link:hover {
  background: #e1ba58;
  color: #1c275c;
}

/* Content Box */
.admission-content {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Paragraphs */
.admission-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Visit Info */
.visit-info {
  background: #f8f9fc;
  padding: 20px;
  border-left: 4px solid #e1ba58;
  border-radius: 10px;
}

.visit-info h6 {
  color: #1c275c;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Links */
.visit-info a {
  color: #1c275c;
  font-weight: 600;
  text-decoration: none;
}

/* Document List */
.document-list {
  padding-left: 20px;
}

.document-list li {
  margin-bottom: 8px;
  color: #555;
}

/* Notes */
.admission-notes {
  background: #fdfaf2;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #e1ba58;
}

.admission-notes h6 {
  color: #1c275c;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Button */
.btn-download-form {
  display: inline-block;
  background: #1c275c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-download-form:hover {
  background: #e1ba58;
  color: #1c275c;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .admission-content p {
    font-size: 14px;
  }
}

/* -------------------------------- */

/* SECTION */
.campus-facilities {
  padding: 80px 0;
  background: #ffffff;
}

/* HEADER */
.cf-header {
  text-align: center;
  margin-bottom: 60px;
}

.cf-header span {
  display: block;
  color: #e1ba58;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: bold;
}

.cf-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c275c;
  line-height: 1.3;
}

/* FACILITY ROW */
.facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 50px 0;
  border-bottom: 1px solid #f0f0f0;
}

.facility-row:last-child {
  border-bottom: none;
}

/* CONTENT */
.facility-content h4 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1c275c;
  margin-bottom: 14px;
}

.facility-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  font-weight: 400;
}

/* IMAGE */
.facility-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Alternate layout for every even row */
.facility-row:nth-child(even) {
  direction: rtl;
}

.facility-row:nth-child(even) .facility-content,
.facility-row:nth-child(even) .facility-image {
  direction: ltr;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .facility-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }

  .facility-image {
    order: -1;
  }

  .facility-image img {
    height: 220px;
  }

  .cf-header h2 {
    font-size: 24px;
  }
}

/* --------------------------------- */

.site-main {
  padding: 50px 0;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

/* FEATURED ARTICLE */
.featured-article {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.featured-image-wrap {
  height: 320px;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.featured-image:hover {
  transform: scale(1.04);
}

.featured-body {
  padding: 28px 32px 32px;
}

.featured-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #111;
}

.featured-excerpt {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
}

/* SIDEBAR */
.sidebar {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  padding: 20px;
  position: sticky;
  top: 100px;
}

.sidebar-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 16px;
}

.side-article {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.side-article:hover {
  background: #f7f7f5;
}

.side-thumb-wrap {
  width: 84px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.side-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.side-info {
  flex: 1;
  min-width: 0;
}

.side-title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin-bottom: 5px;
}

.side-date {
  font-size: 12px;
  color: #999;
}

.side-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 4px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .featured-image-wrap {
    height: 240px;
  }
  .featured-title {
    font-size: 22px;
  }
  .featured-body {
    padding: 20px;
  }
}

/* ------------------------------ */

/* SECTION */
.anps-policy {
  padding: 80px 0;
  background: #f7f8fc;
}

/* HEADER */
.anps-policy-header span {
  display: block;
  color: #e1ba58;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.anps-policy-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c275c;
  margin-bottom: 12px;
}

.anps-policy-header p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* WRAPPER */
.anps-policy-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

/* BLOCK */
.anps-policy-block {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.anps-policy-block:hover {
  box-shadow: 0 10px 25px rgba(28, 39, 92, 0.06);
}

/* TITLE */
.anps-policy-block h4 {
  font-size: 20px;
  color: #1c275c;
  margin-bottom: 12px;
  font-weight: 700;
}

/* TEXT */
.anps-policy-block p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* LIST */
.anps-policy-block ul {
  padding-left: 18px;
  margin: 0;
}

.anps-policy-block ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* HIGHLIGHT BLOCK */
.anps-policy-block.highlight {
  border-left: 4px solid #e1ba58;
  background: #fffdf6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .anps-policy {
    padding: 60px 0;
  }

  .anps-policy-header h2 {
    font-size: 24px;
  }

  .anps-policy-block {
    padding: 22px;
  }
}

/* --------------------------------- */

/* Section */
.anps-news-events {
  padding: 80px 20px;
  background: #f8f9fc;
}

/* Header */
.anps-news-events .section-header {
  margin-bottom: 50px;
}

.anps-news-events .section-header p {
  color: #e1ba58;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
}

.anps-news-events .section-header h2 {
  font-size: 34px;
  color: #1c275c;
  font-weight: 700;
}

/* News Item */
.anps-news-events .news-item {
  margin-bottom: 50px;
}

/* Image Gallery */
.anps-news-events .news-gallery {
  position: relative;
  cursor: pointer;
}

.anps-news-events .news-gallery img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

/* Overlay ALWAYS visible */
.anps-news-events .view-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 39, 92, 0.9);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  border-radius: 0 0 14px 14px;
  font-weight: 500;
}

/* Hover lift */
.anps-news-events .news-gallery:hover img {
  transform: translateY(-5px);
}

/* Content */
.anps-news-events .news-content {
  padding-left: 25px;
}

.anps-news-events .news-content h3 {
  font-size: 24px;
  color: #1c275c;
  margin-bottom: 12px;
  font-weight: 600;
}

.anps-news-events .news-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .anps-news-events .news-content {
    padding-left: 0;
    margin-top: 20px;
  }

  .anps-news-events .section-header h2 {
    font-size: 28px;
  }
}

/* Section */
.video-events {
  padding: 80px 20px;
  background: #ffffff;
}

/* Header */
.video-events .ve-header p {
  color: #e1ba58;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
}

.video-events .ve-header h3 {
  font-size: 32px;
  color: #1c275c;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Card */
.video-events .ve-card {
  margin-bottom: 30px;
}

/* Video */
.video-events .ve-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.video-events .ve-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Content */
.video-events .ve-content {
  margin-top: 10px;
  text-align: center;
}

.video-events .ve-content h5 {
  font-size: 16px;
  color: #1c275c;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .video-events {
    padding: 50px 15px;
  }

  .video-events .ve-header h3 {
    font-size: 24px;
  }
}

/* ------------------------------------ */
/* ------------EVents-activities------ */
/* ---------------------------------- */

.section-header-gallery {
  font-size: 34px;
  color: #1c275c;
  font-weight: 700;
  padding-top: 40px;
}

.ails-events {
  background: #f8f9fb;
}

.ails-events__banner {
  background: #0b1f3a;
  color: #fff;
  padding: 70px 20px;
}

.ails-events__banner h1 {
  font-size: 40px;
  font-weight: 700;
}

.ails-events__banner p {
  font-size: 16px;
  opacity: 0.9;
}

.ails-events .ails-event-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.ails-events .ails-event-card__image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.ails-events .ails-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.ails-events .ails-event-card__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.ails-events .ails-event-card__overlay h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.ails-events .ails-event-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .ails-events__banner h1 {
    font-size: 28px;
  }

  .ails-events .ails-event-card__image {
    height: 220px;
  }
}

/* --------------------------------- */

/* Section */
.anps-contact {
  padding: 90px 20px;
  background: #f8f9fc;
}

/* Header */
.anps-contact__header p:first-child {
  color: #e1ba58;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.anps-contact__header h2 {
  font-size: 36px;
  color: #1c275c;
  font-weight: 700;
  margin: 10px 0;
}

.anps-contact__header .sub-text {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
}

/* Row Fix */
.anps-contact__row {
  display: flex;
  flex-wrap: wrap;
}

.anps-contact__row > div {
  display: flex;
}

/* Cards */
.anps-contact__card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.anps-contact__card:hover {
  transform: translateY(-6px);
}

/* Icon */
.anps-contact__icon {
  width: 60px;
  height: 60px;
  background: rgba(225, 186, 88, 0.15);
  color: #e1ba58;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-size: 20px;
}

/* Text */
.anps-contact__card h4 {
  color: #1c275c;
  font-size: 18px;
  margin-bottom: 8px;
}

.anps-contact__card p {
  font-size: 14px;
  color: #555;
}

.anps-contact__card a {
  color: #1c275c;
  text-decoration: none;
}

/* Bottom Section */
.anps-contact__bottom {
  margin-top: 60px;
}

/* Map */
.anps-contact__map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Info Box */
.anps-contact__info {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.anps-contact__info h4 {
  color: #1c275c;
  margin-bottom: 15px;
}

.anps-contact__info p {
  font-size: 14px;
  color: #555;
}

.anps-contact__info span {
  color: #e1ba58;
  font-weight: 600;
}

/* Button */
.anps-contact__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #1c275c;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.anps-contact__btn:hover {
  background: #e1ba58;
  color: #1c275c;
}

/* Responsive */
@media (max-width: 768px) {
  .anps-contact {
    padding: 60px 15px;
  }

  .anps-contact__header h2 {
    font-size: 24px;
  }

  .anps-contact__card {
    min-height: auto;
  }
}

.team-about-anps {
  padding: 80px 0;
  background: var(--neutral-light);
}

.text-anps-team {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid #ececec;
  transition: all 0.3s ease;
}

.text-anps-team:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.text-anps-team h5 {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.text-anps-team span {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-anps-team h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-blue);
  margin-top: 25px;
  margin-bottom: 15px;
}

.text-anps-team p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--neutral-dark);
  margin-bottom: 18px;
  font-weight: 400;
}

.text-anps-team p strong {
  color: var(--brand-blue);
  font-weight: 700;
}

@media (max-width: 991px) {
  .team-about-anps {
    padding: 60px 0;
  }

  .text-anps-team {
    padding: 30px;
  }

  .text-anps-team h5 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .team-about-anps {
    padding: 50px 0;
  }

  .text-anps-team {
    padding: 24px;
    border-radius: 12px;
  }

  .text-anps-team h5 {
    font-size: 22px;
  }

  .text-anps-team h6 {
    font-size: 18px;
  }

  .text-anps-team p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* --------------------------------- */
/* -------------------------------- */
/* ------------------------------- */

.samagratvam {
  padding: 80px 0;
  background: var(--neutral-light);
}

.samagratvam .Samagratvam_content {
  padding-right: 30px;
}

.samagratvam .Samagratvam_content h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 18px;
  line-height: 1.2;
}

.samagratvam .Samagratvam_content h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
  line-height: 1.5;
}

.samagratvam .Samagratvam_content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--neutral-dark);
  margin-top: 22px;
  margin-bottom: 0;
}

.samagratvam .sam_image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.samagratvam .sam_image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.samagratvam .sam_continue {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.samagratvam .sam_continue .simple-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(28, 39, 92, 0.08);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.samagratvam .sam_continue .simple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(28, 39, 92, 0.12);
}

.samagratvam .sam_continue .simple-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.samagratvam .sam_continue .simple-card p {
  margin: 0;
  font-size: 15px;
  color: var(--neutral-dark);
  font-weight: 500;
  line-height: 1.6;
}

.samagratvam .anps_sam_text {
  margin-top: 45px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.samagratvam .anps_sam_text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--neutral-dark);
  margin-bottom: 18px;
}

.samagratvam .anps_sam_text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .samagratvam {
    padding: 50px 0;
  }

  .samagratvam .Samagratvam_content h3 {
    font-size: 30px;
  }

  .samagratvam .Samagratvam_content h5 {
    font-size: 18px;
  }

  .samagratvam .Samagratvam_content p,
  .samagratvam .anps_sam_text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .samagratvam .sam_continue {
    grid-template-columns: 1fr;
  }

  .samagratvam .sam_continue .simple-card {
    padding: 24px 18px;
  }
}

.Koshas {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ---------------------------------------- */
/* --------------------------------------- */
/* ------------------------------------- */

.cp {
  padding: 80px 0;
  background: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.cp-text {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px;
}

.cp-text h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.cp-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--neutral-dark);
  margin-top: 22px;
}

.cp-points {
  padding: 35px 30px;
  transition: all 0.35s ease;
}

.cp-points:hover {
  transform: translateY(-6px);
}

.cp-points ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cp-points ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--neutral-dark);
}

.cp-points ul li:last-child {
  margin-bottom: 0;
}

.cp-points ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent-gold);
  font-size: 18px;
}

.cp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  min-height: 100%;
  transition: transform 0.4s ease;
}

.cp img:hover {
  transform: scale(1.02);
}

.cp .row:nth-child(2) {
  align-items: stretch;
  row-gap: 30px;
}

@media (max-width: 991px) {
  .cp {
    padding: 60px 0;
  }

  .cp-text {
    margin-bottom: 40px;
  }

  .cp-text h3 {
    font-size: 34px;
  }

  .cp-points {
    padding: 28px 24px;
  }

  .cp img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .cp-text h3 {
    font-size: 28px;
  }

  .cp-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .cp-points ul li {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 30px;
  }

  .cp img {
    height: 300px;
  }
}

/* =========================
   Testimonials
   ========================= */

.testimonials-section {
  padding: 72px 0;
  background: var(--neutral-light);
}

.testimonial-heading {
  text-align: center;
}

.testimonial-heading h1 {
  font-size: 36px;
  color: var(--brand-blue);
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* SINGLE TESTIMONIAL */

.testimonial-item {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--light-lavender);
  align-items: flex-start;
}

.testimonial-item:last-child {
  border-bottom: none;
}

.testimonial-img {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  border-radius: 12px;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
  padding-top: 6px;
}

.testimonial-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--neutral-dark);
  margin-bottom: 16px;
}

.testimonial-content h5 {
  color: var(--brand-blue);
  font-size: 15px;
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-content h5::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Mobile */

@media (max-width: 768px) {
  .testimonial-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .testimonial-img {
    margin: 0 auto;
  }

  .testimonial-content h5 {
    justify-content: center;
  }

  .testimonial-heading h1 {
    font-size: 28px;
  }
}

/* ======================================
   Achievements & Awards Section
====================================== */

.anps-aa-heading {
  font-size: 36px;
  color: var(--brand-blue);
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 40px;
}

.anps-aa-heading h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 600;
  color: #1c275c;
  margin-bottom: 25px;
}
.anps-aa {
  padding: 80px 0;
  background: #f8f9fa;
}

.anps-aa .row {
  row-gap: 30px;
}

.aa-image {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 280px; /* same height for all */
}

.aa-image:hover {
  transform: translateY(-5px);
}

.aa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps all images equal */
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .aa-image {
    height: 250px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .aa-image {
    height: 220px;
  }
}

/* ---------------------------------- */
/* --------------------------------- */
/* -------------------------------- */
.student-results {
  padding: 0px 0px 60px 0px;
  background: #f8fafc;
}

.results-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  color: #1c275c;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.student-results .results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.student-results .result-table-wrapper {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.student-results .result-table {
  width: 100%;
  border-collapse: collapse;
}

.student-results .result-table thead th {
  background: #0f3d75;
  color: #fff;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.student-results .result-table tbody td {
  padding: 13px 15px;
  border-bottom: 1px solid #edf1f7;
  font-size: 15px;
  color: #333;
}

.student-results .result-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.student-results .result-table tbody tr:hover {
  background: #eef5ff;
  transition: 0.3s ease;
}

.student-results .result-table tbody td:first-child {
  width: 70px;
  text-align: center;
  font-weight: 600;
}

.student-results .result-table tbody td:nth-child(2) {
  font-weight: 500;
}

.student-results .result-table tbody td:last-child {
  width: 90px;
  text-align: center;
  font-weight: 700;
  color: #0f3d75;
}

@media (max-width: 991px) {
  .student-results .results-grid {
    grid-template-columns: 1fr;
  }

  .student-results .results-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .student-results {
    padding: 10px 0;
  }

  .student-results .results-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .student-results .result-table thead th,
  .student-results .result-table tbody td {
    padding: 10px;
    font-size: 13px;
  }
}

.subject-highlights-section {
  padding: 0px 0px 60px 0px;
  background: #f8fafc;
}

.subject-highlights-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.subject-highlights-table thead th {
  background: #0f3d75;
  color: #fff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.subject-highlights-table tbody td {
  padding: 16px 20px;
  font-size: 15px;
  color: #333;
  text-align: center;
  border-bottom: 1px solid #edf1f7;
}

.subject-highlights-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.subject-highlights-table tbody tr:hover {
  background: #eef5ff;
  transition: 0.3s ease;
}

.subject-highlights-table tbody td:first-child {
  font-weight: 600;
  color: #1c275c;
}

.subject-highlights-table tbody td:last-child {
  font-weight: 700;
  color: #0f3d75;
  font-size: 18px;
}

@media (max-width: 768px) {
  .subject-highlights-section {
    padding: 40px 0;
  }

  .subject-highlights-table thead th,
  .subject-highlights-table tbody td {
    padding: 12px;
    font-size: 14px;
  }

  .subject-highlights-table tbody td:last-child {
    font-size: 16px;
  }
}

.school-toppers-section {
  padding: 70px 0;
  background: #f8fafc;
}

.school-toppers-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1c275c;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.school-toppers-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.school-toppers-table {
  width: 100%;
  border-collapse: collapse;
}

.school-toppers-table thead th {
  background: #0f3d75;
  color: #fff;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.school-toppers-table tbody td {
  padding: 18px;
  text-align: center;
  border-bottom: 1px solid #edf1f7;
  font-size: 16px;
}

.school-toppers-table tbody tr:nth-child(1) {
  background: linear-gradient(90deg, #fff8dc, #fff3b0);
}

.school-toppers-table tbody tr:nth-child(2) {
  background: #f7f9fc;
}

.school-toppers-table tbody tr:nth-child(3) {
  background: #fff7f2;
}

.school-toppers-table tbody td:nth-child(2) {
  text-align: left;
  font-weight: 600;
}

.school-toppers-table tbody td:last-child,
.school-toppers-table tbody td:nth-child(3) {
  font-weight: 700;
  color: #0f3d75;
}

@media (max-width: 768px) {
  .school-toppers-section {
    padding: 50px 0;
  }

  .school-toppers-title {
    font-size: 20px;
  }

  .school-toppers-table thead th,
  .school-toppers-table tbody td {
    padding: 12px;
    font-size: 12px;
  }

  .results-title {
    font-size: 20px;
  }
}

.faci-vm {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.view-more {
  padding: 5px 20px;
  border-radius: 10px;
  font-size: 14px;
  margin-right: 10px;
  background: #1c275c;
  color: #fff;
  border: none;
  margin: 0 auto;
}

/* ==========================
   Event Videos Section
========================== */

.event-videos-part {
  margin-top: 40px;
}

.event-videos-part .col-lg-4 {
  margin-bottom: 25px;
}

.event-videos-part .video-place,
.event-videos-part .col-lg-4 > video {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.event-videos-part .video-place:hover,
.event-videos-part .col-lg-4 > video:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.event-videos-part .video-place video,
.event-videos-part .col-lg-4 > video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}
@media (max-width: 767px) {
  .event-videos-part .video-place video,
  .event-videos-part .col-lg-4 > video {
    height: 320px;
  }
}

/* =========================
   AOP Section
========================= */
.aop {
  padding: 80px 0;
}

.aop .aop-part {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.aop .aop-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 18px;
  line-height: 1.2;
}

.aop .aop-part h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #555;
}

.aop .aop-part p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Images */
.aop .aop-imgs {
  margin: 40px 0;
}

.aop .aop-imgs img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Bottom Content */
.aop .continue-aop {
  max-width: 1000px;
  margin: 0 auto;
}

.aop .continue-aop p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
  .aop {
    padding: 60px 0;
  }

  .aop .aop-title {
    font-size: 30px;
  }

  .aop .aop-imgs .col-lg-4 {
    margin-bottom: 20px;
  }

  .aop .aop-imgs img {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .aop .aop-title {
    font-size: 26px;
  }

  .aop .aop-part h5 {
    font-size: 18px;
  }

  .aop .aop-part p,
  .aop .continue-aop p {
    font-size: 15px;
  }

  .aop .aop-imgs img {
    height: 220px;
  }
}


/* ------------------------------ */


.privacy-policy {
    padding: 80px 0;
    background: #ffffff;
}

.privacy-policy .policy-box {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-policy h1 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.privacy-policy .last-updated {
    color: #777;
    margin-bottom: 40px;
    font-size: 15px;
}

.privacy-policy h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-top: 35px;
    margin-bottom: 15px;
}

.privacy-policy p,
.privacy-policy li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.privacy-policy ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-policy .contact-box {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #0d6efd;
    border-radius: 5px;
}

.privacy-policy .contact-box p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 50px 0;
    }

    .privacy-policy h1 {
        font-size: 30px;
    }

    .privacy-policy h3 {
        font-size: 22px;
    }

    .privacy-policy p,
    .privacy-policy li {
        font-size: 15px;
    }
}