:root {
  --primary-blue: #0098da;
  --green-dark: #1b5e20;
  --green-light: #4caf50;
  --accent-blue: #0288d1;
  --dark-blue: #0d47a1;
  --light-blue: #e3f2fd;
  --gold-accent: #fbc02d;
  --dark-text: #1e293b;
  --muted-text: #64748b;
  --bg-slate: #f8fafc;
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}


html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-slate);
  color: var(--dark-text);
  overflow-x: hidden;
  line-height: 1.6;
}

.social-links a {
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold-accent);
  color: var(--dark-blue);
  transform: translateY(-2px);
}

.school-selector select {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.school-selector select option {
  background: #0d47a1;
  color: white;
}

.logo-container img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
}

.quick-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-blue);
  padding: 8px 16px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-blue);
}

.quick-badge i {
  font-size: 20px;
  color: var(--accent-blue);
}

.badge-text span {
  display: block;
  font-size: 11px;
  color: var(--muted-text);
  text-transform: uppercase;
  font-weight: 600;
}

.badge-text strong {
  font-size: 13px;
  color: var(--dark-text);
}

/* --- NAVIGATION BAR --- */

/* --- MARQUEE NEWS TICKER --- */
.ticker-container {
  background: #0098da;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 13px;
}

.ticker-title {
  background: var(--gold-accent);
  color: #000;
  font-weight: 800;
  padding: 8px 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticker-text {
  padding: 8px 0;
  white-space: nowrap;
  width: 100%;
}

.ticker-text marquee {
  vertical-align: middle;
}

.ticker-text a {
  color: #e3f2fd;
  text-decoration: none;
  margin-right: 30px;
}

.ticker-text a:hover {
  text-decoration: underline;
  color: var(--gold-accent);
}

/* --- QUICK STATS OVERLAY --- */
.stats-container {
  position: relative;
  z-index: 100;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.stat-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: var(--light-blue);
  color: #0098da;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.stat-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: #e6610b;
  line-height: 1;
}

.stat-info p {
  font-size: 13px;
  color: var(--muted-text);
  font-weight: 600;
  margin-top: 4px;
}

/* --- SECTION HEADINGS --- */
.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-title span {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-text);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--gold-accent);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* --- LEADERSHIP / MESSAGES SECTION --- */
.leadership-section {
  padding: 80px 0;
  background: #ffffff;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.leader-card {
  background: var(--bg-slate);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}

.leader-header {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8fafc, #edf2f7);
  border-bottom: 2px solid var(--gold-accent);
  align-items: center;
}

.leader-img-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.leader-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.leader-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: var(--primary-blue);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid white;
}

.leader-meta h3 {
  font-size: 22px;
  color: var(--dark-text);
  font-weight: 700;
}

.leader-meta span {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.leader-meta p {
  font-size: 12px;
  color: var(--muted-text);
}

.leader-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-text {
  color: #334155;
  font-size: 14.5px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-blue);
  margin-bottom: 20px;
}

.btn-read-more {
  align-self: flex-start;
  color: var(--primary-blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-read-more:hover {
  color: var(--green-dark);
  gap: 10px;
}

/* transperent */

/* --- RESET & OVERLAY POSITIONING --- */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: transparent !important;
  backdrop-filter: blur(3px);
}

/* Base style for Top Bar & Sticky Nav */
.top-bar,
.sticky-nav {
  background-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  transition: all 0.4s ease-in-out;
}

/* --- TEXT & LINK CONTRAST (Transparent State) --- */
.top-bar,
.sticky-nav .nav-link,
.sticky-nav .navbar-brand {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); /* Light/Dark backgrounds par text clear dikhne ke liye */
}

.sticky-nav .nav-link:hover {
  color: #f39c12 !important; /* Hover Highlight Color */
}

/* --- SCROLLED / STICKY STATE --- */
/* Jab JS 'scrolled' class add karega tab header dark/solid ho jaayega */
.sticky-nav.scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  background-color: #111111 !important; /* Yahan solid background color set karein (e.g. #ffffff for white) */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Dynamic text adjust on scroll (agar white navbar use kar rahe ho toh text dark kar lein) */
.sticky-nav.scrolled .nav-link,
.sticky-nav.scrolled .navbar-brand {
  text-shadow: none;
}

