/* Reset */
body {
  margin: 0;
  padding: 0;
}

/* Navbar brand wrapper */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

/* LOGO IMAGE */
.logo {
  height: 100px;   
}

/* Menu links */
.nav-link {
  font-weight: 500;
  color: #333 !important;
  margin-left: 15px;
}
.ms-2 {
  margin-left: 15px;
  font-weight: 500;
}

.nav-link:hover {
  color: #0056b3;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 85vh;
  background: url("../images/banner.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 46, 91, 0.85),
    rgba(0, 46, 91, 0.55)
  );
  z-index: 1;
}


/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-content p {
  font-size: 19px;
  margin-top: 8px;
  font-weight: 400;
  opacity: 0.95;
}
.hero-content .btn-warning {
  background-color: #f4b400;
  border: none;
  color: #002e5b;
  font-weight: 600;
}

.hero-content .btn-warning:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}


/* Highlights Section */
#highlights {
  padding-top: 40px;
  padding-bottom: 40px;
}
/* HERO ANIMATION */
.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1.2s ease forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section {
  animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}
.hero-content .btn {
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  transform: translateY(-3px);
}


#highlights .highlight-img {
  height: 80px;
  width: auto;
}

#highlights h5 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 12px;
  color: #002e5b;
}

#highlights p {
  font-size: 14px;
}

/* ABOUT US SECTION */
.about-section {
  padding: 70px 0;
  background: #f8f9fa;
}

.about-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #002e5b;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.about-img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
}

/* SPLIT ABOUT SECTION */
.about-split {
  display: flex;
  min-height: 100px; 
  width: 100%;
  height: 70%;
}


/* LEFT COLOR PART */
.about-left {
  flex: 1;
  background-color: #2f3dbf; /* Podar-style blue */
  display: flex;
  align-items: center;
  padding: 60px;
}

.about-content {
  color: #fff;
  max-width: 500px;
}

.about-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* RIGHT IMAGE PART */
.about-right {
  flex: 1;
}

.about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* UNIQUE ABOUT SECTION */
.about-unique {
  display: flex;
  min-height: 300px;
  width: 100%;
}

/* LEFT SIDE */
.about-unique .about-left {
  flex: 1;
  background: linear-gradient(135deg, #002e5b, #1b4f8a);
  display: flex;
  align-items: center;
  padding: 30px 50px;
}

/* GLASS CARD */
.about-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 30px;
  color: #fff;
  max-width: 520px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.about-card:hover {
  transform: translateY(-6px);
}

/* BADGE */
.about-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* TEXT */
.about-card h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* RIGHT IMAGE */
.about-unique .about-right {
  flex: 1;
}

.about-unique .about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* LEFT SIDE LAYOUT */
.about-unique .about-left {
  flex: 1;
  background: linear-gradient(135deg, #002e5b, #1b4f8a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px; /* space between boxes */
  padding: 30px 50px;
}

/* SECOND CARD VARIATION */
.about-card-secondary {
  background: rgba(255, 255, 255, 0.14);
}

/* SECOND CARD TITLE */
.about-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}



/* SIMPLE SCROLL ANIMATION */
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-left.show,
.animate-right.show {
  opacity: 1;
  transform: translateY(0);
}

.about-right img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-right img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.about-card .btn {
  transition: all 0.3s ease;
}

.about-card .btn:hover {
  transform: translateY(-6px);
}
/* STATISTICS SECTION */
.stats-section {
  background: linear-gradient(135deg, #002e5b, #1b4f8a);
  padding: 60px 0;
  color: #fff;
}

.stats-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: #f4b400;
}

.stats-section p {
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-top: 5px;
}
/* STATS SECTION */
.stats-section {
  background: #ffffff;
  padding: 70px 0;
}

/* STAT BOX */
.stat-box {
  padding: 30px 20px;
  border-radius: 14px;
  background: #f9fafc;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* POP EFFECT */
.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* NUMBER */
.stat-box h2 {
  font-size: 44px;
  font-weight: 700;
  color: #002e5b;
}

/* PLUS SIGN */
.counter::after {
  content: "+";
  font-size: 24px;
  margin-left: 4px;
  color: #f4b400;
}

/* PERCENT FIX */
.no-plus::after {
  content: "%";
}

/* TEXT */
.stat-box p {
  font-size: 15px;
  margin-top: 5px;
  font-weight: 500;
  color: #555;
}
/* GALLERY SLIDER */
.gallery-section {
  background: rgb(236, 236, 238);
  padding: 70px 0;
}

.gallery-section .carousel-inner img {
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60%;
}
.carousel-item {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.carousel-item {
  transition: opacity 1.2s ease-in-out;
  cursor: pointer;
}
/* .footer .col-md-4 {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer .col-md-4:hover {
  transform: translateY(-6px);
}
.footer {
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #f4b400, #ffffff, #f4b400);
}
.footer {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* BLUE FOOTER */
.footer-blue {
  background: linear-gradient(135deg, #003973, #005aa7);
  color: #ffffff;
  padding: 45px 0 0;
  
}

.footer-blue h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #e6f0ff;
}

/* LINKS – SLIDE UNDERLINE EFFECT */
.footer-links-blue {
  list-style: none;
  padding: 0;
}

.footer-links-blue li {
  margin-bottom: 15px;
}

.footer-links-blue a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.footer-links-blue a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #ffcc00;
  transition: width 0.4s ease;
}

.footer-links-blue a:hover::after {
  width: 100%;
}

/* SOFT GLOW ON HOVER (UNIQUE) */
.footer-blue .col-md-4:hover {
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.15));
}

