@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Poppins:wght@400;500;600;700&display=swap');

/* ================= HEADER TOP ================= */

.header-top-wrap {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

/* ================= LOGO AREA ================= */

.logo-holder img {
  height: 90px;
  object-fit: contain;
}

.brand-info {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 2px solid #F4B400;
}

.school-name {
  font-family: 'Cinzel', serif;
  font-size: 25px;
  color: #241E69;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.6px;
}

.school-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 600;
}

/* ================= CONTACT ITEMS ================= */

.contact-item {
  display: flex;
  align-items: center;
  margin-right: 32px;
}

.icon-box {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #241E69;
  border: 1px solid rgba(36,30,105,0.25);
  transition: all 0.35s ease;
}

.contact-item:hover .icon-box {
  background: linear-gradient(135deg, #241E69, #2E28A3);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow:
    0 10px 22px rgba(36, 30, 105, 0.45),
    0 0 12px rgba(36, 30, 105, 0.35);
}


.icon-box svg {
  width: 20px;
}

.text-box {
  margin-left: 12px;
}

.text-box label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 700;
}

.text-box span,
.text-box a {
  font-size: 14px;
  font-weight: 600;
  color: #241E69;
}

/* ================= ADMISSION BUTTON ================= */

.btn-premium-admission {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #241E69, #2E28A3);
  color: #ffffff !important;

  padding: 13px 32px;
  border-radius: 14px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Gold Glow Sweep */
.btn-premium-admission::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(244, 180, 0, 0.6),
    transparent
  );
  opacity: 0.6;
  animation: admissionGlow 3.5s linear infinite;
}

/* Soft Pulse */
.btn-premium-admission::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(244, 180, 0, 0.15);
  z-index: -1;
  animation: admissionPulse 3s ease-in-out infinite;
}

.btn-premium-admission:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    0 0 14px rgba(244,180,0,0.6);
}

/* Animations */
@keyframes admissionGlow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes admissionPulse {
  0% { opacity: 0.35; }
  50% { opacity: 0.6; }
  100% { opacity: 0.35; }
}

/* ================= NAVBAR ================= */

.nav-master-wrap {
  background: linear-gradient(180deg, #241E69, #1d1857);
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  color: rgba(255,255,255,0.9) !important;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 18px 18px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-svg {
  width: 17px;
  fill: currentColor;
  opacity: 0.65;
}

/* Hover + Active */
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item.active .nav-link {
  color: #F4B400 !important;
}

.navbar-nav .nav-item:hover .nav-svg {
  opacity: 1;
  transform: scale(1.15);
  filter: drop-shadow(0 0 4px #F4B400);
}

/* Gold Underline */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: #F4B400;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-item:hover .nav-link::after,
.navbar-nav .nav-item.active .nav-link::after {
  width: 55%;
}

/* ================= DROPDOWN ================= */

.glass-dropdown {
  background: rgba(36,30,105,0.95);
  backdrop-filter: blur(12px);
  border-top: 3px solid #F4B400;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  padding: 12px 0;
}

.dropdown-item {
  color: #ffffff !important;
  font-size: 13px;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(244, 180, 0, 0.12);
  color: #F4B400 !important;
  padding-left: 30px;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

  .logo-holder img {
    height: 60px;
  }

  .school-name {
    font-size: 20px;
  }

  .school-tagline {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .navbar-nav .nav-link {
    padding: 14px 16px !important;
  }
}

@media (max-width: 575px) {

  .brand-info {
    border-left: none;
    padding-left: 0;
  }

  .school-name {
    font-size: 18px;
  }

  .btn-premium-admission {
    padding: 12px 26px;
    font-size: 13px;
  }
}






/* ================= SLIDER ================= */

.home-slider .slider-item {
  height: 90vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay */
.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(36,30,105,0.75),
    rgba(36,30,105,0.45),
    rgba(36,30,105,0.15)
  );
}

/* Text Wrap */
.slider-text {
  height: 90vh;
  position: relative;
  z-index: 2;
}

/* Tagline */
.slider-tagline {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F4B400;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Title */
.slider-title {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
}

.slider-title span {
  color: #F4B400;
}

/* Description */
.slider-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin-bottom: 28px;
}

/* Buttons */
.slider-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-slider-primary {
  background: linear-gradient(135deg, #F4B400, #f59e0b);
  color: #000 !important;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(244,180,0,0.45);
  transition: all 0.3s ease;
}

.btn-slider-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(244,180,0,0.6);
}

.btn-slider-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff !important;
  padding: 13px 28px;
  border-radius: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-slider-outline:hover {
  background: #ffffff;
  color: #241E69 !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .slider-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .home-slider .slider-item {
    height: 75vh;
  }

  .slider-title {
    font-size: 28px;
  }

  .slider-desc {
    font-size: 14px;
  }
}




/* ================= SERVICES SECTION ================= */

/* =====================================================
   SERVICES SECTION – PREMIUM GLASS + 3D
   Compatible with Bootstrap
   Color Theme: #241E69
===================================================== */

/* Section BG */
.sv-services-section {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  padding: 80px 0;
}

/* Section Heading */
.sv-section-title {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: #241E69;
  margin-bottom: 12px;
  text-align: center;
}

.sv-section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 15px;
  max-width: 720px;
  margin: 0 auto 50px;
}

/* =====================================================
   SERVICE CARD
===================================================== */

.sv-service-card {
  height: 100%;
  background: rgba(36, 30, 105, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px 25px;
  text-align: center;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.6);

  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);

  opacity: 0;
  transform: translateY(40px);
  animation: svCardFadeUp 0.9s ease forwards;
}

