.liberty-sec {
  background-color: #f1f4f7;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
    .welcome-box {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      max-width: 950px;
      width: 100%;
      animation: fadeIn 1s ease-out forwards;
      opacity: 0;
      transform: translateY(40px);
      margin: 0 auto;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .animated_button {
      position: relative;
      display: inline-block;
      overflow: hidden;
      letter-spacing: 2px;
      font-weight: 600;
      font-size: 18px;
      background: linear-gradient(90deg, #ba3428, #a32a20);
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
    }

    .animated_button span {
      position: absolute;
      display: block;
    }

    .animated_button span:nth-child(1) {
      top: 0;
      left: -100%;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, #fff);
      animation: btn-anim1 1s linear infinite;
    }

    .animated_button span:nth-child(2) {
      top: -100%;
      right: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(180deg, transparent, #fff);
      animation: btn-anim2 1s linear infinite;
      animation-delay: .25s;
    }

    .animated_button span:nth-child(3) {
      bottom: 0;
      right: -100%;
      width: 100%;
      height: 2px;
      background: linear-gradient(270deg, transparent, #fff);
      animation: btn-anim3 1s linear infinite;
      animation-delay: .5s;
    }

    .animated_button span:nth-child(4) {
      bottom: -100%;
      left: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(360deg, transparent, #fff);
      animation: btn-anim4 1s linear infinite;
      animation-delay: .75s;
    }

    @keyframes btn-anim1 {
      0% { left: -100%; } 50%, 100% { left: 100%; }
    }

    @keyframes btn-anim2 {
      0% { top: -100%; } 50%, 100% { top: 100%; }
    }

    @keyframes btn-anim3 {
      0% { right: -100%; } 50%, 100% { right: 100%; }
    }

    @keyframes btn-anim4 {
      0% { bottom: -100%; } 50%, 100% { bottom: 100%; }
    }

    @media (max-width: 768px) {
      .welcome-box {
        padding: 1.5rem;
      }

      .animate-charcter {
        font-size: 18px;
      }

      .animated_button {
        width: 100%;
        font-size: 15px;
      }
    }
    .btn.animated_button:hover {
  color: #fff;
}
 .form-step { display: none; }
    .form-step.active { display: block; }
    .header-section {
      background-color: rgba(186, 52, 40, 0.5);
      padding: 20px;
      text-align: center;
      color: white;
    }
    .logo-img { max-height: 80px; }
    .question-row { display: flex; flex-wrap: wrap; gap: 20px; }
    .question-col { flex: 1 1 48%; }
    @media (max-width: 768px) {
      .question-col { flex: 1 1 100%; }
    }
    .wizard-steps {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
    }
    .wizard-steps .step {
      flex: 1;
      padding: 10px;
      text-align: center;
      border-bottom: 4px solid #ccc;
      color: #888;
      font-weight: bold;
    }
    .wizard-steps .step.active {
      border-bottom-color: #BA3428;
      color: #BA3428;
    }
    .conditional-input { display: none; }
      body {
      background: #f4f6f9;
      font-family: 'Inter', sans-serif;
      color: #212529;
    }
    .form-step {
      display: none;
    }
    .form-step.active {
      display: block;
      animation: fadeIn 0.4s ease-in-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .header-section {
      background: linear-gradient(90deg, #ba3428, #a32a20);
      padding: 40px 20px;
      text-align: center;
      color: white;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .logo-img {
      max-height: 70px;
      margin-bottom: 10px;
    }
    .form-card {
      background: white;
      padding: 35px 30px;
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .question-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .question-col {
      flex: 1 1 48%;
    }
    @media (max-width: 768px) {
      .question-col {
        flex: 1 1 100%;
      }
    }
    .wizard-steps {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      position: relative;
    }
    .wizard-steps::after {
      content: '';
     
    }
    .wizard-steps .step {
      flex: 1;
      text-align: center;
      z-index: 1;
    }
    .wizard-steps .step .circle {
      width: 40px;
      height: 40px;
      line-height: 40px;
      background: #e0e0e0;
      color: #495057;
      border-radius: 50%;
      display: inline-block;
      font-weight: 600;
      margin-bottom: 8px;
      transition: all 0.3s;
    }
    .wizard-steps .step.active .circle {
      background: #ba3428;
      color: #fff;
    }
    .wizard-steps .step span {
      display: block;
      font-weight: 500;
      color: #6c757d;
    }
    .wizard-steps .step.active span {
      color: #ba3428;
    }
    .form-label {
      font-weight: 600;
      margin-bottom: 6px;
    }
    .form-control, .form-select {
      border-radius: 10px;
      padding: 10px 14px;
      border: 1px solid #ced4da;
      transition: all 0.3s ease;
    }
    .form-control:focus, .form-select:focus {
      border-color: #ba3428;
      box-shadow: 0 0 0 0.2rem rgba(186, 52, 40, 0.15);
    }
    .btn {
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    .btn-primary {
      background-color: #ba3428;
      border: none;
    }
    .btn-primary:hover {
      background-color: #96261d;
    }
    .btn-secondary {
      background-color: #6c757d;
      border: none;
    }
    .btn-success {
      background-color: #198754;
      border: none;
    }
    .conditional-input {
      display: none;
    }
    .text-end button {
      min-width: 140px;
    }
    .logo-img.mb-2.logo-img {
  background-color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
}
#confirmationCheckbox {
  border: 1px solid #333;
}