/* Reset and global settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #292B2C;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    background: url("top-bg.png") no-repeat center center / cover, #292B2C;
    background-position-y: 74px;
    background-repeat: no-repeat;
    max-width: 670px;
    margin: 0 auto;
}
.text-white{
    color: #ffffff;
}
.text-green{
    color: #AADB1E;
}
.main{
    padding: 30px 15px;
    position: relative;
    z-index: 2;
}
.header{
    background: white;
    width: 100%;
    padding: 15px;
}
.logo{
    text-align: right
}
.logo img{
    max-width: 130px;
}
.intro img{
    max-width: 100%;
}
.description{
    padding: 0 30px;
    margin: 10px 0 30px 0;
}
.description_home{
    padding: 0 5px;
    margin: 30px 0 30px 0;
}
.green-text{
    color: #AADB1E;
}
.copy_bottom{
    padding: 60px 0 0px;
    text-align: center;
}
.benifits{
    border-radius: 20px;
    border: 3px solid #1EBEAA;
    padding: 17px 20px 7px 20px;;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.benifits p{
    font-size: 14px;
}
.benifits img{
    max-width: 65px;
    margin-right: 30px;
    margin-top: -10px;
}
.start_button{
    text-align: center;
    margin: 60px 0px;
}
.start_button a{
    background: linear-gradient(to right, #4CAF50, #CDDC39);
    color: #292B2C;
    padding: 15px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 19px;
}
.explore_more_btn{
    margin-top: 45px;
}
.explore_more_btn a{
    background: transparent;
    border: 1px solid #AADB1E;
    color: white;
    margin-bottom: 30px;
}
.landing_block{
    background: url("home-header_bg.jpg") no-repeat center center / cover, #333;
    background-repeat: no-repeat; 
}
.landing_list{
    margin: 40px 0 80px 0;
    background: #292B2C;
    padding: 30px 30px 15px 38px;
    border-radius: 16px;
}
.landing_list li{
    margin-bottom: 15px;
}
/* Container for content */
.container {
    max-width: 480px;
    width: 100%;
    background: #111;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

.quiz-start{
    padding: 15px 30px 30px;
}
/* Form and quiz box */
.quiz-start h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.quiz-start p {
  font-size: 15px;
  margin-bottom: 20px;
}

.start-form input {
  width: 100%;
  padding: 14px 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  color: #292B2C;
  outline: none;
}

.start-form input::placeholder {
  color: #777;
}

/* Main button */
.btn {
    background-color: transparent;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    border: 2px solid #AADB1E;
    margin-top: 15px;
}

.btn:hover {
    background-color: linear-gradient(to right, #4CAF50, #CDDC39);
}

/* Disclaimer */
small {
    display: block;
    margin-top: 12px;
    color: #9A9FA1;
    font-size: 12px;
}

/* Step progress */
.progress-info {
    margin-top: 30px;
    text-align: center;
}

.progress-info p {
    font-size: 14px;
    margin-bottom: 10px;
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}
.progress-steps::before{
    content: "";
    border: 2px solid white;
    position: absolute;
    z-index: 1;
    width: 160px;
    top: 19px;
}
.step {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #AADB1E;
    font-weight: bold;
    transition: 0.3s;
    border: 2px solid #fff;
    position: relative;
    z-index: 3;
        
}

.step.active {
  background: #AADB1E;
  color: #111;
}
.footer{
    background: url(footer_bg.png) no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 220px;
    margin-top: -210px;
}
.mt-60{
    margin-top: 60px;
}
.mt-160{
    margin-top: 160px;
}
.mt-190{
    margin-top: 19vh;
}
.mv{
    height: 89vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.countdown{
    border: 2px solid #AADB1E;
    padding: 10px 36px;
    border-radius: 100px;
    font-weight: bold;
    font-size: 60px;
    background: #292B2C;
    box-shadow: 0px 0px 141px #AADB1E;
    margin-bottom: 50px;
}
.question-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.question-text {
    color: #fff;
    font-size: 19px;
    margin-bottom: 30px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.option-box {
    background: #fff;
    color: #333;
    height: 60px; /* fixed equal height */
    border-radius: 15px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
}

.option-box input[type="radio"] {
    display: none;
}

.option-box span {
    background: transparent;
    padding: 10px 20px;
    transition: all 0.3s ease;
    width: 100%; 
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    border-radius: 14px;
}

.option-box input[type="radio"]:checked + span {
    background-color: #4CAF50; /* green */
    color: #fff;
    font-weight: bold;
}
.quiz-header{
    text-align: right;
    font-weight: bold;
    font-size: 27px;
    padding-right: 15px;
    margin-bottom: 40px;
}
.quiz-header img{
    max-width: 25px;
    margin-right:7px;
    margin-top: -5px;
}
.is_quiz{
    background: #292B2C;
}
.progress-container {
    width: 100%;
    background-color: rgb(30 190 170 / 42%);  /* dark track */
    border-radius: 10px;
    height: 12px;
    margin-top: 20px;
    overflow: hidden;
    }

.progress-bar {
    height: 100%;
    background-color: #1EBEAA; /* teal fill */
    border-radius: 10px;
    transition: width 0.3s ease;
}
.result-box{    
    background: white;
    color: black;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}
.result-box img{
    max-width: 54px;
    margin-bottom: 15px;
}
.no_worries{
    color: #838A8D;
}
.already{
    text-align: center;
    font-size: 14px;
    color: #838A8D;
    margin: 30px 0;
}
.gradient{
    background: linear-gradient(to right, #4CAF50, #CDDC39);
    border: 0px;
    color: #292B2C;
}
.see-through{
    background: transparent;
    padding: 15px;
}
.m-y-30{
    margin-bottom: 30px;
    margin-top: 90px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th, td {
  border: 1px solid #1EBEAA;
  padding: 12px;
  text-align: left;
}
th {
  background-color: #333;
  font-weight: bold;
}
tr:nth-child(even) {
  background-color: #2c2c2c;
}
tr:hover {
  background-color: #444;
}
.rank {
  font-weight: bold;
}
.solid{
    background: #222222;
}
.burger-menu {
    position: fixed;
    top: 20px;
    left: 30px;
    width: 35px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s ease;
}
.burger-menu span {
  display: block;
  height: 4px;
  background: #222222;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}
.burger-menu.open {
  display: none;
}
.burger-menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu.open span:nth-child(2) {
  opacity: 0;
}
.burger-menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #222222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
    z-index: 1500;
}
.menu-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.close-button {
  position: absolute;
  top: 6vh;
  right: 5vw;
  background: none;
  border: none;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 1600;
  transition: transform 0.2s ease;
}
.close-button:hover {
  transform: scale(1.1);
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.menu-items a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.menu-items a:hover {
  color: #ffc107;
}
.times_up{
font-size: 18px;
font-weight: bold;
margin-top: 30px;
text-transform: uppercase;
margin-bottom: 15px;
}