.hero-bg {
  background-image: url(./img/Bg-2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 80vh;
}

input[type="checkbox"] {
  font-size: 2rem;
  border: 1px solid white;
  background-color:transparent;
  border-radius: 0.5rem;
}
input[type="checkbox"]:checked{
  background-color: green;
  border: 1px solid white;
  border: outset none;
}
.custom-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.custom-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.custom-radio input[type="radio"] {
  display: none;
}

.custom-box {
  width: 30px;
  height: 30px;
  border: 1px solid #a37c52;
  background-color: transparent;
  position: relative;
}

.custom-radio input[type="radio"]:checked + .custom-box {
  background-color: var(--green);
  border: none;
}

.custom-radio input[type="radio"]:checked + .custom-box::after {
  content: '✔';
  color: white;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.custom-label {
  color: white;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-top: 4px;
}

@media (max-width: 1200px) {
  .hero-content {
    padding: 0px 150px !important;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0px 50px !important;
  }
  h1 {
    font-size: 36px !important;
  }
  p {
    font-size: 14px !important;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 30px !important;
  }
  .hero-content p {
    font-size: 14px !important;
  }
  .hero-content {
    padding: 50px 55px 0px 35px !important;
    margin-top: 0px !important;
    text-align: start !important;
  }
  br {
    display: none;
  }
}

/* Form validation styles */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-feedback.d-block {
  display: block !important;
}

/* Modal styles */
.modal-content {
  border: none;
  border-radius: 16px;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loading spinner */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* Button disabled state */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
