body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Segoe UI", sans-serif;
}
:focus,
:active {
  box-shadow: none !important;
}
/*====================TOP BAR STYLING==================*/
.top-header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 2px solid #f1c40f;
}

.icon-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-square {
  border: 1px solid #f1c40f;
  padding: 6px;
  border-radius: 5px;
}

/*=======================header styling=========================*/
.menu-wrapper {
  background: transparent;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: auto;
}

@media (max-width: 1052px) {
  .menu-wrapper {
    background: transparent;
    display: flex;
    justify-content: center;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}
.menu-inner {
  background: #f1c40f;
  position: relative;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
  z-index: 1;
}

.menu-inner::before,
.menu-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 100%;
  background: #f1c40f;
  z-index: -1;
}
.menu-inner::before {
  left: -39px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.menu-inner::after {
  right: -39px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/*============================menu bar==========================*/
.navbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.navbar-nav {
  display: flex;
}
.navbar .nav-link {
  position: relative;
  display: inline-block;
  color: #fff !important;
  font-weight: 600;
  font-size: 12px !important;
  text-transform: uppercase !important;
  padding: 12px 20px;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s ease;
  opacity: 0;
}

.nav-link::before {
  left: 0;
  transform: translateY(-100%);
}

.nav-link::after {
  right: 0;
  transform: translateY(100%);
}

.nav-link:hover::before {
  transform: translateY(0);
  opacity: 1;
}

.nav-link:hover::after {
  transform: translateY(0);
  opacity: 1;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  animation: dropdownFade 0.4s ease-in-out;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*================Dropdown style====================== */
.dropdown-menu {
  background-color: #e0192d;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}

.dropdown-item::before {
  content: "→";
  position: absolute;
  left: 10px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #fff;
}

.dropdown-item:hover {
  background-color: #f1c40f;
  padding-left: 30px;
}

.dropdown-item:hover::before {
  opacity: 1;
  left: 15px;
}
/* Responsive Fix */
@media (max-width: 991.98px) {
  .menu-inner::before,
  .menu-inner::after {
    display: none;
  }

  .dropdown-menu {
    position: static !important;
    display: none;
  }

  .dropdown.show .dropdown-menu {
    display: block;
  }

  .navbar-nav .dropdown:hover .dropdown-menu {
    display: none !important;
  }
}

/*==================HERO CROUSEL STYLING================*/
.hero-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
  max-height: 700px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 10%;
  max-width: 500px;
  padding: 30px;
  background-color: rgba(44, 90, 160, 0.85);
  color: white;
  border-radius: 10px;
  animation: slideUp 0.8s ease-out;
}



@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #f8b739;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #e6a932;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #2c5aa0;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background-color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: white;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-carousel {
    height: 60vh;
  }

  .slide-content {
    left: 5%;
    right: 5%;
    max-width: none;
    padding: 20px;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }
}
/*=========================DOWNLOAD ANNCO STYLING=======================*/
.info-box {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  transition: 0.4s;
  height:100%;
}
.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}
.section-heading {
  margin-bottom: 50px;
  position: relative;
}

.subtitle {
  color: #e74c3c;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.main-title {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.line-decoration {
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #f1c40f, #e74c3c);
  margin: 20px auto 0;
  border-radius: 2px;
  position: relative;
  animation: animateLine 2s infinite ease-in-out;
}