/* Hover – 3D Lift */
.sv-service-card:hover {
  background: linear-gradient(
    135deg,
    rgba(36,30,105,0.18),
    rgba(36,30,105,0.08)
  );
  transform: translateY(-14px) scale(1.03);
  box-shadow:
    0 35px 70px rgba(36,30,105,0.35);
}

/* =====================================================
   ICON (GLASS + 3D)
===================================================== */

.sv-service-card .sv-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
  border-radius: 50%;

  background: linear-gradient(135deg, #241E69, #2E28A3);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 38px;

  box-shadow:
    0 15px 35px rgba(36,30,105,0.45);

  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Icon Hover Reaction */
.sv-service-card:hover .sv-icon {
  transform: rotateY(180deg) scale(1.12);
  background: linear-gradient(135deg, #F4B400, #f59e0b);
  box-shadow:
    0 22px 50px rgba(244,180,0,0.55);
}

/* =====================================================
   TEXT
===================================================== */

.sv-service-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #241E69;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.sv-service-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Title color on hover */
.sv-service-card:hover h4 {
  color: #F4B400;
}

/* ================= PREMIUM SCROLL ANIMATION ================= */
/* ================= SCROLL BASE ================= */

.sv-scroll {
  opacity: 0;
  transform: translateY(70px) scale(0.96);
  transition:
    opacity 0.9s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ACTIVE */
.sv-scroll.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ================= AUTO STAGGER (NTH-CHILD) ================= */

/* 1st card */
.row > .sv-scroll:nth-child(1) {
  transition-delay: 0.1s;
}

/* 2nd card */
.row > .sv-scroll:nth-child(2) {
  transition-delay: 0.2s;
}

/* 3rd card */
.row > .sv-scroll:nth-child(3) {
  transition-delay: 0.3s;
}

/* 4th card */
.row > .sv-scroll:nth-child(4) {
  transition-delay: 0.4s;
}

/* 5th card */
.row > .sv-scroll:nth-child(5) {
  transition-delay: 0.5s;
}

/* 6th card */
.row > .sv-scroll:nth-child(6) {
  transition-delay: 0.6s;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
  .sv-section-title {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .sv-service-card {
    padding: 30px 20px;
  }

  .sv-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
}
/* ================= SCROLL ANIMATION ================= */

.sv-service-card {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* When visible on scroll */
.sv-service-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}



/* ================= ABOUT SECTION ================= */

.sv-about-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

/* Tag */
.sv-section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F4B400;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Title */
.sv-about-title {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  color: #241E69;
  margin-bottom: 18px;
  line-height: 1.25;
}

.sv-about-title span {
  color: #F4B400;
}

/* Description */
.sv-about-desc {
  font-size: 15px;
  color: #4b5563;
  max-width: 600px;
}

/* ================= IMAGE ================= */

.sv-about-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.sv-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(36,30,105,0.25),
    rgba(36,30,105,0.1)
  );
}

/* ================= FEATURES ================= */

.sv-feature {
  display: flex;
  gap: 16px;
  background: rgba(36,30,105,0.06);
  border-radius: 18px;
  padding: 18px 20px;
  height: 100%;
  transition: all 0.4s ease;
}

.sv-feature:hover {
  transform: translateY(-6px);
  background: rgba(36,30,105,0.12);
  box-shadow: 0 18px 40px rgba(36,30,105,0.25);
}

/* Icon */
.sv-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #241E69, #2E28A3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(36,30,105,0.4);
  flex-shrink: 0;
}

/* Text */
.sv-feature h5 {
  font-size: 16px;
  font-weight: 600;
  color: #241E69;
  margin-bottom: 6px;
}

.sv-feature p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .sv-about-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .sv-about-section {
    padding: 70px 0;
  }

  .sv-about-title {
    font-size: 26px;
  }
}



