


    
/* Default nav link */
.nav-link {
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Active nav link */
.nav-link.active {
  font-weight: 700; /* Bold */
  color: #000000 !important; /* Primary blue */
}

/* Underline with blur glow effect */
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjust underline position */
  width: 100%;
  height: 3px; /* Thickness */
  border-radius: 4px;
}
