.uv-nav-wrapper {
  background: #ffffff; /* Dark Industrial Theme */
  font-family: "Poppins", sans-serif;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 4px 1px rgba(0, 0, 0, 0.1);
}
#main-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}

.uv-nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px;
}

/* Branding Logo */
.uv-nav-logo {
  text-decoration: none;
  color: #191919;
  font-size: 20px;
}

.uv-nav-logo img {
  height: 80px;
  width: 120px;
  object-fit: contain;
}

/* Desktop Menu List */
.uv-menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.uv-menu-item {
  position: relative;
}

.uv-menu-link {
  color: #111111;
  text-decoration: none;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.uv-menu-link i {
  color: #0056b3;
  font-size: 22px;
}

.uv-menu-link:hover,
.uv-menu-item:hover > .uv-menu-link {
  color: #0056b3;
  background: rgba(255, 255, 255, 0.08);
}

/* Dropdown Menu (Level 1) */
.uv-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 4px solid #0056b3;
}

.uv-menu-item:hover > .uv-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.uv-dropdown-link {
  color: #333333;
  text-decoration: none;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.uv-dropdown-link:hover {
  background: #f4f8ff;
  color: #0056b3;
  padding-left: 30px;
}

/* Sub-Dropdown (Level 2) */
.uv-has-sub {
  position: relative;
}

.uv-sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s ease;
  border-left: 4px solid #0056b3;
}

.uv-has-sub:hover > .uv-sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile Toggle Buttons */
.uv-toggle-btn {
  display: none;
  color: #0056b3;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}

/* --- Full Mobile Responsiveness --- */
@media (max-width: 992px) {
  .uv-toggle-btn {
    display: block;
    border: 3px solid #000000;
    border-radius: 5px;
    padding: 5px 10px;
  }

  .uv-menu-list {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    padding: 30px 0;
  }

  .uv-menu-list.active {
    left: 0;
  }

  .uv-menu-link {
    padding: 15px 40px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Mobile Dropdown Adjustments */
  .uv-dropdown,
  .uv-sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #252525;
    box-shadow: none;
    border: none;
    display: none; /* Toggle via hover logic in mobile */
    width: 100%;
  }

  .uv-menu-item:hover > .uv-dropdown,
  .uv-has-sub:hover > .uv-sub-dropdown {
    display: block;
  }

  .uv-dropdown-link {
    color: #bbbbbb;
    padding-left: 60px;
    background: #222222;
  }

  .uv-sub-dropdown .uv-dropdown-link {
    padding-left: 80px;
    background: #2a2a2a;
  }
}
