/* Custom Navbar Styling */
.navbar {
  background: linear-gradient(135deg, #4063ff 0%, #0004ff 100%) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
}

.navbar-brand img {
  filter: brightness(1.2);
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 8px 20px !important;
  margin: 0 5px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: rgba(255,255,255,0.2);
  color: white !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  background: rgba(255,255,255,0.3);
  color: white !important;
  font-weight: 600;
}

.navbar-toggler {
  border: 2px solid rgba(255,255,255,0.3);
  padding: 8px 12px;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile dropdown styling */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }
  
  .navbar-nav .nav-link {
    color: #333 !important;
    margin: 5px 0;
    text-align: center;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(0, 102, 204, 0.1);
    color: #0066CC !important;
  }
  
  .navbar-nav .nav-link.active {
    background: rgba(0, 102, 204, 0.2);
    color: #0066CC !important;
  }
}