:root {
  --primary-color: #0b6abd;
  --primary-dark: #3d88ff;
  --gradient-color: linear-gradient(90deg, #0b6abd, #3d88ff);
  --gradient-color1: linear-gradient(180deg, #0b6abd, #3d88ff);
  --gradient-light: linear-gradient(90deg, #fdf2e5, #FCEAC2);
  --Secondary-color: #f8c400;
  --light-color: #fceac2;
  /* --body-color: rgba(166, 126, 0, 0.08); */

}


body {
  margin: 0;
  padding: 0;
  /* font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; */
  font-family: "Marcellus", serif;
  /* background: linear-gradient(90deg, #efebe4f7, #efebe4f7), url('../images/slsssd2.jpg') no-repeat center center / cover fixed; */
  overflow-x: hidden;
  background: #fff8ef;
  /* background: #efebe4; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Marcellus", serif; */
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  /* color: var(--primary-dark); */
}

.text-shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.527);
}

.brown-text {
  color: var(--primary-dark);
}

.lightbrown-text {
  color: var(--primary-color);
}

.secondary-text {
  color: var(--light-color);
}

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}
/* ======================== Navbar Base Styling ========================= */

/* :root {
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    --primary-blue: #0b6abd;
} */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #0b6abd, #3d88ff);
  transition: 0.4s all ease-in-out;
}

.site-header .container-fluid {
  padding: 0% 6%;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  position: relative;
}

.logo-wrap .logo-light {
   max-height: 80px; 
  }

.logo-wrap .logo-dark {
   max-height: 50px; 
  }


.logo-dark { display: none; }

.right-column {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 18px;
}

/* TOP INFO Bar */
.top-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #fff;
}

.top-info a {
  background: var(--gradient-light);
  text-decoration: none;
  color: #004887;
  padding: 5px 15px;
  border-radius: 30px;
  /* font-weight: 600; */
}
.top-info:hover a {
  background: var(--gradient-light);
  text-decoration: none;
  color: #004887;
  padding: 5px 15px;
  border-radius: 30px;
  /* font-weight: 600; */
}

/* The Curved Background Effect */
/* .nav-bar-light {
	position: absolute;
	width: 70%;
	height: 45px;
	background: white;
	right: -10%;
	z-index: 0;
	bottom: -3px;
	border-radius: 200px 0px 0px 0px;
} */
 .nav-bar-light {
	position: absolute;
	width: 100%;
	height: 45px;
	background: var(--gradient-light);
	left: 35%;
	z-index: 0;
	bottom: -3px;
	border-radius: 200px 0px 0px 0px;
}

/* NAVBAR Navigation Styling */
.main-nav { 
    position: relative; 
    z-index: 1; 
}
.main-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove gap so it sticks under the lPrimary-color */
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  /* font-size: 15px; */
  transition: 0.3s;
}

/* Bootstrap Dropdown Customization */
.dropdown-toggle::after {
    font-family: "Font Awesome 6 Free";
    content: "\f107"; /* Down Arrow */
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px;
    width: 230px;
}

/* .dropdown-item {
    padding: 8px 20px 8px 10px;
    border-radius: 6px;
    font-size: 14px;
} */

.dropdown-item {
    padding: 8px 20px 8px 10px;
    /* padding: 8px 20px; */
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Keeps animation contained */
    transition: all 0.3s ease-in-out;
    color: #333;
}

.dropdown-item:hover {
    background-color: transparent; /* Light background to see movement */
    color: var(--primary-color);
    /* padding-left: 18px; */
}

/* 

.dropdown-item i {
  margin-right: 5px;
  font-size: 12px;
  display: none;
  transition: 0.4s ease-in-out;
} */
.dropdown-item i {
    display: inline-block; /* Changed from none to allow animation */
    width: 0;              /* Take up no space initially */
    opacity: 0;            /* Invisible */
    transform: translateX(-10px); 
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    /* margin-right: 5px; */
}

.dropdown-item:hover i {
    width: 18px;           /* Grant space for the icon */
    opacity: 1;            /* Fade in */
    transform: translateX(0); /* Slide into position */
    /* margin-right: 8px; */
}

