/*whatsapp and call css s */

.mobile_callwhat {
  position: fixed;
  bottom: 60px;
  right: 23px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 50px;
  z-index: 9999;
}

.mobile_callwhat a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  /* Neutral background color */
}

.mobile_callwhat a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-pulse {
  background-color: #25d366;
  /* WhatsApp green */
}

.btn-whatsapp-pulse1 {
  background-color: #c42121;
  /* Call button red */
}

.mobile_callwhat img {
  max-width: 43px;
  height: auto;
}

/* Pulse animation for interactivity */
.btn-whatsapp-pulse,
.btn-whatsapp-pulse1 {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mobile_callwhat {
    bottom: 120px;
    right: 15px;
    gap: 15px;
  }

  .fixed_enquiry_btn_web a {
    background-color: #15373f;
    padding: 15px 5px 15px 5px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: 1.5px;
    word-spacing: 1px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    writing-mode: vertical-lr;
    color: #fff !important;
    border: 2px solid #fff;
  }

  .mobile_callwhat a {
    width: 50px;
    height: 50px;
  }

  /*.mobile_callwhat img {*/
  /*    max-width: 30px;*/
  /*}*/
}

@media (max-width: 480px) {
  .mobile_callwhat {
    bottom: 120px;
    right: 15px;
  }

  .mobile_callwhat a {
    width: 50px;
    height: 50px;
  }


}

/*whatsapp and call css e */

.site_map_navi {
  background-color: #fafafa;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.site_map_nav {
  margin-bottom: 20px;
}

.site_map_nav h2 {
  font-size: 25px;
  color: #000;
  padding-bottom: 15px;
  text-transform: capitalize;
  font-weight: 900;
}

.site_map_nav a {
  background-color: #fff;
  color: #212121;
  padding: 10px 20px 10px 20px;
  text-transform: capitalize;
  border-radius: 100px;
  margin: 0px 5px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: .3s ease-in-out;
  border-left: 5px solid #eeeaea;
  border-right: 5px solid #eeeaea;
  font-size: 15px;
}


.site_map_nav a:hover {
  background-color: #b58146;
  color: #fff;
  padding: 10px 20px 10px 20px;
  text-transform: capitalize;
  border-radius: 100px;
  margin: 0px 5px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: .3s ease-in-out;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
}

.mobile_call_whatsapp_fixed_main_div {
  position: fixed;
  bottom: 100px;
  right: 10px;
  z-index: 1000;
}

.mobile_whatsapp {
  display: none;
}


.call_icon_div {
  text-align: center;
}

.call_icon_div>a {
  background-color: #dc3545;
  height: 60px;
  line-height: 57px;
  width: 60px;
  text-align: center;
  border-radius: 100px;
  animation: moveUpDown 2s ease-in-out infinite;
  display: inline-block;
  margin-bottom: 8px;

}

@keyframes moveUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
    /* Adjust the distance */
  }
}

.call_icon_div>a>img {
  width: 32px !important;
  filter: brightness(0%) invert(1);
  height: 60px;
  line-height: 60px;
  width: 60px;
  object-fit: contain;
}

.whatsapp_icon_div {
  text-align: center;
}


.whatsapp_icon_div>a {
  background-color: #008000;
  height: 60px;
  line-height: 57px;
  width: 60px;
  text-align: center;
  border-radius: 100px;
  animation: zigzag 0.5s ease-in-out infinite;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-duration: 10s;
  animation-timing-function: steps(1, end);
  position: relative;
  animation: zigzag 8s infinite;
  display: inline-block;

}



@keyframes zigzag {
  0% {
    left: 0px;
  }

  1% {
    left: -5px;
  }

  2% {
    left: 5px;
  }

  3% {
    left: -5px;
  }

  4% {
    left: 5px;
  }

  5% {
    left: 0px;
  }

  100% {
    left: 0px;
  }
}



.whatsapp_icon_div>a>img {
  width: 32px !important;
  filter: brightness(0%) invert(1);
  height: 60px;
  line-height: 60px;
  width: 60px;
  object-fit: contain;
}


@media (max-width: 767px) {
  .desktop_whatsapp {
    display: none !important;
  }

  .mobile_whatsapp {
    display: block !important;
  }

  .site_map_nav a {
    background-color: #fff;
    color: #212121;
    padding: 6px 5px 6px 3px;
    text-transform: capitalize;
    border-radius: 100px;
    margin: 0px 6px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: .3s ease-in-out;
    border-left: 5px solid #eeeaea;
    border-right: 5px solid #eeeaea;
    font-size: 11px;
  }

  .sitemap_ul_div li a {
    text-transform: capitalize;
    font-size: 9px;
    display: inline-block;
    color: #000;
  }

  .custome-marquee {
    width: 100%;
    height: 55px;
    overflow: hidden;
    position: relative;
  }
}