/* Minimalist, attention-grabbing text color animation */
.navbar .nav-link {
  text-decoration: none;
  color: #000; /* Default color */
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease; /* Smooth color transition */
}

/* Hover effect for Complaints link with color animation */
.navbar .nav-link:hover {
  color: #ff5733; /* Color on hover */
}

/* Pulse effect for Complaints link */
.navbar .nav-link.attention {
  animation: pulse 4s ease-in-out infinite; /* Increased duration for a slower effect */
}

/* Animation for pulsing text */
@keyframes pulse {
  0%, 100% {
    color: #000; /* Initial color */
  }
  50% {
    color: #ff5733; /* Color when pulsing */
  }
}
