@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}


/* Modal Overlay */
.quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.quote-modal-box {
  background: #fff;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  border-radius: 6px;
  position: relative;
}

/* Close Button */
.quote-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

/* Heading */
.quote-modal-title {
  margin-top: 0;
}

/* Form */
.quote-form {
  margin-top: 15px;
}

/* Inputs */
.quote-input,
.quote-textarea,
.quote-submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  box-sizing: border-box;
}

/* Submit Button */
.quote-submit-btn {
  background: #ff6a2a;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Button */
.quote-btn-orange {
  background: #ff6a2a;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 10px;
}



/* FAB */
.floating-icons {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

/* Individual colors */
.whatsapp {
  background: #25D366;
}

.call {
  background: #007bff;
}

.mail {
  background: #dc3545;
}


/* Responsive adjustment for very small vertical screens */
@media (max-height: 700px) {
  .quote-modal-box {
    padding: 15px 20px;
    max-height: 98vh;
  }

  .quote-modal-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .quote-input,
  .quote-textarea {
    margin-top: 6px;
    padding: 6px 10px;
    font-size: 13px;
    height: auto;
  }

  .quote-textarea {
    height: 50px;
  }

  .quote-submit-btn {
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
  }

  .quote-dropdown-stack {
    margin-bottom: 0px;
  }

  .g-recaptcha {
    transform: scale(0.80);
    transform-origin: 0 0;
    margin-top: 5px;
    margin-bottom: -15px;
  }

  .quote-modal-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }

  .quote-modal-overlay {
    padding: 10px;
    align-items: center;
  }
}



/* Full screen loader */
#borewellWaterLoader {
  position: fixed;
  inset: 0;
  background: #0F2C49;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.8s ease;
}

/* Borewell Pipe */
.borewell-body {
  width: 120px;
  height: 350px;
  background: #1A3A59;
  border: 6px solid #6A8EB3;
  border-radius: 60px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px #000;
}

/* Water surface at bottom */
.water-surface {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, #54D1FF, #0096D6);
}

/* Water drops */
.drop {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 8px;
  height: 16px;
  background: #54D1FF;
  border-radius: 50%;
  animation: dropFall 1.5s infinite ease-in;
  transform: translateX(-50%);
}

/* Different delays for natural dripping */
.drop:nth-child(2) {
  left: 40%;
  animation-delay: 0.5s;
}

.drop:nth-child(3) {
  left: 60%;
  animation-delay: 1s;
}

/* Drop falling animation */
@keyframes dropFall {
  0% {
    top: -20px;
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    top: 260px;
    opacity: 0;
  }
}

/* Splash ripple */
.splash {
  position: absolute;
  bottom: 45px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #AEE9FF;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: splashRipple 1.5s infinite ease-out;
}

/* Splash animation */
@keyframes splashRipple {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}

/* Fade out */
.fadeOutLoader {
  opacity: 0;
}