@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: #01108F;
  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: #01108F;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

.mobile-menu-body {
  padding: 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: #01108F;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

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

.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: #EE861E;
  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: #EE861E;
  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: #EE861E;
  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;
    }
}





.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
    color: #01108f !important;
    font-weight: 600;
    background-color: #f2faff;
  border-radius: 10px;
  overflow: hidden;
    transition: color 0.2s;
}

.navbar-nav .nav-link{
    color: #313131 !important;
}





  .trusted-businesses{
       background: #01108F;
  }
  .slider {
    background: #01108F;
    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: #01108F;
    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;

  }