/* Popup container */
.form-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; /* Adjust based on your design */
  max-width: 600px; /* Maximum width */
  height: 90vh; /* 90% of the viewport height */
  max-height: 800px; /* Maximum height */
  overflow-y: auto; /* Enable vertical scrolling if needed */
  border: 3px solid #f1f1f1;
  z-index: 9;
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Close button */
.form-popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

/* Full-width input fields */
.form-container input[type=text],
.form-container input[type=email],
.form-container input[type=tel],
.form-container select {
  width: calc(100% - 20px); /* Adjusting for padding */
  padding: 10px;
  margin: 5px 0 15px 0;
  border: none;
  background: #f1f1f1;
}

/* Set a style for the submit button */
.form-container .btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: calc(100% - 20px); /* Adjusting for padding */
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}





.whatsapp-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.whatsapp-link img {
  width: 80%;
  height: auto;
  margin: 10%;
}

.whatsapp-link:hover {
  transform: scale(1.1); /* Zoom in on hover */
}
