* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.top-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.low-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgb(247, 247, 247);
}

.low-body p {
  padding: 50px 20px;
  font-size: 12px;
  line-height: 20px;
  max-width: 60%;

}

.low-body span {
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  max-width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.low-body span a {
  text-decoration: none;
  color: #007bff;
}

.low-body span a:hover {
  text-decoration: none;
  color: #14356a;
}

.head {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 2.6px;
}

.top-body .head img {
  width: 300px;
  margin-left: 80px;
}

.top-body .head {
  justify-content: flex-start;
}

.low-body .head img {
  width: 300px;
}


.big-container {
  display: flex;

}

.container1 {
  display: flex;
  align-items: center;
  justify-content: center;

}

.big-container img {
  width: 180px;
}

.container {
  /* background: #fff; */
  /* padding: 20px; */
  /* border-radius: 5px; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  /* text-align: center; */
  margin: 20px 0 50px;
  max-width: 1400px;
  padding: 0 50px;
}

.progress-bar span {
  text-align: left;
  font-size: 12px;
}

.progress-bar {
  text-align: left;
  height: 5px;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  max-width: 300px;
  margin: 5px auto 30px;
}

.progress-bar-inner {
  height: 100%;

  background-color: #007bff;
  border-radius: 10px;
  transition: width 0.4s ease;
}

.btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  max-width: 300px;
  width: 100%;
  margin: 30px auto;
}

#qualify_btn {
  background-color: #00c066;
  color: rgb(255, 255, 255);
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

#qualify_btn:hover {
  background-color: #09c919;

}

.btn {
  background-color: #579aff;
  color: white;
  padding: 20px 60px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-weight: 800;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 1px solid blue;
  text-transform: uppercase;

}

.btn:hover {
  background-color: #0056b3;
}

h2 {
  font-size: 32px;
  color: #14356a;
}

.head-line {
  font-size: 35px;
  color: #14356a;
  margin: 10px auto;
}

.sub-headline {
  font-size: 15px;
  font-family: sans-serif;
  color: #14356a;

}

.sub1 {
  font-size: 20px;
  color: #14356a;
}

h3 {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: #14356a;
  max-width: 800px;
}

.q-box {
  /* background-color: #f6f6f6; */
  margin: 30px auto 20px;
  padding: 20px;
  border-radius: 30px;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
  max-width: 800px;
}

body {
  overflow-x: hidden;
}

.online {
  display: flex;
  align-items: center;
  justify-content: center;
}

.online span {
  font-size: 12px;
  margin: 5px;
}

.container-dot {
  color: #3c3c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.dot {
  position: relative;
  width: fit-content;
  background: linear-gradient(135deg, #32f659, #5ad58b 48%, #26622a);
  border-radius: 40px;
  width: 10px;
  height: 10px;
}

.heartbeat {
  position: absolute;
  width: fit-content;
  background-color: #32f649;
  border-radius: 40px;
  width: 10px;
  height: 10px;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 5px;
  flex-wrap: wrap;

}

.sub-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background-color: #fafafa;
  height: 50px;
  margin: 5px;
  border-radius: 5px;
  border: 1px solid rgb(224, 224, 224);
}

.sub-brand svg {
  height: 20px;
}


@media only screen and (max-width: 600px) {
  .low-body p {
    padding: 10px 20px;
    font-size: 12px;
    line-height: 18px;
    max-width: 100%;

  }

  .low-body span {
    padding: 50px 20px;
    font-size: 12px;
    line-height: 20px;
    max-width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .top-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
  }

  .low-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgb(247, 247, 247);
    padding: 5px;

  }

  .low-body span {
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    max-width: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;

  }

  .big-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .big-container img {
    width: 90px;
    margin-top: 10px;
  }

  .container {
    /* background: #fff; */
    /* padding: 20px; */
    /* border-radius: 5px; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    /* text-align: center; */
    margin: 30px 0;
    max-width: 700px;
    padding: 0 20px;
  }

  .top-body .head img {
    width: 200px;
    margin-left: 0px;
  }

  .top-body .head {
    justify-content: center;
  }

  .low-body .head img {
    width: 150px;
  }

  h2 {
    font-size: 28px;
    color: #14356a;
  }

  .head-line {
    font-size: 25px;
    color: #14356a;
    margin: 10px auto;
  }

  .sub-headline {
    font-size: 15px;
    font-family: sans-serif;
    color: #14356a;

  }

  .sub1 {
    font-size: 20px;
    color: #14356a;
  }

  h3 {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #14356a;
    max-width: 800px;
  }

  .q-box {
    /* background-color: #f6f6f6; */
    margin: 30px auto 20px;
    padding: 20px;
    border-radius: 30px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
    max-width: 700px;
  }

  .logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;

  }

}



