/* Add this to your existing CSS file or in a <style> tag in the head of your HTML */

.navbar-nav .nav-item .nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFB6C1;
  transition: width 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #FFB6C1 !important; /* Pastel red color */
}