/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}
.text-green {
  color: #bcd22f;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-md-square {
  width: 46px;
  height: 46px;
}

.btn-lg-square {
  width: 58px;
  height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/* Prevent horizontal overflow on the whole page */
html,
body {
  overflow-x: hidden;
}

p {
  text-align: justify;
}
.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Button End ***/
/* Custom styles for the Hero Swiper */
.hero-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #bcd22f;
  opacity: 1;
  width: 30px;
  border-radius: 10px;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .hero-slider .swiper-button-next:after,
  .hero-slider .swiper-button-prev:after {
    font-size: 16px;
  }
}
  .c-text {
    font-size: large;
  }

@media (max-width: 575.98px) {
  .btn {
    margin-bottom: 0.5rem;
    display: block;
  }

  .c-text {
    font-size: 10px;
  }
  .carousel-caption p {
    font-size: 8px;
  }
}

/* logo */
.logo-img {
  max-height: 80px;
  height: auto;
  width: auto;
}

@media (max-width: 768px) {
  .logo-img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-height: 50px;
  }
}

/*** Navbar Start ***/
.navbar .navbar-nav {
  padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
  padding: 10px;
  color: var(--bs-primary);
  font-size: 18px;
  outline: none;
  font-weight: 400;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #252b42;
  font-weight: 700;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "font awesome 5 free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  transition: 0.5s;
  opacity: 1;
}

/*** Navbar End ***/

#schoolCarousel .carousel-text h1 {
  font-weight: 700;
  color: #2d2f38;
  line-height: 1.2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #a6c48a; /* Light green like in the image */
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
}

.carousel-caption {
  text-align: left;
  left: 5%;
  right: auto;
  bottom: auto;
  top: 10%;
}

.about-section {
  background-color: #ffffff;
  position: relative;
}

.about-section h2 {
  font-weight: 700;
  color: #2d2f38;
}

.about-section .underline {
  width: 50px;
  height: 4px;
  background-color: #a6c48a;
}

.about-section p {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.8;
}

.about-section .read-more {
  color: #6caa6d;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  margin-top: 15px;
  font-size: 16px;
}

.about-section .read-more span {
  font-size: 18px;
  transition: margin-left 0.3s;
}

.about-section .read-more:hover span {
  margin-left: 5px;
}

.image-container {
  position: relative;
  max-width: 400px;
  margin: auto;
}

.image-container img {
  width: 100%;
  border-radius: 10px;
}

.statistics-section {
  background-color: #1c2b5a; /* Dark blue background */
}

.statistics-section .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f9c74f; /* Yellow color for values */
  margin-bottom: 0.25rem;
}

.statistics-section .stat-text {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
/* Custom styling */

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Arial", sans-serif;
}

.events-heading {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
  font-size: 28px;
  font-weight: 600;
}

.events-subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
  font-size: 16px;
}

.events-divider {
  width: 80px;
  height: 4px;
  background-color: #8bc34a;
  margin: 0 auto 10px;
}

.events-slider {
  width: 100%;
  height: 100%;
}

.events-slide {
  height: auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.events-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  padding: 20px 20px 0;
}

.events-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
  padding: 0 20px;
}

.events-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.events-content {
  padding: 20px;
}

.events-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.events-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.events-button:hover {
  background-color: #e0e0e0;
}

.events-button svg {
  margin-left: 6px;
  width: 14px;
  height: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .events-container {
    padding: 15px;
  }

  .events-heading {
    font-size: 24px;
  }

  .events-slide {
    height: auto;
  }
}

/* Swiper pagination custom styling */
.events-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #8bc34a;
}

.leadership-section {
  padding: 20px 15px;
  background-color: #fff;
}
.leadership-heading {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #6c757d;
}
.leadership-title {
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 10px;
}
.leader-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.leader-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.leader-name {
  font-weight: 600;
  margin-top: 10px;
}
.leader-role {
  font-size: 0.9rem;
  color: #6c757d;
}
@media (max-width: 767px) {
  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .leader-text {
    text-align: justify;
  }
}

/* Academics Overview */
.edu-subheading {
  color: #6c9b6f;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.edu-heading {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.edu-description {
  text-align: center;
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.edu-item {
  background-color: #f9f9f9;
  margin-bottom: 20px;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.edu-item:hover,
.edu-item.edu-active {
  background-color: #eefbf0;
  border-left: 4px solid #4caf50;
}

.edu-item h3 {
  margin: 0;
  font-size: 18px;
}

.edu-item p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}
.edu-image-box {
  height: 400px;
}
.edu-image-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: none;
}

.edu-image-box img.active {
  display: block;
}

@media screen and (max-width: 768px) {
}

