/* Reset */
body,
ul,
li,
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

/* Navbar Styling */
.des-navbar {
  background-color: #333;
  padding: 10px 20px;
}

.des-menu {
  display: flex;
}

.des-menu-item {
  position: relative;
}

.des-menu-link {
  color: white;
  font-size: 16px;

  display: inline-block;
}

.des-menu-link:hover {
  color: #f0a500;
}

/* Dropdown Styling */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  display: none;
  flex-direction: column;
  min-width: 150px;
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-link {
  color: white;
  font-size: 14px;
  padding: 10px;
  text-transform: capitalize;
  display: block;
  transition: background 0.3s;
}

.dropdown-link-uz {
  display: none;
}

.dropdown-link:hover {
  background-color: #555;
}

/* Show Dropdown on Hover */
.des-menu-item:hover .dropdown {
  display: flex;
}
