.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 16px 0px #00000021;
    flex-wrap: nowrap;
    position: relative;

  }

  .navContent-container {
    width: 100%; 
    display: flex; 
    align-items: center; 
    padding: 10px 32px; 
  }
  
  .nav-left {
    flex: 1;
  }
  
  .logo {
    height: 50px;
  }
  
  .nav-center {
    display: flex;
    align-items: center;
    flex: 2;
    justify-content: center;
    gap: 40px;
    margin-right: 40px;
  }
  
  .nav-item {
    text-decoration: none;
    color: #111111;
    font-weight: 500;
    display: flex;
    align-items: center;
  }

  .nav-item:hover {
    color: #598896;
    transition: all 0.3s ease;
  }
  
  .hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }

 .nav-item .material-symbols-outlined {
    transform: rotate(90deg);
    transition: all 0.4s ease;
 }
 
 .nav-item:hover .material-symbols-outlined {
    transform: rotate(270deg);
 }

  @media only screen and (max-width: 1200px) {
    .hamburger {
      display: block;
    }
  
    .nav-center {
      display: none;
      flex-direction: column;
      width: 100%;
      align-items: center;
      margin-top: 10px;
      gap: 30px;
      margin-right: 0px;
      margin-bottom: 20px;
    }

    .navContent-container {
        box-shadow: #00000012 0px 5px 7px;
    }
  
    .nav-center.active {
      display: flex;
    }

    .nav-container {
        flex-wrap: wrap;
    }
  }
  
  /* Container for the dropdown */
.dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-toggle {
    text-decoration: none;
    display: flex;
    color: #111111;
    transition: all 0.3s ease;
  }

  .dropdown-toggle:hover {
    color: #598896;
  }

  /* Hidden by default */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 100px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    padding: 10px;
    left: 50%; /* Shift to center horizontally */
    transform: translateX(-50%); /* Pull back by half its width */
  }
  
  /* Show menu on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  /* Dropdown links styling */
  .dropdown-menu a {
    color: black;
    padding: 10px 30px;
    display: block;
    text-decoration: none;
    text-align: center;
  }
  
  /* Hover effect for dropdown items */
  .dropdown-menu a:hover {
    background-color: #f1f1f1;
    border-radius: 999px;
  }