@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

body {
  width: 100%;
  height: auto;
  font-family: "Urbanist";
  position: relative;
  background-color: #fff;
}
header {
  padding: 50px 70px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins";
  font-weight: 900;
  font-size: 40px;
  color: var(--text-color);
  text-transform: uppercase;
}
.logo img {
  width: 300px;
}
.quizMain {
  width: 100%;
  min-height: 400px;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  padding: 120px 100px 100px;
}
.stepimg {
  padding-right: 70px;
}
.step {
  padding-left: 50px;
}
.question {
  font-size: 50px;
  color: var(--heading-color);
  font-weight: 900;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: solid 1px rgb(214, 216, 219);
}
.ratingStar {
  border-bottom: solid 1px rgb(214, 216, 219);
  padding-bottom: 25px;
  margin-bottom: 40px;
}
.fieldStep {
  width: 95%;
}
.radioField {
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  margin-bottom: 15px;
}
.radioField input {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  border: solid 2px var(--text-color);
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
}
.radioField label {
  font-size: 24px;
  color: var(--text-color);
  pointer-events: none;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: var(--transitions);
}
.radioField input::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2px;
  left: -2px;
  background: radial-gradient( circle at 100% 100%, #fff 0, #fff 28px, transparent 28px ) 0% 0%/30px 30px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 28px, transparent 28px) 100% 0%/30px 30px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 28px, transparent 28px) 0% 100%/30px 30px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 28px, transparent 28px) 100% 100%/30px 30px no-repeat, linear-gradient(#fff, #fff) 50% 50% / calc(100% - 4px) calc(100% - 60px) no-repeat, linear-gradient(#fff, #fff) 50% 50% / calc(100% - 60px) calc(100% - 4px) no-repeat, linear-gradient(0deg, rgb(0, 69, 44) 25%, rgb(0, 69, 44) 100%);
  border-radius: 30px;
  padding: 2px;
  box-sizing: content-box;
  transition: var(--transitions);
  opacity: 0;
  z-index: 1;
}
.radioField input:checked::before {
  opacity: 1;
}
.radioField input::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  background: #00452C;
  color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  z-index: 2;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: var(--transitions);
}
.radioField input:checked::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.radioField input:checked ~ label {
  background: #00452C;
  color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 15px;
}
.next_prev {
  width: 100%;
  height: auto;
  display: flex;
  gap: 15px;
}
.next_prev button {
  width: 40%;
  background-color: var(--secondary-color);
  height: 50px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
  border-radius: 35px;
  border: none;
}
.next_prev .next,
.next_prev .sub {
  background: #00452C;
  color: rgb(255, 255, 255);
}
.next_prev button.swiper-button-disabled {
  display: none;
}

.form-text {
  background-color: var(--secondary-color);
  height: 50px;
  width: 100%;
  border-radius: 50px;
  padding: 0 40px;
  margin-top: 10px;
  align-items: center;
}
.form-text .text-field-icon {
  display: grid;
  place-content: center;
  background-color: rgb(242, 242, 255);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  margin-right: 20px;
}
.form-text .text-field-icon i {
  font-size: 14px;
  background: #00452C;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: var(--transitions);
}
.focused {
  position: relative;
}
.focused::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(40, 113, 250);
  left: -5px;
  line-height: 0;
  top: 42%;
}
.form-text .text-field-input {
  width: 100%;
}
.form-text .text-field-input input {
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: 0;
  font-size: 18px;
  color: rgb(60, 60, 60);
}
.form-text .text-field-input input:focus {
  outline: none;
}
.rating {
  margin-bottom: 50px;
}
.step-inner h3 {
  font-size: 23px;
  color: rgb(27, 27, 27);
  font-weight: bold;
}
.rating p {
  font-size: 18px;
  color: rgb(134, 134, 134);
}
.star-rating {
  background-color: rgb(255, 255, 255);
  width: 194px;
  height: 68px;
  border-radius: 50px;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.star-rating {
  cursor: pointer;
}
.star-rating .fa-star {
  font-size: 22px;
  margin: 0 3px;
}
.star-rating .fa-regular {
  color: rgb(208, 208, 208);
}
.star-rating .fa-solid {
  color: rgb(253, 174, 14);
}
.score {
  width: 90%;
}
.score-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0;
}
.score p {
  display: flex;
  justify-content: space-between;
}
.score p span {
  font-size: 15px;
  color: rgb(134, 134, 134);
}
.score-point {
  background-color: rgb(255, 255, 255);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 15px;
  color: rgb(27, 27, 27);
  font-weight: bold;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
}
.score-point.active {
  background-image: -moz-linear-gradient(
    14deg,
    rgb(103, 23, 205) 0%,
    rgb(40, 113, 250) 100%
  );
  background-image: -webkit-linear-gradient(
    14deg,
    rgb(103, 23, 205) 0%,
    rgb(40, 113, 250) 100%
  );
  background-image: -ms-linear-gradient(
    14deg,
    rgb(103, 23, 205) 0%,
    rgb(40, 113, 250) 100%
  );
  color: rgb(255, 255, 255);
}
.invalid {
  border: solid 2px #ff4444 !important;
  position: relative;
}