/* --- GALLERY WITH ZOOM LIGHTBOX --- */
.gallery-section {
  padding: 80px 0;
  background: #ffffff;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: #e16909;
  color: white;
  border-color: #e16909;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 230px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 71, 161, 0.8), transparent);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 45px;
  height: 45px;
  background: white;
  color: var(--dark-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.gallery-item:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* ZOOM LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrapper {
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 75vh;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  transition: transform 0.25s ease-out;
  transform-origin: center;
}

.lightbox-controls {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 30px;
}

.lightbox-btn {
  color: white;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--gold-accent);
}

.close-lightbox {
  position: absolute;
  top: -45px;
  right: 0;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.lightbox-caption {
  color: #e2e8f0;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

/* --- FOOTER --- */
footer {
  background: #0098da;
  color: #cbd5e1;
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 2px;
}

.footer-col p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--gold-accent);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 13.5px;
  color: #ffffff;
}

.footer-contact-item i {
  color: var(--gold-accent);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #ffffff;
}

.reg-form {
  position: fixed;
  top: 35%;
  left: -1px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-custom-side {
  background: linear-gradient(to right, #333 50%, #0098da 50%);
  background-size: 250% 250%;
  background-position: right bottom;
  transition: 0.5s ease-out;
  color: #fff;
  border: none;
  border-radius: 0.125rem;
}

.cta-btn-ody {
  border-radius: 0px 30px 30px 0px !important;
  padding: 6px 15px;
  font-weight: 600;
  border: 1px solid #fff !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #fff;
  background-size: 600% 600%;
  animation: ctaGradient 12s ease infinite;
}

.btn-primary-custom {
  background: var(--primary-blue);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.btn-primary-custom:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-3px);
}

.btn-secondary-custom:hover {
  background: #ffffff;
  color: var(--dark-blue);
  transform: translateY(-3px);
}

.cta-btn-ody2 {
  top: 155px;
}

@keyframes ctaGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.cta-btn-ody:hover {
  filter: brightness(1.1);
  background: #ffffff !important;
  color: #0098da !important;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid #0098da !important;
}

@media (max-width: 768px) {
  .cta-btn-ody {
    top: 13%;
    padding: 2px 10px;
  }

  .cta-btn-ody2 {
    top: 17%;
  }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
  .navbar-nav .nav-link {
    padding: 6px 15px !important;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
}

@media (max-width: 768px) {
  .leader-header {
    flex-direction: column;
    text-align: center;
  }

  .dropdown-menu {
    border-top: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  background: linear-gradient(to right, #333 50%, #0098da 50%);
  background-size: 250% 250%;
  background-position: right bottom;
  transition: 0.5s ease-out;
  color: #fff;
  border: none;
  border-radius: 0.125rem;
}

/* SLIDER CONTAINER STYLES */
.school-hero-slider {
  position: relative;
  width: 100%;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.school-hero-slider .carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}
.carousel-item video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Video ko crop karke completely fill karega bina stretch kiye */
  z-index: 1;
}

.school-hero-slider .carousel-item.active {
  animation: smoothZoom 6s infinite alternate linear;
}

@keyframes smoothZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

.school-hero-slider .carousel-control-prev,
.school-hero-slider .carousel-control-next {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.school-hero-slider .carousel-control-prev {
  left: 24px;
}

.school-hero-slider .carousel-control-next {
  right: 24px;
}

.school-hero-slider .carousel-control-prev:hover,
.school-hero-slider .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #0099e5;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.school-hero-slider .carousel-control-prev-icon,
.school-hero-slider .carousel-control-next-icon {
  filter: invert(1) grayscale(100%);
  width: 20px;
  height: 20px;
}

.school-hero-slider .carousel-control-prev:hover .carousel-control-prev-icon,
.school-hero-slider .carousel-control-next:hover .carousel-control-next-icon {
  filter: none;
}

.school-hero-slider .carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
  gap: 8px;
}

.school-hero-slider .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  opacity: 0.7;
}

.school-hero-slider .carousel-indicators .active {
  width: 36px;
  border-radius: 20px;
  background-color: #0099e5;
  opacity: 1;
  border-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 153, 229, 0.4);
}

@media (max-width: 991px) {
  .school-hero-slider .carousel-item {
    height: 420px;
  }

  .school-hero-slider .carousel-control-prev,
  .school-hero-slider .carousel-control-next {
    width: 42px;
    height: 42px;
  }

  .school-hero-slider .carousel-control-prev {
    left: 12px;
  }

  .school-hero-slider .carousel-control-next {
    right: 12px;
  }
  .top-links {
    display: none;
  }
}

@media (max-width: 576px) {
  .school-hero-slider {
    border-radius: 0 0 16px 16px;
  }

  .school-hero-slider .carousel-item {
    height: 260px;
  }
}

.mediaLeftBox {
  position: fixed;
  top: 40%;
  transform: translateY(-50%);
  z-index: 9;
  right: 0;
}

.mediaLeftBox a {
  text-decoration: none;
  width: 52px;
  display: block;
}

.mediaLeftBox a .flex-container {
  position: relative;
  padding: 0;
  margin: 5px 0 0 0;
  list-style: none;
  display: flex;
  height: 40px;
  width: 134px;
  justify-content: left;
  left: 7px;
  transition: left 1s;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  padding: 5px;
  border-radius: 6px 0 0 6px;
}

.mediaLeftBox a .flex-container .flex-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

ul.flex-container li:first-child {
  margin-right: 5px;
  width: 38px;
}

.mediaLeftBox a .flex-container i,
.lng .flex-item i {
  font-size: 17px;
  line-height: normal;
}

.mediaLeftBox a .flex-container i img {
  filter: brightness(11);
}

.mediaLeftBox a .flex-container .flex-item small {
  color: #fff;
  line-height: 19px;
  font-size: 15px;
  font-weight: 400;
}

.mediaLeftBox a .flex-container:hover {
  left: -85px;
  background: #002359;
}

.bg-blue {
  --bs-bg-opacity: 1;
  background-color: #3097d3 !important;
}

.bg-red {
  background-color: #ff0000;
}

.bg-twitter {
  background-color: #00bcd4;
}


.float-right {
  float: right !important;
}

.wd-max-500 {
  max-width: 500px;
}

.border-gray {
  border: 1px solid #b3b3b3;
}

/* --- HERO SLIDER (MANUAL CONTROL ONLY) --- */
.school-hero-slider {
  position: relative;
  width: 100%;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.school-hero-slider .carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  background-size: cover;
  background-position: center;
}

.school-hero-slider .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

.carousel-item video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.school-hero-slider .carousel-control-prev,
.school-hero-slider .carousel-control-next {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  z-index: 5;
  transition: all 0.3s ease;
}

.school-hero-slider .carousel-control-prev:hover,
.school-hero-slider .carousel-control-next:hover {
  background: #0098da;
  color: #fff;
}

.school-hero-slider .carousel-control-prev {
  left: 24px;
}
.school-hero-slider .carousel-control-next {
  right: 24px;
}

.school-hero-slider .carousel-indicators {
  bottom: 25px;
  z-index: 5;
}

/* --- HERO SLIDER TEXT STYLING --- */
.carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3; /* Overlay gradient ke upar rakhne ke liye */
  padding: 0;
}

.hero-text-box {
  padding: 40px;
  border-radius: 20px;
  animation: fadeInUp 1s ease-out forwards;
}
.hero-text-box .dev {
  font-size: 18px;
}
.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.text-highlight {
  color: #0098da;
  background: linear-gradient(120deg, #0098da, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  max-width: 90%;
}

.school-hero-slider .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 24%);
  z-index: 2;
}
/* Text Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-text-box {
    padding: 20px;
    margin: 0 15px;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
}

/* --- SIDEBARS & FLOATING BUTTONS --- */
.reg-form {
  position: fixed;
  top: 70%;
  left: -1px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-custom-side {
  background: linear-gradient(to right, #333 50%, #0098da 50%);
  background-size: 250% 250%;
  background-position: right bottom;
  transition: 0.5s ease-out;
  color: #fff;
  border: none;
  border-radius: 0.125rem;
}

.cta-btn-ody {
  border-radius: 0px 30px 30px 0px !important;
  padding: 6px 15px;
  font-weight: 600;
  border: 1px solid #fff !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #fff;
  background-size: 600% 600%;
  animation: ctaGradient 12s ease infinite;
}

@keyframes ctaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.mediaLeftBox {
  position: fixed;
  top: 30%;
  transform: translateY(-50%);
  z-index: 9;
  right: 0;
}

.mediaLeftBox a {
  text-decoration: none;
  width: 52px;
  display: block;
}

.mediaLeftBox a .flex-container {
  position: relative;
  padding: 5px;
  margin: 5px 0 0 0;
  list-style: none;
  display: flex;
  height: 40px;
  width: 134px;
  justify-content: left;
  left: 7px;
  transition: left 1s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 6px 0 0 6px;
}

.mediaLeftBox a .flex-container .flex-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

ul.flex-container li:first-child {
  margin-right: 5px;
  width: 38px;
}

.mediaLeftBox a .flex-container .flex-item small {
  color: #fff;
  font-size: 15px;
}

.mediaLeftBox a .flex-container:hover {
  left: -85px;
  background: #002359;
}

.bg-blue {
  background-color: #3097d3 !important;
}
.bg-red {
  background-color: #ff0000;
}
.bg-twitter {
  background-color: #00bcd4;
}

/* --- PAGE SECTIONS --- */
.ticker-section {
  background: #002359;
  color: white;
  padding: 12px 0;
}
.ticker-title {
  background: #fbc02d;
  color: #000;
  padding: 4px 12px;
  font-weight: 700;
  border-radius: 4px;
}

.notice-section {
  padding: 60px 0;
  background: #fff;
}
.notice-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 25px;
  border-top: 4px solid #0098da;
  height: 100%;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}
.notice-list {
  list-style: none;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}
.notice-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #cbd5e1;
  display: flex;
  gap: 10px;
}

.about-section {
  padding: 80px 0;
  background: #f8fafc;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image-stack {
  position: relative;
}
.about-image-stack img.main-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #0d47a1;
  color: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}