.dropdown-item span, 
.dropdown-item {
    transition: padding 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* SCROLL EFFECT */
body.scrolled .site-header { padding: 5px 0; }
body.scrolled .top-info { display: none; }

body.scrolled .nav-bar-light { display: none; }

body.scrolled .main-nav {
  background: var(--gradient-light);
  /* background: white; */
  padding: 8px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

body.scrolled .logo-light { display: none; }
body.scrolled .logo-dark { display: block; }

@media (max-width: 991px) {
  .nav-bar-light, .top-info { display: none; }
  .logo-wrap .logo-light { max-height: 50px; }
}
/* -------------------------------------------------------- */
/* Offcanvas Custom */

.btn-close {
  opacity: 1;
}

.offcanvas {
  background: var(--gradient-color1);
  color: white;
}

.offcanvas .nav-link {
  color: white !important;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
}

.offcanvas-body .nav-item a {
  background: var(--primary-dark);
  margin: 5px 0px;
  border-radius: 20px;
  padding: 8px 20px;
}

.offcanvas-body .dropdown-menu {
  width: 100%;
  background: #fff;
  padding: 10px;
  padding: 10px 10px 10px 0px;
  border-radius: 20px;
}

/* Hide desktop nav items on mobile */
@media (max-width: 991px) {
  .main-navbar .navbar-nav {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }

  .top-info {
    display: none;
  }

  .nav-bar-light {
    display: none;
  }
}



/* ===========================  HERO SECTION  ================================== */



.green-top {
  position: absolute;
  width: 100%;
  height: 30vh;
  background: linear-gradient(90deg, #0b6abd, #3d88ff);
}

.green-left {
  position: absolute;
  background: linear-gradient(180deg, #0b6abd, #3d88ff);
  width: 50px;
  left: 0px;
  height: 50vh;
  top: 30vh;
  border-radius: 0px 0px 0px 100px;
}

/* Tablet */
@media (max-width: 991px) {
  .green-left {
    display: none;
  }

  .social-icons {
    position: absolute;
    top: 20% !important;
    z-index: 9;
    left: -23px;
  }
}

.social-icons {
  position: absolute;
  top: 40%;
  z-index: 9;
  left: -23px;
}

/* .social-icons ul li {
  list-style: none;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  background: transparent;
  justify-content: center;
  font-size: 0.85rem;
  transition: 0.3s;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  margin-top: 10px;
  border: 1px solid #fff;
} */

.social-icons ul li {
  list-style: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  background: transparent;
  justify-content: center;
  font-size: 0.85rem;
  transition: 0.3s all ease-in-out;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  margin-top: 10px;
  border: 1px solid #ffffff;
}


.social-icons ul li:hover {
  background: var(--gradient-light);
  /* background: var(--primary-color); */
  border: 1px solid #ffffff;
}

.social-icons ul li:hover i {
  color: var(--primary-color);
  /* color: #fff; */
}

.social-icons .title {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  transform: rotate(-90deg);
  width: 92px;
  margin-top: 42px;
}


/* --- Pagination indicators like your Bootstrap version --- */
/* #hero .swiper-pagination {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
} */

#hero .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.6;
  transition: all 0.3s ease;
}

#hero .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* --- Overlay same as carousel-item::before --- */
#hero .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.4); */
  z-index: 1;
  pointer-events: none;
}

#hero .swiper-slide {
  position: relative;
}

#hero .swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.underline {
  width: 290px;
  height: 5px;
  background-color: var(--Secondary-color);
  border-radius: 20px;
  margin: 10px auto;
}

.underline1 {
  width: 290px;
  height: 5px;
  background-color: var(--Secondary-color);
  border-radius: 20px;
  margin: 10px auto;
}

/* =========Swipper overide issue====== */
/* from Swiper */
#hero .swiper-horizontal>#hero .swiper-pagination-bullets,
#hero .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* ensure the containing block */
/* #hero .mySwiper {
  position: relative;
} */
#hero .mySwiper {
  position: relative;
  margin-left: 50px;
  margin-top: 95px;
  border-radius: 20px 0px 0px 20px;
  height: 88vh;
}