/* ================= COUNTER SECTION ================= */


.sv-counter-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(36,30,105,0.92), rgba(15,12,60,0.92)),
    url("images/bg_3.jpg") center/cover no-repeat;
  z-index: -1;
}

/* Title */
.sv-counter-title {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.sv-counter-title span {
  color: #F4B400;
}

.sv-counter-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}

/* ================= VIDEO ================= */

.sv-video-box {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0,0,0,0.5);
}

.sv-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-video-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-video-btn span {
  width: 70px;
  height: 70px;
  background: #F4B400;
  color: #241E69;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(244,180,0,0.6);
  animation: pulse 2s infinite;
}

/* ================= COUNTERS ================= */

.sv-counter-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 35px 20px;
  transition: all 0.4s ease;
}
.sv-counter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.25),
    transparent 35%
  );
  opacity: 0.4;
  pointer-events: none;
}


.sv-counter-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.sv-counter-card:hover .sv-counter-icon svg {
  filter: drop-shadow(0 0 6px rgba(244,180,0,0.6));
}


.sv-counter-card strong {
  display: block;
  font-size: 40px;
  font-weight: 700;
}

.sv-counter-card span {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244,180,0,0.6); }
  70% { box-shadow: 0 0 0 25px rgba(244,180,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,180,0,0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .sv-counter-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .sv-counter-section {
    padding: 70px 0;
  }
}

/* ================= COUNTER SECTION (BRAND FIX) ================= */

.sv-counter-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #241E69 0%,
    #1d1858 100%
  );
  color: #ffffff;
}

/* Title */
.sv-counter-title {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #ffffff;
}

.sv-counter-title span {
  color: #F4B400;
}

.sv-counter-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}

/* ================= VIDEO ================= */

.sv-video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(36,30,105,0.45);
}

.sv-video-btn span {
  width: 68px;
  height: 68px;
  background: #F4B400;
  color: #241E69;
  font-size: 26px;
  border-radius: 50%;
}

/* ================= COUNTER CARDS ================= */

.sv-counter-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 32px 18px;
  transition: all 0.35s ease;
}

.sv-counter-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
}

