@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400&display=swap');


:root {
    --color-primary: #333333;
    --color-secondary: #00abe7;
    --color-inverse: #ffffff;

    --color-text: #333333;
    --color-text-muted: #B7B7B7;
    --color-text-inverse: #FFFFFF;

    --color-bg-light: #F2F5FF;
    --color-bg-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Lato, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: Lato, sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 46px;
    margin-bottom: 10px;
    font-weight: 900;
}

h2,
.h2 {
    font-size: 32px;
    color: var(--color-secondary);
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

ul,
ol {
    list-style: none;
}
table{
    margin: 20px 0;
}
table tbody tr:first-child {
    background: #00abe7;
    color: #fff;
}
table tbody tr td {
    padding: 5px 10px;
}
table tbody tr:not(:first-child) td {
    border: 1px solid #00abe7;
}
table tbody tr:first-child td {
     border: 1px solid #00abe7;
}
.container {
    max-width: 1260px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.btn:hover,
.btn-style a:hover {
    background: #32b5e2;
}

header {
    background-color: #fff;
    color: #000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-wrapper .logo a {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.header-wrapper .logo a {
    font-size: 30px;
    font-weight: 900;
    display: flex;
    color: #000;
}

.header-wrapper .logo a span {
    color: var(--color-secondary);
}

header .logo img {
    max-width: 60px;
}

header nav ul {
    list-style: none;
    text-align: right;
}

header nav ul li {
    display: inline;
}

header nav ul ul li {
    display: inline;
    margin-left: 0;
}

header nav ul li a {
    color: #000;
    text-decoration: none;
}

header nav ul li ul li a {
    padding: 10px 15px;
    width: 100%;
    display: inline-block;
}

header nav ul li ul li a:hover {
    background: var(--color-secondary);
    color: #fff;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    color: #000;
    text-decoration: none;
    padding: 22px 20px;
}

header nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    top: 38px;
    background: #fff;
    min-width: 180px;
    display: none;
    flex-direction: column;
    text-align: left;
    padding: 0px 0;
    z-index: 999;
    margin-right: 0;
}

header nav ul li:hover>ul {
    display: flex;
}

header nav ul li ul li a {
    padding: 10px 15px;
}
.header-menu{
    display: flex;
    align-items: center;
}
.header-utility {
    display: flex;
    padding: 22px 20px;
}

.has-submenu>a::after,
.has-grand-submenu>a::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    background: transparent;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg);
    right: 2px;
    top: 3px;
}

.has-grand-submenu.active a::after {
    transform: rotate(135deg);
    transition: 0.3s;
}

.has-grand-submenu>a::after {
    transform: rotate(45deg);
    right: 15px;
    top: 17px;
    transition: 0.3s;
}

.has-grand-submenu a:hover::after {
    border-color: #fff;
}

header nav ul.dropdown li:hover ul {
    right: 100%;
    display: flex;
    background: #fff;
    position: absolute;
    right: ;
    width: 100%;
    margin-left: 98%;
    top: 0px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
    z-index: 99;
}

.has-grand-submenu ul {
    max-height: 450px;
    overflow-y: auto;
}

.hamburger span {
    background: #000;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span {
    background: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 900;
}

.hamburger.active {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 60px;
}

.btn-style a, .btnn-primary {
    background: var(--color-secondary);
    color: white;
    padding: 7px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.2);
    display: inline-block;
}
.intro-inner {
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    padding: 25px 30px 35px;
}

.intro h1 {
    max-width: 80%;
    margin: 0 auto;
}

.intro ul li {
    margin-bottom: 5px;
}

.intro p {
    font-size: 20px;
}

.intro ul {
    display: flex;
    padding: 30px 0 0;
    font-size: 14px;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
}

.intro-inner>* {
    z-index: 9;
    position: relative;
    color: #fff;
}

.page-intro {
    padding-top: 50px;
    padding-bottom: 50px;
}
.intro h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.intro h1 img {
    max-width: 40px;
    width: 40px;
    height: 40px;
    object-fit: cover !important;
    border-radius: 30px;
}
.test-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: space-between;
    margin-top: 20px;
}

