

/* ================== navbar menu start ================== */
.zuri-header {
  background: #1AA7FF;
  /* position: -webkit-sticky;
  position: sticky; */
  position: fixed;
  top: 0;
  z-index: 9999;
  padding: 5px 0 !important;
  width: 100%;
}

.zuri-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zuri-logo img {
  height: 60px ;
  object-fit: cover ;
}

.zuri-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zuri-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.zuri-menu li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.zuri-menu li a:hover::after,
.zuri-menu li a.active::after {
  width: 100%;
}



.slider-submenu {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.slider-submenu::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.slider-submenu::-webkit-scrollbar-thumb {
  background-color: #1AA7FF;
  border-radius: 4px;
}


.zuri-dropdown {
  position: relative;
}
.zuri-dropdown > a i {
  font-size: 12px;
  margin-left: 4px;
}
.zuri-submenu {
  display: none;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  min-width: 250px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}
.zuri-dropdown:hover .zuri-submenu {
  display: block;
}
.zuri-submenu li {
  list-style: none;
}
.zuri-submenu li a {
  display: block;
  color: #000;
  padding: 10px 18px;
  font-size: 14px;
}
.zuri-submenu li a:hover {
  background: #f3f7fb;
  color: #1AA7FF;
}


.zuri-btn {
  background: linear-gradient(90deg, #FF5151, #F30505);
  color: #fff !important;
  padding: 5px 38px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}
.zuri-btn:hover {
  opacity: 0.9;
}


.zuri-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11000;
}
.zuri-hamburger,
.zuri-hamburger::before,
.zuri-hamburger::after {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
  content: "";
}
.zuri-hamburger::before {
  top: -7px;
  position: absolute;
}
.zuri-hamburger::after {
  top: 7px;
  position: absolute;
}

/* Animation to X */
.zuri-toggle.open .zuri-hamburger {
  background: transparent;
}
.zuri-toggle.open .zuri-hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.zuri-toggle.open .zuri-hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.zuri-mobile-logo {
  display: none;
}

@media (min-width: 993px) {
  .zuri-dropdown:hover .zuri-submenu {
    display: block;
  }
}


@media (max-width: 992px) {
  .zuri-toggle {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .zuri-logo {
    margin: 0 auto;
  }

  .zuri-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #4DC3FF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 25px;
    transition: left 0.4s ease-in-out;
    overflow-y: auto;
    z-index: 10999;

     transition: transform 0.4s ease-in-out; /* smoother */
  transform: translateX(-100%);
  }

  .zuri-nav.active {
     transform: translateX(0);
    left: 0;
  }

  .zuri-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
  }

  .zuri-dropdown {
    position: relative;
    width: 100%;
  }

  .zuri-dropdown .zuri-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 90%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
  }

 
  .zuri-dropdown.open .zuri-submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 350px;
    overflow-y: auto; 
  }


  .zuri-dropdown.open .zuri-submenu::-webkit-scrollbar {
    width: 6px;
  }

  .zuri-dropdown.open .zuri-submenu::-webkit-scrollbar-thumb {
    background: #1AA7FF;
    border-radius: 10px;
  }


  .zuri-submenu li {
    list-style: none;
  }

  .zuri-submenu li a {
    display: block;
    color: #1AA7FF;
    font-size: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid #f2f2f2;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s ease;
  }

  .zuri-submenu li:last-child a {
    border-bottom: none;
  }

  .zuri-submenu li a:hover {
    background: #f8f9fb;
    color: #1AA7FF;
  }


  .slider-submenu {
    display: block !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    max-height: 350px !important;
    white-space: normal !important;
    padding: 0;
    gap: 0;
  }


  .zuri-mobile-logo {
    display: flex;
    justify-content: left;
    align-items: left;
    width: 100%;
    margin-bottom: 25px;
  }

  .zuri-mobile-logo img {
    height: 65px;
    width: auto;
  }


}










/* ===== FOOTER BASE ===== */
.zuri-footer {
  background-color: #EEF8FF;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.zuri-footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 70px 20px 0px;
  margin: 0 auto;
}

/* ===== COMMON ELEMENTS ===== */
.zuri-footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.zuri-footer-col h3 {
  font-weight: 700;
  color: #000;
  font-size: 17px;
  margin-bottom: 15px;
}

.zuri-footer-col p {
  color: #060F2F;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 15px;
}

.zuri-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zuri-footer-col ul li {
  color: #060F2F;
  font-size: 16px;
  font-weight: 300;
  line-height: 34px;
}

.zuri-footer-col ul li a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.zuri-footer-col ul li a:hover {
  color: #1AA7FF;
}

/* ===== LINE IMAGE ===== */
.footer-line-wrapper {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin-top: 20px;
}

.footer-bg-line {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  margin: 0;
  top: 10px;
}

/* ===== BOTTOM ===== */
.zuri-footer-bottom {
  text-align: center;
  color: #444;
  font-size: 14px;
  padding: 15px 0;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .zuri-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* ===== MOBILE (TWO COLUMNS) ===== */
@media (max-width: 768px) {
  .zuri-footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "logo logo"
      "clean location"
      "contact contact";
    gap: 20px;
    padding: 30px 20px 10px;
  }

  .zuri-footer-col:first-child {
    grid-area: logo;
    text-align: center;
  }

  .zuri-footer-col:nth-child(2) {
    grid-area: clean;
  }

  .zuri-footer-col:nth-child(3) {
    grid-area: location;
  }

  .zuri-footer-col:last-child {
    grid-area: contact;
    text-align: center;
  }

  .zuri-footer-col h3 {
    font-size: 16px;
  }

  .zuri-footer-col ul li {
    font-size: 14px;
    line-height: 28px;
  }

  .footer-line-wrapper {
    display: none !important;
  }
}

/* ===== EXTRA SMALL (ONE COLUMN) ===== */
@media (max-width: 480px) {
  .zuri-footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "logo logo"
      "clean location"
      "contact contact";
    gap: 20px;
    padding: 10px 2px 2px;
  }

  .zuri-footer-col {
    text-align: center;
  }
}




/* ================== footer css code close ================== */