.experience-badge h4 {
  font-size: 32px;
  font-weight: 800;
  color: #fbc02d;
  margin: 0;
}
.btn-primary-custom {
  background: #0098da;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.message-section {
  padding: 80px 0;
  background: #fff;
}
.msg-card {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #f8fafc;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}
.msg-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0098da;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px;
  border-right: 1px solid #e2e8f0;
}
.stat-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: #e6610b33;
  color: #e6610b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-title span {
     display: inline-block;
    padding: 8px 20px;
    background: #fff7ed;
    border: 1px solid rgba(234, 88, 12, 0.25);
    border-radius: 100px;
    color: #ea580c;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;    
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.gallery-section {
  padding: 80px 0;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

.testimonials-section {
  padding: 80px 0;
  background: #f8fafc;
}
.testi-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

footer {
  background: #0098da;
  color: #cbd5e1;
  padding: 70px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col p,
.footer-col ul li a,
.footer-contact-item {
  color: #ffffff;
  font-size: 13.5px;
  text-decoration: none;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  font-size: 13px;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .msg-card {
    flex-direction: column;
    text-align: center;
  }
  .experience-badge {
    right: 0;
  }
}

/* Header And Navbar Css start  */
#mainHeader {

  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;  
  box-shadow: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
}

/* TOP BAR TRANSPARENCY */
.top-links {
  height: 41px;
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  border-radius: 0 0 0 15px;
  transition: background 0.4s ease;
}

.live-clock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.logo-img {
  max-height: 70px;
  object-fit: contain;
}

/* NAVBAR LINKS FOR TRANSPARENT BACKGROUND */
#mainHeader .navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px !important;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

#hd-id {
    background: #fff;
    position: fixed !important;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
  
}
#hd-id .top-links {    
    background: #0098da;
    border-radius: 0;
}
#hd-id .top-links:after {
    position: relative;
    content: '';
    left: -50px;
    top: 0;
    border-style: solid;
    border-color: #0098da transparent #00f;
    border-width: 50px 0 0 50px;
}
#hd-id .login-btn {
        background: #0098da17;
    color: #0098da;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 12px;
    transition: all 0.2s ease;
}
.navbar-nav .nav-link {
  color: #000; /* Dark text se White main shift kiya readable rakhne ke liye */
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px !important;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: #ffc107 !important;
  background-color: rgba(255, 255, 255, 0.2); /* Glass effect hover */
}

/* DESKTOP MEGA MENU DROPDOWN */
.has-mega-menu {
  position: relative;
}

.vertical-mega-menu {
  position: absolute;
  top: 100%;
  left: -400px;
  width: 780px;
  /* height: 240px; */
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 15px 30px -8px rgba(15, 23, 42, 0.12);
  display: flex;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  margin-top: 4px;
}

/* Desktop Hover Trigger */
@media (min-width: 992px) {
  .has-mega-menu:hover .vertical-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* LEFT SIDEBAR LINKS */
.menu-sidebar {
  width: 30%;
  background: #f8fafc;
  padding: 8px;
  border-right: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  border-right: 3px solid #0098da;
}

.menu-btn {
  width: 100%;
  padding: 7px 10px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #475569;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.menu-btn:hover {
  background: #ffffff;
  color: #0f172a;
}

.menu-btn.active {
  background: #ffffff;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.1);
}

.menu-btn i {
  font-size: 10px;
  opacity: 0;
  transition: all 0.2s ease;
}

.menu-btn:hover i,
.menu-btn.active i {
  opacity: 1;
}

/* RIGHT PREVIEW DISPLAY BOX */
.menu-preview-box {
  width: 70%;
  padding: 16px 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
}

.preview-panel {
  display: none;
  width: 100%;
  animation: fadeIn 0.25s ease;
}

.preview-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
  align-items: center;
}

.preview-text h3 {
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.preview-text p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.btn-learn-more {
  background: #0284c7;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.2);
  transition: all 0.2s ease;
}

.btn-learn-more:hover {
  background: #0369a1;
  color: #ffffff;
  transform: translateY(-1px);
}

.preview-illustration {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
}

.preview-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll Behavior Settings */
#mainHeader {
  position: fixed !important; /* Absolute se Fixed me switch kiya layout freeze rakhne ke liye */
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Scrolled State (Scroll hone ke baad ye style active hogi) */
#mainHeader.scrolled {
  background: #ffffff !important; /* Solid Light/White Background */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(8px);
}

/* Scrolled State me Links aur Text ka Color Dark karne ke liye */
#mainHeader.scrolled .navbar-nav .nav-link {
  color: #0f172a !important; /* Light text se dark text for readability */
}

#mainHeader.scrolled .navbar-nav .nav-link:hover,
#mainHeader.scrolled .navbar-nav .nav-item.active .nav-link {
  color: #0284c7 !important;
  background-color: rgba(2, 132, 199, 0.1) !important;
}

#mainHeader.scrolled .top-links a,
#mainHeader.scrolled .top-links span {
  color: #334155 !important;
}

#mainHeader.scrolled .live-clock {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #0f172a !important;
}
.scrolled .login-btn
{
      color: #000;
    border: 1px solid #ddd;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 991px) {
  .vertical-mega-menu {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    flex-direction: column;
    border: none;
    display: none;
    background: #f8fafc;
    border-radius: 8px;
    margin-top: 6px;
    padding: 6px;
  }

  .has-mega-menu.open .vertical-mega-menu {
    display: flex;
  }

  .menu-sidebar {
    width: 100%;
    background: transparent;
    border-right: none;
    padding: 0;
  }

  .menu-preview-box {
    display: none;
  }

  .menu-btn {
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
  }

  .menu-btn i {
    opacity: 1;
  }

  .navbar-nav .nav-link {
    color: #334155; /* Mobile drawer mein readable dark color */
  }
}

/* Abouts us section css  */

.glass-bento-card {
  background: rgb(4 101 168 / 9%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  will-change: transform;
}

.glass-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(13, 110, 253, 0.15);
}

/* Main Dark Bento Card */
.main-story-card {
  background: linear-gradient(135deg, #0381cb 0%, #0461a3 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(3, 129, 203, 0.25);
}

.main-story-card .card-tag {
  color: #d4e6ff;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Paragraph Formatting */
.main-story-card p {
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Dynamic Image Auto-Fit Formatting */
.auto-fit-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
}

/* Continuous Floating Badge Animation */
.floating-badge {
  animation: floatSlow 5s ease-in-out infinite 1.2s; /* Page load ke 1.2s baad start hogi */
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.12));
  will-change: transform;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.5deg);
  }
}

/* Pulse Ring Effect Behind Emblem */
.pulse-ring {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: rgba(13, 110, 253, 0.12);
  border-radius: 50%;
  animation: pulseGlow 3s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.scroll-reveal-bottom {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.8s ease-out 0.2s,
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s; /* 0.2s delay for staggered effect */
  will-change: opacity, transform;
}

/* Active State (Triggers on Scroll) */
.scroll-reveal-left.revealed,
.scroll-reveal-bottom.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Section Background & Glows *******************************/
.awards-luxury-section {
  background: #0f172a; /* Rich Dark Theme for Ultra Luxury Look */
  color: #fff;
  isolation: isolate;
}

.award-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}
.glow-gold {
  top: -20%;
  right: -10%;
  background: #f59e0b;
}
.glow-blue {
  bottom: -20%;
  left: -10%;
  background: #3b82f6;
}