@keyframes animateLine {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.5);
  }
}
.main-title:hover {
  text-shadow: 0 0 10px #f1c40f, 0 0 20px #e74c3c;
  transition: all 0.3s ease;
}
.info-box-icons {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  z-index: 1;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bg-download {
  background: linear-gradient(145deg, #2980b9, #3498db) !important;
}
.bg-announ {
  background: linear-gradient(145deg, #c0392b, #e74c3c);
}
.bg-links {
  background: linear-gradient(145deg, #27ae60, #2ecc71);
}

.info-box:hover .info-box-icons {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-list a li {
  padding: 6px 0;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.download-list a {
  color: #000;
  text-decoration: none;
}
.download-list li:hover {
  padding-left: 10px;
  font-weight: 600;
  color: #e67e22;
}

/* New Stylish Button */
.btn-modern {
  position: relative;
  display: inline-block;
  padding: 6px 18px;
  font-weight: 600;
  color: #fff;
  background-color: #f39c12;
  border: none;
  text-decoration: none;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.4s;
  z-index: 1;
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e74c3c;
  transition: 0.4s;
  z-index: -1;
}

.btn-modern:hover::before {
  left: 0;
}

.btn-modern:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.section-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}

.announcement-marquee-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.announcement-marquee {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: scrollUp 10s linear infinite;
}

.announcement-marquee-wrapper:hover .announcement-marquee {
  animation-play-state: paused;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
/*=========================ABOUT STYLING=======================*/
.about-section {
  padding: 80px 0;
  background: #fffef8;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  padding-bottom: 120%;
  position: relative;
}

.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  top: 30px;
  right: -15px;
  background: #2c5aa0;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(44, 90, 160, 0.3);
}

.years {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.badge-text {
  font-size: 0.9rem;
  display: block;
  margin-top: 5px;
}

.about-subtitle {
  color: #f8b739;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 30px;
  font-family: "Lobster Two", cursive;
  line-height: 1.3;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: #f8b739;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(221, 234, 73, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #dc3545;
  font-size: 1.2rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  font-family: "Lora", serif;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #dc3545;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
  display: block;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: #f1c40f;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(235, 248, 85, 0.3);
}

.cta-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  background: #f1c40f;
  color: #dc3545 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(221, 240, 115, 0.4);
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }

  .stat-item {
    flex: 0 0 100%;
  }

  .image-badge {
    top: 15px;
    right: -10px;
    padding: 10px 15px;
  }

  .years {
    font-size: 2rem;
  }
}
/*============WHY CHOOSE STYLING===============*/

.feature-box {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #ddd;
  padding: 30px 20px;
  text-align: center;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.feature-box::before,
.feature-box::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #f1c40f);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: center;
}

.feature-box::before {
  top: 0;
}
.feature-box::after {
  bottom: 0;
}

.feature-box:hover::before,
.feature-box:hover::after {
  transform: scaleX(1);
}

.icon-circle {
  font-size: 2rem;
  background: linear-gradient(45deg, #e74c3c, #f1c40f);
  color: white;
  height: 80px;
  width: 80px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.6);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.feature-box:hover .icon-circle {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.7);
}

/* Title & Text */
.feature-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
  text-transform: uppercase;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 767.98px) {
  .icon-circle {
    font-size: 2rem;
    padding: 15px;
  }
}
/*=====================OUR TEACHER STYLING=============*/
.teacher-card {
  position: relative;
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  overflow: hidden;
  z-index: 1;
}

/* Image */
.teacher-img {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f1c40f;
  box-shadow: 0 4px 12px rgba(241, 196, 15, 0.5);
  transition: 0.4s ease;
  position: relative;
}

/* Inner image effect */
.teacher-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover Effects on Card (image inside) */
.teacher-card:hover .teacher-img {
  box-shadow: 0 0 20px #f1c40f;
  border-color: #f39c12;
  transform: scale(1.05);
}

.teacher-card:hover .teacher-img img {
  transform: scale(1.1) rotate(1deg);
}
/* Text */
.teacher-card h5 {
  font-weight: 600;
  color: #333;
  margin-top: 15px;
  font-size:16px;
}
.teacher-card p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* Hover Effects - left and right glowing lines */
.teacher-card::before,
.teacher-card::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 0;
  background: #f1c40f;
  transition: height 0.4s ease;
  z-index: 0;
}

.teacher-card::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.teacher-card::after {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.teacher-card:hover::before,
.teacher-card:hover::after {
  height: 80%;
}

/* --- Carousel Navigation Arrows: Circle Style Bottom --- */
.teacherSwiper {
  position: relative;
  padding-bottom: 60px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #f1c40f;
  border-radius: 50%;
  color: #fff;
  bottom: 5px;
  top: auto;
  transform: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #e74c3c;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.6);
}

@media (min-width: 768px) {
  .swiper-button-next {
    right: 42%;
  }
  .swiper-button-prev {
    left: 42%;
  }
}

@media (max-width: 767px) {
  .swiper-button-next {
    right: 95px;
  }
  .swiper-button-prev {
    left: 95px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-pagination-bullets {
  bottom: 0px;
}

.swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
  margin: 0 4px;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: #f1c40f;
  transform: scale(1.2);
  box-shadow: 0 0 6px #f1c40f;
}
/*=======================ADMISSION PROCESS STYLING=======================*/
.admission-section {
  background: #fffef8;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #2c3e50;
}

.admission-step {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  position: relative;
  border-top: 4px solid #f1c40f;
}

.admission-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c, #f39c12);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.step-text {
  font-size: 15px;
  color: #555;
}
/*============================GALLERY STYLING============================*/
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallery-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

/* Swiper Controls Same As Teachers */
.gallerySwiper {
  padding-bottom: 60px;
}
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #f1c40f;
  border-radius: 50%;
  color: #fff;
  bottom: 5px;
  top: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #e74c3c;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}
.swiper-pagination-bullet {
  background: #bbb;
}
.swiper-pagination-bullet-active {
  background: #f1c40f;
}

/*==================ACHIEVEMENTS STYLING============*/
.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #c0392b;
}

.achievement-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.achievement-glass-card:hover {
  box-shadow: 0 10px 40px rgba(241, 196, 15, 0.3);
}

.achievement-glass-card::before,
.achievement-glass-card::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #f1c40f, #e74c3c);
  transition: 0.4s;
  opacity: 0;
}

.achievement-glass-card::before {
  left: 0;
  top: 0;
}

.achievement-glass-card::after {
  right: 0;
  top: 0;
}

.achievement-glass-card:hover::before,
.achievement-glass-card:hover::after {
  opacity: 1;
}

.achieve-circle-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f1c40f;
  box-shadow: 0 0 10px rgba(241, 196, 15, 0.3);
  transition: 0.4s ease;
}