/* @media (min-width: 1920px) {
  #hero .mySwiper {
    position: relative;
    margin-left: 50px;
    margin-top: 103px;
    border-radius: 20px 0px 0px 20px;
    height: 88vh;
  }
} */

/* Tablet */
@media (max-width: 991px) {
  #hero .mySwiper {
    position: relative;
    margin-left: 0px;
    margin-top: 0px;
    margin-bottom: 30px;
    border-radius: 20px 0px 0px 20px;
    height: 64vh;
  }
  #hero .mySwiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 45%;
	width: auto;
	display: flex;
	z-index: 10;
	gap: 10px;
	flex-flow: column;
	left: 94% !important;
}
}

/* put bullets on the right-center, vertical stack */
#hero .mySwiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 45%;
	width: auto;
	display: flex;
	z-index: 10;
	gap: 10px;
	flex-flow: column;
	left: 97% !important;
}

/* #hero .mySwiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: 45%;
  left: 98%;
  width: auto;
  display: flex;
  z-index: 10;
  flex-flow: column;
  gap: 10px;
} */

/* bullet look (optional) */
#hero .mySwiper .swiper-pagination-bullet {
  width: 20px;
  height: 12px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #fff;
  opacity: 1;
  transition: transform .3s ease, opacity .3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.678);
}

#hero .mySwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
  transform: scale(1.2);
  border: 2px solid var(--primary-dark);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.678);
}



/* ==========================News Section========================== */

.bg-subtle1 {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
}

#messageTabs .nav-link.active .badge {
  color: #fff !important;
}

#messageTabs .nav-link .badge {
	color: #2b9cff !important;
}

.newsSwiper {
  border-radius: 100px;
}

.small-text {
  font-size: 14px;
  margin-top: 6px;
  margin-bottom: 10px;
}

.small-text1 {
  font-size: 14px;
  /* margin-top: 6px; */
  margin-bottom: 10px;
}

.news-card {
  border-radius: 80px;
  padding: 8px;
  box-shadow: 1px 3px 2px 0px rgba(0, 0, 0, 0.14);
  border: 1px solid #f8efef;
  width: 100%;
}

.news-card p {
  font-size: 14px;
}

.news-card .side-round {
  background: var(--gradient-color1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--light-color);
}


/* #news-slider-section .swiper {
  padding-bottom: 5px;
  padding-top: 5px;
  padding-right: 15px;
  border-radius: 250px;
} */


.news-section {
  background: var(--gradient-color1);
  border-radius: 20px;
  margin-top: -50px;
  position: absolute;
  z-index: 9;
  width: 90%;
  padding-right: 50px;
  right: -10px;
}

@media (max-width: 991px) {
  .news-section {
    background: var(--gradient-color1);
    border-radius: 20px;
    margin-top: 0px;
    position: relative;
    z-index: 9;
    padding-right: 0px;
    right: 0px;
    padding: 10px 0px;
    width: auto;
  }
}

#news-slider-section .btn-prev,
#news-slider-section .btn-next {
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  background: var(--primary-color);
  color: #fff;
}

#news-slider-section .btn-prev:hover,
#news-slider-section .btn-next:hover {
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  background: var(--light-color);
  color: var(--primary-color);
}

/* #news-slider-section span {
  background: var(--Secondary-color);
  padding: 4px 6px;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  right: 80px;
  top: 20px;
  line-height: 12px;
  border-radius: 8px;
}

#news-slider-section span {
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
} */


/* ------------------------------------------------- */


.section-padding {
  padding: 140px 0px 60px 0px;
}

/* Tablet */
@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0px;
  }
}


.section-padding1 {
  padding: 40px 0px;
}

/* .principal-padding {
    padding: 80px 0px;
    background: var(--gradient-color1);
} */

.principal-padding {
  padding: 40px 0px;
  background: var(--gradient-color1);
  /* position: relative;
  left: -40px;
  border-radius: 0px 30px 30px 0px; */
}

@media (max-width: 991px) {
  .principal-padding {
    padding: 70px 0px;
    background: var(--gradient-color1);
    position: relative;
    left: 0px;
    border-radius: 0px 30px 30px 0px;
  }
}

