/* popup.css - Halones Technologies Enquiry Popup */

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
  font-family: "Poppins", sans-serif;
}

.popup-content h2 {
  color: #004aad;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.popup-content textarea {
  resize: none;
  height: 80px;
}

.popup-content button {
  background: #004aad;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.popup-content button:hover {
  background: #00337a;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.close-btn:hover {
  color: red;
}

.captcha-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.captcha-container label {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.captcha-container input {
  width: 50%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Success Popup Style */
#successPopup .popup-content {
  background: #e9f9ee;
  border: 2px solid #28a745;
}

#successPopup h2 {
  color: #28a745;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
