/* Fonts */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0e001e;
}

/* CTA Button */
.book-a-demo-CTA {
  background-color: #6522BB;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.text-wrapper-2 {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

/* Modal Styling */
.modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(14, 0, 30, 0.98);
  overflow-y: auto;
  padding: 40px 20px;
}

.modal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #fff;
  position: relative;
}

.modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

/* Close Button */
.close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Form Styling */
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  color: #fff;
  padding: 8px 4px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

textarea {
  resize: none;
}

.full-width {
  width: 100%;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  width: 100%;
}

.checkbox-group label {
  margin: 0;
  line-height: 1.4;    
}


.checkbox-group input {
  margin: 0;               
  accent-color: #00D26A;
}

.checkbox-group a {
  color: #7B61FF;
  text-decoration: none;
}

/* Submit Button */
.submit-wrapper {
  text-align: center;
}

.submit-btn {
  background-color: #7B61FF;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 28px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #684ae0;
}

/* Style select dropdown */
.form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  color: #fff;
  padding: 8px 4px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  appearance: none; /* removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Custom arrow */
.form-group select::-ms-expand {
  display: none; /* hide arrow on IE */
}

.form-group select option {
  background-color: #fff;  
  color: #000;          
  font-size: 14px;
  padding: 10px;
  font-family: 'Inter', sans-serif;
}

.form-group select option:hover {
  background-color: #f2f2f2;
}

/* Thank you modal */

/* Overlay */
.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal box */
.custom-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: scaleIn 0.3s ease;
}

.custom-modal-content h4 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #333;
}

.custom-modal-content p {
  margin-bottom: 20px;
  color: #555;
}

.close-btn {
  background: #007BFF;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.close-btn:hover {
  background: #0056b3;
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