.principal-padding1 {
  padding: 40px 0px;
  background: var(--gradient-color1);
  position: relative;
  /*right: -40px;
  border-radius: 30px 0px 0px 30px; */
}



.heading-sec h2 {
  color: var(--primary-color);
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 18px;
  display: grid;
  gap: 10px;
}

.tick-list li {
  font-weight: 700;
  /* color: #233252; */
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tick-list li i {
  color: var(--primary-color);
}


.viewall-about {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--gradient-color1);
  color: #fff;
  border-radius: 30px;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .18);
  background-size: 200% 100%;
  background-position: left center;
  transition: 0.4s ease-in-out;
  position: absolute;
  bottom: 15px;
  right: 25px;
}

.viewall-about:hover {
  background: var(--gradient-light);
  color: var(--primary-color);
}

.viewal {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--gradient-light);
  color: var(--primary-color);
  border-radius: 30px;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .18);
  background-size: 200% 100%;
  background-position: left center;
  transition: 0.4s ease-in-out;
}

.viewal:hover {
  background: var(--gradient-color1);
  color: #fff;
}

.viewall {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--gradient-color1);
  color: #fff;
  border-radius: 30px;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .18);
  background-size: 200% 100%;
  background-position: left center;
  transition: 0.4s ease-in-out;
}

.viewall:hover {
  background: var(--gradient-light);
  color: var(--primary-color);
}

.viewall-gallery {
  font-family: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--gradient-color1);
  color: #fff;
  border-radius: 30px;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-decoration: none;
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, .18); */
  background-size: 200% 100%;
  background-position: left center;
  transition: 0.4s ease-in-out;
}

.viewall-gallery:hover {
  background: var(--gradient-color);
  color: var(--light-color);
}



.image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: -20px 20px 0 var(--primary-color);
  /* box-shadow: -20px 20px 0 var(--primary-color); */
}

.image-wrapper img {
  width: 100%;
  border-radius: 12px;
  border-left: 2px solid #ede7e0;
  border-bottom: 2px solid #ede7e0;
}

.feature-box {
  text-align: center;
  padding: 15px;
}

.feature-box i {
  font-size: 36px;
  color: #c0392b;
  margin-bottom: 10px;
}

.feature-box h6 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}


.heading-sec {
  width: 100%;
  max-width: 400px;
  margin: 0px auto;
  background: var(--gradient-light);
  /* background: #fff; */
  border-radius: 100px;
  padding: 8px 0px;
  border: 2px solid var(--primary-dark);
}

.heading-sec-page {
  width: 100%;
  max-width: 300px;
  margin: 0px auto;
  background: var(--gradient-light);
  /* background: #fff; */
  border-radius: 100px;
  padding: 8px 0px;
  border: 2px solid var(--primary-dark);
}

.heading-sec1 {
  width: 100%;
  max-width: 400px;
  margin: 0px auto;
  background: #fff;
  border-radius: 100px;
  padding: 8px 0px;
  border: 2px solid var(--primary-dark);
}

.heading-sec1 h2 {
  color: var(--primary-color);
}



/* =---------------------principal============== */



/* PAGINATION POSITION */
.message-dots {
  position: relative;
  margin-top: 25px;
}

/* DOT STYLE */
.message-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border: none;
  transition: all 0.3s ease;
}

/* ACTIVE DOT */
.message-dots .active {
  background-color: #ffffff;
  transform: scale(1.3);
}


/* =================facility============== */

.facility-slider {
  border-radius: 30px;
}

.facility-card {
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, .18);
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}


/* Dark gradient overlay */
.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.151) 40%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 20px;
}

.facility-card:hover .card-overlay {
  /* position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
  transition: 0.4s ease-in-out; */
  position: absolute;
  /* bottom: 50px;
  left: 30px;
  right: 20px; */
  color: #fff;
  z-index: 2;
}

.facility-card .card-overlay {
  /* position: absolute;
  bottom: 50px;
  left: 40px;
  right: 20px;
  color: #fff;
  z-index: 2; */
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
  transition: 0.4s ease-in-out;
}

