
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI,Arial,sans-serif;
}

body{
background:#9abcff;
padding:20px;
padding-bottom:80px;
padding-top:0px;

}

.quiz-container{
max-width:900px;
margin:auto;
}

.header{
text-align:center;
margin-bottom:15px;
background: #fff;
padding: 15px;
margin-bottom:15px;
-webkit-border-bottom-right-radius: 12px;
-webkit-border-bottom-left-radius: 12px;
-moz-border-radius-bottomright: 12px;
-moz-border-radius-bottomleft: 12px;
border-bottom-right-radius: 12px;
border-bottom-left-radius: 12px;
}

.logo{
width:100%;
max-width:180px;
height:auto;
margin-bottom:8px;
}

.header h1{
color:#1e3c72;
margin-bottom:5px;
line-height: 40px;
}

.header p{
color:#666;
}
.two-div {width: 100%;}
p {font-size: 14px;  line-height: 25px; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; padding-bottom: 10px;}

.content{display:flex; gap:15px; margin-top:15px;}

.onediv{width:40%;}

.twodiv{width:60%;}

.ad-box{
background:#fff;
padding:15px;
border-radius:12px;
margin-bottom:15px;
text-align:center;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.quiz-card{
background:#fff;
padding:20px 25px;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.counter{
display:inline-block;
background:#1e3c72;
color:#fff;
padding:8px 18px;
border-radius:30px;
margin-bottom:20px;
}

.question{
font-size:22px;
font-weight:600;
margin-bottom:10px;
}

.option{
    border:2px solid #ddd;
    padding:10px 15px 10px 15px;
    border-radius:10px;
    margin-bottom:5px;
    cursor:pointer;
    transition:all .3s ease;
      /* Mobile Fix */
    -webkit-tap-highlight-color: transparent;
    appearance:none;
    -webkit-appearance:none;
    font-weight: 700;
}

.option:hover{
    background:#eef5ff;
    border-color:#4a7cff;
}

/* Correct Answer */
.correct{
    background-color:#d4edda !important;
    border:2px solid #28a745 !important;
    color:#155724 !important;
}

/* Wrong Answer */
.wrong{
    background-color:#f8d7da !important;
    border:2px solid #dc3545 !important;
    color:#721c24 !important;
}

/* Mobile browsers */
.option.correct,
.option.wrong{
    -webkit-text-fill-color: inherit;
    opacity:1 !important;
}

.answer-box{
display:none;
margin-top:20px;
background:#eef7ff;
padding:15px;
border-left:5px solid #007bff;
border-radius:8px;
}

.navigation{
margin-top:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.arrow-btn{
width:50px;
height:50px;
border:none;
border-radius:100%;
background:#1e3c72;
color:#fff;
font-size:24px;
cursor:pointer;
}

.show-btn{
padding:12px 25px;
border:none;
border-radius:8px;
background:#28a745;
color:#fff;
cursor:pointer;
}

.progress{
margin-top:20px;
height:8px;
background:#ddd;
border-radius:20px;
overflow:hidden;
}

.progress-bar{
height:100%;
background:#1e3c72;
width:0%;
transition:.4s;
}

.pdf-box{
margin-top:15px;
background:#fff;
padding:15px;
border-radius:12px;
text-align:center;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.pdf-btn{
display:inline-block;
margin-top:10px;
background:#dc3545;
color:#fff;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
}

.related-box{
margin-top:15px;
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.related-box ul{
padding-left:20px;
margin-top:10px;
}

.related-box li{
margin-bottom:10px;
}

.related-box a{
text-decoration:none;
color:#005bff;
}

.sticky-ad{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#fff;
padding:10px;
text-align:center;
box-shadow:0 -2px 10px rgba(0,0,0,.15);
z-index:999;
}
@media screen and (max-width:768px) {
.ad-box { margin-left: -15px; margin-right: -15px; padding:10px;}
.pdf-box{margin-left: -15px;margin-right: -15px; padding:10px;}
.content{flex-direction:column;}
.onediv,.twodiv{width:100%;}

}