
    .main_container {
      background: #fff;
      width: 100%;
      overflow: hidden;
    }
    /* Progress bar container */
    .progressbar {
      display: flex;
      justify-content: space-between;
      position: relative;
      padding: 0;
      background: #fff;
    }
    .progressbar::before {
      content: '';
      position: absolute;
      top: 45%;
      left: 0;
      right: 0;
      height: 10px;
      background-color: #fff;
      z-index: 0;
    }
    .progress-step {
      z-index: 1;
      background-color: #e0e0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      position: relative;
    }
    /* Active step circle */
    .progress-step.active {
      background-color: #cd031a;
    }
    /* Step titles below the circle */
    .progress-step::after {
      content: attr(data-title);
      position: absolute;
      top: 35px;
      font-size: 12px;
      color: #888;
      white-space: nowrap;
    }
    /* The progress highlight line */
    .progress {
         position: absolute;
    top: 45%;
    left: 0;
    background-color: black;
    width: 0%;
    transition: 0.4s ease;
    z-index: 0;
    height: 20px;
    border-radius: 0px;
    }
    /* Form styling */
    #multiStepForm {
      padding: 40px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .form-step {
      display: none;
    }
    .form-step.active {
      display: inline-flex;
      animation: fadeIn 0.5s ease;
      align-items: center;
      flex-direction: column;
      max-width: 500px;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .main_head {
      margin-bottom: 20px;
      font-weight: 600;
      margin-top: 30px;
      font-size: 36px;
      text-align: center;
    }
    label {
      display: inline-flex;
      margin: 8px 0 5px;
      color: #333;
      font-weight: 500;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
      width: 100%;
      padding: 20px 0;
      border-bottom: 1px solid #ccc !important;
      border-radius: 0;
      margin-bottom: 20px;
      outline: none;
      border: 0;
      font-family: 'Outfit';
      font-size: 16px;
    }
    .radio-group input[type="radio"] {
      margin-right: 5px;
    }
    .btns-group {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }
    .btn {
      padding: 15px 40px;
      border: none;
      outline: none;
      cursor: pointer;
      background-color: #cd031a;
      color: #fff;
      font-size: 16px;
      border-radius: 0;
      transition: background-color 0.3s ease;
      font-family: 'Outfit';
    }
    .btn:hover {
      background-color: #a10026;
    }
    .btn:disabled {
      background-color: #ccc;
      cursor: not-allowed;
    }
    .cash_span {
      color: #cd031a;
    }
    .radio-group {
      margin: 20px 0;
      width: 100%;
    }
    .borderd_radius {
      padding: 10px 20px;
      border: 1px solid black !important;
      border-radius: 0px !important;
      cursor: pointer !important;
    }
    input[type="radio"] {
      accent-color: #000000;
    }
    @media (max-width: 600px) {
      .progress-step::after {
        font-size: 10px;
        top: 30px;
      }
      .main_container {
        width: 100%;
        margin: 0 auto;
      }
    }
    #address::placeholder {
      color: black !important;
    }
    @media (max-width: 375px) {
      .borderd_radius {
    padding: 10px;
}
    }