/*NAVBAR CSS*/
.Navbardiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px; /* Added left and right padding */
  }
  
  .Navimg img {
    height: 70px;
    width: auto;
    margin: 10px 0;
  }
  
  .Navbar {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .Navbar li {
    margin: 0 15px;
  }
  
  .Navbar a {
    text-decoration: none;
    font-family: Verdana, sans-serif;
    font-size: 15px;
  }
  
  .NavButton {
    padding: 7px 15px; /* Increased button padding for a better look */
    background-color: #007bff;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
  }
  
  .NavButton:hover {
    background-color: #0056b3;
  }
  
  .MenuToggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .Navbardiv {
      flex-direction: row; /* Keep logo and toggle in a single row */
      justify-content: space-between; /* Spread items to both sides */
      padding: 10px 20px; /* Adjusted padding for mobile view */
    }
  
    .Navimg img {
      height: 60px; /* Slightly smaller logo for mobile */
      margin: 10px 0;
    }
  
    .Navbar {
      display: none; /* Hidden by default */
      flex-direction: column;
      background-color: #f9f9f9;
      position: absolute;
      top: 70px; /* Adjusted to appear below the header */
      left: 0;
      width: 100%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 10px 0; /* Padding for dropdown items */
    }
  
    .Navbar.active {
      display: flex; /* Show when active */
    }
  
    .Navbar li {
      margin: 10px 0; /* Add spacing between links in dropdown */
      text-align: center;
    }
  
    .MenuToggle {
      display: block; /* Show hamburger menu */
      margin-left: auto; /* Push the hamburger icon to the right */
    }
  
    .NavButton {
      width: 90%; /* Full-width buttons in mobile view */
      margin: 5px auto; /* Center the buttons */
      text-align: center;
    }
  }

  /* footer  */
footer {
    background-color: #003d83;
    color: white;
    padding: 20px 0;
    font-family: "Trebuchet MS", sans-serif;
    margin-top: auto;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px; /* Minimum width for each column */
    margin: 10px;
  }
  
  .footer-column h3 {
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin: 5px 0;
  }
  
  .footer-column a {
    color: white;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  .social-media a {
    margin-right: 10px;
  }
  
  .social-media img {
    width: 24px; /* Adjust size of social media icons */
    height: 24px;
  }

  /* Responsive Styles Footer*/
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
  
    .footer-column {
        text-align: center;
    }
  }