/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  button {
    border: none;
    background: none;
    cursor: pointer;
  }
  
  /* Hamburger Icon (Mobile Only) */
  .hamburger {
    font-size: 24px;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1000;
    background-color: white;
    width: 60px;
  }
  
  /* Overlay for Mobile */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  /* Navigation Container */
  .nav-container {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100%;
    background: #ffffff;
    color: #000000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
  }
  
  /* Mobile View */
  .nav-container.mobile {
    left: -300px;
  }
  
  .nav-container.mobile.open {
    left: 0;
  }
  

  
  /* Navigation Search Container */
  .search-containe-mobile {
     position: fixed;
    top: 0;
    right: -90%; /* Start off-screen */
    width: 90%; /* Maximum 90% of mobile screen width */
    height: 100%;
    background: #ffffff;
    color: #000000;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}
  
  /* Mobile View */
 .search-containe-mobile.mobile {
    right: -90%;
}

/* Open State for Mobile View */
.search-containe-mobile.mobile.open {
    right: 0;
}


  /* Close Button */
  .close-btn {
    align-self: flex-end;
    font-size: 21px;
    color: #ffffff;
    border: 1px solid #eee;
    background-color: #af0000;
    height: 36px;
    padding: 0px 10px;
    border-radius: 3px;
  }
  
  /* Navigation List */
  .nav-list {
    list-style: none;
    padding: 0;
  }
  
  .nav-list.web {
    display: flex;
    gap: 20px; /* Adds spacing between menu items */
    list-style: none;
    padding: 0;
    margin: 0;
  }


  .nav-list li {
    margin: 10px 0;
  }
  
  .nav-list a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
  }
  
  .nav-list.web a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    padding: 5px 10px;
    transition: color 0.3s ease;
  }
  
  .nav-list.web a:hover {
    color: #ff6347;
  }
  
  /* Submenu */
  .submenu {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 20px;
    display: none;
  }
  
  .submenu.open {
    display: block;
  }
  
  .submenu li {
    margin: 5px 0;
  }
  
  .submenu a {
    font-size: 16px;
    color: #ccc;
  }
  
  .submenu a:hover {
    color: #ff6347;
  }
  
  /* Submenu Toggle Button */
  .submenu-toggle {
    background: none;
    color: rgb(7, 7, 7);
    font-size: 18px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    padding: 0;
  }
  
  .submenu-toggle:hover {
    color: #ff6347;
  }
  
  