#error {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
}
.swiper-slide {
  opacity: 0 !important;
}
.swiper-slide-prev {
  opacity: 0 !important;
}
.swiper-slide-active {
  opacity: 1 !important;
}
.thankyou {
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  --secondary-color: rgb(0 0 0);
}
.thankyouPage {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thankyou h1 {
  font-size: 100px;
  color: #000;
  font-weight: 900;
}
.thankyou p {
  font-size: 40px;
  color: #000;
  font-weight: 900;
  width: 60%;
  margin: 0 auto;
  margin: 20px auto;
}
.thankyou span {
  font-size: 20px;
  font-weight: 900;
  display: block;
  margin-top: 50px;
}
.thankyouIcons {
  gap: 10px;
  margin-top: 20px;
}
.thankyouIcons a {
  text-decoration: none;
}
.thankyouIcons i {
  width: 75px;
  height: 75px;
  display: grid;
  place-content: center;
  font-size: 24px;
  color: rgb(255, 255, 255);
  border-radius: 50%;
}
.thankyouIcons i.fa-youtube {
  background-color: #ef0c0c;
}
.thankyouIcons i.fa-facebook {
  background-color: #1037fd;
}
.thankyouIcons i.fa-twitter {
  background-color: #181717;
}
.thankyouIcons i.fa-instagram {
  background-color: #c20de9;
}

.text-field-input input {
    width: 100%;
    border: none;
    outline: none;
    padding: 12px 15px;
    font-size: 15px;
    background: transparent;
}

.text-field-icon {
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.focus {
    background: #f7f7f7;
    border-radius: 50px;
    padding: 10px 15px;
    align-items: center;
}

.focus input::placeholder{
    color:#999;
}
.result-card{
background:#fff;
padding:50px;
border-radius:14px;
margin-top:60px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.score-circle{
width:160px;
height:160px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:42px;
font-weight:700;
margin:auto;
position:relative;
color:#fff;
}

.score-circle span{
font-size:18px;
margin-left:5px;
}

.excellent{background:#00452C;}
.healthy{background:#3498db;}
.improve{background:#f39c12;}
.risk{background:#e74c3c;}

.status-text{
font-size:22px;
font-weight:600;
margin-top:15px;
}

.result-description{
font-size:16px;
color:#555;
}

.recommend-card{
background:#f8f9fa;
padding:18px;
border-radius:8px;
font-size:15px;
display:flex;
align-items:center;
gap:12px;
}

.recommend-card i{
font-size:20px;
color:#00452C;
}

.consult-box{
margin-top:35px;
padding:25px;
background:#f5f7ff;
border-radius:10px;
text-align:center;
}

.consult-btn{
display:inline-block;
padding:12px 30px;
background:#00452C;
color:#fff;
border-radius:30px;
text-decoration:none;
margin-top:10px;
font-weight:600;
}
.top-header{
    background:#ffffff;
    padding:15px 0;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.logo-img{
    height:55px;
}

.site-footer{
	background:#ffffff;
	padding:15px 0;
	margin-top:0px;
	border-top:1px solid #eee;
}

.footer-logo img{
	height:35px;
}

.footer-text{
	font-size:14px;
	color:#666;
}

.footer-link a{
	text-decoration:none;
	color:#00452C;
	font-weight:500;
}

.footer-link a:hover{
	text-decoration:underline;
}
.swiper-slide{
    height:auto !important;
}
.totalQ {
  font-size: 18px;
  font-weight: 700;
}

.hero-section{
    padding:40px 0;
}

.hero-title{
    font-size:48px;
    font-weight:700;
    color:#002618;
    line-height:1.2;
}

.hero-title span{
    color:#00452C;
}

.hero-description{
    font-size:16px;
    color:#555;
    margin-top:15px;
}

.hero-features{
    margin-top:25px;
}

.feature{
    display:flex;
    align-items:center;
    margin-bottom:10px;
    font-weight:500;
}

.feature i{
    color:#00452C;
    margin-right:10px;
    font-size:18px;
}

.start-btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 30px;
    background:#002618;
    color:#fff;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.start-btn:hover{
    background:#00452C;
    color:#fff;
}

.hero-image img{
    max-height:420px;
}
.btn.btn-outline-primary {
  border-color: #00452C !important;
  color: #00452C !important;
}
.btn.btn-outline-primary:hover {
  background-color: #00452C !important;
  color: #fff !important;
}