body {
  font-family: 'Inter', sans-serif;
}

/* Smooth transition for dropdown arrows */
.rotate-180 {
  transform: rotate(180deg);
}

/* Desktop Underline Animation */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #10b981; /* green-600 */
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