/* Form Styling */
#multiStepForm {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-step {
  display: none;
  /* Initially hide all steps */
  flex-direction: column;
  margin-bottom: 20px;
}

.form-step.active {
  display: flex;
  /* Show the active step */
}

.form-step label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-step input[type="text"],
.form-step input[type="number"],
.form-step input[type="email"],
.form-step select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-step .error-message {
  display: none;
  /* Hide error messages initially */
  color: red;
  margin-bottom: 7px;
}

.form-step button.confirmBtn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

.form-step button.confirmBtn:hover {
  background-color: #45a049;
}

#submitBtn2 {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

#submitBtn2:hover {
  background-color: #45a049;
}

#editBtn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

#editBtn:hover {
  background-color: #0056b3;
}

label {
  text-transform: capitalize;
}

/* Range input special styling */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #4CAF50;
  cursor: pointer;
  border-radius: 50%;

}

input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #4CAF50;
  cursor: pointer;
  border-radius: 50%;

}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
  #multiStepForm {
    padding: 10px;
  }

  .form-step input[type="text"],
  .form-step input[type="number"],
  .form-step input[type="email"],
  .form-step select {
    padding: 8px;
  }

  .form-step button.confirmBtn {
    padding: 8px 16px;

  }
}

/* Further adjustments for very small devices */
@media (max-width: 480px) {
  .form-step label {
    font-size: 14px;
  }

  .form-step input[type="text"],
  .form-step input[type="number"],
  .form-step input[type="email"],
  .form-step select {
    font-size: 14px;
  }
}

.go-back {
  color: black;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin: 10px;
}

#incomeValue {
  font-weight: 700;

}

#confirmationBox {
  background-color: #fcfcfc;
  border: 1px solid #f3f3f3;
  padding: 20px;
  margin: 20px auto;
  max-width: 500px;
  text-align: left;

}


.q-box2 {
  /* display: flex; */
  margin: 40px auto;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  max-width: 800px;
  /* padding: 10px 0px; */
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.ques {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.ques span {
  font-size: 15px;
}

.ques2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  background-color: #0056b3;
}

.ques2 p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #fff;
}

.ques3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  background-color: #e7f0ff;
}

.ques3 p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  margin-left: 4px;
  color: #3c3c3c;
}

select {

  background-color: #f3f3f3;
  border: 1px solid rgb(215, 215, 215);
  color: #121212;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 10px;
  margin: 5px;


}

input {
  background-color: #f3f3f3;
  border: 1px solid rgb(215, 215, 215);
  color: #121212;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 10px;
  margin: 5px;

}

#sub2 {
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  /* line-height: 24px; */
  /* margin: 0; */
  min-width: 135px;
  padding: 8px 10px;
  background-color: #0056b3;
  color: #f4f4f4;
  margin: 5px;

}

@media only screen and (max-width: 700px) {
  .q-box2{
    width: 80vw;
  }
  .ques {
    flex-direction: column;
  }

  input {
    width: 70vw;
  }

  select {
    width: 70vw;
  }

  #sub2 {
    width: 70vw;

  }

  .q-input2 {
    display: flex;
    width: 70vw;
    align-items: center;
    justify-content: center;
  }

  .q-input2 select {
    width: 35vw;
    margin: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .q-input2 span {
    width: 35vw;
  }
}