.why-section {
  background-image: url("../image/Why-choose-us.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8; /* Slightly dimmed */
  padding: 10px 0;
}

.choose-wrapper {
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.choose-heading {
  text-align: center;
  font-weight: bold;
  color: #000000;
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.choose-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  height: 3px;
  width: 60px; /* fixed width for better control */
  background-color: #28a745;
  margin-top: 8px;
}

.choose-list {
  padding-left: 0;
  list-style: none;
}

.choose-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.choose-list li .bi {
  position: absolute;
  left: 0;
  top: 3px;
  color: #28a745;
  font-size: 18px;
}

.choose-image {
  max-width: 100%;
  border-radius: 10px;
}

.facilities-section {
  text-align: center;
  padding: 20px;
}

.swiper {
  padding-bottom: 30px;
}

.swiper-slide {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
}

.facility-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.facility-content {
  padding: 20px;
  height: 170px;
}

.facility-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.facility-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.facility-btn {
  background-color: #f0f8f5;
  color: #4c924c;
  border: 1px solid #4c924c;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}

.facility-btn:hover {
  background-color: #4c924c;
  color: #fff;
}

.events-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
}

.balalok-icon {
  font-size: 1.2rem;
  margin-right: 8px;
  color: #8bb679;
}

.balalok-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.balalok-highlight-text {
  color: #8bb679;
  font-weight: 500;
  font-size: 1rem;
}

.balalok-section-title {
  color: #2d3748;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.balalok-description {
  color: #636b75;
  font-size: 1rem;
  line-height: 1.7;
}

.balalok-divider {
  width: 70px;
  height: 4px;
  background-color: #8bb679;
  margin: 10px 0 25px 0;
}

.balalok-learn-more {
  color: #8bb679;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.balalok-learn-more:hover {
  color: #739960;
}

.balalok-video-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.balalok-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.balalok-video-wrap iframe,
.balalok-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*** Testimonial Start ***/

.testimonial-item {
  background: #e3f0eb;
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #c1dad0;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Testimonial End ***/

/* newsletter */
.newsletter-section {
  background-color: #fdcb59;
  padding: 40px 20px;
}
.newsletter-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .newsletter-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 480px) {
  .newsletter-image {
    width: 200px;
    height: 200px;
  }
}
.newsletter-heading {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  color: #1a1a1a;
}
.newsletter-subheading {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #444;
}
.newsletter-text {
  text-align: center;
  font-size: 1rem;
  color: #333;
}
.subscribe-input {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ccc;
  width: 70%;
}
.subscribe-btn {
  background-color: #135e4a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
}
.subscribe-btn:hover {
  background-color: #0f4d3c;
}

.footer-section {
  background-color: #26335d;
  border-top: 2px solid #dee2e6;
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-logo {
  width: 300px;
  height: auto;
}

.footer-description {
  font-size: 15px;
  color: #ffffff;
  margin-top: 10px;
}

.footer-heading {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #bcd22f;
}

.footer-link {
  display: block;
  width: fit-content;
  position: relative;
  margin-bottom: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 2px;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #bcd22f;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #bcd22f;
  transform: translateX(8px);
  text-decoration: none;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact i {
  color: #ffffff;
  margin-right: 8px;
}

.footer-map {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: 8px;
}

.footer-bottom {
  border-top: 3px solid #7cc16e;
  padding-top: 15px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

.footer-social-icons a {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-icons a:hover {
  transform: scale(1.2) translateY(-3px);
}

.footer-social-icons i {
  font-size: 20px;
  margin: 0 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover i {
  color: #bcd22f;
}

.abx-hero-section {
  position: relative;
  height: 250px;
  background: url("../image/ABout-us.png") center center/cover no-repeat;
}

.abx-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.abx-hero-stitle {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.abx-about-wrapper {
  background-color: #fff;
}

.abx-section-title {
  color: #1d1d1d;
}

.abx-divider {
  width: 50px;
  height: 4px;
  background-color: #65b741;
  margin: 16px 0;
}

.abx-description {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

.abx-image-container {
  position: relative;
}

.abx-school-image {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .abx-hero-title {
    font-size: 2rem;
  }
}

.abx-info-section {
  padding: 60px 0;
}

.abx-info-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.abx-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.abx-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abx-card-content h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.abx-card-content small {
  display: inline-block;
  margin-bottom: 10px;
  color: #888;
}

.abx-card-content p,
.abx-card-content ul {
  font-size: 15px;
  color: #444;
  margin: 0;
}

.abx-card-content ul {
  padding-left: 18px;
}

.abx-card-content ul li {
  margin-bottom: 6px;
}

.curriculum-section-title {
  font-weight: bold;
}
.curriculum-subtitle {
  color: #6c757d;
  text-align: center;
}
.curriculum-icon-bullet::before {
  content: "✨";
  margin-right: 8px;
}
.curriculum-highlight-link {
  text-decoration: none;
}
.curriculum-highlight-link.pt {
  color: #0d6efd;
}
.curriculum-highlight-link.nb {
  color: #9b59b6;
}
.curriculum-highlight-link.sea {
  color: #e84393;
}

.custom-card {
  border: none;
  border-radius: 10px;
}
.custom-title {
  font-weight: bold;
}
.custom-bullet a {
  text-decoration: none;
  font-size: 0.95rem;
}
.custom-bullet .work {
  color: #0d6efd;
}
.custom-bullet .art {
  color: #9b59b6;
}
.custom-bullet .health {
  color: #e84393;
}
.custom-bullet .att {
  color: #e74c3c;
}
.custom-bullet .punctual {
  color: #8e44ad;
}
.custom-bullet .respect {
  color: #2980b9;
}
.custom-bullet .rules {
  color: #16a085;
}
.img-fit {
  width: 300px;
  height: auto;
}
.icon-image {
  width: 300px;

  height: auto;
}

.chairperson-section {
  background-color: #f8fbfd;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.chairperson-image {
  width: 100%;
  max-width: 180px;
  border: 3px solid #dee2e6;
  border-radius: 10px;
}
.chairperson-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d3557;
}
.chairperson-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: #4b4b4b;
  margin-top: 1rem;
}
.chairperson-quote-author {
  font-weight: 500;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}
.chairperson-heading {
  font-weight: 600;
  font-size: 1rem;
}
.chairperson-body {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}
.chairperson-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1d3557;
}

/* admission */
.admission-section-jse {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  padding: 3rem 1rem;
}

.admission-title-jse {
  font-weight: 700;
  font-size: 1.5rem;
  color: #1e1e2f;
}
.admission-subheading-jse {
  font-weight: 600;
  font-size: 1.2rem;
  color: #198754;
}
.admission-icon-jse {
  font-size: 1.3rem;
  margin-right: 0.5rem;
  color: #198754;
}
.admission-list-jse li {
  margin-bottom: 0.4rem;
}
.admission-note-jse {
  border-left: 4px solid #26335d;
  padding-left: 1rem;
  color: #4a4a4a;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.req-section-bse {
  padding: 3rem 1rem;
  font-family: "Segoe UI", sans-serif;
}

.req-title-bse {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f1f2f;
}

.req-subhead-bse {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #2e2e2e;
}

.req-list-bse {
  padding-left: 1.2rem;
}

.req-contact-bse p span {
  font-weight: 600;
}

.req-emoji-bse {
  font-size: 1.3rem;
  margin-right: 0.4rem;
}

.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}
.back-to-top {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Button End ***/

/*** Topbar Start ***/

.topbar .top-info {
  letter-spacing: 1px;
}

.topbar .top-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar .top-link a {
  margin-right: 10px;
}

@keyframes mymove {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}

/*** Topbar End ***/

/* Curriculum Common Styles */
.curriculum-card {
  color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.curriculum-card.primary {
  background: linear-gradient(135deg, #96bb7c, #2e471c);
}

.curriculum-card.secondary {
  background: linear-gradient(135deg, #26335d, #00071f);
}

.curriculum-img {
  border-radius: 50%;
  object-fit: cover;
}

.icon-bullet {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.section-heading {
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.table-sm th,
.table-sm td {
  border-bottom: 1px solid #072542;
  vertical-align: middle;
  padding: 0.65rem 1rem;
}

.table-sm {
  width: 80%;
  margin: auto;
}

.highlight-list {
  list-style-type: none;
  padding-left: 0;
}

.highlight-list li::before {
  content: "🔸";
  color: #ffc107;
  margin-right: 0.5rem;
}

.motto {
  font-size: large;
  font-weight: 700;
  margin-top: 2rem;
}

/* Mandatory Public Disclosure Styles */
.duration-text {
  counter-reset: doc-counter;
}

/* Each row = one document entry */
.duration-text .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #000000;
  font-size: 15px;
  line-height: 1.5;
  counter-increment: doc-counter;
}

/* Fix spacing */
.duration-text .text span {
  flex: 1;
}

/* Title wider */
.duration-text .text .text-mid {
  flex: 3;
  padding: 0 12px;
}

/* Right column (document link) aligned to end */
.duration-text .text .text-right {
  flex: 1;
  text-align: right;
}

/* Section headers */
.duration-title .text {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 12px;
  background: #1677d8;
  border: 1px solid #ddd;
}

.duration-title .text span {
  flex: 1;
}

.duration-title .text span:nth-child(2) {
  flex: 3;
  text-align: center;
}

.duration-title .text span.text-right {
  flex: 1;
  text-align: right;
}

/* Link button style */
.duration-text .text a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.duration-text .text a:hover {
  text-decoration: underline;
}

.admission-hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 100px 0;
  text-align: center;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
  z-index: 1060;
  border-top: 2px solid #bcd22f;
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #333;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 10px 0;
  gap: 4px;
}

.mobile-bottom-nav .nav-item i {
  font-size: 20px;
}

.mobile-bottom-nav .nav-item:nth-child(1) i {
  color: #28a745;
}
.mobile-bottom-nav .nav-item:nth-child(2) i {
  color: #25d366;
}
.mobile-bottom-nav .nav-item:nth-child(3) i {
  color: #007bff;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 65px; /* Space for bottom nav */
  }
  .sticky-buttons-container {
    display: none !important;
  }
  .back-to-top {
    bottom: 80px !important; /* Move up to stay above nav */
  }
}

@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

.admission-sticky-btn,
.whatsapp-sticky-btn,
.chatbot-sticky-btn {
  position: fixed;
  right: 30px;
  z-index: 1010;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.admission-sticky-btn {
  bottom: 90px;
  background: linear-gradient(135deg, #28a745, #20c997);
  animation: admission-pulse 2s infinite;
}

.whatsapp-sticky-btn {
  bottom: 160px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  animation: whatsapp-pulse 2s infinite;
}

.chatbot-sticky-btn {
  bottom: 230px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  animation: chatbot-pulse 2s infinite;
}

.admission-sticky-btn:hover,
.whatsapp-sticky-btn:hover,
.chatbot-sticky-btn:hover {
  transform: translateY(-5px) scale(1.1);
  color: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes chatbot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

@keyframes admission-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  }

  50% {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.8);
  }

  100% {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  }
}

.admission-btn-icon {
  animation: admission-bounce 1s infinite alternate;
}

@keyframes admission-bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-3px);
  }
}

.admission-modal-xl {
  max-width: 1200px;
}

.admission-modal-header {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border-bottom: none;
}

.admission-modal-body {
  max-height: 70vh;
  overflow-y: auto;
  padding: 0;
}

.admission-section {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admission-section-title {
  color: #2c3e50;
  border-bottom: 2px solid #28a745;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.admission-required {
  color: #dc3545;
}

.admission-form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.admission-submit-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.admission-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .admission-sticky-btn,
  .whatsapp-sticky-btn,
  .chatbot-sticky-btn {
    right: 25px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .whatsapp-sticky-btn {
    bottom: 150px;
  }
  .chatbot-sticky-btn {
    bottom: 210px;
  }
}

@media (max-width: 992px) {
  .admission-sticky-btn,
  .whatsapp-sticky-btn,
  .chatbot-sticky-btn {
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .admission-sticky-btn {
    bottom: 80px;
  }
  .whatsapp-sticky-btn {
    bottom: 135px;
  }
  .chatbot-sticky-btn {
    bottom: 190px;
  }
}

@media (max-width: 768px) {
  .admission-sticky-btn,
  .whatsapp-sticky-btn,
  .chatbot-sticky-btn {
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .admission-sticky-btn {
    bottom: 75px;
  }
  .whatsapp-sticky-btn {
    bottom: 125px;
  }
  .chatbot-sticky-btn {
    bottom: 175px;
  }

  .admission-modal-xl {
    max-width: 95%;
  }
}

@media (max-width: 576px) {
  .admission-sticky-btn,
  .whatsapp-sticky-btn,
  .chatbot-sticky-btn {
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .admission-sticky-btn {
    bottom: 70px;
  }
  .whatsapp-sticky-btn {
    bottom: 115px;
  }
  .chatbot-sticky-btn {
    bottom: 160px;
  }
}

@media (max-width: 480px) {
  .admission-sticky-btn,
  .whatsapp-sticky-btn,
  .chatbot-sticky-btn {
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .admission-sticky-btn {
    bottom: 85px;
  }
  .whatsapp-sticky-btn {
    bottom: 125px;
  }
  .chatbot-sticky-btn {
    bottom: 165px;
  }
}

@media (max-width: 380px) {
  .admission-sticky-btn,
  .whatsapp-sticky-btn,
  .chatbot-sticky-btn {
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .admission-sticky-btn {
    bottom: 85px;
  }
  .whatsapp-sticky-btn {
    bottom: 122px;
  }
  .chatbot-sticky-btn {
    bottom: 159px;
  }
}