.achieve-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievement-glass-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.achievement-glass-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.btn-view {
  display: inline-block;
  padding: 6px 14px;
  background-color: #f1c40f;
  color: #fff;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-view:hover {
  background-color: #e67e22;
}
.btn-view-all {
  display: inline-block;
  padding: 10px 25px;
  background-color: #e74c3c;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-view-all:hover {
  background-color: #c0392b;
  box-shadow: 0 6px 16px rgba(192, 57, 43, 0.5);
}
/*==================ICT STYLING=====================*/

.accordion-button {
  font-weight: 600;
  background-color: #fef9e7;
  color: #333;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #fcf3cf;
  color: #e67e22;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078"; /* angle-down */
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  content: "\f077"; /* angle-up */
}

.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  margin-bottom: 8px;
  font-size: 15px;
  display: flex;
  align-items: center;
}
/*==================AFFLICATION STYLING=============*/

.aff-card {
  background: #fff;
  border: 2px solid #f1c40f;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.aff-card i {
  font-size: 38px;
  color: #e74c3c;
  margin-bottom: 15px;
}

.aff-card h5 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.aff-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
}

.aff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.aff-card a.btn {
  font-size: 14px;
  border-color: #e67e22;
  color: #e67e22;
}
.aff-card a.btn:hover {
  background-color: #e67e22;
  color: white;
}
/*==================TESTIMONIAL STYLING==============*/
.testimonials-section {
  background: #fffef8;
}

.section-title {
  font-weight: bold;
  font-size: 28px;
  color: #2c3e50;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: 0.4s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  font-size: 30px;
  color: #f1c40f;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: #e74c3c;
}

.testimonial-dots .swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
  transition: 0.3s;
}

.testimonial-dots .swiper-pagination-bullet-active {
  background: #f1c40f;
  transform: scale(1.3);
}

/*====================ENQUIRY FORM=====================*/
.contact-section {
  background: #fefefe;
}

.map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form .form-control:focus {
  border-color: #f1c40f;
  box-shadow: 0 0 0 2px rgba(241, 196, 15, 0.2);
}

.btn-submit {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 6px 14px rgba(231, 76, 60, 0.3);
}

.btn-submit:hover {
  background: #c0392b;
  box-shadow: 0 8px 20px rgba(192, 57, 43, 0.4);
}
.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.contact-box i {
  font-size: 30px;
  color: #f1c40f;
  margin-bottom: 12px;
}

.contact-box h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #2c3e50;
}

.contact-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(241, 196, 15, 0.2);
}
/*======================FOOTER STYLING==================*/
.footer-section {
  background: rgba(44, 62, 80, 0.9);
  backdrop-filter: blur(10px);
  position: relative;
  color: white;
}

.footer-wave svg {
  display: block;
  width: 100%;
  margin-bottom: -1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #f1c40f;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #e67e22;
  text-decoration: underline;
}

.footer-section h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-section p,
.footer-section i {
  font-size: 14px;
}
.footer-section p i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #f1c40f;
  margin-right: 12px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.4s ease;
}

