    body,
    html {
      margin: 0;
      padding: 0;
      height: 100%;
      width: 100%;
      font-family: 'Poppins', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      /* background: #000; */
      overflow: hidden;
    }

    .bg-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .form-container {
      width: 650px;
      height: 650px;
      max-width: 90vw;
      max-height: 90vh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: auto;
    }

    .form-inner {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      padding: 25px;
      width: 100%;
      height: 100%;
      max-height: 100%;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }

    .logo {
      max-width: 200px;
      margin: 0 auto 15px;
    }

    #logoImg {
      max-width: 200px;
      margin: 0 auto 15px;
    }

    #formTitle {
      color: #8f171b;
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .question {
      font-weight: 600;
      margin: 5px;
      font-size: 18px;
    }

    .subtext {
      font-size: 13px;
      font-weight: 400;
      color: #555;
      margin: 5px 0 10px 0;
    }

    .options button {
      padding: 10px 20px;
      font-size: 13px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      background: #8f171b;
      color: #fff;
      font-weight: 600;
      transition: 0.15s;
    }

    .options button:hover {
      background: #661014;
    }

    .options button.selected {
      background: #444 !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    }

    .question-block .options {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    input[type="file"],
    input[type="text"],
    input[type="email"],
    textarea {
      display: block;
      margin: 12px auto;
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background: #fff;
      font-size: 15px;
      box-sizing: border-box;
    }

    textarea {
      resize: vertical;
      min-height: 80px;
      font-family: "Poppins", sans-serif;
      position: relative;
    }

    .progress-container {
      display: none;
      align-items: center;
      margin-top: 20px;
      justify-content: space-between;
      width: 100%;
    }

    .arrow {
      font-size: 22px;
      cursor: pointer;
      color: #fff;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #8f171b, #c92b2f);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
      transition: 0.3s;
    }

    .arrow:hover {
      transform: scale(1.05);
    }

    .arrow.disabled {
      opacity: 0.4;
      pointer-events: none;
    }

    .progress {
      flex: 1;
      background: #eee;
      border-radius: 6px;
      height: 10px;
      margin: 0 10px;
      overflow: hidden;
    }

    .progress div {
      height: 10px;
      background: linear-gradient(90deg, #8f171b, #c92b2f);
      border-radius: 6px;
      width: 0;
      transition: 0.3s;
    }

    .p-percentage {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    /* margin: 10px auto; */
    font-weight: 600;
}
    .step {
      display: none;
      width: 100%;
      height: 100%;
    }

    .step.active {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .file-wrapper {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .file-input {
      flex: 1;
      padding: 6px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    .plusFileBtn {
      background: #8f171b;
      color: white;
      border: none;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      font-size: 18px;
      cursor: pointer;
      line-height: 0;
    }

    .removeFileBtn {
      background: #8f171b;
      color: white;
      border: none;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      font-size: 18px;
      cursor: pointer;
      line-height: 0;
    }

    label.file-upload-lbl {
      text-align: left;
      font-size: 13px;
      color: #555;
    }

    /* .removeFileBtn:hover {
  background: #d93636;
} */

    .submit-btn {
      margin-top: 18px !important;
      margin: auto;
      padding: 14px 34px;
      border: none;
      border-radius: 8px;
      background: #8f171b;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      max-width: 400px;
    }

    .submit-btn:hover {
      background: #661014;
    }

    .result {
      margin-top: 20px;
      font-weight: bold;
      font-size: 18px;
      color: #2a7a2a;
      display: none;
    }

    .question-block {
      margin-bottom: 15px;
      text-align: left;
      font-size: 15px;
      font-weight: 500;
    }

    .textarea-wrapper {
      position: relative;
      width: 100%;
      margin-top: 8px;
    }

    .textarea-counter {
      position: absolute;
      right: 10px;
      bottom: 8px;
      font-size: 12px;
      color: #666;
      pointer-events: none;
      background: rgba(255, 255, 255, 0.0);
      padding: 0 4px;
    }

    /* Step12 */
    .step {
      display: none;
      text-align: center;
      position: relative;
      z-index: 5;
    }

    .step.active {
      display: block;
      display: flex !important;
      flex-direction: column;
      justify-content: center !important;
    }

    #progressWrap {
      z-index: 1;
    }

    [data-step-index="12"] {
      position: relative;
      z-index: 10;
    }



    @media(max-width: 1024px) {
      .form-container {
        width: 550px;
        height: 600px;
      }
    }

    @media(max-width: 768px) {
      .form-container {
        width: 90vw;
        height: 100vh;
      }

      .form-inner {
        padding: 20px;
      }
    }

    @media(max-width: 480px) {
      .form-container {
        width: 95vw;
        height: 100vh;
      }

      .form-inner {
        padding: 15px;
      }

      .logo {
        max-width: 100px;
      }
    }