.navbar {
  font-size: 0.95rem;
}

.navbar-brand img {
  width: 180px;
}

.navbar .nav-link {
  font-weight: 500;
}

.dropdown-menu {
  border-radius: 0 0 8px 8px;
}
/* Navbar fixed spacing so content doesn't hide behind it */
body {
  padding-top: 60px; /* adjust if your navbar is taller/shorter */
}

/* Base navbar styles */
.navbar {
  font-size: 0.95rem;
}

/* Base text color */
.navbar-light .navbar-nav .nav-link {
  font-weight: 500;
  color: #111827; /* dark */
  transition: color 0.2s ease;
}

/* Hover / focus / active -> blue */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
  color: #0d6efd; /* blue */
}

/* Dropdown items */
.dropdown-item {
  transition: color 0.2s ease, background-color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #0d6efd;
  background-color: #f3f4ff;
}

@media (max-width: 576px) {
  .navbar-brand img {
    width: 140px !important; /* decrease for mobile */
  }
}
@media (max-width: 768px) {
  .navbar-brand img {
    width: 150px;
  }
}