/* Text & Typography */
.luxury-eyebrow {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fef08a 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Partner Badges */
.partner-badge {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.partner-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}
.partner-icon-gold {
  color: #f59e0b;
}

/* 3D Glass Award Cards */
.award-card-wrapper {
  perspective: 1000px;
  height: 100%;
}

.award-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 400px;
}

.award-card:hover {
  transform: translateY(-12px) rotateX(3deg);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 30px 60px rgba(245, 158, 11, 0.25);
}

.award-img-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.award-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.award-card:hover .award-img {
  transform: scale(1.12);
}

.award-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.98) 0%,
    rgba(15, 23, 42, 0.4) 60%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.award-card:hover .award-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.98) 0%,
    rgba(15, 23, 42, 0.75) 60%,
    rgba(15, 23, 42, 0.2) 100%
  );
}

/* Card Content & Badge */
.award-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transition: transform 0.4s ease;
}

.badge-icon {
  width: 38px;
  height: 38px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid #f59e0b;
  color: #fbbf24;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.award-card:hover .badge-icon {
  background: #f59e0b;
  color: #0f172a;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

.award-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fbbf24;
  margin-bottom: 4px;
}

.award-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gold-line {
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, transparent);
  border-radius: 2px;
  transition: width 0.4s ease;
  margin-bottom: 8px;
}

.award-card:hover .gold-line {
  width: 65px;
}

/* ==========================================
   HOVER REVEAL ADDON STYLES (NEW)
========================================== */
.hover-reveal-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0.4s ease 0.1s;
}

.award-card:hover .hover-reveal-content {
  max-height: 90px; /* Expands smoothly on hover */
  opacity: 1;
}

.award-desc {
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.award-link {
  color: #fef08a;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: gap 0.3s ease, color 0.3s ease;
}

.award-link:hover {
  color: #ffffff;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
========================================== */

.scroll-reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal-card {
  opacity: 0;
  transform: translateY(60px) scale(0.92);
  transition: opacity 0.8s ease var(--delay),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) var(--delay);
}

.scroll-reveal-up.revealed,
.scroll-reveal-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Manager Message Css Start  */

/* Base Section Setup */
.manager-editorial-section {
  background: #fff;
  isolation: isolate;
  padding: 60px 0;
}

/* Luxury Background Glow Orbs */
.editorial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}
.glow-top-left {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -10%;
  background: #0098da6b;
}
.glow-bottom-right {
  width: 450px;
  height: 450px;
  bottom: -15%;
  right: -5%;
  background: #0098da6b;
}

/* Left Column: Architectural Photo Box */
.portrait-editorial-wrapper {
  position: relative;
  padding: 20px 20px 20px 0;
}

.portrait-backdrop-shape {
  position: absolute;
  top: 0;
  left: -20px;
  right: 40px;
  bottom: 0;
  background: linear-gradient(135deg, #0098da36 0%, #0098da 100%);
  border-radius: 30px;
  transform: rotate(-3deg);
  opacity: 0.35;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portrait-editorial-wrapper:hover .portrait-backdrop-shape {
  transform: rotate(0deg) scale(1.02);
}

.portrait-frame {
  position: relative;
  height: 440px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  background: #cbd5e1;
  z-index: 2;
}

.editorial-img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portrait-editorial-wrapper:hover .editorial-img {
  transform: scale(1.08);
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(15, 23, 42, 0.4) 100%
  );
}

/* Floating Badge */
.editorial-floating-badge {
  position: absolute;
  bottom: -10px;
  right: 0px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 12px 20px;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.4s ease;
}

.portrait-editorial-wrapper:hover .editorial-floating-badge {
  transform: translateY(-5px);
}

.badge-icon-gold {
  width: 36px;
  height: 36px;
  background: #0098da33;
  color: #0098da;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Right Column: Text & Editorial Content */
.editorial-content-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  z-index: 2;
}

.quote-giant-mark {
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 10rem;
  font-family: Georgia, serif;
  color: rgb(210 237 248 / 48%);
  line-height: 1;
  pointer-events: none;
}

.editorial-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgb(229 96 10 / 39%);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color:#e5600a;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #e5600a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(20, 6, 217, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(217, 119, 6, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
  }
}

.editorial-heading {
  color: #0f172a;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 40px;
}

.luxe-gold-text {
  background: #e5600a;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.editorial-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e5600a, #fef3c7);
  border-radius: 10px;
}

.editorial-quote-body {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
}

.author-avatar-mini {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f172a;
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.author-name {
  font-weight: 800;
  font-size: 0.95rem;
}
.author-role {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Scroll Animations (Re-triggerable) */
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease var(--delay, 0s),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) var(--delay, 0s);
}

.scroll-reveal-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease var(--delay, 0s),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) var(--delay, 0s);
}

.scroll-reveal-left.revealed,
.scroll-reveal-bottom.revealed {
  opacity: 1;
  transform: translate(0);
}

/* why choose use section css start  */

/* Section & Canvas Setup */
.wcu-dashboard-section {
  background: #fff;
  isolation: isolate;
  padding: 90px 0;
}

/* Ambient Flares with Primary Accent */
.wcu-flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}
.flare-1 {
  width: 600px;
  height: 600px;
  top: -15%;
  left: -5%;
  background: #0098da;
}
.flare-2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: -5%;
  background: #e2e8f0;
}

/* Left Dark Anchor Pillar */
.wcu-dark-pillar {
  background: linear-gradient(145deg, #0b1329 0%, #1e293b 100%);
  border-radius: 36px;
  padding: 48px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 152, 218, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wcu-dark-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(0, 152, 218, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.pillar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 152, 218, 0.15);
  border: 1px solid rgba(0, 152, 218, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
}

.pillar-heading {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}

.pillar-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Primary Gradient Text */
.primary-gradient-text {
  background: linear-gradient(135deg, #0098da 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Central Image Frame */
.wcu-arch-frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
  border: 4px solid #ffffff;
}

.wcu-arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wcu-arch-frame:hover .wcu-arch-img {
  transform: scale(1.08);
}

.wcu-arch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(11, 19, 41, 0.8) 100%
  );
}

.wcu-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

/* Light Floating Feature Cards */
.wcu-feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 28px;
  padding: 30px;

  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.wcu-feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0098da, #38bdf8);
  transition: width 0.5s ease;
}

.wcu-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -10px rgba(0, 152, 218, 0.15);
}

.wcu-feature-card:hover::after {
  width: 100%;
}

.card-num {
  font-size: 0.85rem;
  font-weight: 900;
  color: #cbd5e1;
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

.wcu-feature-card:hover .card-num {
  color: #0098da;
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
     background: rgb(230 97 11 / 20%);
    border: 1px solid rgb(230 97 11 / 30%);
    color: #e6610b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.6s ease;
}

.wcu-feature-card:hover .card-icon-box {
  transform: scale(1.1) rotate(-8deg);
  background: #0098da;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 152, 218, 0.3);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.card-text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* SLOW MOTION ANIMATIONS */
.slow-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) var(--delay, 0s),
    transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) var(--delay, 0s);
}

.slow-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) var(--delay, 0s),
    transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) var(--delay, 0s);
}

.slow-reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) var(--delay, 0s),
    transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) var(--delay, 0s);
}

