.navbar {
  background: #fff5e4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 999;
  
}

.nav-link {
  font-weight: bold;
  color: #2c3e50 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff6f61 !important;
}

.dropdown-item{
  font-weight: bold;
  color: #2c3e50 !important;
  transition: color 0.3s ease;
}

.dropdown-item:hover{
  color: #ff6f61 !important;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28244, 67, 54, 1%29' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

