* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  #mainNav {
    margin-top: 1rem;
    background-color: #EABE6C;
  }
  
  .dropdown-menu :hover{
    background-color:#0A3981;
    color: white;
  
  }
  
  #mainNav .navbar-toggler {
    
    font-size: 0.75rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-transform: uppercase;
    font-weight: 700;
  }
  
  #mainNav .navbar-toggler .img {
    width: 3rem;
  }
  
  #mainNav .navbar-nav .nav-item .nav-link {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    color: #000000;
    letter-spacing: 0.0625em;
  }
  
  #mainNav .navbar-nav .nav-item .nav-link.active,
  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #0A3981;
  }
  .practice {
    color: #0A3981;
  }
  
  
  @media (min-width: 992px) {
    #mainNav {
      margin-top: 1rem;
      padding-top: 0.5rem;
      border: none;
      transition: padding-top 0.3s ease-in-out;
    }
  
    #mainNav .navbar-brand {
      font-size: 1.5em;
      transition: font-size 0.3s ease-in-out;
    }
  
    #mainNav .navbar-brand img {
      height: 2rem;
      transition: height 0.3s ease-in-out;
    }
  
    #mainNav.navbar-shrink {
      padding-top: 1rem;
      background-color: #212529;
    }
  
    #mainNav.navbar-shrink .navbar-brand {
      font-size: 1.25em;
    }
  
    #mainNav.navbar-shrink .navbar-brand svg,
    #mainNav.navbar-shrink .navbar-brand img {
      height: 1.5rem;
    }
  
    #mainNav .navbar-nav .nav-item {
      margin-right: 1rem;
    }
  
    #mainNav .navbar-nav .nav-item:last-child {
      margin-right: 0;
    }
  }

  
  .carousel {
    margin-top: 6rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
   
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.9s ease-in-out;
    animation: slide 9s infinite;
  }

  .carousel-slide {
    min-width: 100%;
  
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @keyframes slide {
    0% { transform: translateX(0); }
    33.33% { transform: translateX(-100%); }
    66.66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
  }
  .qa-container:last-child {
    border-bottom: none;
  }

  .question {
    background: #007bff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
  }

  .question:hover {
    background: #0056b3;
  }

  .answer {
    padding: 15px;
    font-size: 1rem;
    font-weight: ;
    line-height: 1.6;
    display: none;
    background: #f9f9f9;
  }

  .icon {
    font-size: 1.3rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
  }

  .icon.rotate {
    transform: rotate(90deg);
  }

  /* Responsive Design */
  @media (max-width: 600px) {

    .qa-container{
      width: 100%;
    }
    .question {

      font-size: 1rem;
      padding: 12px;
    }
    .answer {
      font-size: 0.9rem;
      padding: 12px;
    }
  }

  

 /* Footer Styles */
footer {
  background-color: #EABE6C;
  color: #000000;
  margin-top: 2rem;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #000000;
  font-size: larger;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #575757; /* Change this to your brand color */
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
}




.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 11px;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.call-button {
  width: 10rem;
  background-color: #D4EBF8; /* WhatsApp blue */
}

.call-button:hover {
  background-color: #2d68ff; /* blue */
}

.whatsapp-button {
  width: 10rem;
  background-color: #D4EBF8; /* WhatsApp green color */
  
}

.whatsapp-button:hover {
  background-color: #128c7e; /* Darker green */

}

.button i {
  margin-right: 10px;
}

.footer-map a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #f39c12;
  color: #222;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.footer-map a:hover {
  background-color: #d87d0e; /* Darker shade on hover */
  color: #fff;
}

  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar .menu {
      display: none;
      flex-direction: column;
      background-color: #333;
      position: absolute;
      top: 60px;
      right: 10px;
      width: 200px;
      padding: 10px;
      border-radius: 8px;
    }
  
    .navbar .menu.show {
      display: flex;
    }
  
    .navbar .burger {
      display: flex;
    }
  
    .carousel-btn {
      padding: 5px;
    }
  
  
  }
  
  @media (max-width: 480px) {
    .navbar .menu a {
      font-size: 14px;
    }
  

  }
  