@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
}








/* Mobile Navigation Styles */
.mobile-nav {
  background-color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #06284B;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 20px;
  text-align: right;
  /* border-bottom: 1px solid #E6BA20; */
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #06284B;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E6BA20;
}

.mobile-menu-body{
    padding: 0px 20px 20px 20px;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items li {
  margin-bottom: 0;
  border-bottom: 1px solid #E6BA20;
}

.mobile-menu-items a {
  display: block;
  padding: 15px 0;
  color: #06284B;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-menu-items a:hover {
  color: #FAB91F;
  padding-left: 10px;
}

.mobile-menu-contact {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #FAB91F;
}

.contact-info {
  display: flex;
  align-items: center;
  color: #E6BA20;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info i {
  margin-right: 10px;
  color: #E6BA20;
}

.mobile-book-btn {
  width: 100%;
  padding: 12px 20px;
  background-color: #FAB91F;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-book-btn:hover {
  background-color: #FAB91F;
  transform: translateY(-2px);
}

.mobile-menu-footer {
  /* margin-top: 30px; */
  padding: 20px 0;
  /* border-top: 1px solid #E6BA20; */
  text-align: center;
}

.mobile-logo-footer {
  margin-bottom: 5px;
}

.mobile-copyright {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

.mobile-copyright p {
  margin: 2px 0;
}

.thyo-link {
  color: #FAB91F;
  font-weight: 600;
}



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0rem !important;
}


/* Responsive table scroll for mobile */
@media (max-width: 767px) {
   
    .fonts-s-1{
        font-size: 1.6rem !important;
    }
     .fonts-s-3{
        font-size: 2.6rem !important;
    }
    .fonts-s-2{
        font-size: 1rem !important;
    }
     .fonts-s-4{
        font-size: 0.8rem !important;
    }

    .slider {
    padding: 10px 0 !important;
}

.slider-rtl {
    padding: 10px 0 !important;

}
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table {
        min-width: 600px; /* or higher if needed */
    }

    .phone-size2{
     font-size: 0.85rem !important;
    }
}









  .trusted-businesses{
       background: #06284B;
  }
  .slider {
    background: #06284B;
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
  }
  .slide-track {
    display: flex;
    width: calc(220px * 14);
    animation: scroll 40s linear infinite;
    gap: 32px;
  }
  /* .slide {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 100px;
    margin: 0;
    padding: 0;
  } */
  .slide img {
   max-width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 7)); }
  }
  @media (max-width: 767px) {
    .slide-track {
      width: calc(140px * 14);
      gap: 16px;
    }
    .slide {
      width: 140px;
      /* height: 70px; */
    }
    .slide img {
      max-width: 100px;
      max-height: 50px;
    }
  }






  .slider-rtl {
    background: #06284B;
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
  }
  .slide-track-rtl {
    display: flex;
    width: calc(220px * 14);
    animation: scroll-rtl 40s linear infinite;
    gap: 32px;
  }

  .slide-rtl img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
  }
  @keyframes scroll-rtl {
    0% { transform: translateX(calc(-220px * 7)); }
    100% { transform: translateX(0); }
  }
  @media (max-width: 767px) {
    .slide-track-rtl {
      width: calc(140px * 14);
      gap: 16px;
    }
    .slide-rtl {
      width: 140px;
      /* height: 70px; */
    }
    .slide-rtl img {
      max-width: 100px;
      max-height: 50px;
    }
  }




  .approach-section {
    min-height: 550px;
    position: relative;
    background-size: cover;
    background-position: center;
  }
  .approach-form input::placeholder {
    color: #888;
    opacity: 1;
  }
  @media (max-width: 991.98px) {
    .approach-section h2 {
      font-size: 2.5rem;
      text-align: center;
    }
    .approach-section .d-flex {
      font-size: 1.1rem;
      flex-direction: row;
      justify-content: center;
      text-align: left;
    }
    .approach-form {
      padding: 0;
    }
  }


  .trusted-text{
    color: #FF941F !important;
    font-family:Poppins;
    font-size: 2rem;

  }