.footer-section p:hover i {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.2) rotate(-5deg);
  color: #e74c3c;
}
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1c40f, #e74c3c);
  color: #fff;
  font-size: 18px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  left: 0;
  transition: 0.4s ease;
}

.social-icons a:hover::before {
  height: 100%;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 16px rgba(231, 76, 60, 0.4);
  color: #fff;
}

.footer-bottom {
  background: #e74c3c;
  font-size: 14px;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  background: #f1c40f;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.back-to-top:hover {
  background: #e74c3c;
  box-shadow: 0 0 15px #e74c3c;
  transform: scale(1.1);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  left: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  z-index: 9999; /* Make sure it's on top */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease;
}
.whatsapp-float::after {
  content: "Chat with us";
  position: absolute;
  left: 65px;
  background: #333;
  color: #fff;
  padding: 4px 8px;
  font-size: 13px;
  border-radius: 4px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
}

.whatsapp-float:hover::after {
  opacity: 1;
}

/*======================OTHER PAGE STYLING=======================*/
/*========HISTORY PAGE STYLE===============*/
.page-banner {
  background: url("../image/logo/S4.jpg") no-repeat center center/cover;
  min-height: 300px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
@media (max-width: 992px) {
  .page-banner {
    min-height: 200px;
  }
}
.page-banner a:hover {
  color: #dc3545 !important;
}
.other-heading-stylish {
  color: #2c3e50; /* Professional dark blue-gray color */
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin: 30px auto;
  margin-bottom: 60px !important;
  width: fit-content;
  max-width: 90%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.other-heading-stylish::before,
.other-heading-stylish::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #ffd54f);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.other-heading-stylish::before {
  left: 0;
  width: 20%;
  background: #dc3545;
}

.other-heading-stylish::after {
  right: 0;
  width: 20%;
  background: #ffd54f;
}

.other-heading-stylish:hover::before,
.other-heading-stylish:hover::after {
  width: 30%;
}

/* Animation for underline */
@keyframes underline-expand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 60%;
    opacity: 1;
  }
}

.other-heading-stylish span {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.other-heading-stylish span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #e74c3c;
  animation: underline-expand 0.8s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .other-heading-stylish {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .other-heading-stylish {
    font-size: 2rem;
    padding-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .other-heading-stylish {
    font-size: 1.8rem;
    margin: 25px auto;
  }

  .other-heading-stylish::before,
  .other-heading-stylish::after {
    height: 2px;
  }
}

@media (max-width: 576px) {
  .other-heading-stylish {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }

  .other-heading-stylish span::after {
    height: 1.5px;
  }
}

.our-school-section .feature-box {
  transition: all 0.3s ease;
}
.our-school-section .feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.our-school-section h2 {
  font-family: "Poppins", sans-serif;
}
.our-school-section .icon i {
  transition: transform 0.3s;
}
.our-school-section .feature-box:hover .icon i {
  transform: rotate(360deg);
}

/*=======================MISSION & VISION PAGE STYLE===========================*/
.vision-mission-section .icon-box {
  font-size: 30px;
}
.vision-mission-section .box {
  transition: all 0.3s ease-in-out;
}
.vision-mission-section .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

/*=======================MESSAGE'S PAGE STYLE===========================*/
.message-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding-top: 20px;
  text-align: center;
}

.message-card:hover {
  transform: translateY(-5px);
}

.message-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, red, yellow);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.message-card:hover::before {
  opacity: 1;
}

.message-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 10px;
  border: 4px solid transparent;
  transition: border 0.4s ease;
  position: relative;
  z-index: 1;
}

.message-card img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
}

.message-card:hover img {
  border: 2px solid red;
  box-shadow: 0 0 15px yellow;
}

.message-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.message-card p {
  font-size: 15px;
  color: #555;
  padding: 10px 20px;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
}

