/* Popup overlay */
#leadPopup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* Popup content box */
#leadPopupContent {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 5% auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

/* Close button */
#closePopup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

#closePopup:hover {
  color: #000;
}

/* Form fields and button */
#leadForm input {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#leadForm button {
  width: 100%;
  background: #007BFF;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

#leadForm button:hover {
  background: #0056b3;
}
