  .AA:hover{
    color: var(--colors)!important;
  background: color-mix(in srgb, var(#5d5d5d), transparent 75%)!important;
  }
  .AB{
  color: var(#000000)!important;
  background-color: color-mix(in srgb, var(#ffb143), transparent 0%)!important;
  }
  .B:hover{
    color:#000!important;
  background-color:#fff!important;
  }
  .learn-more-text {
    color: #e89f02;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;

}

.learn-more-text:hover {
    color: #fedd4d;
    text-decoration: underline;
}
  .learn-more {
      float: right;
      display: inline-block;
      color: #ffffff;
      text-decoration: none;
      padding: 5px 10px;
      background-color: #414141;
      border: 3px solid #000000;
      border-radius: 20px;
      transition: all 0.3s ease;
      cursor: pointer;
      margin-bottom: 2px;
  }

  .learn-more:hover {
      color: #fff;
      background-color: #000000;
      border-color: #717171;
      text-decoration: none;
  }
  .stage-table {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-around;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
}
.stage {
    background-color: #000;
    flex: 1;
    padding: 20px;
    margin: 5px;
    color: #fff;
    font-weight: bold;
    box-sizing: border-box;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.stage:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.stage.upper-primary { background: linear-gradient(135deg, #ff9500, #ff7f00); }
.stage.igcse { background: linear-gradient(135deg, #ff9500, #ff7f00); }
.stage.lower-primary h2,
.stage.lower-secondary h2,
.stage.pre-university h2 {
    color: #ffa600;
}
.stage.lower-primary p,
.stage.lower-secondary p,
.stage.pre-university p {
  margin-top: 10%;
}

.stage.upper-primary p,
.stage.igcse p {
  margin-top: 10%;
}

.stage.upper-primary h2,
.stage.igcse h2 {
    color: #000;
    font-weight: bold;
}
h2 {
    margin-top: 0;
    font-weight: bold;
}
@media (max-width: 768px) {
    .stage {
        flex: 0 0 100%;
        margin: 10px 0;
    }
    .stage-table {
        flex-direction: column;
    }
}
.expandable-section .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.expandable-section .content.expanded {
  max-height: 1000px;
}

.toggle-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 15px;
  cursor: pointer;
  background: linear-gradient(45deg, #ff8a00, #ffa200);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
  margin-bottom: 15px;
}

.toggle-box:hover {
  background: linear-gradient(45deg, #ffa200, #ff8a00);
  transform: scale(1.05);
}

.arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transition: transform 0.3s ease;
}

.arrow.down {
  transform: rotate(45deg);
}

.arrow.up {
  transform: rotate(-135deg);
}

.A {
  text-align: center !important;
}
.teacher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(145deg, #ff8a00, #000000);
   width: 280px;
  height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.teacher-card:hover {
  transform: translateY(-10px);
}
.teacher-card img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 10px;
  border: 5px solid #ff8a00;
}
.teacher-card h3 {
  color: #ff8a00;
  margin: 10px 0 5px;
  font-size: 1.2em;
}
.teacher-card p {
  color: #ffffff;
  font-size: 1em;
}
.swiper-container {
position: relative;
  width: 100%;
  max-width: 1024px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.swiper-wrapper {
  display: flex;
  align-items: center; 
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
}
.swiper-slide-prev, .swiper-slide-next {
  opacity: 0.5;
  transform: scale(0.8);
}
.swiper-pagination {
  position: absolute; 
  bottom: 10px; 
  left: 50%!important; 
  bottom: 0%!important;
  transform: translateX(-50%); 
  display: flex; 
  justify-content: center; 
  z-index: 1; 
}

.swiper-pagination-bullet {
  background-color: #ff8a00; 
  opacity: 1; 
  width: 12px; 
  height: 12px;  
  border-radius: 50%; 
  margin: 0 4px;  
}

.swiper-pagination-bullet-active {
  background-color: #000000; 
} 

.swiper-button-next, .swiper-button-prev {
    color: #ff8a00;
    width: 44px;
    height: 44px;
    background-size: 22px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10; 
    top: 65%; 
    transform: translateY(-50%);
}

.swiper-button-next {
    right: 5%; 
}

.swiper-button-prev {
    left: 5%; 
}       


@media (max-width: 640px) {
  .swiper-container {
      padding: 0 10px; 
  }
  .swiper-slide {
      width: 200px;  
      height: 300px;  
  }
}

@media (min-width: 1024px) {
  .swiper-slide {

      width: 280px; 
      height: 350px; 
      
  }
}
.swiper-slide p{
  font-family: Caveat;
  font-size: large;
  line-height: 0.8;
}
.swiper-slide h3{
  font-weight: bold;     
}
.contact-section {
  padding: 60px 0;
  background: #f4f4f4;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-section .section-title h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.contact-section .section-title p {
  font-size: 1.1rem;
  color: #666;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-card i {
  font-size: 2rem;
  color: #ff8a00;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

.contact-card a {
  text-decoration: none;
  color: #ff8a00;
}
.form-container {
  display: none; 
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 1000;
  max-width: 90%;
  width: 400px;
}

.form-container form {
  display: flex;
  flex-direction: column;
}

.form-container h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.form-container label {
  margin-top: 15px;
  font-size: 16px;
  color: #555;
}

.form-container input {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  transition: border 0.3s ease, background 0.3s ease;
}

.form-container input:focus {
  border-color: #ff416c;
  background: #fff;
  outline: none;
}

.form-container button {
  margin-top: 20px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  color: #fff;
  background: #ff416c;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 65, 108, 0.3);
}

.form-container button:hover {
  background: #ff4b2b;
  transform: translateY(-2px);
}

#closeBtn {
  background: #f44336;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  padding: 5px;
  border: none;
  transition: background 0.3s ease;
}

#closeBtn:hover {
  background: #d32f2f;
}

.show-form {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hide-form {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.overlay.show-overlay {
  display: block;
}



#notification {
display: none;
position: fixed;
top: 20px;
right: 20px;
background-color: #4CAF50;
color: white;
padding: 15px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
z-index: 9999;
}

#notification.error {
background-color: #f44336;
}


.registerBtn {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 50px;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.5);
  position: relative;
  overflow: hidden;
}

.registerBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}

.registerBtn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.registerBtn:hover {
  box-shadow: 0 6px 20px rgba(255, 65, 108, 0.7);
  transform: translateY(-2px);
}

.registerBtn:active {
  transform: translateY(1px);
  }
  .whatsapp-button {
    position: fixed;
    bottom: 20px; 
    left: 20px;  
    z-index: 1000;
}

.whatsapp-button a {
    display: inline-block;
}

.whatsapp-button img {
    width: 50px;  
    height: auto;
}
.login {
  color: #ffffff;
  background: #000000;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 5px;
  border-radius: 50px;
  transition: 0.3s;
  float: right;
  margin-right: 15px;
}
.login:hover{
  color: #ffffff;
}