#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8vh;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  background-color: transparent;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 999;
}

/* Link styles */
#navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

#navbar a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

/* Scroll effect class */
#navbar.scrolled {
  background-color: #fff;
  color: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#navbar.scrolled a {
  color: #000;
}

.logo .l1 {
  display: none;
}

.scrolled .l1 {
  display: block !important;
}

.scrolled .l2 {
  display: none !important;
}

.nav_box1 img {
  height: 150%;
  width: 25%;
}

.nav_box2 {
  height: 8vh;
  width: 40%;
  /* background-color: gray; */
}

.nav_box3 {
  color: white;
  position: relative;
  display: none;
  /* background-color: #06402B; */
}

.scrolled .menu_icon i {
  color: #000;
}

.menu_icon i {
  color: white;
  padding: 1.8rem 2rem 0.5rem 6rem;
}

.Menu_items {
  display: none;
  background-color: rgba(255, 255, 255, 1);
  /* background-color: aqua; */
  position: absolute;
  top: 100%;
  right: 0%;
}

.Menu_items a {
  width: 80%;
  text-decoration: none;
  display: block;
  padding: 0.4rem 0.2rem 0.5rem 0.5rem;
  color: black !important;
  position: relative;
  left: 10%;
}

@media only screen and (max-width: 600px) {
  #navbar {
    height: 8vh;
  }

  .nav_box2 {
    display: none;
  }

  .scrolled {
    height: 8vh !important;
  }

  .nav_box1 {
    width: 50%;
    /* background-color: green; */
  }


  .nav_box1 img {
    height: 100%;
    width: 35%;
    /* background-color: orange; */
  }

  .nav_box3 {
    display: block;
  }




}