
.nav-item {padding: 0px 05px;}
/* Dropdown Box */
.custom-dropdown {
  min-width: 240px;
  padding: 10px 0;
  border-radius: 10px;
  overflow: hidden;
}

/* Each Item */
.custom-dropdown .dropdown-item {
  padding: 12px 10px;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee; /* bottom line */
}

/* Remove last line */
.custom-dropdown .dropdown-item:last-child {
  border-bottom: none;
}

/* Hover Effect */
.custom-dropdown .dropdown-item:hover {
  background: #f8f9fa;
  color: #0d6efd;
  padding-left: 25px;
}

/* View All Highlight */
.custom-dropdown .view-all {
  font-weight: 600;
  color: #0d6efd;
  text-align: center;
  background: #f1f6ff;
}

/* Optional Hover Dropdown (Desktop) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}