.facility-card h6 {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--light-color);
}

.facility-card p {
  font-size: 12px;
  margin: 0;
}

.facility-card:hover .facility-icon {
  width: 100%;
  max-width: 90px;
  /* margin: 10px; */
  opacity: 1;
  transition: 0.4s all;
}

.facility-card .facility-icon {
  width: 100%;
  max-width: 60px;
  margin: 10px;
  opacity: 1;
}

/* Navigation buttons */
.facility-nav {
  display: flex;
  gap: 10px;
  margin-left: 30px;
  justify-content: start;
  align-items: center;
}

.facility-nav button {
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  background: var(--gradient-color1);
  color: #fff;
}

.facility-nav button:hover {
  background: var(--primary-color);
  color: white;
  border-color: none;
}

/* Navigation buttons */
.facility-nav1 {
  display: flex;
  gap: 10px;
  margin-left: 30px;
  justify-content: center;
  align-items: center;
}

.facility-nav1 button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-color1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .18);
  cursor: pointer;
  margin: 0px 5px;
  transition: 0.3s ease-in-out;
}

.facility-nav1 button:hover {
  background: var(--theme-secondary);
  color: #000;
}

.facility-icons {
  max-width: 60px;
  padding: 0px 0px 15px 0px;
}

.facility-line {
  width: 100%;
  height: 5px;
  background: var(--theme-secondary);
  border-radius: 10px;
  max-width: 300px;
  margin: auto 30px;
}


.facility-text-white {
  position: absolute;
  width: 600px;
  height: 100%;
  background: #fff;
  right: 0px;
  top: 0px;
  border-radius: 0px 30px 30px 0px;
  z-index: -1;
}

.facility-text-icons {
  width: 100%;
  padding: 10px;
}


/* ======================Gallery Album========== */

#gallery-album .gallery-container-box {
  /* background: white;
        border-radius: 50px;
        padding: 60px 40px;
        box-shadow: 0 40px 100px rgba(0,0,0,0.05); */
  margin: 0px auto;
  overflow: hidden;
  position: relative;
}

#gallery-album .swiper {
  width: 100%;
  /* height: 520px; */
  overflow: visible !important;
  padding: 40px 0px 0px 20px;
}

/* Tablet */
@media (max-width: 991px) {
  #gallery-album .swiper {
    width: 100%;
    /* height: 520px; */
    overflow: visible !important;
    padding: 40px 0px;
  }
}


#gallery-album .slide-trio-wrapper {
  display: flex;
  gap: 20px;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* Tablet */
@media (max-width: 991px) {
  #gallery-album .slide-trio-wrapper {
    display: flex;
    flex-flow: column;
    gap: 10px;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
}


#gallery-album .compact-card {
  position: relative;
  flex: 1;
  height: 380px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
  transition: all 0.5s ease;
}

/* Middle Card Focus */
#gallery-album .slide-trio-wrapper .compact-card:nth-child(2) {
  height: 420px;
  z-index: 5;
  /* box-shadow: 0 30px 60px rgba(39, 174, 96, 0.15); */
  border: 2px solid var(--primary-green);
}

#gallery-album .slide-trio-wrapper .compact-card:nth-child(3) {
  height: 420px;
  z-index: 5;
  /* box-shadow: 0 30px 60px rgba(39, 174, 96, 0.15); */
  border: 2px solid var(--primary-green);
}

#gallery-album .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}

#gallery-album .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

#gallery-album .compact-card:hover .img-box img {
  transform: scale(1.1);
}

/* --- ENHANCED INFO BOX --- */
#gallery-album .album-meta-box {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(3px);
  padding: 10px;
  border-radius: 20px;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
}

#gallery-album .meta-date {
  font-size: 0.65rem;
  font-weight: 700;
  color: #7f8c8d;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.album-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#gallery-album .photo-count-pill {
  display: inline-block;
  margin-top: 8px;
  background: var(--primary-dark);
  color: white;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* NAVIGATION */
/* #gallery-album .nav-holder {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
} */

