/* ===========================
   Desktop Sticky Sidebar
=========================== */
.leftwraper {
  color: #fff;
  height: auto;
  width: 90px;
  cursor: pointer !important;
  padding: 2px;
  position: fixed;
  right: 0;
  bottom: 0;
  margin-right: -32px;
  margin-bottom: 175px;
  z-index: 99999;
  transition: margin-right 0.35s ease;
}

.leftwraper:hover {
  margin-right: 0; /* whole rail slides fully into view on hover */
}

.nwdivwrap {
  width: 58px;
  border-radius: 6px 0 0 6px;
  padding: 8px 5px;
  margin-bottom: 3px;
  text-align: center;
  line-height: 15px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.nwdivwrap img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.leftwraper a i {
  color: #fff;
  font-size: 23px;
  padding-bottom: 15px;
  padding-top: 7px;
  padding-left: 13px;
}

/* Individual brand colors */
.nwdivwrap.qa-call     { background-color: #dd0b01; }
.nwdivwrap.qa-whatsapp { background-color: #25D366; }
.nwdivwrap.qa-email    { background-color: #484848; }
.nwdivwrap.qa-enquiry  { background-color: #0d6efd; }

.nwdivwrap.qa-call:hover     { background-color: #dd0b01; transform: translateX(-4px); box-shadow: 0 6px 18px rgba(193,39,45,0.35); }
.nwdivwrap.qa-whatsapp:hover { background-color: #1fb855; transform: translateX(-4px); box-shadow: 0 6px 18px rgba(37,211,102,0.35); }
.nwdivwrap.qa-email:hover    { background-color: #464646;    transform: translateX(-4px); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.nwdivwrap.qa-enquiry:hover  { background-color: #0b5ed7; transform: translateX(-4px); box-shadow: 0 6px 18px rgba(13,110,253,0.35); }

/* ===========================
   Mobile Bottom Sticky Bar
=========================== */
.mobile-bottom-sticky-header {
  display: none;
  background: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.bottommenu1 {
  margin: 0;
  width: 25%;
  padding-top: 8px;
  padding-bottom: 8px;
  display: inline-block;
  margin-right: -5px;
  transition: background-color 0.3s ease;
}

.bottommenu1 img {
  width: 22px;
  height: 22px;
  display: block;
  margin: 0 auto 4px;
  filter: brightness(0) invert(1); /* keeps icons white regardless of source PNG color */
}

.bottommenu1 a {
  display: block;
}

.bottommenu1 a span {
  display: block;
  font-size: 10px;
  color: #fff;
  font-weight: 600;
}

/* Individual brand colors — mobile bar */
.bottommenu1.qa-call     { background-color: #c1272d !important; }
.bottommenu1.qa-whatsapp { background-color: #25D366 !important; border-left: 1px solid rgba(255,255,255,0.2) !important; }
.bottommenu1.qa-email    { background-color: #1a1a1a !important; border-left: 1px solid rgba(255,255,255,0.2) !important; }
.bottommenu1.qa-enquiry  { background-color: #0d6efd !important; border-left: 1px solid rgba(255,255,255,0.2) !important; }

@media only screen and (max-width: 599px) {
  .mobile-bottom-sticky-header {
    display: block;
  }
  .leftwraper {
    display: none !important;
  }
}


@media only screen and (max-width: 599px) {
  .bottommenu1 {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .bottommenu1 a {
    line-height: 1;
  }

  .bottommenu1 i {
    display: block;
    line-height: 0; /* kills the inline gap caused by <i> wrapping a block-level <img> */
  }

  .bottommenu1 img {
    margin: 0 auto 2px; /* reduced from 4px */
  }

  .bottommenu1 a span {
    line-height: 1.1;
  }
}

@media only screen and (max-width: 599px) {
  body {
    padding-bottom: 46px;
  }

  .scroll-to-target.scroll__top {
    bottom: 70px !important;
    right: 15px;
    z-index: 9999;
  }
}