/* BOTTOM BAR */
.footer-bottom-blue {
  background: rgba(0,0,0,0.2);
  text-align: center;
  padding: 14px;
  font-size: 13px;
  margin-top: 20px;
  color: #dbe9ff;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-blue {
    text-align: center;
    border-radius: 0;
  }
}

/* ===== KEY HIGHLIGHTS SECTION ===== */
#highlights {
  padding: 80px 0;
}

#highlights .col-md-4 {
  transition: transform 0.4s ease;
}

/* Highlight Card Feel */
#highlights .col-md-4 > div,
#highlights .col-md-4 {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Glow Border Effect */
#highlights .col-md-4::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  background: linear-gradient(120deg, #0d47a1, #f9a825) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover Effects */
#highlights .col-md-4:hover {
  transform: translateY(-12px);
}

#highlights .col-md-4:hover::before {
  opacity: 1;
}

/* Image Effect */
.highlight-img {
  width: 90px;
  height: auto;
  transition: transform 0.4s ease;
}

#highlights .col-md-4:hover .highlight-img {
  transform: scale(1.15) rotate(2deg);
}

/* Title Effect */
#highlights h5 {
  font-weight: 600;
  margin-top: 15px;
  transition: color 0.3s ease;
}

#highlights .col-md-4:hover h5 {
  color: #0d47a1;
}
.highlight-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.highlight-animate.show {
  opacity: 1;
  transform: translateY(0);
}


/* cooming  */
/* ===== COMING SOON BUTTON ===== */
.coming-soon-btn {
  background: #0d47a1;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
  transition: all 0.3s ease;
}

/* Hover */
.coming-soon-btn:hover {
  background: #08306b;
  transform: translateY(-2px);
}

/* POP EFFECT */
.coming-soon-btn.pop {
  animation: popBtn 0.4s ease;
}

@keyframes popBtn {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
/* ===== TOP ANNOUNCEMENT BAR ===== */
.top-announcement {
  background: linear-gradient(90deg, #0d47a1, #1976d2);
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  letter-spacing: 0.3px;
}

/* Highlight text */
.top-announcement span {
  color: #ffd54f;
  font-weight: 600;
}

/* Push navbar down */
.navbar {
  top: 42px;
}


/* coomingsoon */

.cs-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ffffff;
  padding: 40px 20px;
}

.cs-hero h1 {
  font-size: 52px;
  color: #0d47a1;
  font-weight: 800;
}

.cs-hero p {
  max-width: 620px;
  font-size: 18px;
  color: #555;
  margin-top: 15px;
}
.cs-section {
  padding: 70px 20px;
  text-align: center;
  background: #f5f7fa;
}

.cs-section h2 {
  color: #0d47a1;
  font-weight: 700;
}

.cs-section p {
  max-width: 700px;
  margin: 15px auto 0;
  color: #555;
  font-size: 16px;
}
.cs-focus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 70px 20px;
  background: #ffffff;
}

.focus-card {
  padding: 30px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e3f2fd;
  box-shadow: 0 10px 25px rgba(13,71,161,0.08);
  transition: transform 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-8px);
}

.focus-card h3 {
  color: #0d47a1;
  font-weight: 600;
}