#gallery-album .btn-custom {
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  background: var(--gradient-color1);
  color: #fff;
}

#gallery-album .btn-custom:hover {
  background: var(--primary-color);
  color: white;
  border-color: none;
}




/* ==============================toppers & Birthday */

.highlight-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Tablet */
@media (max-width: 991px) {
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

.glass-card {
  height: 470px;
  padding: 25px;
  border-radius: 22px;
  /* background: rgba(255, 255, 255, 0.07); */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
}

.card-header {
  text-align: center;
  margin-bottom: 15px;
}

.card-header h3 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

.topper-modal {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  position: relative;
  margin: 10px 0px
}

.photo-box {
  position: relative;
}

.photo-box img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.percent-tag {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #2d3436;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

/* ---------- Swiper fixes (do NOT change design) ---------- */
#toppers-x .swiper {
  height: 100%;
}

#toppers-x .swiper-slide {
  width: 100% !important;
  /* margin-bottom: 0px !important; */
}

#toppers-x .topper-modal {
  width: 100%;
}

/* ---------- Button style (scoped only to toppers-x) ---------- */
#toppers-x .btn-custom {
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  background: var(--gradient-color1);
  color: #fff;
  transition: 0.3s ease;
}

#toppers-x .btn-custom:hover {
  background: var(--primary-color);
  color: #fff;
}

.toppersVerticalSwiper {
  margin: 0px;
}

/* -----------------------Toppers XII--------------- */

/* ---------- Toppers XII Swiper fixes ---------- */
#toppers-xii .swiper {
  height: 100%;
}

#toppers-xii .swiper-slide {
  width: 100% !important;
}

#toppers-xii .topper-modal {
  width: 100%;
}

/* ---------- Button style (Toppers XII only) ---------- */
#toppers-xii .btn-custom {
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  background: var(--gradient-color1);
  color: #fff;
  transition: 0.3s ease;
}

#toppers-xii .btn-custom:hover {
  background: var(--primary-color);
  color: #fff;
}

.toppersXiiVerticalSwiper {
  margin: 0;
}



/* =============happy Birthday=================== */


/* .happy-birthday {
  width: 100%;
  max-width: 250px;
  padding-bottom: 10px;
  margin: 0px auto;
  display: flex;
} */

.happy-birthday {
  width: 100%;
  max-width: 200px;
  /* padding-bottom: 10px; */
  margin: 0px auto;
  display: flex;
}

.happy-birthday-gif {
  width: 100%;
  height: 100%;
  opacity: 0.3;
  position: absolute;
  z-index: -1;
  inset: 0;
}


.Topper-student {
  width: 180px;
  height: 190px;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.carousel-controls .custom-prev2,
.carousel-controls .custom-next2 {
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  background: var(--gradient-color1);
  color: #fff;
  transition: 0.3s ease;
  margin: 0px 10px;
}

.carousel-controls .custom-prev2:hover,
.carousel-controls .custom-next2:hover {
  background: var(--primary-color);
  color: #fff;
}

.Toppers-gif {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  width: 100%;
  max-width: 400px;
  top: 0;
}


#Birthday-slide p {
  color: var(--light-color);
}



/* ===============================FOOTER=========================== */

.site-footer {
  background: url(../images/blue-Sky.jpg) center center / cover;
  color: #d9e3f5;
  padding: 60px 0px 0px 0px;
  position: relative;
}

.logo-footer {
  width: 145px;
  z-index: 20;
  border-radius: 50%;
  padding: 6px;
  overflow: hidden;
  margin: 0px auto;
}

.logo-footer a {
  display: block;
  position: relative;
}

.logo-footer img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-footer a::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-150%) rotate(25deg);
  }

  100% {
    transform: translateX(150%) rotate(25deg);
  }
}

.btn-border-flow {
  display: inline-block;
  padding: 6px 18px;
  font-size: 18px;
  color: #fff;
  background: #0B1E44;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 12px rgba(18, 56, 150, 0.52);

}

.cisoft {
  color: #fff !important;
  transition: 0.3s all ease-in-out;
}

.cisoft:hover {
  color: var(--light-color) !important;
}

