/* ========== NAVBAR STYLING ========== */

.custom-navbar {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  padding: 0.9rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  color: #1a1a1a !important;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: #555 !important;
  margin-left: 1.5rem;
  position: relative;
  transition: color 0.2s ease;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #FF5E3A !important;
}

/* Active link underline */
.navbar-nav .nav-link.active {
  color: #FF5E3A !important;
  font-weight: 600;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FF5E3A;
  border-radius: 2px;
}

/* Dropdown styling */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 0.5rem;
}

.dropdown-item {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f5f4ff;
  color: #FF5E3A;
}

/* Mobile toggle */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}
