/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
}

.navbar-brand img {
  height: 60px;
  padding-left: 60px;
}

/* Nav Link Styles */
.nav-link {
  font-size: 1.2em !important;
  font-weight: 700 !important;
  color: #333 !important;
  text-align: center !important;
  padding: 0.5rem 1rem !important;
  flex: 1 !important; /* Distributes space evenly */
}

/* Highlight active menu item */
.nav-link.active {
  color: #ff6600 !important;
  /* font-weight: 700 !important; */
}

/* Hover effect */
.nav-link:hover {
  color: #ff6600 !important;
}

/* Distribute menu items evenly */
.navbar-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