.test-list ul li a {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 20px;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.test-list ul li a:hover {
    background: var(--color-secondary);
}

.test-list ul li {
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    padding: 30px 30px;
}

.test-list ul li p {
    padding: 10px 0;
}

.has-overlay {
    position: relative;
}

.has-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(0 0 0 / 50%);
    height: 100%;
}




.why-choose {
    padding: 60px 0;
    background-color: #f8fbff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 5px;
}



.tabs {
    padding-top: 60px;
    padding-bottom: 50px;
    background: #fff;
}

.tabs-header {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 30px 0;
    overflow-x: auto;
}

.tab-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
    cursor: grab;
}

.tab-wrapper.dragging {
    cursor: grabbing;
}

.tab-list {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.2s ease;
}

.tab {
    padding: 6px 30px;
    cursor: pointer;
    border-radius: 8px;
    white-space: nowrap;
    transition: 0.2s;
    border: 1px solid transparent;
    flex-shrink: 0;
    background: #f8f9f9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tab.active {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-primary);
}

.tab:hover {
    background: #e6f3ff;
    color: var(--color-primary);
}

.tab-wrapper::before,
.tab-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
}

.tab-list img {
    width: 20px;
    height: 20px;
}

.panels {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
}


.panels .card img {
    width: 45px;
    height: 45px;
    max-width: 50px;
}

.panels .card li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.panels ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.panels .card li {
    box-shadow: 0px 0px 4px rgba(95, 125, 149, 25%);
    padding: 25px;
    background: #f4f4f4;
}
.exam-categories .panels .card li{
     background: #fff;
}
.exam-categories .test-list {
    padding: 20px 0 0px !important;
}
.exam-categories  .test-tabs .panels .panel {
    padding: 20px 0 0 !important;
}
.arrows {
    display: flex;
    gap: 4px;
    margin-left: 8px;
}
.arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #00abe7;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 4px;
    flex-shrink: 0;
    transition: 0.2s;
    color: #fff;
}

.arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.arrow:hover:not(.disabled) {
    background: var(--color-primary);
    color: #fff;
}


.tabs-body {
    position: relative;
    width: 100%;
}

.test-tabs {
    margin: 60px 0 50px;
}


footer {
    text-align: center;
    padding: 20px;
    background-color: var(--color-primary);
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}



.test-instruction {
    padding: 25px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.test-instruction h1 {
    font-size: 30px;
}

.meta {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 14px;
}


.instructions {
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.instructions li {
    margin-bottom: 8px;
}

.test-instruction .grid-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    font-size: 14px;
    margin-top: 14px;
}

.test-instruction .grid-list ul li {
    padding: 6px;
    border: 1px solid #00abe7;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.box {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
    z-index: 99;
}
#mockTestContainer {
    padding-bottom: 100px;
}

.btn {
    border: none;
    border-radius: 30px;
    padding: 8px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.btn.back {
    background: #f3f4f6;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal h3 {
    margin-bottom: 16px;
}

.modal .lang {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.modal .lang button {
    border: 1px solid var(--color-primary);
    background: #fff;
    padding: 5px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.modal .lang button.active {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;
}

.modal .actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.modal .actions button {
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    width: 160px;
}

.modal .confirm {
    background: var(--color-secondary);
    color: #fff;
}

.test-instruction .grid-list .head,
.total-label {
    background: #00abe7;
    color: #fff;
    font-weight: 700;
}






.stage {
    max-width: 1200px;
    margin: 18px auto;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 16px;
}

.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 12px;
}

.subject-tabs button {
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.subject-tabs button.active {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    font-weight: 700;
}

.paper {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 16px rgba(12, 13, 20, 0.05);
}

.q-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.q-counter {
    font-weight: 700;
    color: #0f172a;
}

.q-mark {
    font-size: 13px;
    color: #6b7280;
}

.progress {
    height: 8px;
    background: #eef2ff;
    border-radius: 999px;
    margin-top: 10px;
    overflow: hidden;
}

.progress>i {
    display: block;
    height: 100%;
    background: linear-gradient(270deg, #00abe7, #5d79bc);
    width: 0%;
}

.q-card {
    margin-top: 14px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.03), #fff);
}

.q-text {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 12px;
}

.options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.option {
    background: #fff;
    border: 1px solid #e8eefc;
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
}

.option.selected {
    border-color: #4f46e5;
    background: #f8fbff;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.06);
}

.option input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.option.selected input[type="radio"] {
    border-color: #4f46e5;
    background: #4f46e5;
}
.side {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(12, 13, 20, 0.05);
}
.timer {
    font-weight: 700;
    font-size: 20px;
    color: #0f172a;
    align-items: center;
    display: flex;
}
#timer span {
    padding: 2px 7px;
    font-size: 16px;
    margin: 2px;
    color: #fff;
    background: #000;
}
.timer-wrapper{
    text-align: center;
}
.two_btn_wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
}
.palette {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 12px;
}
.palette .p {
    padding: 8px;
    border-radius: 8px;
    background: #fde68a;
    text-align: center;
    cursor: pointer;
}

.palette .p.answered {
    background: #def7ec;
}

.palette .p.flagged {
    background: #ec8341;
    color: #fff;
}
#palette .p.active {
  background: #00abe7;
  color: #fff;
}

