* {
  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:#007bff;
  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;
}
.contactus {
  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;
  }
}

.main-content {
  
  background: #ffffff;

  animation: gradientAnimation 15s ease infinite;
  padding: 2rem;
  margin-top: 6rem;

  border-radius: 8px;
}

.contact-info, .contact-form {
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info address, .contact-form {
  animation: slideInUp 1s ease-in;
}

.contact-info address {
  font-style: normal;
}

.contact-info p {
  margin: 0.5rem 0;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.contact-form label {
  display: block;
  margin-top: 0.5rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #0B2F9F;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #161D6F;
}



/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
      font-size: 1.5rem;
  }

  .contact-form input, .contact-form textarea {
      font-size: 0.9rem;
  }

  .contact-form button {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
      font-size: 1.2rem;
  }

  .main-content {
      padding: 1rem;
  }

  .contact-form input, .contact-form textarea {
      font-size: 0.8rem;
  }

  .contact-form button {
      font-size: 0.8rem;
  }
}

/* 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;
  }

  .about-div h2,
  .animated-background h2 {
    font-size: 20px;
  }

}