.teacher-btn-view:hover, .teacher-btn-view:focus {
    background: #F9B81E !important;
    color: #142B4C !important;
    border: 1px solid #142B4C !important;
    box-shadow: 0 4px 16px rgba(249,184,30,0.18);
    transform: translateY(-2px) scale(1.04);
    transition: all 0.2s;
}
.teacher-btn-apply:hover, .teacher-btn-apply:focus {
    background: linear-gradient(90deg, #05284E 0%, #0A3D6E 100%) !important;
    color: #F9B81E !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(5,40,78,0.18);
    transform: translateY(-2px) scale(1.04);
    transition: all 0.2s;
}


/* Modern flex-light hover effect for .why-choose-img-hover */
.why-choose-img-hover {
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 2px 12px rgba(20,43,76,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #fff 70%, #F9B81E22 100%);
}

.why-choose-img-hover:hover,
.why-choose-img-hover:focus-within {
    box-shadow: 0 8px 32px 0 rgba(249,184,30,0.18), 0 0 32px 0 #F9B81E33;
    transform: scale(1.04) translateY(-4px);
    background: linear-gradient(120deg, #fff 60%, #F9B81E55 100%);
}

.why-choose-img-hover img {
    transition: filter 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 0 0 transparent;
}

.why-choose-img-hover:hover img,
.why-choose-img-hover:focus-within img {
    filter: brightness(1.08) drop-shadow(0 4px 24px #F9B81E55);
    box-shadow: 0 0 32px 0 #F9B81E33;
}



/* Add to your CSS file or inside a <style> block */
.area-card {
    background: #F9B81E;
    border-radius: 22px;
    padding: 0 0 1.2rem 0;
    box-shadow: 0 2px 12px rgba(20,43,76,0.07);
    max-width: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.25s, transform 0.25s;
}
.area-card:hover, .area-card:focus-within {
    box-shadow: 0 8px 32px 0 rgba(5,40,78,0.18), 0 0 32px 0 #F9B81E33;
    transform: scale(1.04) translateY(-4px);
}



.feature-card{
    box-shadow: 0 2px 12px rgba(20,43,76,0.07);
}


.feature-card:hover, .feature-card:focus-within {
    box-shadow: 0 8px 32px 0 rgba(5,40,78,0.18), 0 0 32px 0 #F9B81E33;
    transform: scale(1.04) translateY(-4px);
}





.teacher-card {
    border-radius: 20px;
    transition: box-shadow 0.2s, background 0.2s;
    background: #fff;
}
.teacher-card:hover, .teacher-card:focus-within {
    background: #F9B81E;
    box-shadow: 0 8px 32px rgba(5,40,78,0.10);
}
.teacher-card .card-title,
.teacher-card ul {
    transition: color 0.2s;
}
.teacher-card:hover .card-title,
.teacher-card:hover ul {
    color: #142B4C !important;
}
.teacher-btn {
    /*font-size: 1.1rem;*/
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
}
.teacher-card:hover .teacher-btn {
    background: #fff !important;
    color: #142B4C !important;
    border: 1px solid #142B4C !important;
}
.teacher-card:hover .teacher-btn:last-child {
    background: #05284E !important;
    color: #fff !important;
    border: none !important;
}
.highlight-card {
    background: #F9B81E;
}
.highlight-card .card-title,
.highlight-card ul {
    color: #142B4C !important;
}
.highlight-btn {
    background: #fff !important;
    color: #142B4C !important;
    border: 1px solid #F9B81E !important;
}
.highlight-card .teacher-btn:last-child {
    background: #fff !important;
    color: #05284E !important;
    border: 1px solid #F9B81E !important;
}
@media (max-width: 767.98px) {
    .teacher-card { border-radius: 12px; }
    .card-img-top { border-radius: 12px 12px 0 0 !important; }
}