/*===================AFFILIATION PAGE STYLE=================*/
.affiliation-card {
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  background: #f9f9f9;
}
.affiliation-card:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px) scale(1.03);
}
.affiliation-card img {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.affiliation-card:hover img {
  transform: scale(1.1);
}

/*=====================NCTE DISCLOUSER PAGE STYLE===================*/
.ncete-disclosure {
  background-color: #fefefe;
}
.disclosure-table {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.disclosure-table thead {
  background-color: #c62828;
  color: #fff;
}

.disclosure-table th,
.disclosure-table td {
  text-align: center;
  padding: 12px;
  vertical-align: middle;
}

.download-link {
  background-color: #ffc107;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 600;
}

.download-link:hover {
  background-color: #e65100;
  color: #fff;
}

/*====================FACULTY PAGE STYLE==================*/
.faculty-section {
  background: #fdfdfd;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.faculty-block {
  margin-bottom: 40px;
  transition: all 0.3s ease-in-out;
}

.faculty-block h3 {
  font-size: 24px;
  font-weight: 600;
  color: #b30000;
  border-left: 5px solid gold;
  padding-left: 15px;
  margin-bottom: 15px;
  position: relative;
}

.faculty-block h3::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.faculty-block p {
  color: #555;
  font-size: 18px;
  font-family: "Lora", serif;
  text-align: justify;
  line-height: 1.7;
}

/* Hover Effect */
.faculty-block:hover h3 {
  color: #d62828;
  border-left-color: #f6bd00;
}

.faculty-block:hover h3::before {
  background-color: yellow;
}

/* Responsive */
@media (max-width: 768px) {
  .faculty-section .section-title {
    font-size: 26px;
  }

  .faculty-block h3 {
    font-size: 20px;
  }

  .faculty-block p {
    font-size: 15px;
  }
}

/*=======================FACULTY LIST STYLE ======================*/
.faculty-member {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-left: 5px solid #b30000;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 15px;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faculty-member:hover {
  border-left-color: #ffd700;
  transform: translateY(-3px);
}

.faculty-img img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid #b30000;
  object-fit: cover;
  margin-right: 20px;
  transition: 0.3s;
}

.faculty-member:hover .faculty-img img {
  border-color: #ffd700;
}

.faculty-info h4 {
  font-size: 1.2rem;
  margin: 0 0 5px;
  font-weight: 600;
  font-family: "Lora", serif;
  color: #333;
}

.faculty-info p {
  margin: 0;
  color: #555;
  line-height: 2;
  font-family: "Lora", serif;
  text-align: justify !important;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .faculty-member {
    flex-direction: column;
    text-align: center;
  }

  .faculty-img img {
    margin: 0 0 15px 0;
  }
}

/*====================RULES PAGE STYLE==================*/
.teacher-rules-section {
  padding: 60px 20px;
  background: #fdfdfd;
  font-family: "Segoe UI", sans-serif;
}

.teacher-rules-section .container {
  margin: auto;
}
.rules-box {
  border-left: 6px solid #d62828;
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
}

.rules-box:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left-color: #ffc107;
}

.rules-box .subheading-rules {
  font-size: 20px;
  font-family: "Lora", serif;
  text-align: justify;
  font-weight: bold;
  margin-bottom: 12px;
  color: #222;
}
.rules-box p {
  font-size: 18px;
  font-family: "Lora", serif;
  text-align: justify;
  color: #555;
  margin: 0;
}
.rule {
  background: #fff;
  border-left: 6px solid #fbc02d;
  padding: 20px 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.rule:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.rule h4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  text-align: justify;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.rule .arrow {
  color: #d32f2f;
  margin-right: 10px;
  font-size: 22px;
  transition: 0.3s;
}

.rule:hover .arrow {
  color: #fbc02d;
}

.rule p {
  font-size: 16px;
  font-family: "Lora", serif;
  text-align: justify;
  color: #555;
  margin: 0;
}

/*===================FACT OF TEACHING / Code of Conduct PAGE STYLE=================*/
.fact-teaching-section {
  background: #fdfdfd;
}

.fact-subheading {
  color: #2c3e50;
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  border-left: 4px solid #f39c12;
  border-right: 4px solid #e74c3c;
}

.teaching-facts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  background: #fff;
  border-left: 5px solid #f39c12;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fact-item:hover {
  background: #fff8f2;
  border-left-color: #e74c3c;
  transform: translateY(-3px);
}

.fact-item i {
  color: #e74c3c;
  font-size: 18px;
  margin-right: 15px;
  margin-top: 5px;
}

.fact-item p {
  margin: 0;
  font-size: 16px;
  font-family: "Lora", serif;
  text-align: justify;
  color: #2c3e50;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .fact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .fact-item i {
    margin-bottom: 5px;
  }
}

/*=======================TEACHER STRATEGISE PAGE STYLE========================*/
.teacher-strategies-section {
  background-color: #f9f9f9;
}

