@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


.container-new {
  width: 90%;
  max-width: 1600px;
  margin: auto;
}
.header-new {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  transition: 0.3s;
}
.header-new.sticky-new {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.navbar-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}
.logo-new img {
  height: 60px;
}
.nav-menu-new {
  display: flex;
  list-style: none;
  gap: 35px;
}
.nav-menu-new > li {
  position: relative;
}
.nav-menu-new a {
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  padding: 10px 0;
  display: block;
  font-size: 17px;
}
.nav-menu-new a:hover {
  color: #11aab6;
    font-family: "Manrope", sans-serif;

}
.btn-new {
  font-family: "Manrope", sans-serif;
  background: #11aab6;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
}
.btn-new:hover {
  background: #0f8e98;
}
.dropdown-btn-new {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-menu-new {
  position: absolute;
  top: 100%;
  left: 0;
  width: 375px;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.dropdown-new:hover .dropdown-menu-new {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu-new a {
  padding: 12px 18px;
}
.dropdown-menu-new a:hover {
  background: #11aab6;
  color: #fff;
}
.hamburger-new {
  display: none;
  cursor: pointer;
}
.hamburger-new span {
  display: block;
  width: 30px;
  height: 3px;
  background: #222;
  margin: 6px 0;
  transition: 0.3s;
}
.hamburger-new.active-new span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-new.active-new span:nth-child(2) {
  opacity: 0;
}
.hamburger-new.active-new span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.mobile-enquiry-new {
  display: none;
}
.banner-new {
  margin-top: 85px;
  height: 700px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}


.nav-new{
    z-index:9999;
}

.header-new{
    z-index:99999;
}


@media (max-width: 991px) {
  .desktop-btn-new {
    display: none;
  }
  .hamburger-new {
    display: block;
  }
.nav-new{
    position:fixed;
    top:85px;
    left:-100%;
    width:280px;
    height:calc(100vh - 85px);
    background:#fff;
    overflow-y:auto;

    transition:.3s ease;

    z-index:99999!important;
}

.nav-new.active-new{
    left:0!important;
}
  .nav-menu-new {
    flex-direction: column;
    gap: 0;
  }
  .nav-menu-new li {
    border-bottom: 1px solid #eee;
  }
  .nav-menu-new a {
    padding: 18px;
  }
  .dropdown-menu-new {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
  }
  .dropdown-new.active-new .dropdown-menu-new {
    display: block;
  }
  .dropdown-new:hover .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
  }
  .dropdown-menu-new a {
    padding-left: 35px;
  }
  .mobile-enquiry-new {
    display: block;
    padding: 20px;
    border-bottom: none;
  }
  .mobile-enquiry-new .btn-new {
    display: block;
    width: 100%;
    text-align: center;
  }
}