.btn-border-flow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(270deg, var(--primary-color), var(--primary-dark), var(--primary-color));
  background-size: 400% 400%;
  z-index: -1;
  animation: borderMove 6s linear infinite;
}


/* ============================= */

.copyright {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 991px) {
  .copyright {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    text-align: center;
  }

  .social-sec {
    position: absolute;
    bottom: 120px !important;
    left: 50%;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
    margin-left: 0rem;
    padding-left: 0rem;
  }
}


.social-sec {
  position: absolute;
  bottom: 8px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  margin-left: 0rem;
  padding-left: 0rem;
}

.social-sec li {
  list-style: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Glassmorphism effect */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.3s ease;
  cursor: pointer;
}

.social-sec li a {
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-sec li:hover {
  background: var(--light-color);
  transform: translateY(-5px) scale(1.05);
}

.social-sec li:hover a {
  color: var(--primary-color);
  /* primary hover color */
}

.footer-text-color h6 {
  color: var(--primary-color);
  text-shadow: 1px 1px 1px rgb(255, 255, 255);
}

.footer-text-color p {
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.footer-text-color ul li a {
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.footer-text-color ul li a:hover {
  color: var(--light-color);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.856);
}

@media (max-width: 991px) {
  .footer-school-img {
    padding-top: 130px;
  }
}


/* ==================================== */

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-color1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  z-index: 999;
  transition: all 0.4s;
  display: flex;
  /* ensure flex works */
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
}

.back-to-top::after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.311) 0%, rgba(0, 0, 0, 0) 80%);
}

.back-to-top i {
  color: #fff;
}



/* =======================Page Data==================== */

.hero-banner {
  /* background: #f6f6ef; */
  background: var(--gradient-color);
  height: 310px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0px 0px 0px 30px;
}

.hero-title {
  z-index: 3;
  padding: 15px;
  border-radius: 100px;
  width: 95%;
  max-width: 1100px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%);
  height: 100px;
}

/* ------------------------------------- */
/* Pages with li  */


.rules-box {
  background-color: #ffffff;
  /* soft cream to match site */
  border-left: 5px solid var(--primary-dark);
  /* green accent line matching header */
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* .list-group li {
  background: url('../images/icons/arrow-right.svg') no-repeat left 12px;
  padding: 8px 0 8px 32px;
  list-style: none;
  margin: 10px 0;
  vertical-align: middle;
} */

/* --- List Styles --- */
.list-group {
  padding: 0;
  margin: 0;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .rules-box {
    padding: 20px 15px;
  }

  .list-group li {
    padding-left: 28px;
    line-height: 1.7;
  }
}




/* Pages with tables  */



.page-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  color: #2a2a2a;
}

/* Header - Green Gradient */
.page-table thead th {
  background: linear-gradient(90deg, #0b6abd, #3d88ff);
  color: #ffffff;
  padding: 12px 14px;
  font-weight: 600;
  text-align: left;
  border: none;
}

/* Normal Rows */
.page-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}

/* Alternate Rows - very soft cream */
.page-table tr:nth-child(even) td {
  background: #fff;
  /* background: #f6f4eb; */
}

/* Month Heading Row */
.month-row td {
  background: #eae3cf;
  color: #1f3d2b;
  font-weight: 600;
  border-top: 2px solid #d6c8a5;
}

/* First Column Width */
.page-table td:first-child {
  width: 80px;
}

/* Table Wrapper */
.table-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ------------------------------------- */

/* .list-group li {
  line-height: 28px;
  background: url(../images/icons/arrow-right.svg) no-repeat left 10px;
  padding: 5px 0px 5px 25px;
  list-style: none;
  margin: 8px 0px;
  vertical-align: middle;
} */

.list-group li {
  position: relative;
  line-height: 28px;
  padding: 6px 0 6px 42px; /* space for icon box */
  list-style: none;
  margin: 8px 0;
}

.list-group li::before {
	content: "\f061";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0d47a1, #42a5f5);
	color: #ffffff;
	font-size: 12px;
	border-radius: 20px;
}


thead th {
  background: var(--gradient-color);
  color: #fff !important;
}

