* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

.modal-backdrop.show {
    opacity: 0 !important;
}

.contact-modal {
    font-family: Jost, 'sans-serif';
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .contact-modal .close {
    position: absolute;
    top: -6px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
  }

  .contact-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    border-radius: 10px;
    position: relative;
  }
  
  .contact-modal .modal-content {
    border: none !important;
  }

  .contact-modal .modal-body {
    background: none !important;
    border: none !important;
    padding: 0 !important;
  }

  /* Form Layout */
  .contact-modal .form-container form {
    margin-top: 20px;
  }
  
  .contact-modal  .form-header-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .contact-modal .row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    --bs-gutter-x: 0;
  }
  
  .row input,
  .row select {
    flex: 1;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    max-width: calc(50% - 7px);
  }
  
  .contact-modal textarea {
    width: 100%;
    padding: 10px;
    height: 100px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
  }

  .contact-modal .captcha-container {
    margin-bottom: 10px;
  }

  .contact-modal .captcha-image img {
    margin-top: 5px;
    width: 180px;
    height: 65px;
  }
  
  .contact-modal .user-alert {
    color: red;
    text-align: center;
  }

  .contact-modal .submit-btn {
    background-color: #0d2d5c;
    color: white;
    padding: 10px 24px;
    border: none;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
  }
  