@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&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #006A4E;
    font-family: "Poppins", serif;
    
}
table{
    width: 100%;
    text-align: center;
}
.maindiv{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}
.heroleft{
    width: 100%;
    height: 100%;
}
.heroleftbg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}
.heroright{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.herorightbg{
    max-width: 300px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 2rem;
}

.button_one{
    min-width: 300px;
    background: #FFCC00;
    border-radius: 10px;
    color: #000000;
    padding: 13px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: 15px 2px;
    cursor: pointer;
    font-weight: 500;
    border: none;
    transition: box-shadow 0.5s ease, transform 0.5s ease;
    animation: buttonPulse 1.5s;
}

@keyframes buttonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.button_one:hover{
    background: #FFCC00 !important;
    box-shadow: 0px 0px 0px 5px #ffcc0038;
}
.button_two{
    min-width: 300px;
    background: #ffffff;
    border-radius: 10px;
    color: #000000;
    padding: 13px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 15px 2px;
    cursor: pointer;
    font-weight: 500;
    transition: box-shadow 0.5s ease;
}
.button_two:hover{
    box-shadow: 0px 0px 0px 5px #ffffff7c;
}

.quiz_start, .quiz_page, .result_page{
    max-width: 1000px;
    margin: 2rem;
    padding: 2rem;
    background: #ffffff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    margin-top: 12rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(100px);
    animation: slideIn 0.5s forwards ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.start_section, .quiz_section, .result_section{
    padding: 2rem;
}
.start_page_container, .quiz_page_container, .results_page_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.start_page_img_container{
    margin-top: -10rem;
}
.start_page_img{
    max-width: 150px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 2rem;
}
.participant-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.participant-form > p > label{
    display: none;
}
.participant-form > p {
    width: 100%;
}
.participant-form > p > input {
    width: 100%;
    padding: 1rem;
    background: #FBF9F9;
    border: 0.5px solid #006A4E;
    border-radius: 10px;
    margin: 10px 0px;
}
::placeholder{
    font-size: 16px;
    font-weight: 500;
    color: #4A4A4A;
}

.quiz_header_content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.back-btn{
    background:#EDEDED;
    width: 40px;
    height: 40px;  
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.timer_div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}
.timer_icon{
    width: 26px;
    height: 26px;
}
.timer{
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: #006A4E;

}

.question_id{
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    color: #4A4A4A;
}
.question{
    font-weight: 500;
    font-size: 2rem;
    line-height: 24px;
    color: #4A4A4A;
    margin: 3rem 0rem;
    text-align: center;
}
.question-container{
    width: 100%;
}
.radio{
    opacity: 0;
}
.choice{
    background: #FBF9F9;
    border: 0.5px solid #1935CA;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}
.choice > label{
    cursor: pointer;
}
.choice:hover{
    background: #FFCC00;
    color: #070707; 
}

.feedback{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.badge_div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.result_div{
    text-align: center;
}
.quiz_result_action_div{
    display: flex;
    gap: 5px;
}
.button_three{
  border: 1px solid #FFCC00;
  background: transparent;  
  min-width: 200px;
  border-radius: 10px;
  color: #000000;
  padding: 13px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 15px 2px;
  cursor: pointer;
  font-weight: 500;
  transition: box-shadow 0.5s ease; 
}
.button_three:hover{
    background: #FFCC00;
    box-shadow: 0px 0px 0px 5px #ffcc0038;
}
.button_one_two{
  background: #FFCC00;  
  min-width: 200px;
  border-radius: 10px;
  color: #000000;
  padding: 13px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 15px 2px;
  cursor: pointer;
  font-weight: 500;
  transition: box-shadow 0.5s ease; 
}
.button_one_two:hover{
    background: #FFCC00;
    box-shadow: 0px 0px 0px 5px #ffcc0038;
}
.summry{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
}


@media (min-width: 1024px) {
    .lg\:fixed {
        position: relative;
    }
}