.text-red-800 {
  color: rgb(153, 27, 27);
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}
.actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 14px;
}

#questionContainer .actions {
    position: fixed;
    width: 100%;
    bottom: 0;
    background: #fff;
    padding: 15px 20px;
    left: 0;
    right: 0;
    z-index: 99;
}
.action-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 16px;
    padding-left: 40px;
    padding-right: 40px;
}
.btn.ghost {
    background: #fff;
    color: #0f172a;
    border: 1px solid #e6e9f2;
}

button#review {
    background: #ec8341;
    color: #fff;
}

.result-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
}

.result-modal .card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    min-width: 320px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.result-modal.show {
    display: flex;
}


button#submit {
    padding: 10px 40px;
    background: #4cb54c;
    text-transform: uppercase;
}

.test-list ul.test-details {
    display: inherit;
    margin: 0;
    background: transparent;
    padding: 0;
    margin-top: 10px;
}

.test-list ul.test-details li {
    padding: 0;
    border: unset;
    box-shadow: unset;
    list-style: disc;
    margin-left: 15px;
    color: #6f6f6f;
}

.intro h1 img {
    object-fit: contain;
}

.test-cat-detail .intro h1 {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 5px;
    line-height: 2;
}

.test-cat-detail .intro-inner {
    padding: 60px 30px;
}

.test-list ul.cards ul li {
    box-shadow: unset;
    padding: 0;
    position: relative;
}

.test-list {
    padding: 30px 0 60px;
}
.test-cat-detail .test-list {
    padding: 30px 0 0;
}

.test-list ul.cards li ul {
    display: flex;
    gap: 0 15px;
    flex-wrap: wrap;
    justify-content: start;
}

.test-list ul.cards ul li:not(:last-child)::after {
    content: "";
    background: #333;
    width: 1px;
    height: 15px;
    position: absolute;
    right: -8px;
    top: 6px;
}

.test-tabs .tab {
    padding: 10px 20px;
    cursor: pointer;
    white-space: nowrap;
}

.test-tabs .tab.active {
    border: 1px solid var(--color-secondary);
    font-weight: 600;
    color: #fff;
}

.test-tabs .panels .panel {
    display: none;
    padding: 20px 0;
}

.test-tabs .panels .panel.active {
    display: block;
}




.mock-test-info {
  background: #fff;
  padding: 60px 20px;
  color: #333;
  line-height: 1.6;
}

.mock-test-info .container {
  max-width: 900px;
  margin: 0 auto;
}
.mock-test-info h2 {
  font-size: 2rem;
  color: #1d3557;
  margin-bottom: 15px;
  text-align: center;
}

.mock-test-info h3 {
  margin-top: 30px;
  color: var(--color-secondary);
  font-size: 1.3rem;
}

.mock-test-info ul {
  margin: 15px 0;
  padding-left: 20px;
}

.mock-test-info ul li {
  margin-bottom: 8px;
}

.test-info h2, .test-info h3, .test-info h4 {
    padding: 10px 0;
}
.test-info .btnn-primary {
    margin: 15px 0;
}
.test-info {
    padding-bottom: 50px;
}



/* Mock test results page starts */
.topbar {
    display: flex;
    margin-bottom: 20px;
}

.test-solution {
    padding: 30px 0 50px;
}