/* ================= 3D GLASS ICON ================= */
/* ================= FINAL 3D ICON FIX ================= */
/* ================= COUNTER ICON – SVG OPTIMIZED ================= */

.sv-counter-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;

  /* Glass Base */
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.42),
    rgba(255,255,255,0.10)
  );

  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(20px);

  display: flex;
  align-items: center;
  justify-content: center;

  /* SVG Default Color */
  color: #241E69;

  /* Depth */
  box-shadow:
    inset 0 3px 4px rgba(255,255,255,0.75),
    inset 0 -4px 8px rgba(0,0,0,0.35),
    0 18px 40px rgba(0,0,0,0.55);

  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ================= SVG ICON ITSELF ================= */

.sv-counter-icon svg {
  width: 36px;
  height: 36px;

  stroke: currentColor;
  stroke-width: 1.9;

  stroke-linecap: round;
  stroke-linejoin: round;

  /* Extra clarity */
  filter: drop-shadow(0 1px 1px rgba(255,255,255,0.35));
}

/* ================= HOVER EFFECT ================= */

.sv-counter-card:hover .sv-counter-icon {
  color: #F4B400;
  transform: translateY(-6px) scale(1.12);

  box-shadow:
    inset 0 4px 6px rgba(255,255,255,0.85),
    inset 0 -4px 10px rgba(0,0,0,0.45),
    0 30px 65px rgba(244,180,0,0.6);
}

/* ================= NUMBERS & TEXT ================= */

.sv-counter-card strong {
  display: block;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
}

.sv-counter-card span {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .sv-counter-icon {
    width: 58px;
    height: 58px;
  }

  .sv-counter-icon svg {
    width: 32px;
    height: 32px;
  }
}




/* ================= FACILITIES SECTION ================= */

.facilities-section {
  background: #f8f9fc;
}

/* HEADING LINE */
.heading-line {
  width: 80px;
  height: 4px;
  background: #241e69;
  border-radius: 4px;
}

/* ================= FACILITY CARD ================= */

.facility-card {
  text-align: center;
  transition: transform 0.4s ease;
}

.facility-card:hover {
  transform: translateY(-6px);
}

/* IMAGE WRAPPER */
.facility-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(36,30,105,0.18);
}

/* IMAGE */
.facility-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================= OVERLAY (GLASS PLATE EFFECT) ================= */

.facility-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 100%;
  padding: 28px;

  background: linear-gradient(
    180deg,
    rgba(36,30,105,0.0) 0%,
    rgba(36,30,105,0.92) 80%,
    rgba(36,30,105,0.98) 100%
  );

  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;

  /* START HIDDEN */
  transform: translateY(100%);
  opacity: 0;

  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease;
}

/* OVERLAY TEXT */
.facility-overlay h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.facility-overlay p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ================= HOVER EFFECT ================= */

.facility-card:hover img {
  transform: scale(1.1);
}

.facility-card:hover .facility-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* ================= TITLE BELOW IMAGE ================= */

.facility-title {
  margin-top: 14px;
  font-weight: 700;
  font-size: 18px;
  color: #241e69;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .facility-image img {
    height: 240px;
  }
}

@media (max-width: 575px) {
  .facility-image img {
    height: 220px;
  }

  .facility-overlay {
    padding: 22px;
  }
}



/* ================= CHAIRMAN & PRINCIPAL SECTION ================= */

.sv-chairman-section,
.sv-principal-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(108,99,255,0.12), transparent 45%),
    linear-gradient(180deg, #f7f8ff 0%, #ffffff 100%);
}

/* ================= IMAGE BOX ================= */

