/* Custom Mobile Hamburger Menu code START 7-9-2026*/
#custom-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#custom-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

#custom-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}

#custom-mobile-drawer.is-open {
  transform: translateX(0);
}

/* Header inside drawer */
.custom-mobile-drawer-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 60px;
  padding: 10px 18px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

/* Close button */
#custom-mobile-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222222;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#custom-mobile-close:hover {
  color: #777777;
}

/* Menu */
#custom-mobile-menu {
  padding: 10px 20px 30px;
}

#custom-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#custom-mobile-menu li {
  position: relative;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eeeeee;
}

#custom-mobile-menu li a {
  display: block;
  padding: 15px 45px 15px 5px;
  color: #222222;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.4;
}

#custom-mobile-menu li a:hover {
  color: #666666;
}

/* Submenu */
#custom-mobile-menu .sub-menu {
  display: none;
  padding-left: 15px;
  background: #fafafa;
}

#custom-mobile-menu li.submenu-open > .sub-menu {
  display: block;
}

#custom-mobile-menu .sub-menu a {
  font-size: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Submenu arrow */
.custom-submenu-toggle {
  position: absolute;
  top: 7px;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222222;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-submenu-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}

#custom-mobile-menu li.submenu-open > .custom-submenu-toggle::before {
  transform: rotate(225deg);
  margin-top: 4px;
}

/* Prevent page scroll when menu is open */
body.custom-mobile-menu-open {
  overflow: hidden !important;
}

/* Don't show custom drawer on desktop */
@media (min-width: 768px) {
  #custom-mobile-drawer,
  #custom-mobile-overlay {
    display: none !important;
  }
}
/* custom mobile menu code END 7-9-2026 */
/* Logistic page scroller code START */
.ict-logo-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.ict-logo-carousel-track {
  display: flex;
  gap: 40px;
  width: max-content;

  animation: ict-logo-marquee 20s linear infinite;
  will-change: transform;
}

.ict-logo-carousel-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ict-logo-carousel-slide img {
  display: block;
  max-width: 180px;
  height: auto;
}

/* Seamless marquee */
@keyframes ict-logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
/* Logistic page scroller code END */
/* Header Top Special Offer Banner code start  */
.special-offer-banner {
  position: relative;
  text-align: center;
  border-radius: 0;
  transition: all 0.3s ease;
}
.offer-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 0;
}

.cta-button {
  background: #fff;
  color: #024430 !important;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #f1f1f1;
}
/* ✅ Smooth height collapse */
.special-offer-banner.hide {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* ✅ Optional: adjust header height if Kadence uses .site-header */
.site-header.adjusted {
  transition: all 0.3s ease;
}

body.banner-closed #main-header {
  height: 80px !important;
  transition: height 0.3s ease;
}

@media only screen and (max-width: 768px) {
  p.ofer-text {
    color: white;
  }
}
/* header sticky css code added by divya 7-9-2026 */
.site-header-upper-wrap {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
}
@media (max-width: 768px) {
  #mobile-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #fff !important;
  }

  .icmobile-local {
    padding-top: 180px;
  }
}
@media only screen and (max-width: 768px) {
  p.ofer-text a {
    padding: 0px 5px;
    margin-bottom: 5px !important;
  }
}
/* Header Top Special Offer Banner code start  */
