* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  background-color: #0d111c;
}
body::-webkit-scrollbar-thumb {
  background-color: #1c294b;
  width: 15px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #1e90ff;
}
body::-webkit-scrollbar-thumb:active {
  background-color: #1e90ff;
}
.navbar {  
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center; 
  z-index: 2;
  position: relative;
  background-color: transparent; 
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 50px ;
  z-index: 4;
}
.navbar li{
  gap: 50px;
  z-index: 4;
}

.navbar a {
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

#path , #path2{
  margin: 0;
  padding: 0;
}



@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #navLinks {
    display: none; /* Initially hidden */
    flex-direction: column;
    width: 100%;
    background-color: #0047ab;
    padding: 10px 0;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
  }
  #menuright{
    top:0;
    right: 0;
  }
  #navLinks.active {
    display: flex;
  }
  .nav-links li {
    padding: 10px 20px;
    text-align: left;
  }
}