.chairman-image-box,
.principal-image-box {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.chairman-image-box img,
.principal-image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.chairman-image-box:hover img,
.principal-image-box:hover img {
  transform: scale(1.05);
}

/* ================= BADGE ================= */

.chairman-badge,
.principal-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: linear-gradient(135deg, #6c63ff, #857cff);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(108,99,255,0.45);
  z-index: 2;
}

/* ================= MESSAGE BOX ================= */

.chairman-message-box,
.principal-message-box {
  position: relative;
  background: linear-gradient(
    135deg,
    #241e69 0%,
    #3b2fa1 100%
  );
  border-radius: 26px;
  padding: 50px 45px;
  color: #ffffff;
  box-shadow: 0 35px 80px rgba(36,30,105,0.45);
  overflow: hidden;
}

/* Glass highlight overlay */
.chairman-message-box::before,
.principal-message-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255,255,255,0.18),
    transparent 45%
  );
  pointer-events: none;
}

/* ================= TAG ================= */

.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #f4b400;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* ================= TITLE ================= */

.chairman-title,
.principal-title {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #ffffff;
}

.chairman-title span,
.principal-title span {
  color: #f4b400;
}

/* ================= TEXT ================= */

.chairman-text,
.principal-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

/* ================= SIGNATURE ================= */

.chairman-sign,
.principal-sign {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.chairman-sign h5,
.principal-sign h5 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #ffffff;
}

.chairman-sign span,
.principal-sign span {
  font-size: 14px;
  color: #f4b400;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .chairman-message-box,
  .principal-message-box {
    padding: 40px 30px;
  }

  .chairman-title,
  .principal-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .sv-chairman-section,
  .sv-principal-section {
    padding: 70px 0;
  }

  .chairman-title,
  .principal-title {
    font-size: 26px;
  }
}




/* ======================================================
   PREMIUM ABOUT PAGE & BREADCRUMB – FINAL VERSION
   Theme: Sant Vidya Niketan
====================================================== */

/* ================= PREMIUM BREADCRUMB ================= */

.sv-breadcrumb {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(244,180,0,0.25), transparent 45%),
    linear-gradient(135deg, #241e69 0%, #3b2fa1 100%);
  color: #ffffff;
}

/* Animated Background Layer */
.sv-breadcrumb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Floating Shapes */
.sv-breadcrumb-bg .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(2px);
  animation: floatMove 14s infinite alternate ease-in-out;
}

.shape-1 {
  width: 240px;
  height: 240px;
  background: #f4b400;
  top: -80px;
  left: -80px;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.85);
  bottom: -140px;
  right: -140px;
  animation-delay: 3s;
}

.shape-3 {
  width: 160px;
  height: 160px;
  background: #f4b400;
  top: 35%;
  right: 18%;
  animation-delay: 6s;
}

/* Floating Motion */
@keyframes floatMove {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,-50px) scale(1.1); }
}

/* Content Layer */
.sv-breadcrumb .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Breadcrumb Links */
.sv-breadcrumb .breadcrumb {
  background: transparent;
  justify-content: center;
  margin-bottom: 18px;
}

.sv-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  text-decoration: none;
}

.sv-breadcrumb .breadcrumb-item.active {
  color: #f4b400;
  font-weight: 600;
}

/* Title */
.breadcrumb-title {
  font-family: 'Cinzel', serif;
  font-size: 46px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.breadcrumb-title span {
  color: #f4b400;
}

/* Subtitle */
.breadcrumb-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  max-width: 700px;
  margin: 0 auto;
}

/* ================= SCROLL ANIMATION ================= */

/* ===============================
   ABOUT US PAGE STYLING
=============================== */

.about-us-section {
  background: #f8f9fa;
}

.about-us-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b5ed7;
}

.about-us-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* RIGHT INFO BOX */
.info-box {
  background: #ffffff;
  border-left: 5px solid #0b5ed7;
}

.info-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.info-box ul li {
  font-size: 15px;
  padding: 6px 0;
  color: #555;
}

/* MISSION & VISION BOX */
.mission-box,
.vision-box {
  background: #ffffff;
  height: 100%;
}

.mission-box h4,
.vision-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0b5ed7;
  margin-bottom: 10px;
}

