  /* General Popup Form Styling */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.form-container {
  background-color: #f9fff9; /* Subtle eco-friendly background */
  padding: 30px 25px;
  width: 100%;
  max-width: 400px; /* Maximum width for desktop */
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #2a6d2a;
  cursor: pointer;
}

.close-btn:hover {
  color: #237a23;
}

/* Headings */
.form-container h2 {
  font-size: 22px;
  color: #2a6d2a;
  margin-bottom: 10px;
}

.form-container p {
  font-size: 14px;
  color: #4d4d4d;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Input Fields */
input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #d0e5d0; /* Light green border */
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.3s ease-in-out;
}

input:focus, select:focus, textarea:focus {
  border-color: #2a6d2a; /* Dark green focus color */
  outline: none;
}

/* Textarea */
textarea {
  min-height: 100px;
  resize: none;
  margin-top: 10px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #2a6d2a;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.submit-btn:hover {
  background-color: #237a23;
}
.nice-select{
    width: 100%;
}

/* Responsiveness */
@media (max-width: 768px) {
  .form-container {
    width: 90%;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .form-container h2 {
    font-size: 20px;
  }

  .form-container p {
    font-size: 13px;
  }

  input, select, textarea {
    font-size: 13px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px;
  }
}