ol li {
  line-height: 28px;
  padding: 0px 0px 0px 0px !important;
  list-style-type: disc !important;
  background: none !important;
  list-style: none;
  margin: 8px 0px;
  vertical-align: middle;
}




/* ===================According===================== */

.accordion {
  border: none;
}

.accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
  z-index: 9;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 18px;
  font-size: 1rem;
  color: #ffffff;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
}

.accordion-body {
  border-radius: 10px;
}

.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
  border-radius: 10px;
}

.accordion-button .hero-about {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background-color: #967b7b;
  border: none;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.accordion-button span {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.accordion-button:hover span {
  transform: translateX(5px);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}


.accordion-button:not(.collapsed) {
  background: var(--gradient-color1);
  color: #fff;
  border-radius: 10px;
}


.accordion-header {
  margin-bottom: 5px;
  border-radius: 11px;
  background: var(--gradient-color);
  /* background: #fff; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 10px;
}

.accordion-button:not(.collapsed)::after {
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


/* ==================================== */




.page-principal-section {
  background: linear-gradient(180deg, #e8f3ff, #ffffff);
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

/* spacing between columns */
.page-principal-item {
  margin-bottom: 25px;
}

/* Card */
.page-principal-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5edf7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: .3s ease;
  padding: 12px;
}

.page-principal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

/* Photo box */
.page-principal-photo {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 4px solid #f0f5ff;
}

.page-principal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info section */
.page-principal-info {
  text-align: center;
}

/* Name */
.page-principal-name {
  font-weight: 700;
  color: #0b3a78;
  font-size: 16px;
  min-height: 30px;
}

/* Years */
.page-principal-years-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  /* Space between From and To blocks */
  margin-top: 6px;
}

.year-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.year-block .label {
  font-size: 12px;
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.year-block .value {
  font-size: 14px;
  color: #3d88ff;
  font-weight: 700;
  margin-top: 2px;
}

.divider {
  font-size: 14px;
  color: #aaa;
  font-weight: 600;
  line-height: 1;
}






/* Premium Contact Cards */
.contact-info-section-premium {

  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.info-card {
  background: #fff;
  text-align: center;
  padding: 40px 20px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0b6abd, #3d88ff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
}

.info-card img {
  width: 35px;
  height: 35px;
}

.info-card h3 {
  font-size: 20px;
  color: #0b3a78;
  /* Dark blue for headings */
  margin-bottom: 10px;
  font-weight: 700;
}

.info-card p {
  font-size: 15px;
  color: #555;
}

.info-card a {
  color: #3d88ff;
  text-decoration: none;
  font-weight: 600;
}

.info-card a:hover {
  text-decoration: underline;
}

/* Premium Form */
.contact-form-section-premium {

  padding: 0px 0px 80px 0;
}

.contact-form-section-premium h1 {
  font-size: 32px;
  color: #0b3a78;
  font-weight: 700;
}

.contact-form-section-premium p {
  color: #555;
  margin-bottom: 10px;
}

.banner-line {
  width: 60px;
  height: 3px;
  background: #3d88ff;
  margin: 10px auto 0;
  border-radius: 3px;
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form textarea:focus {
  outline: none;
  border-color: #3d88ff;
  box-shadow: 0 4px 10px rgba(42, 69, 138, 0.2);
}

.premium-form textarea {
  min-height: 140px;
  resize: none;
}

.submit-btn {
  background: linear-gradient(135deg, #0b6abd, #3d88ff);
  color: #fff;
  padding: 14px 35px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0b6abd, #3d88ff);
  transform: translateY(-3px);
}




.school-time-head {
  background: #fff;
  border: 1px solid var(--primary-color);
  padding: 10px 0px;
  border-radius: 100px;
  margin-top: 80px;
}

.school-time-head img {
  position: absolute;
  left: 30px;
  bottom: 0px;
}

.school-time-head1 {
  background: #fff;
  border: 1px solid var(--primary-color);
  padding: 10px 0px;
  border-radius: 100px;
  margin-top: 60px;
}

.school-time-head1 img {
  position: absolute;
  left: 30px;
  bottom: 0px;
}