.slow-reveal-left.revealed,
.slow-reveal-right.revealed,
.slow-reveal-up.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* 4 items in single section  */
/* Section & Soft Light Ambient Setup */
.hud-stage-section {
  background: #caeaff;
  color: #0f172a;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Ambient Flares in Soft Light Primary Tint */
.hud-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 750px;
  background: radial-gradient(
    circle,
    rgba(0, 152, 218, 0.15) 0%,
    rgba(240, 249, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* Main Cockpit Glass Container - Light Theme */
.hud-cockpit-frame {
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  z-index: 2;
}

/* Primary Accent Text Gradient */
.hud-gradient-text {
  background: linear-gradient(135deg, #0098da 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================
   SCROLL-TRIGGERED SLOW ANIMATION LOGIC (RE-TRIGGERABLE)
   ========================================================== */
@keyframes hudSlowFadeUp {
  0% {
    opacity: 0;
    transform: translateY(45px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Default state: Elements hidden before scrolling */
.hud-stage-section .hud-pill,
.hud-stage-section .hud-title,
.hud-stage-section .hud-para,
.hud-stage-section .btn-hud-primary,
.hud-stage-section .btn-hud-secondary,
.hud-stage-section .hud-slider-box,
.hud-stage-section .hud-video-box {
  opacity: 0;
  transform: translateY(45px);
}

/* Triggered State: Runs animation when JS adds 'in-view' class */
.hud-stage-section.in-view .hud-pill {
  animation: hudSlowFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hud-stage-section.in-view .hud-title {
  animation: hudSlowFadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hud-stage-section.in-view .hud-para {
  animation: hudSlowFadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hud-stage-section.in-view .btn-hud-primary,
.hud-stage-section.in-view .btn-hud-secondary {
  animation: hudSlowFadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hud-stage-section.in-view .hud-slider-box,
.hud-stage-section.in-view .hud-video-box {
  animation: hudSlowFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Light Theme Pill Badge */
.hud-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 152, 218, 0.1);
  border: 1px solid rgba(0, 152, 218, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0098da;
}

/* 1. CONTINUOUS SIDE-BY-SIDE INFINITE SLIDER */
.hud-slider-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 340px;
  border: 3px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 152, 218, 0.1);
  background: #ffffff;
}

.ticker-track {
  display: flex;
  width: calc(260px * 8);
  animation: continuousScroll 16s linear infinite;
  height: 100%;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-slide {
  width: 260px;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  padding: 6px;
}

.hud-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.hud-slider-overlay {
  position: absolute;
  inset: 6px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(9, 13, 22, 0.75) 100%
  );
}

@keyframes continuousScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-260px * 4));
  }
}

/* 2. DIRECT INLINE YOUTUBE VIDEO CONTAINER */
.hud-video-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 340px;
  border: 3px solid #ffffff;
  background: #000;
  box-shadow: 0 15px 35px rgba(0, 152, 218, 0.1);
}

.hud-inline-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Headings & Text Styling */
.hud-title {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}

.hud-para {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Light Theme Buttons */
.btn-hud-primary {
  background: #0098da;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 152, 218, 0.3);
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
}

.btn-hud-primary:hover {
  background: #0084c0;
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(0, 152, 218, 0.45);
  transform: translateY(-2px);
}

.btn-hud-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
  text-decoration: none;
}

.btn-hud-secondary:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Light Separator Divider */
.hud-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 152, 218, 0.25),
    transparent
  );
  margin: 40px 0;
}

/* prayesr section css start  */

/* Modern Premium Canvas */
.split-deck-section {
  background: radial-gradient(circle at 50% 0%, #fffbf5 0%, #f4efe6 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.split-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 750px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 6, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

/* Section Title */
.split-title {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  color: #0f172a;
  margin-bottom: 40px;
}

.split-title span {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Scroll Trigger Animation Setup */
.split-deck-section .animate-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-deck-section.in-view .animate-card {
  opacity: 1;
  transform: translateY(0);
}

/* Main Combined Card Container */
.split-card-wrapper {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 30px 60px -15px rgba(180, 83, 9, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.2);
  overflow: hidden;
  position: relative;
}

/* LEFT: Image Stage */
.split-image-box {
  position: relative;
  height: 550px;
  background: #000;
  overflow: hidden;
}

.split-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.split-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* RIGHT: Text Reader Stage */
.split-text-box {
  padding: 40px 35px 25px 40px;
  height: 550px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
}

/* Dynamic Slide Header */
.prayer-title-wrapper {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px dashed rgba(217, 119, 6, 0.2);
  text-align: center;
}

.prayer-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.prayer-main-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #15803d;
  margin-top: 4px;
}

.prayer-subtext {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 4px;
  font-style: italic;
}

/* Text Scroll Area */
.prayer-scroll-viewport {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 15px;
}

.prayer-scroll-viewport::-webkit-scrollbar {
  width: 5px;
}

.prayer-scroll-viewport::-webkit-scrollbar-track {
  background: #fef3c7;
  border-radius: 10px;
}

.prayer-scroll-viewport::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d97706 0%, #ea580c 100%);
  border-radius: 10px;
}

/* Verse Content Panels */
.slide-content-panel {
  display: none;
  animation: fadeInVerse 0.5s ease forwards;
}

.slide-content-panel.active {
  display: block;
}

.verse-block {
  text-align: center;
  margin-bottom: 20px;
}

.verse-lines {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 600;
  color: #1e293b;
}

.verse-paragraph {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #334155;
  text-align: justify;
  margin-bottom: 16px;
}

@keyframes fadeInVerse {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Controls Bar at Bottom */
.split-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.split-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(217, 119, 6, 0.3);
  background: #fff7ed;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.split-nav-btn:hover {
  background: #ea580c;
  color: #ffffff;
  transform: scale(1.05);
}

.split-dots {
  display: flex;
  gap: 6px;
}

.split-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.split-dot.active {
  width: 26px;
  border-radius: 10px;
  background: #ea580c;
}


/* Modern Premium Canvas */
.leaders-section {
  background: radial-gradient(circle at 50% 0%, #0f172a 0%, #020617 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Background Ambient Lighting Glows */
.ambient-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.ambient-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

/* Section Header Styles */
.leaders-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.leader-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 100px;
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.leaders-title {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.leaders-title span {
  background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.leaders-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Leaders Grid & Scroll Animation Setup */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.leader-card-wrapper {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.leaders-section.in-view .leader-card-wrapper {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delay for Animation on Scroll */
.leaders-section.in-view .leader-card-wrapper:nth-child(1) { transition-delay: 0.1s; }
.leaders-section.in-view .leader-card-wrapper:nth-child(2) { transition-delay: 0.25s; }
.leaders-section.in-view .leader-card-wrapper:nth-child(3) { transition-delay: 0.4s; }
.leaders-section.in-view .leader-card-wrapper:nth-child(4) { transition-delay: 0.55s; }

/* Leader Card Glassmorphism Design */
.leader-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-card:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 40px -15px rgba(234, 88, 12, 0.25);
}

/* Image Stage & Hover Zoom */
.leader-img-box {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #0f172a;
}

.leader-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-card:hover .leader-img-box img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Floating Overlay Badge */
.leader-role-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f97316;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Card Content Details */
.leader-content {
  padding: 24px;
}

.leader-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.leader-card:hover .leader-name {
  color: #fbbf24;
}

.leader-bio {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Social Links Bar */
.leader-socials {
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #f97316;
  border-color: #f97316;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Modern Premium Light Section */
.testimonials-section {
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f8fafc 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #0f172a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Background Soft Glow Effects */
.testimonial-glow-1 {
  position: absolute;
  top: -10%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.testimonial-glow-2 {
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

/* Section Header Styles */
.testimonial-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.testimonial-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #fff7ed;
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: 100px;
  color: #ea580c;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.testimonial-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}

.testimonial-title span {
  background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

/* Carousel Outer Track & Scroll Animation Setup */
.testimonial-carousel-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-section.in-view .testimonial-carousel-container {
  opacity: 1;
  transform: translateY(0);
}

/* Track Viewport */
.testimonial-viewport {
  overflow: hidden;
  border-radius: 28px;
  padding: 15px 10px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Slide Layout */
.testimonial-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Testimonial Light Card Design */
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 88, 12, 0.3);
  box-shadow: 0 20px 40px -15px rgba(234, 88, 12, 0.15);
}

/* Decorative Watermark Quote Icon */
.quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.8rem;
  color: #ffedd5;
  pointer-events: none;
}

/* Card Content Details */
.star-rating {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* User Profile Row */
.user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.user-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ea580c;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.15);
}

.user-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.user-role {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 2px;
}

/* Bottom Controls & Pagination */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(234, 88, 12, 0.25);
  background: #ffffff;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: #ea580c;
  color: #ffffff;
  transform: scale(1.08);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 28px;
  border-radius: 10px;
  background: #ea580c;
}


/* Section Base */
.contact-split-section {
  background: #f8fafc;
  padding: 80px 0;
  position: relative;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}

/* Container & Grid */
.contact-split-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .contact-split-grid {
    grid-template-columns: 1.1fr 0.9fr; /* Left Form/Info, Right Map */
  }
}

/* Left Card (Form + Contact Details) */
.contact-left-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header */
.contact-badge-pill {
  display: inline-block;
  padding: 6px 16px;
  background: #fff7ed;
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: 100px;
  color: #ea580c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-main-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 10px;
}

.contact-main-title span {
  background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-sub-text {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Contact Details Matrix */
.info-matrix {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 576px) {
  .info-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-box-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid rgba(234, 88, 12, 0.2);
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-text-content h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.info-text-content p, 
.info-text-content a {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  text-decoration: none;
  line-height: 1.4;
  display: block;
}

.info-text-content a:hover {
  color: #ea580c;
}

/* Input Form Styling */
.split-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.custom-field {
  width: 100%;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-size: 0.9rem;
  color: #0f172a;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.custom-field-textarea {
  resize: vertical;
  min-height: 100px;
}

.custom-field:focus, 
.custom-field-textarea:focus {
  background: #ffffff;
  border-color: #ea580c;
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

.send-btn-gradient {
  background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  color: #ffffff;
  border: none;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px -5px rgba(234, 88, 12, 0.3);
  transition: all 0.3s ease;
}

.send-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(234, 88, 12, 0.4);
}

/* Right Side Dedicated Map Card */
.contact-map-frame-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 450px;
}

.contact-map-frame-card iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}
/* common page heading css start */
 /* Top Container Cards UI */
        .dsms-main-wrapper {
            margin-top: 50px;
            margin-bottom: 70px;
        }

        .dsms-section-card {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
            padding: 48px;
            margin-bottom: 48px;
            border: 1px solid #e2e8f0;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dsms-section-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 40px -12px rgba(15, 23, 42, 0.12);
            border-color: #cbd5e1;
        }

        .dsms-img-box {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            height: 100%;
            min-height: 380px;
            /* box-shadow: 0 8px 16px -4px rgba(15, 23, 42, 0.08); */
        }

        .dsms-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .dsms-section-card:hover .dsms-img-box img {
            transform: scale(1.06);
        }

        .dsms-floating-tag {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: #ffffff;
            padding: 14px 22px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
        }

        .dsms-floating-tag .count {
            font-size: 1.75rem;
            font-weight: 800;
            color: #f59e0b;
            line-height: 1;
            display: block;
        }

        .dsms-floating-tag .label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #94a3b8;
            font-weight: 600;
        }

        .dsms-subhead {
            color: #d97706;
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            display: inline-block;
            margin-bottom: 8px;
            background: #fef3c7;
            padding: 4px 12px;
            border-radius: 20px;
        }

        .dsms-title-group h2 {
            font-size: 2.1rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.3;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }

        .dsms-text-content p {
            color: #475569;
            margin-bottom: 16px;
            font-size: 1rem;
        }

        .dsms-grid-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px;
        }

        .dsms-highlight-box {
            background-color: #f8fafc;
            padding: 18px;
            border-radius: 14px;
            border-left: 4px solid #2563eb;
            border-top: 1px solid #f1f5f9;
            border-right: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
            transition: background 0.3s ease;
        }

        .dsms-section-card:hover .dsms-highlight-box {
            background-color: #f1f5f9;
        }

        .dsms-highlight-box h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .dsms-highlight-box p {
            font-size: 0.85rem;
            color: #64748b;
            margin: 0;
            line-height: 1.5;
        }

        .dsms-quote-card {
            background: linear-gradient(135deg, #fffbe3 0%, #fef3c7 100%);
            border-left: 4px solid #d97706;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.06);
        }

        .dsms-quote-card p {
            font-style: italic;
            color: #78350f;
            font-weight: 600;
            margin: 0;
            font-size: 0.98rem;
        }

        .dsms-check-list {
            list-style: none;
            padding-left: 0;
            margin: 24px 0;
        }

        .dsms-check-list li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 14px;
            font-size: 0.95rem;
            color: #475569;
            font-weight: 500;
        }

        .dsms-check-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 2px;
            width: 22px;
            height: 22px;
            background: #dcfce7;
            color: #16a34a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 800;
        }

        .dsms-signature {
            margin-top: 28px;
            padding-top: 18px;
            border-top: 1px solid #e2e8f0;
        }

        .dsms-signature strong {
            color: #0f172a;
            font-size: 1.05rem;
            display: block;
        }

        .dsms-signature span {
            font-size: 0.88rem;
            color: #64748b;
            font-weight: 500;
        }

        .dsms-feature-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-top: 28px;
        }

        .dsms-feature-item {
            background: #f8fafc;
            padding: 18px 14px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease;
        }

        .dsms-feature-item:hover {
            transform: translateY(-3px);
            background: #ffffff;
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
        }

        .dsms-feature-item svg {
            width: 30px;
            height: 30px;
            fill: #2563eb;
            margin-bottom: 10px;
        }

        .dsms-feature-item h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .dsms-feature-item p {
            font-size: 0.8rem;
            color: #64748b;
            margin: 0;
            line-height: 1.4;
        }

        /* Full-Width Bottom Sections */
        .section-padding {
            padding: 90px 8%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 56px;
        }

        .section-title h2 {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-title .underline {
            width: 70px;
            height: 4px;
            background-color: #d97706;
            margin: 0 auto;
            border-radius: 4px;
        }

        /* Core Values */
        .core-values {
            background-color: #ffffff;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .value-card {
            background: #f8fafc;
            padding: 36px 24px;
            text-align: center;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            transition: all 0.35s ease;
        }

        .value-card:hover {
            transform: translateY(-8px);
            background: #ffffff;
            box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.08);
            border-color: #cbd5e1;
        }

        .value-icon {
            font-size: 2.8rem;
            margin-bottom: 18px;
            display: inline-block;
        }

        .value-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .value-card p {
            color: #64748b;
            font-size: 0.92rem;
            margin: 0;
        }

        /* Our Journey Section */
        .journey-section {
            background-color: #f1f5f9;
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding-left: 36px;
            border-left: 3px solid #0f2b5c;
        }

        .timeline-item {
            margin-bottom: 42px;
            position: relative;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 4px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: #d97706;
            border: 4px solid #ffffff;
            box-shadow: 0 0 0 2px #0f2b5c;
        }

        .timeline-year {
            font-weight: 800;
            font-size: 1.3rem;
            color: #0f2b5c;
            margin-bottom: 6px;
        }

        .timeline-item p {
            color: #475569;
            margin: 0;
            font-size: 1rem;
        }

        /* Achievements & Stats */
        .stats-section {
            background: linear-gradient(135deg, #0f2b5c 0%, #030712 100%);
            color: #ffffff;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 36px;
            text-align: center;
            position: relative;
        }
        .stat-card-ab {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 10px;
            border-right: 1px solid #e2e8f0;
        }
        .stat-card-ab:last-child {
            border-right: none;
          }
        .stat-card-ab h3 {
            font-size: clamp(2.4rem, 5vw, 3.4rem);
            font-weight: 800;
            color: #f59e0b;
            margin-bottom: 6px;
            letter-spacing: -1px;
        }

        .stat-card-ab p {
            color: #cbd5e1;
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Call To Action */
        .cta-section {
            background-color: #ffffff;
            text-align: center;
        }

        .cta-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .cta-section p {
            color: #64748b;
            max-width: 620px;
            margin: 0 auto;
            font-size: 1.05rem;
        }

        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
            color: #ffffff;
            padding: 16px 42px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 28px;
            box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -5px rgba(217, 119, 6, 0.5);
        }

        /* Responsive Fixes */
        @media (max-width: 992px) {
            .dsms-feature-list {
                grid-template-columns: 1fr;
            }
            .dsms-img-box {
                min-height: 300px;
            }
        }

        @media (max-width: 640px) {
            .dsms-grid-highlights {
                grid-template-columns: 1fr;
            }
            .dsms-section-card {
                padding: 24px;
                border-radius: 18px;
            }
            .section-padding {
                padding: 60px 5%;
            }
            .timeline {
                padding-left: 24px;
            }
            .timeline-item::before {
                left: -34px;
            }
        }
/* common page heading css end */




/* about us page css start   */
 /* Main Banner Container with Deep Blue Gradient */
    .edu-banner-wrapper {
        position: relative;
        background: linear-gradient(135deg, #0b1e3d 0%, #102a56 50%, #0d2142 100%);
        padding: 65px 0;
        color: #ffffff;
        overflow: hidden;
        border-bottom: 4px solid #f59e0b;
        margin-top: 90px;
    }

    /* Soft Floating Background Vector Icons */
    .edu-vector-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .edu-icon {
        position: absolute;
        fill: rgba(255, 255, 255, 0.04);
    }

    .edu-icon-1 {
        width: 140px;
        height: 140px;
        top: -20px;
        left: -30px;
        transform: rotate(-15deg);
    }

    .edu-icon-2 {
        width: 180px;
        height: 180px;
        bottom: -40px;
        right: 15%;
        transform: rotate(12deg);
    }

    .edu-icon-3 {
        width: 90px;
        height: 90px;
        top: 15%;
        left: 45%;
        transform: rotate(-10deg);
    }

    /* Top Badge */
    .edu-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(245, 158, 11, 0.15);
        color: #f59e0b;
        border: 1px solid rgba(245, 158, 11, 0.3);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .edu-badge svg {
        width: 16px;
        height: 16px;
        fill: #f59e0b;
    }

    /* Page Title */
    .edu-title {
        font-size: clamp(2.3rem, 4vw, 3.2rem);
        font-weight: 800;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    /* Subtitle */
    .edu-subtitle {
        color: #94a3b8;
        font-size: clamp(0.98rem, 1.5vw, 1.1rem);
        max-width: 580px;
        margin-bottom: 20px;
        font-weight: 400;
    }

    /* Breadcrumbs */
    .edu-breadcrumb {
        background: rgba(255, 255, 255, 0.06);
        padding: 8px 20px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        margin-bottom: 0;
    }

    .edu-breadcrumb .breadcrumb-item,
    .edu-breadcrumb .breadcrumb-item a {
        color: #cbd5e1;
        font-size: 0.88rem;
        font-weight: 500;
        text-decoration: none;
    }

    .edu-breadcrumb .breadcrumb-item a:hover {
        color: #f59e0b;
    }

    .edu-breadcrumb .breadcrumb-item.active {
        color: #f59e0b;
        font-weight: 700;
    }

    .edu-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        color: #64748b;
    }

    /* Right Side Study Feature Card */
    .edu-illustration-card {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 16px 24px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .edu-badge-circle {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 16px rgba(217, 119, 6, 0.3);
    }

    .edu-badge-circle svg {
        width: 28px;
        height: 28px;
        fill: #ffffff;
    }

    .edu-card-text {
        text-align: left;
    }

    .edu-card-text span {
        display: block;
        font-size: 0.78rem;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .edu-card-text strong {
        display: block;
        font-size: 1.15rem;
        color: #ffffff;
        font-weight: 700;
    }

    /* about us page css end  */

    /* cbse disclosure page css start */
      
    .disclosure-box {
      background: #ffffff;
      padding: 2rem ;
      border-radius: 8px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      border: 1px solid #cbd5e1;
      margin:2rem 0rem;
    }

    .custom-section-header {
      background-color: #1e3a8a;
      color: #ffffff;
      padding: 0.6rem 1rem;
      font-size: 1.1rem;
      font-weight: 600;
      margin-top: 2rem;
      margin-bottom: 1rem;
      border-radius: 4px;
    }

    .custom-section-header:first-of-type {
      margin-top: 0;
    }

    .custom-table-responsive {
      overflow-x: auto;
      margin-bottom: 1.5rem;
    }

    .custom-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
      text-align: left;
      border: 1px solid #cbd5e1;
    }

    .custom-table th {
      background-color: #f0f4ff;
      color: #1e3a8a;
      font-weight: 600;
      padding: 0.75rem;
      border: 1px solid #cbd5e1;
    }

    .custom-table td {
      padding: 0.75rem;
      border: 1px solid #cbd5e1;
    }

    .custom-table tr:nth-child(even) {
      background-color: #f8fafc;
    }

    a.custom-doc-link {
      color: #0284c7;
      text-decoration: none;
      font-family: monospace;
      font-weight: 500;
    }

    a.custom-doc-link:hover {
      text-decoration: underline;
    }

    .custom-not-provided {
      color: #64748b;
      font-style: italic;
    }

    .custom-badge-pass {
      background-color: #dcfce7;
      color: #16a34a;
      padding: 0.15rem 0.4rem;
      border-radius: 4px;
      font-weight: 600;
    }

    .custom-sub-heading {
      font-weight: 600;
      font-size: 0.95rem;
      color: #1e3a8a;
      margin: 1.25rem 0 0.5rem 0;
    }

    @media (max-width: 640px) {
      .disclosure-box {
        padding: 1rem;
      }
    }

    /* cbse disclosure page css end  */

    /* Rules of Discipline css start */
  
   
    /* Individual Rule Card */
    .rule-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 1.75rem 1.5rem 1.5rem 2rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      position: relative;
      transition: all 0.3s ease;
      border-bottom: 5px solid #3b82f6;
      font-size: 0.95rem;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      margin-top: 15px; /* Space for the floating badge */
    }

    .rule-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    }

    /* Floating Colorful Numbers (Using custom classes instead of CSS counter) */
    .rule-badge {
      position: absolute;
      top: -15px;
      left: -15px;
      width: 45px;
      height: 45px;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.25rem;
      border: 3px solid #ffffff;
    }

    /* Alternating Card Colors for variety */
    .rule-card-1 { border-color: #3b82f6; }
    .rule-card-1 .rule-badge { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4); }

    .rule-card-2 { border-color: #8b5cf6; }
    .rule-card-2 .rule-badge { background: linear-gradient(135deg, #a78bfa, #8b5cf6); box-shadow: 0 4px 10px rgba(139, 92, 246, 0.4); }

    .rule-card-3 { border-color: #ec4899; }
    .rule-card-3 .rule-badge { background: linear-gradient(135deg, #f472b6, #ec4899); box-shadow: 0 4px 10px rgba(236, 72, 153, 0.4); }

    .rule-card-4 { border-color: #10b981; }
    .rule-card-4 .rule-badge { background: linear-gradient(135deg, #34d399, #10b981); box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4); }

    .rule-card-5 { border-color: #f59e0b; }
    .rule-card-5 .rule-badge { background: linear-gradient(135deg, #fbbf24, #f59e0b); box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4); }

    /* Highlighted text within rules */
    .highlight {
      font-weight: 600;
      color: #1e293b;
    }

    /* Nested Safety Guidelines List */
    .nested-list {
      list-style: none;
      padding-left: 0;
      margin-top: 1rem;
      background-color: #f8fafc;
      border-radius: 8px;
      padding: 1rem;
      border: 1px dashed #cbd5e1;
    }

    .nested-list li {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 0.75rem;
      font-size: 0.85rem;
      color: #475569;
    }

    .nested-list li:last-child {
      margin-bottom: 0;
    }

    .nested-list li::before {
      content: "\f12a"; /* FontAwesome Exclamation */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 0;
      color: #ef4444;
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      .page-title {
        font-size: 2rem;
      }
    }
    .section-mtb
    {
      margin:70px 0px;
    }
    /* Rules of Discipline css End */


    /* admission css start  */

/* Ambient Background Glows */
   

    /* Unique Switcher Bar Wrapper (No <nav> used) */
    .custom-tab-bar {
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(226, 232, 240, 0.8);
      box-shadow: 0 20px 25px -5px rgba(226, 232, 240, 0.5), 0 8px 10px -6px rgba(226, 232, 240, 0.5);
    }

    /* Unique Switcher Buttons */
    .custom-switch-btn {
      border: none;
      background: transparent;
      color: #475569;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 0.65rem 1.25rem;
      border-radius: 50rem;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .custom-switch-btn:hover {
      color: #0f172a;
      background-color: #f1f5f9;
    }

    .custom-switch-btn.active {
      background-color: #2563eb;
      color: #ffffff;
      box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.25);
    }

    /* Guideline Content Containers & Transitions */
    .custom-guideline-container {
      display: none;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .custom-guideline-container.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    /* Row Item Card Effect */
    .custom-guideline-item {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 1.75rem 1rem;
      border-radius: 1rem;
      border: 1px solid transparent;
      transition: all 0.3s ease;
    }

    .custom-guideline-item:hover {
      background-color: #ffffff;
      border-color: #f1f5f9;
      box-shadow: 0 10px 25px -5px rgba(226, 232, 240, 0.4);
    }

    .custom-guideline-index {
      font-weight: 800;
      font-size: 1.25rem;
      color: rgba(37, 99, 235, 0.7);
      min-width: 36px;
      padding-top: 0.125rem;
      letter-spacing: -0.05em;
      transition: color 0.3s ease;
    }

    .custom-guideline-item:hover .custom-guideline-index {
      color: #2563eb;
    }

    .custom-guideline-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
    }

    .custom-guideline-item:hover .custom-guideline-title {
      color: #2563eb;
    }

    .custom-guideline-text {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* Custom Unordered List Styling for Withdrawal Section */
    .custom-unique-list {
      list-style: none;
      padding-left: 0;
      margin-top: 0.75rem;
      margin-bottom: 0;
    }

    .custom-unique-list li {
      position: relative;
      padding-left: 1.25rem;
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0.625rem;
    }

    .custom-unique-list li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: #ef4444;
      font-weight: bold;
    }
    /* admission css end */

    /* facilities css start  */
     
            .facility-card {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .facility-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
                border-color: #0d6efd !important;
            }
  /* facilities css end   */

/* transportation css start  */

.transport-dashboard {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    color: #1e293b;
  }
  .transport-header {
    text-align: center;
    margin-bottom: 35px;
  }
  .transport-badge-tag {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .transport-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
  }
  .transport-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
  }
  .transport-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .transport-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
  }
  .transport-card-wide {
    background: linear-gradient(135deg, #ffffff 0%, #fdf4f4 100%);
    border-left: 5px solid #ef4444;
  }
  .card-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .transport-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 10px 0;
  }
  .transport-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
    margin: 0 0 12px 0;
  }
  .violations-box {
    background: #fff;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    margin-top: 15px;
  }
  .violations-box h4 {
    font-size: 0.95rem;
    color: #b91c1c;
    margin: 0 0 8px 0;
  }
  .violations-box ul {
    margin: 0 0 12px 18px;
    padding: 0;
    font-size: 0.88rem;
    color: #475569;
  }
  .violations-box li {
    margin-bottom: 4px;
  }
  .damage-note {
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: #92400e;
    border-radius: 4px;
  }

  /* transportation css end  */


  /* contact us page css start */

   .contact-dashboard {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8fafc;
    border-radius: 16px;
    color: #1e293b;
  }
  .contact-header {
    margin-bottom: 35px;
  }
  .contact-badge-tag {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .contact-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
  }
  .contact-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
  }
  .contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  }
  .contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
  }
  .contact-icon-wrap {
    font-size: 1.4rem;
    background: #f1f5f9;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .contact-item h5 {
    font-size: 1rem;
    color: #0f172a;
  }
  .school-highlight-box {
    background: #f8fafc;
    border-left: 4px solid #0369a1;
    font-size: 0.9rem;
    color: #334155;
  }
  .map-card {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  }
  .min-h-400 {
    min-height: 380px;
  }

  @media (max-width: 991.98px) {
  /* 1. Mobile me preview box ko completely chhupa do */
  #mainHeader .navbar-nav .nav-link
  {
    color:#000;
  }
  .vertical-mega-menu .menu-preview-box {
    display: none !important;
  }

  /* 2. Menu sidebar ki width full kardo */
  .vertical-mega-menu .menu-sidebar {
    width: 100% !important;
  }

  /* 3. Arrow icon (chevron-right) ko hide kardo mobile me */
  .vertical-mega-menu .menu-sidebar .menu-btn .fa-chevron-right {
    display: none !important;
  }
  .menu-sidebar i 
  {
      display: none;
  }
}