.ndv-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}
.ndv-hero-track {
  position: relative;
  width: 100%;
}
.ndv-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.ndv-hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.ndv-hero-image-link,
.ndv-hero-image {
  display: block;
  width: 100%;
}
.ndv-hero-image {
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.ndv-fit-cover .ndv-hero-image,
.ndv-fit-contain .ndv-hero-image {
  width: 100%;
}
.ndv-fit-cover .ndv-hero-image { object-fit: cover; }
.ndv-fit-contain .ndv-hero-image { object-fit: contain; }
.ndv-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: #1f2a18;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}
.ndv-hero-prev { left: 16px; }
.ndv-hero-next { right: 16px; }
.ndv-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.ndv-hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .24);
}
.ndv-hero-dot.is-active { background: #ffffff; }
@media (max-width: 767px) {
  .ndv-hero-arrow {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
  .ndv-hero-prev { left: 8px; }
  .ndv-hero-next { right: 8px; }
  .ndv-hero-dots { bottom: 10px; }
}
/* Nidhivanam WhatsApp float */
.ndv-whatsapp-float {
  position: fixed;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.ndv-whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .26);
}
.ndv-whatsapp-float svg {
  width: 33px;
  height: 33px;
  fill: currentColor;
}
@media (max-width: 767px) {
  .ndv-whatsapp-float {
    width: 52px;
    height: 52px;
  }
  .ndv-whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}
/* End Nidhivanam WhatsApp float */