.strat-heading {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-align: justify;
  font-size: 1.25rem;
  color: #555;
}

.strategy-list {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.strategy-item {
  display: flex;
  align-items: flex-start;
  background: white;
  border-radius: 10px;
  padding: 20px;
  border: 2px solid #eee;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.strategy-item:hover {
  border-color: #ffc107;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  border-right: 4px solid #d32f2f;
  border-bottom: 4px solid #d32f2f;
  transform: rotate(45deg);
  margin-top: 5px;
  margin-right: 20px;
  transition: 0.4s ease;
}

.strategy-item:hover .arrow-icon {
  transform: rotate(90deg);
  border-color: #ffc107;
}

.strategy-content h5 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: #222;
  font-family: "Lora", serif;
  text-align: justify;
  font-weight: 600;
}

.strategy-content p {
  margin: 0;
  color: #666;
  font-family: "Lora", serif;
  text-align: justify;
  font-size: 0.95rem;
}
.strategies-para {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  text-align: justify;
  font-family: "Lora", serif;
  text-align: justify;
}
/*===================RULES REGULATION PAGE STYLE====================*/
.rules-regulations {
  background: #fff7e6;
  padding: 50px 20px;
  border-radius: 12px;
  border: 2px solid #ffc107;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d32f2f;
  text-transform: uppercase;
}

