*{
  margin:0;
  padding:0;
  box-sizing:border-box;
 font-family: 'Helvetica Neue';
    font-weight: 300;
}

body{
  background:#fff;
}
.container{max-width:1024px; margin:0 auto; }
.logo{max-width:70%; display: block}
/* -------- HEADER -------- */
.header{
  padding:25px 40px;
 
}
.section{background:#32a484; height: calc(100vh - 75px);}
.ques-section p{text-align: left; margin-bottom:15px}
.ques-section p b{ font-family: 'Helvetica Neue'; font-weight:500; font-size:22px; color:#000}
.option {
  display: flex;
  align-items: left;
  margin-bottom: 10px;
  font-size: 24px;
}
.control-btn{display: flex; width:200px}
.control-btn button{background:none; color:#000; display: flex; align-items: center; position: relative}
.control-btn button:first-child::after {
  content: "|";
  position: absolute;
  right: 0;
}

.control-btn button img{width:25px; margin-right:10px}
/* Custom Radio */
.option input[type="radio"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #6aa889;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    cursor: pointer;
    box-shadow: inset 0px 0px 4px #6aa889;
}

.option input[type="radio"]:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #2d7d5f;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

.option label {
  cursor: pointer;
	text-align:left;
	font-size:18px;
	font-weight:300;
	width: 80%
}
#submitBtn{  width:180px;
  padding:12px;
  background:#222;
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:18px;
  cursor:pointer; display: inline-block; text-decoration: none}
/* -------- HERO SECTION -------- */
.hero{
 
  background:#f5f5f5;
  
}
.hero-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:40px 40px 0 40px;
 
}

.hero-text{
  max-width:500px;
}
.step{text-align: left; }

.ques-section form{background:#fff; border-radius:25px; padding:50px }
.ques-section form label{margin-bottom:10px; display:inline-block}
.hero-text h2{
  color:#1e9c7c;
  font-size:32px;
  margin-bottom:15px;
  font-family: 'Helvetica Neue';
    font-weight: 500;
}

.hero-text p{
  font-size:18px;
  line-height:1.5;
}
.hero-img img{
  max-width:300px;
  width:100%;
	display:block
}

/* -------- FORM SECTION -------- */
.form-section, .quiz-section, .thzm-section, .ques-section{
  background:#32a484;
  padding:50px 20px;
  text-align:center;
}

.form-section h2{
  color:#fff;
  margin-bottom:30px;
  font-weight:normal;
}

.form-container{
  width:100%;
  margin:auto;
	
}
.ques-section form label {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.form-group{
  margin-bottom:15px;
}

.form-group input,
.form-group select{
  width:100%;
  padding:15px;
  border:none;
  border-radius:6px;
  font-size:16px;
}

.input-box{
  position:relative;
}

.input-box .icon{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  font-size:16px;
  color:#555;
  z-index: 1; /* ensure icon is visible above select */
}
.w-70{width:70%}
.input-box input,
.input-box select{
  width:100%;
  height: 46px; /* consistent height for all inputs */
  padding:14px 30px 14px 50px; /* increased right padding for custom arrow */
  border-radius:6px;
  border:none;
  font-size:16px;
	color:#000;
	text-align: left;
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	cursor: pointer;
}
.input-box select {
  position: relative;
}
.input-box .dropdown-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  pointer-events: none;
  z-index: 2;
}
.input-box input::placeholder{color:#000;}

/* two column */
.row, .form-row{
  display:flex;
  gap:10px;
}
.form-row .form-group{flex:1}
.row .form-group{
  flex:1;
}

button{
  width:100%;
  padding:15px;
  background:#222;
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:18px;
  cursor:pointer;
	 margin-top:20px;
}
.link{  width:220px;
  padding:12px;
  background:#222;
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:18px;
  cursor:pointer;
	 margin-top:40px; display: inline-block; text-decoration: none}
.text-black{color:#000 !important;}
.fx{font-size:32px !important;}
.quiz-section ul{list-style: disc; margin:0; padding:0; padding-left:20px}
.quiz-section ul li{color:#fff; text-align: left; font-size:18px; line-height:22px; margin-top:7px;}
.text-center{text-align: center}
.fm{font-size:25px !important}
.thzm-section h3{color:#fff; font-size:25px; font-weight:500}
.thzm-section p {
    font-size: 17px;
    color: #fff;
    margin-top: 5px;
    line-height: 20px;
}
.mb50{margin-bottom:50px}
.w-85{width:320px}
.input-box .icon img{width:20px;}
.text-white{color:#fff !important; font-size:12px}
/* -------- RESPONSIVE -------- */


@media(max-width:768px){

  .header{
    font-size:28px;
    padding:15px;
  }

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-text{
    max-width:100%;
    margin-bottom:20px;
  }

  .hero-text h2{
    font-size:24px;
  }

  .hero-text p{
    font-size:16px;
  }

  .hero-img img{
    max-width:200px;
  }

  .row{
    flex-direction:column;
  }
	.section {
    background: #32a484;
    height: calc(100vh - 57px);
}

  /* Form responsive styles */
  .form-section h2 {
    font-size: 18px;
    padding: 0 15px;
  }

  .form-container {
    padding: 0 15px;
	  width:330px
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .input-box input,
  .input-box select {
    font-size: 16px;
    padding: 12px 25px 12px 45px;
  }

  .input-box .icon {
    left: 10px;
  }

  .input-box .icon img {
    width: 18px;
  }

  .dropdown-arrow {
    right: 10px;
  }

  button {
    font-size: 16px;
    padding: 12px;
    margin-top: 15px;
  }
}



@media(max-width:660px){
	.hero-img img{width:170px}
	.hero-text h2 { font-size:17px !important;}
	 .hero-text p { font-size: 13px; }
	.ques-section p b{font-size:18px}
	.option label{font-size:16px;     width: 85%;}
	.ques-section form {padding: 40px 20px;}
}

@media(max-width:480px){
  .form-section h2 {
    font-size: 16px;
    padding: 0 10px;
  }

  .form-container {
    padding: 0 10px;
  }

  .input-box input,
  .input-box select {
    font-size: 14px;
    padding: 10px 20px 10px 40px;
    height: 40px;
  }

  .input-box .icon {
    left: 8px;
  }

  .input-box .icon img {
    width: 16px;
  }

  .dropdown-arrow {
    right: 8px;
  }

  button {
    font-size: 14px;
    padding: 10px;
    margin-top: 10px;
  }

  .text-white {
    font-size: 12px;
  }
}

@media(min-width:769px){
	.logo{width:220px}
	 .form-container {
	  width:330px
  }
}