.mission-box p,
.vision-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* SHADOW & RADIUS MATCH */
.shadow {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
}

.rounded {
  border-radius: 12px !important;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
  .about-us-section .section-title {
    font-size: 26px;
  }
}






/* CONTACT PAGE */
.contact-section {
  background: #f8f9fa;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b5ed7;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
}

/* CONTACT CARDS */
.sv-contact-card {
  background: #fff;
  text-align: center;
  padding: 35px 25px;
  border-radius: 18px;
  transition: 0.35s;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.sv-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11,94,215,0.2);
}

.sv-icon {
  width: 72px;
  height: 72px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg,#0b5ed7,#084298);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-icon i {
  font-size: 28px;
  color: #fff;
}

.sv-contact-card h5 {
  margin-top: 18px;
  font-weight: 600;
}

.sv-contact-card p {
  margin-top: 8px;
}

.sv-contact-card a {
  color: #0b5ed7;
  font-weight: 500;
  text-decoration: none;
}

/* MAP CARD */
.sv-map-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 100%;
}

.sv-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.map-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(11,94,215,0.95);
  color: #fff;
  padding: 20px 25px;
  border-radius: 14px;
}

.map-overlay h4 {
  margin: 0;
  font-size: 18px;
}

.map-overlay p {
  margin: 5px 0 10px;
  font-size: 14px;
}

.map-overlay a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

/* FORM */
.contact-form-box {
  background: #fff;
}

.form-control {
  border-radius: 10px;
  height: 46px;
}

textarea.form-control {
  height: auto;
}

.btn-primary {
  background: #0b5ed7;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
}



/* ===============================
   ADMISSION PAGE ULTRA PREMIUM
=============================== */

.admission-section {
  background: linear-gradient(135deg,#f4f7ff,#eef2ff);
}

.admission-title {
  font-size: 40px;
  font-weight: 800;
  color: #0b5ed7;
}

.admission-subtitle {
  font-size: 17px;
  color: #555;
}

/* PREMIUM CARD */
.premium-card {
  background: rgba(255,255,255,0.9);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.card-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  border-left: 6px solid #0b5ed7;
  padding-left: 15px;
}

/* AGE BOX */
.age-box {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 25px;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.age-box:hover {
  transform: translateY(-6px);
}

.age-box h5 {
  font-weight: 600;
}

.age-box p {
  font-size: 15px;
  color: #555;
}

/* DOCUMENT LIST */
.doc-list {
  list-style: none;
  padding-left: 0;
}

.doc-list li {
  padding: 10px 0 10px 35px;
  position: relative;
  font-weight: 500;
}

.doc-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b5ed7;
  font-weight: 700;
}

/* PROCESS FLOW */
.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
}

.process-step {
  background: linear-gradient(135deg,#0b5ed7,#084298);
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
}

.process-step span {
  font-size: 40px;
  font-weight: 800;
  opacity: .2;
  position: absolute;
  top: 15px;
  right: 20px;
}

.process-step h5 {
  font-weight: 600;
}

.process-step p {
  font-size: 14px;
  margin-top: 10px;
}

/* CTA BUTTON */
.btn-admission {
  background: linear-gradient(135deg,#0b5ed7,#084298);
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-admission:hover {
  color: #fff;
  box-shadow: 0 12px 30px rgba(11,94,215,.35);
}

/* MOBILE */
@media(max-width:768px){
  .admission-title {
    font-size: 30px;
  }
  .premium-card {
    padding: 25px;
  }
}








/* ================= FOOTER ================= */
/* ===================== FOOTER BASE ===================== */

.sv-footer {
  background:
    radial-gradient(1200px circle at top center, rgba(108,99,255,0.15), transparent 45%),
    linear-gradient(180deg, #181818 0%, #0f0f0f 100%);
  color: #d6d6d6;
  padding: 80px 0 25px;
  position: relative;
  overflow: hidden;
}

.sv-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

/* ===================== TITLES ===================== */

.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .3px;
}

/* ===================== TEXT ===================== */

.footer-text {
  font-size: 14px;
  line-height: 1.75;
  color: #bdbdbd;
}

/* ===================== CONTACT LIST ===================== */

.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  transition: all .35s cubic-bezier(.165,.84,.44,1);
}

.footer-contact li:hover {
  transform: translateX(8px);
  color: #ffffff;
}

/* ===================== SVG ICON WRAPPER ===================== */

.icon-svg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.25),
    0 12px 28px rgba(0,0,0,.45);
  transition: all .4s cubic-bezier(.165,.84,.44,1);
}