.custom-btn {
  background: linear-gradient(45deg, #ffd700, #ff6347);
  color: #fff;
  font-weight: bold;
  border: none;
  font-size: 1.2rem;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.custom-btn:not(.collapsed) {
  color: #fff;
  background: linear-gradient(45deg, #ffa500, #e53935);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.custom-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.accordion-body {
  background-color: #fffbe7;
  padding: 20px 30px;
  border-top: 1px solid #fdd835;
  font-size: 1rem;
  color: #444;
}

.accordion-body p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  font-size: 16px;
  font-family: "Lora", serif;
}
.accordion-body h4 {
  font-family: "Lobster Two", cursive;
  font-weight: 600;
  line-height: 1.42857143;
  color: #333333;
  margin-top: 25px;
  margin-bottom: 25px;
}
.accordion-body h5 {
  line-height: 1.7;
  color: #3a3939;
  font-size: 18px;
  font-family: "Lora", serif;
}
.accordion-body .arrow-icon {
  display: inline-block;
  margin-right: 10px;
  color: #d32f2f;
  font-size: 1rem;
  transform: rotate(-20deg);
}

/*====================FACILITY PAGE STYLE=======================*/
.special-features-section {
  padding: 60px 20px;
  font-family: "Lora", serif;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
  background: #fff9f0;
  padding-left: 40px;
}

.features-list ul {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding-left: 0;
}

.features-list li {
  font-size: 1rem;
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
  font-family: "Lora", serif;
  text-align: justify;
  color: #333;
}

.special-features-section .arrow-icon {
  position: absolute;
  left: 0;
  color: #d90429;
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.features-list li:hover .arrow-icon {
  transform: translateX(5px);
}

/* Card Styles */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.feature-card {
  background: #fff;
  border: 2px solid #ffd54f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card h4 {
  font-size: 1.2rem;
  color: #d90429;
  margin: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  margin: 0 15px 20px;
  color: #555;
  font-family: "Lora", serif;
  text-align: justify;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-cards {
    gap: 20px;
  }

  .feature-card img {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    max-width: 100%;
  }

  .feature-card h4 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .feature-card img {
    height: 160px;
  }
}

/*======================T.C PAGE STYLE===================*/
/* Form Container */
.form-container {
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Form Title */
.form-title {
  text-align: center;
  color: #ff4500;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.form-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #ffd700, #ff4500);
}

/* Form Groups */
.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.required {
  color: #ff4500;
}

.format-hint {
  font-size: 12px;
  color: #888;
}

/* Input Fields */
.form-group input {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-bottom-color: #ffd700;
}

.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff4500;
  transition: all 0.3s ease;
}

.form-group input:focus ~ .underline {
  width: 100%;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(to right, #ffd700, #ff4500);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  width: 150px;
  text-align: center;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
    margin: 20px;
  }

  .form-title {
    font-size: 20px;
  }

  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 15px;
  }

  .form-group input {
    font-size: 14px;
  }

  .submit-btn {
    padding: 10px;
    font-size: 14px;
  }
}
/*=====================SYLLABUS PAGE STYLE=======================*/
/* Syllabus Section */



/*==========================TOPPER PAGE STYLE=================*/
/* Toppers Section */
.toppers-section {
  padding: 80px 20px;
  background-color: #fff9e6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.toppers-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}

/* Toppers Grid */
.toppers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Topper Card */
.topper-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.topper-card:hover {
  transform: translateY(-10px);
}

.topper-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: #d62b1f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(214, 43, 31, 0.3);
}

.topper-image {
  height: 250px;
  overflow: hidden;
}

.topper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.topper-card:hover .topper-image img {
  transform: scale(1.05);
}

.topper-details {
  padding: 20px;
  text-align: center;
}

.topper-details h3 {
  color: #d62b1f;
  margin-bottom: 5px;
  font-size: 22px;
}

.topper-class {
  color: #666;
  margin-bottom: 10px;
  font-size: 16px;
}

.topper-percentage {
  font-size: 28px;
  font-weight: bold;
  color: #ffd700;
  margin: 15px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.topper-achievements {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.topper-achievements span {
  background: #f0f0f0;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
}

/* View Button */
.view-all {
  text-align: center;
  margin-top: 50px;
}

.view-btn {
  background: linear-gradient(to right, #ffd700, #d62b1f);
  color: white;
  border: none;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(214, 43, 31, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .toppers-section {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .toppers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .topper-percentage {
    font-size: 24px;
  }

  .view-btn {
    width: 100%;
    padding: 10px;
  }
}

/*========================EVENT GALLERY PAGE STYLE====================*/
/* Gallery Section */
.gallery-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.event-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #fff;
}

.event-info p {
  color: #ffd700;
  font-size: 16px;
}

/* View More Button */
.view-more {
  text-align: center;
  margin-top: 50px;
}

.view-btn {
  background: linear-gradient(to right, #ffd700, #d62b1f);
  color: white;
  border: none;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(214, 43, 31, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .view-btn {
    width: 100%;
    padding: 10px;
  }
}
/*============================MEDDIA GALLERY PAGE STYLE==================*/
/* Media Gallery Section */
.media-gallery {
  padding: 80px 20px;
  background-color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}

/* Media Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.media-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

.media-item:hover {
  transform: translateY(-5px);
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Indicator */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(214, 43, 31, 0.8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video:hover .play-icon {
  opacity: 1;
}

/* Media Overlay */
.media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.media-item:hover .media-overlay {
  opacity: 1;
}

.media-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #fff;
}

.media-info p {
  color: #eee;
  font-size: 15px;
  margin-bottom: 8px;
}

.media-type {
  display: inline-block;
  padding: 3px 10px;
  background-color: #ffd700;
  color: #333;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

/* View More Button */
.view-more {
  text-align: center;
  margin-top: 50px;
}

.view-btn {
  background: linear-gradient(to right, #ffd700, #d62b1f);
  color: white;
  border: none;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(214, 43, 31, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .media-gallery {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .media-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .view-btn {
    width: 100%;
    padding: 10px;
  }
}

/*===============================VIDEO GALLERY PAGE STYLE=====================*/
/* Video Gallery Section */
.video-gallery {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(214, 43, 31, 0.8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
}

.video-item:hover .play-btn {
  background-color: rgba(214, 43, 31, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video Info */
.video-info {
  padding: 20px;
}

.video-info h3 {
  color: #d62b1f;
  font-size: 20px;
  margin-bottom: 8px;
}

.video-date {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.video-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* View More Button */
.view-more {
  text-align: center;
  margin-top: 50px;
}

.view-btn {
  background: linear-gradient(to right, #ffd700, #d62b1f);
  color: white;
  border: none;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(214, 43, 31, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .video-gallery {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .video-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .view-btn {
    width: 100%;
    padding: 10px;
  }
}
/*=======================CONTACT PAGE STYLE=================*/
.contacts-box {
  background: #fff;
  border: 2px solid #ff0000;
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
}

.contacts-box:hover {
  transform: translateY(-8px);
  background-color: #ffebcc;
}

.contacts-box .icon {
  font-size: 32px;
  color: #ff0000;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

.contacts-form {
  background: #fff;
  border: 2px solid #ffc107;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.contacts-form h4 {
  color: #d32f2f;
}

.contacts-form .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
}

.maps-box iframe {
  border-radius: 15px;
  border: 2px solid #ffc107;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
