  html, body {
    display: block;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
  }
  body{
    background-color: #f0f0f0;
  }

  /* Header */
  header {
    background-color: #f8f9fa;
    padding: 10px 0;
  }
  
  .header_container {
    width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 75px;
    width: auto;
  }
  .nav-right {
  display: flex; /* Group navbar and language dropdown together */
  align-items: center; /* Vertically align them */
  gap: 20px; /* Add space between navbar and language dropdown */
}

/* Navbar styles */
#navbar {
  display: flex; /* Align navbar items horizontally */
  gap: 20px; /* Add spacing between navbar items */
}

#navbar ul {
  list-style: none;
  display: flex;
  gap: 20px; /* Space between navbar items */
}

#navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 20px;
  transition: background-color 0.3s, border-radius 0.3s;
}

#navbar ul li a:hover {
  color: #fff;
  background-color: #007bff;
  border-radius: 50px;
}

/* Language Selector */
.language-dropdown {
  position: relative;
   display: flex;
  margin-left: 20px
}

/* The button with the selected language */
.ls_parent {
  background-color: #202020;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: max-content;
  background-color: #202020;
  border-radius: 10px;
  transition: ease-in 250ms !important;
}

/* Hover effect for the button */
.ls_parent:hover {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  transition: ease-out 250ms !important;
}

/* Dropdown menu */
.ls_content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 150%;
  background-color: #202020;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: -1;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease-in-out 0s;
}

/* Show the dropdown when the button is clicked */
.language-dropdown.open .ls_content {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
}

/* Dropdown links */
.ls_content a {
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  display: block;
  transition: ease-out 250ms;
  border-radius: 10px;
  margin: 5px;
}

/* Hover effect on links */
.ls_content a:hover {
  background-color: #444444;
  text-decoration: none;
  transition: ease-in 250ms;
}

  
  
  #navbar-mobile {
  display: none;
  top: 0;
  right: 0;
  width: 100%;
  padding: 10px 0px;
}

#navbar-mobile ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#navbar-mobile ul li {
  padding: 15px;
  text-align: center;
}

#navbar-mobile ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 20px; /* Add padding for better shape */
  transition: background-color 0.3s, border-radius 0.3s; /* Smooth transition */
}


/* Burger icon styling */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}
  
  /* Footer */
  footer {
    background-color: #020e80;
    color: white;
    padding: 40px 20px;
    margin-top: -4px
  }
  
  .footer_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Evenly space the sections */
    align-items: flex-start; /* Align content to the top */
    flex-wrap: wrap;
  }
  
  .footer_left, .footer_middle, .footer_right {
    flex: 1;
    min-width: 200px; /* Ensure minimum width for smaller screens */
    padding: 10px;
  }
  
  .footer_left, .footer_middle {
    text-align: left; /* Align text to the left */
  }
  
  .footer_right {
    text-align: right; /* Align button to the right */
  }
  
  .footer_left h3, .footer_middle h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .footer_left p, .footer_middle p {
    margin: 5px 0;
    font-size: 14px;
  }
  
  .footer_middle a {
    color: #25d366; /* WhatsApp green for the phone link */
    text-decoration: none;
  }
  
  .contact-btn {
    background-color: #ff6347; /* Button background */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s;
    display: inline-block;
  }
  
  .contact-btn:hover {
    background-color: #e5533b;
  }
  
  .footer_bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #fff; /* Optional separator line */
    margin-bottom: -20px;
  }

  .footer_bottom p {
    font-size: medium;
  }
  
  .whatsapp-button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    width: 60px; /* Button width */
    height: 60px; /* Button height */
    background-color: #25D366; /* WhatsApp color */
    border-radius: 50%; /* Round button */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Ensure it's above other elements */
}

.whatsapp-button img {
    width: 30px; /* Icon width */
    height: 30px; /* Icon height */
}


/* Footer */
.footer {
  background-color: #020e80;
  color: white;
  padding: 40px 20px;
  margin-top: -4px;
}

.footer_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 1600px) {
  .header_container {
    width: 90%;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  #navbar {
    display: none;
  }
  .language-dropdown {
      display: none;
  }
}