.focus-card p {
  color: #555;
  margin-top: 8px;
}
.cs-trust {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #ffffff;
  text-align: center;
  font-size: 17px;
}
.cs-cta {
  padding: 70px 20px;
  text-align: center;
  background: #ffffff;
}

.cs-cta h2 {
  color: #0d47a1;
  font-weight: 700;
}

.cs-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #0d47a1;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-cs:hover {
  background: #08306b;
  transform: translateY(1px);
}















@media (max-width: 768px) {
  .hero-section {
    height: 320px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}
.hero-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-split {
    flex-direction: column;
  }

  .about-left {
    padding: 40px 25px;
  }

  .about-right img {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: 65vh;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .about-unique {
    flex-direction: column;
  }

  .about-unique .about-left {
    padding: 25px;
  }

  .about-card {
    max-width: 100%;
  }

  .about-unique .about-right img {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .about-unique {
    flex-direction: column;
  }

  .about-unique .about-left {
    padding: 25px;
  }

  .about-card h2 {
    font-size: 24px;
  }

  .about-card h3 {
    font-size: 20px;
  }

  .about-unique .about-right img {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .stats-section h2 {
    font-size: 36px;
  }

  .stats-section {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .stat-box h2 {
    font-size: 34px;
  }

  .stats-section {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .gallery-section .carousel-inner img {
    height: 240px;
    border-radius: 12px;
  }

  .section-title {
    font-size: 26px;
  }
}



/* about us */
.about-hero {
  background: linear-gradient(rgba(0,46,91,0.7), rgba(0,46,91,0.7)),
              url("images/about-banner.jpg") center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
}
.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
}
.info-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.info-box:hover {
  transform: translateY(-8px);
}


/* admission */
.admission-hero {
  background: linear-gradient(rgba(0,40,85,0.75), rgba(0,40,85,0.75)),
              url("images/admission-banner.jpg") center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
}
.admission-hero h1 {
  font-size: 42px;
  font-weight: 700;
}
.admission-box {
  padding: 30px;
  border-radius: 14px;
  background: #f9fbff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.admission-box:hover {
  transform: translateY(-8px);
}
.admission-cta {
  background: linear-gradient(135deg, #003973, #005aa7);
  padding: 70px 20px;
  color: #fff;
}


/* contact */
#enquiryModal .modal-content {
  border-radius: 16px;
}

#enquiryModal .modal-header {
  background: #003973;
  color: #fff;
}

/* header */

/* NAVBAR LINK EFFECTS */
.navbar {
  transition: background 0.3s ease;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: #002e5b;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* Underline slide effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background-color: #005aa7;
  transition: width 0.35s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hover effects */
.navbar-nav .nav-link:hover {
  color: #005aa7;
  transform: scale(1.05);
}

/* Active page */
.navbar-nav .nav-link.active {
  color: #005aa7;
  font-weight: 600;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar.scrolled {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.navbar {
  z-index: 9999;
  position: relative;
}


/* contct us */
.contact-hero {
  background: linear-gradient(135deg, #004e92, #000428);
  padding: 80px 0 60px;
}

.contact-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-card i {
  font-size: 32px;
  color: #005aa7;
  margin-bottom: 10px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

section {
  animation: fadeUp 0.7s ease;
}
.apply-section {
  background: #f9fbff;
}

.apply-box {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  animation: fadeUp 0.8s ease;
}

.apply-box h2 {
  color: #004e92;
}

.btn-apply {
  background: linear-gradient(135deg, #005aa7, #003f7d);
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-apply:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,90,167,0.4);
}
html {
  scroll-behavior: smooth;
}
#applyForm {
  scroll-margin-top: 120px;
}


/* academics */
.academics-hero {
  background: linear-gradient(135deg, #003973, #005aa7);
  padding: 90px 0 70px;
}
.acad-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.acad-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.acad-card h5 {
  color: #005aa7;
  font-weight: 600;
}
.approach-box {
  background: #ffffff;
  padding: 30px;
  border-left: 6px solid #005aa7;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.approach-box ul {
  list-style: none;
  padding: 0;
}

.approach-box li {
  margin-bottom: 12px;
  font-weight: 500;
}
.subject-box {
  background: linear-gradient(135deg, #f1f7ff, #ffffff);
  padding: 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subject-box:hover {
  background: #005aa7;
  color: #fff;
  transform: scale(1.05);
}








@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






