#mobile-menu {
  display: none; /* Hidden by default */
  position: fixed;
  top: 70px; /* Adjust depending on your header height */
  right: 0;
  background-color: rgba(13, 59, 36, 0.97);
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  backdrop-filter: blur(6px);
  font-family: "Segoe UI", Roboto, sans-serif;
}

#mobile-ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
#mobile-ul.open {
  max-height: 500px; /* should be enough to show all items */
  opacity: 1;
  transform: translateY(0);
}
.mobile-li {
    width: 45%;
  padding: 2px 24px;
  border-bottom: 2px solid rgb(255, 255, 255);
    border-bottom-left-radius: 10px;
}



.mobile-li a {
  color: white;
  text-decoration: none;
  display: block;
  font-size: 17px;
  font-weight: 500;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
  border-radius: 6px;
}
.mobile-li:last-child a {
  border-bottom: none;
}
.mobile-li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 28px;
}

@media (max-width: 768px) {
  #mobile-menu {
    display: block; /* Show the mobile menu */
  }
}
