/* ======================================= */
/* FILE NAME : style.css */
/* ======================================= */


/* GOOGLE FONT */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



/* ======================================= */
/* UNIVERSAL */
/* ======================================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* ======================================= */
/* BODY */
/* ======================================= */

body{

    font-family: 'Poppins', sans-serif;

    background: #f1f5f9;

    min-height: 100vh;

    padding: 2px;

}



/* ======================================= */
/* MAIN CONTAINER */
/* ======================================= */

.main-container{

    position: relative;

    width: 100%;

    max-width: 100%;

    margin: auto;

    padding: 2px;

    border-radius: 25px;

    background: linear-gradient(

        90deg,

        #ff00c8,

        #7a00ff,

        #00c3ff,

        #00ff88,

        #ff00c8

    );

    background-size: 400%;

    animation: borderMove 6s linear infinite;

}

.main-inner{

    background: white;

    border-radius: 20px;

    padding: 3px;

    width: 100%;

    height: 100%;

}

@keyframes borderMove{

    0%{

        background-position: 0%;

    }

    100%{

        background-position: 400%;

    }

}




/* ======================================= */
/* LOGO SECTION */
/* ======================================= */

.logo-section{

    text-align: center;

    margin-bottom: 30px;

}


.logo-section h1{

    color: #2563eb;

    font-size: 35px;

    margin-bottom: 10px;

}


.logo-section p{

    color: #555;

    font-size: 17px;

}



/* ======================================= */
/* STUDENT FORM */
/* ======================================= */

.student-form h2{

    margin-bottom: 25px;

    color: #111827;

}



/* ======================================= */
/* INPUT GROUP */
/* ======================================= */

.input-group{

    margin-bottom: 20px;

}


.input-group label{

    display: block;

    margin-bottom: 8px;

    font-weight: 500;

    color: #374151;

}


.input-group input,
.input-group select{

    width: 100%;

    padding: 14px;

    border-radius: 10px;

    border: 1px solid #cbd5e1;

    outline: none;

    font-size: 15px;

}


.input-group input:focus,
.input-group select:focus{

    border-color: #2563eb;

}



/* ======================================= */
/* TEST INFO BOX */
/* ======================================= */

.test-info-box{

    background: #eff6ff;

    padding: 20px;

    border-radius: 12px;

    margin-top: 10px;

    margin-bottom: 25px;

}


.test-info-box h3{

    color: #2563eb;

    margin-bottom: 15px;

}


.test-info-box p{

    margin-bottom: 10px;

    font-size: 15px;

    color: #111827;

}



/* ======================================= */
/* BUTTON */
/* ======================================= */

button{

    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 12px;

    background: #2563eb;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;

}


button:hover{

    background: #1d4ed8;

}



/* ======================================= */
/* QUIZ CONTAINER */
/* ======================================= */

.quiz-container{

    display: none;
    position: relative;

    width: 100%;
    max-width: 100%;

    margin: 0;

    padding: 0px;   /* border thickness remove */

    border-radius: 25px;

    background: transparent;  /* gradient remove */

    animation: none;   /* animation remove */
}

.quiz-inner{

    background: white;

    border-radius: 25px;

    padding: 25px;

    border: 1px solid #dcdcdc;  /* simple border */
}

@keyframes borderMove{

    0%{

        background-position: 0%;

    }

    100%{

        background-position: 400%;

    }

}



/* ======================================= */
/* QUIZ TOP BAR */
/* ======================================= */

.quiz-top-bar{

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-bottom: 30px;

    flex-wrap: wrap;

}


.left-top h2{

    color: #111827;

    margin-bottom: 5px;

}


.left-top p{

    color: #555;

}


.right-top h2{

    color: #dc2626;

}



/* ======================================= */
/* QUESTION COUNT */
/* ======================================= */

.question-count-box{

    margin-top: 15px;

}


.question-count-box h3{

    color: #2563eb;

}



/* ======================================= */
/* QUESTION BOX */
/* ======================================= */

.question-box{

    background: #f8fafc;

    padding: 25px;

    border-radius: 15px;

    margin-top: 15px;

}


.question-box h2{

    color: #111827;

    line-height: 1.7;

}



/* ======================================= */
/* OPTIONS */
/* ======================================= */

.options-box{

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.option-btn{

    background: #e2e8f0;

    color: #111827;

    text-align: left;

}


.option-btn:hover{

    background: #cbd5e1;

}



/* ======================================= */
/* BUTTON AREA */
/* ======================================= */

.bottom-btns{

    display: flex;

    gap: 15px;

    margin-top: 30px;

}


#submitBtn{

    background: #16a34a;

}


#submitBtn:hover{

    background: #15803d;

}



/* ======================================= */
/* RESULT CONTAINER */
/* ======================================= */

.result-container{

    width: 100%;

    max-width: 600px;

    margin: auto;

    display: none;

}


.result-card{

    background: white;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);

    text-align: center;

}


.result-card h1{

    color: #16a34a;

    margin-bottom: 20px;

}


.result-card h2{

    margin-bottom: 25px;

    color: #111827;

}



/* ======================================= */
/* RESULT DETAILS */
/* ======================================= */

.result-details{

    background: #f8fafc;

    padding: 25px;

    border-radius: 15px;

    margin-bottom: 25px;

}


.result-details p{

    margin-bottom: 15px;

    font-size: 17px;

    color: #111827;

}



/* ======================================= */
/* MOBILE RESPONSIVE */
/* ======================================= */

@media(max-width: 768px){

    .main-container,
    .quiz-container,
    .result-card{

        padding: 20px;

    }


    .logo-section h1{

        font-size: 26px;

    }


    .quiz-top-bar{

        flex-direction: column;

        align-items: flex-start;

    }


    .bottom-btns{

        flex-direction: column;

    }



    .question-box h2{

        font-size: 20px;

    }

}
#submitBtn{

    display: none;

}
.facebook{

    color: #f5c907;

}

.instagram{

    color: hsl(243, 75%, 54%);

}


.youtube{

    color: #f40404;

}


.whatsapp{

    color: #25d366;

}
.telegram{

    color: lch(94.57% 96.41 108.08);

}

.solution-container{

    margin-top:20px;

    padding:20px;

    background:white;

    border-radius:10px;

}

.solution-question{

    margin-bottom:30px;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

}

.correct-answer{

    background:#22c55e;

    color:white;

}

.wrong-answer{

    background:#ef4444;

    color:white;

}

.normal-option{

    background:#e2e8f0;

}
@media (max-width:768px){

    .quiz-container{
        width: 100%;
        max-width: 100%;
    }

    .quiz-inner{
        padding: 12px;
    }

    .question{
        font-size: 30px;
        line-height: 1.3;
    }
} 
          .about-portal{

max-width:1100px;

margin:40px auto;

padding:35px;

background:#ffffff;

border-radius:20px;

box-shadow:0 8px 25px rgba(0,0,0,0.12);

line-height:2;

}









.about-portal h2{

text-align:center;

font-size:40px;

font-weight:900;

color:#002b80;

margin-bottom:25px;

}

.about-portal p{

font-size:20px;

text-align:justify;

color:#333333;

}

.about-portal:hover{

transform:translateY(-4px);

transition:0.4s;

}

@media(max-width:768px){

.about-portal{

padding:20px;

margin:20px 10px;

}

.about-portal h2{

font-size:28px;

}

.about-portal p{

font-size:17px;

}

}





section .home-services *{
    font-size: 30px !important;
    color: #ff5722 !important;
}