 

.menu-wrap{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding-top: 10px;
}



.menuNew {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start; /* Center the menu items horizontally */
}

.menuNew li {
  margin-left: 10px;
}

.menuNew li a {
  text-decoration: none;
  padding: 10px 15px;
  background-color: #3498db;
  color: #fff;
  border-radius: 5px;
  display: block;
}

/* Hover effect */
.menuNew li a:hover {
  background-color: #2980b9;
}

.menuNew li .fa {
  margin-left: 5px;
}
