.nav-link {
    position: relative;
    font-weight: 600;
    color: #111827;
    transition: all 0.3s ease;
    padding: 8px 10px;
  }

  .nav-link:hover {
    color: #facc15;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #facc15;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

.dropdown-menu-custom{
  position: absolute;
  top: 100%;
  min-width: 220px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.group:hover .dropdown-menu-custom{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

  .dropdown-item-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #374151;
    font-weight: 500;
    transition: all 0.25s ease;
  }

  .dropdown-item-custom:hover {
    background: #fef3c7;
    color: #111827;
    transform: translateX(4px);
  }

  .mobile-link {
    display: block;
    padding: 12px 0;
    font-weight: 600;
    color: #111827;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
  }

  .mobile-link:hover {
    color: #facc15;
    padding-left: 6px;
  }