.icon-svg svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 1.8;
  fill: none;
}

/* CONTACT ICON COLORS */
.icon-svg.map {
  background: linear-gradient(135deg, #ff4d4d, #ff7a18);
}

.icon-svg.phone {
  background: linear-gradient(135deg, #00c853, #64dd17);
}

.icon-svg.email {
  background: linear-gradient(135deg, #2196f3, #21cbf3);
}

.footer-contact li:hover .icon-svg {
  transform: scale(1.12);
  box-shadow:
    0 18px 45px rgba(255,255,255,.25),
    0 0 0 6px rgba(255,255,255,.05);
}

/* ===================== QUICK LINKS ===================== */

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfcfcf;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  padding-left: 16px;
  transition: all .35s ease;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  opacity: 0;
  color: #6c63ff;
  transition: all .35s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 24px;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* ===================== APP BUTTONS ===================== */

.app-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.app-btn img {
  height: 44px;
  transition: all .45s cubic-bezier(.165,.84,.44,1);
  filter: grayscale(25%);
}

.app-btn img:hover {
  transform: translateY(-6px) scale(1.05);
  filter: grayscale(0%);
  box-shadow: 0 18px 45px rgba(0,0,0,.6);
}

/* ===================== TRUST BADGES ===================== */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-badges span {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #f4b400;
  transition: all .35s ease;
}

.trust-badges span:hover {
  background: linear-gradient(135deg,#f4b400,#ffcf40);
  color: #000;
  transform: translateY(-3px);
}

/* ===================== SUBSCRIBE ===================== */

.footer-subscribe {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-subscribe input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  outline: none;
  transition: all .35s ease;
}

.footer-subscribe input:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 0 4px rgba(108,99,255,.25);
}

.footer-subscribe button {
  background: linear-gradient(135deg,#6c63ff,#857cff);
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all .35s ease;
}

.footer-subscribe button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(108,99,255,.45);
}

/* ===================== SOCIAL ICONS ===================== */

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social .social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .4s cubic-bezier(.165,.84,.44,1);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.15),
    0 14px 35px rgba(0,0,0,.45);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

/* Social Gradients */
.social.facebook { background: linear-gradient(135deg,#1877f2,#42a5f5); }
.social.instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.social.twitter { background: linear-gradient(135deg,#1da1f2,#0d8ddb); }

.footer-social .social:hover {
  transform: translateY(-6px) scale(1.12);
  box-shadow:
    0 20px 55px rgba(255,255,255,.35),
    0 0 0 6px rgba(255,255,255,.08);
}

/* ===================== MAP ===================== */

.footer-map {
  margin: 45px 0 25px;
}

.footer-map iframe {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  border: none;
  filter: grayscale(100%) contrast(1.1);
  transition: all .45s ease;
}

.footer-map iframe:hover {
  filter: grayscale(0%);
}

/* ===================== BOTTOM ===================== */

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #9a9a9a;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ===================== WHATSAPP ===================== */

.whatsapp-sticky {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: linear-gradient(135deg,#25d366,#1ebe5d);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 18px 45px rgba(37,211,102,.55);
  z-index: 9999;
  animation: pulseWhats 2.5s infinite;
}

@keyframes pulseWhats {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