.test-solution .meta {
    margin-bottom: 0;
}

.topbar select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #cdd9eb;
/*     background: #fff; */
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");

}
/* 
.topbar select:hover {
    background: #f0f6ff;
}
 */
.topbar select:focus-visible {
    outline: 0;
}

.mock-wrap {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 18px;
}
.test-solution .panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    padding: 16px;
    transition: transform 0.1s ease;
    min-height: 65vh;
}
.panel:hover {
    transform: translateY(-1px);
}
.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    transition: all 0.2s ease;
}

.chip:hover {
    background: #e7efff;
}

.chip.active {
    background: var(--color-secondary);
    color: #fff;
    border: none;
}

.q-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 72vh;
    overflow: auto;
    padding-right: 10px;
}

.q-item {
    align-items: revert-layer;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    border: 1px solid #f0f4fa;
    display: grid;
    grid-template-columns: max-content auto max-content;
    align-items: center;
    gap: 10px;
}

.q-item:hover {
    background: #f5f9ff;
}

.q-item.active {
    background: #e9f2ff;
    border-color: #cde2ff;
}

.q-num {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-correct {
    background: #28a745;
}

.status-incorrect {
    background: #dc3545;
}

.status-un {
    background: #ffc107;
}

.q-detail {
    padding: 20px;
    line-height: 1.6;
}

.q-detail h2 {
    font-size: 16px;
    color: var(--color-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 400;
}

.q-body {
    font-size: 15px;
    color: #333;
}

.answers .options {
    background: #f9fbff;
    border-radius: 10px;
    border: 1px solid #e1e8f3;
    padding: 14px !important;
    margin-top: 14px !important;
    color: #111;
}

.answers strong {
    color: var(--color-secondary);
}

.q-detail ul.options {
    list-style: none;
    padding: 0;
    margin: auto;
    grid-template-columns: 1fr;
}

.q-detail ul.options li {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    background: #fff;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.q-detail ul.options li:hover {
    border-color: #2563eb;
    box-shadow: 0 0 4px rgba(37, 99, 235, 0.3);
}

.q-detail ul.options li.active {
    background: #dcfce7;
    border-color: #22c55e;
}

#answersArea .options li span {
  margin-right: 6px;
}

.correct-ans {
    border-color: #95dd9524 !important;
    color: #008000;
    background: #95dd9524 !important;
}

.incorrect-ans {
    border-color: #ff927d24 !important;
    color: #ff0000;
    background: #ff927d24 !important;
}

.correct-sol {
    background: #ebf7f0;
    padding: 30px;
    margin-top: 20px;
}

.correct-sol h4 {
    color: #008000;
    padding-bottom: 10px;
}

/* Mock test results page ends */



.q-status-wrapper {
    position: relative;
    text-align: right;
}
.q-status {
    background: linear-gradient(135deg, #ff3b30, #c31432);
    animation-delay: 0s;
    text-align: center;
    color: #fff;
    text-transform: capitalize;
    padding: 2px 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 10px;
}
.q-status.correct {
    background: linear-gradient(135deg, #25db86, #1db926);
}
.q-status.unattempted {
    background: linear-gradient(135deg, #e1bf57, #ffc107);
}
.mock-wrap-overview {
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.mock-wrap-overview > div {
    font-size: 16px;
    color: #000;
}
.mock-wrap-overview label {
    font-weight: bold;
}
body.mock-test-details footer {
    display: none;
}
.exam-questions .sticky {
    display: none;
}
.btnn-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    align-items: center;
}
.color-paltte {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
    margin: 5px 0px 15px;
}
.color-paltte li {
    position: relative;
    padding-left: 15px;
}
.color-paltte li::before {
    content: "";
    position: absolute;
    background: #ec8341;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    top: 8px;
    left: -2px;
}
.color-paltte .cp-answered::before {
    background: #def7ec;
}
.color-paltte .cp-unattempted::before {
    background: #fde68a;
}
.q-list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.q-list::-webkit-scrollbar-track {
    background: #e5e7eb;
}
.q-list::-webkit-scrollbar-thumb {
    background: #5bc7ed;
    border-radius: 4px;
}
body.welcome, 
body.exam-categories,
.mock-test-result, 
body#test-pattern,
body.edit, body.dashboard  {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.exam-categories main, 
.welcome main, 
.test-solution, 
#test-pattern main, 
body.edit main, 
body.dashboard main {
    flex: 1 1 auto;
}
.exam-categories main {
    display: flex;
    flex-direction: column;
}
.no-data-found {
    padding: 80px 20px 70px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1 1 auto;
}
.no-data-found h2 {
    font-size: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 10px;
}
.no-data-found p {
    font-size: 27px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.sidebar-wrapper {
    position: sticky;
    top: 20px;
}
.guest-form-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 15px;
    flex: 1 1 auto;
}
.guest-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.guest-form-wrapper form {
    background: #fff;
    padding: 30px 50px 50px;
    border-radius: 10px;
}
.guest-form-wrapper h1 {
    font-size: 32px;
}
.guest-form-wrapper form strong {
    color: #00abe7;
}
section header {
    background: unset;
    box-shadow: unset;
}
.edit-profile-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.edit-profile-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.edit-profile-wrapper .profile-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}
.edit-profile-wrapper .profile-card:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
}
.user-dashboard .top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}
.user-dashboard .top-section a {
    background: #333333;
    color: #fff;
    border-radius: 5px;
}
.user-dashboard .content-row ul li a {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 20px;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.content-section .content-row {
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    padding: 30px 30px;
    background: #fff;
    border-radius: 5px ;
}
.content-section h2 {
    padding-bottom: 10px;
}
.content-row ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.q-header-wrapper {
    position: sticky;
    background: #fff;
    top: 0px;
    padding: 10px 0;
    z-index: 99;
}


/* Media CSS */
@media (max-width: 991px) {
    main,.stage,.options,.mock-wrap{
        grid-template-columns: 1fr;
    }
    .q-list {
        flex-direction: column;
        padding-bottom: 8px;
    }
    .q-item {
        min-width: 160px;
    }
    .btnn-wrapper .btn {
        padding: 8px 10px;
        font-size: 12px;
    }
    .timer-wrapper {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .sticky {
        flex-direction: column;
        gap: 10px;
    }

    .test-instruction .btn {
        width: 100%;
    }

    .panels ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .intro h1 {
        max-width: 100%;
    }

    .test-cat-detail .intro h1 {
        line-height: 1.2;
    }

    .test-tabs {
        margin: 35px 0 25px;
    }

    h1 {
        font-size: 30px;
    }

    .test-cat-detail .intro h1 {
        flex-direction: column;
    }

    .intro h1 img {
        max-width: 60px;
        display: flex;
        align-self: center;
    }

    .test-list ul,
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

    .intro ul {
        flex-wrap: wrap;
    }

    .test-instruction {
        padding: 20px 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .instructions {
        padding-left: 0;
    }


    header nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 75%;
        background: #fff;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
        padding-top: 35px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    header nav ul.show {
        left: 0;
    }

    header nav ul li {
        width: 100%;
    }

    header nav ul li a {
        width: 100%;
        padding: 5px 20px;
        display: inline-block;
    }

    header nav ul li ul {
        position: static;
        width: 100%;
        height: auto;
    }

    header nav ul li.active>ul {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .header-wrapper ul {
        text-align: left;
    }

    header nav ul li ul li a {
        padding: 0px 15px;
    }

    header nav .btn-style a {
        padding: 5px 20px;
        background: #fff;
        box-shadow: unset;
        color: #000;
    }
    header nav ul li {
        margin-left: 0;
        display: inline-block;
        padding: 5px 0;
    }
    header nav ul li ul li a {
        padding-left: 40px;
    }
    .has-submenu>a::after {
        top: 17px;
        right: 15px;
    }
    .has-grand-submenu ul {
        max-height: unset;
        padding-left: 20px;
        font-size: 14px;
    }
    header nav ul.dropdown li:hover ul {
        margin-left: unset;
    }
    .action-container {
        grid-template-columns: 1fr;
    }
    .btnn-wrapper {
        gap: 20px;
        align-items: center;
        flex-direction: column;
    }
    #questionContainer {
        padding-bottom: 150px;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .edit-profile-wrapper {
        grid-template-columns: 1fr;
    }
    .edit-profile-wrapper .profile-card:last-child {
        grid-column-end: 2;
    }

}