.elementor-6386 .elementor-element.elementor-element-97a0902{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a3265fa *//* --- Root Variables for colors --- */
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --success: #16a34a;
    --danger: #dc2626;
    --radius: 12px;
}

/* --- Container --- */
.exam-wrapper {
    background: var(--card-bg);
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
}

/* --- Header --- */
.exam-header {
    background: var(--primary-color);
    color: #fff;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.exam-header h2 { margin: 0; font-size: 1.3rem; font-weight: 600; }
.exam-timer {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* --- Steps & Animation --- */
.exam-step { display: none; padding: 30px 25px; }
.exam-step.active { display: block; animation: slideUp 0.4s ease forwards; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Utilities --- */
.text-center { text-align: center; }
.subtitle { color: var(--text-muted); margin-bottom: 25px; font-size: 1rem; }
.question-text { font-size: 1.25rem; font-weight: 600; margin-bottom: 25px; line-height: 1.6; color: var(--text-main); }

/* --- Form (Step 1) --- */
.form-group { margin-bottom: 25px; }
.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.05rem;
    transition: all 0.3s;
    background: var(--bg-color);
}
.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
    background: #fff;
}

/* --- Buttons --- */
.exam-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.exam-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
.exam-btn.btn-secondary { background: #64748b; }
.exam-btn.btn-secondary:hover { background: #475569; }
.exam-btn.btn-danger { background: var(--danger); }
.exam-btn.btn-danger:hover { background: #b91c1c; }
.exam-btn.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); margin-top: 15px; }
.exam-btn.btn-outline:hover { background: var(--primary-color); color: #fff; }

#step1 .exam-btn { width: 100%; font-size: 1.1rem; } /* Full width for login */

/* --- Exam Interface (Step 2) --- */
.exam-meta {
    background: var(--bg-color);
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}
.options-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 35px; }
.option-label {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.05rem;
}
.option-label:hover { border-color: var(--primary-color); background: #f0fdf4; }
.option-label input { margin-right: 15px; width: 20px; height: 20px; accent-color: var(--primary-color); cursor: pointer; }

/* Navigation Footer Layout */
.exam-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 25px; }
.nav-right { display: flex; gap: 12px; margin-left: auto; }

/* --- Result Section (Step 3) --- */
.score-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 8px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(37,99,235,0.2);
}
.status-msg { font-size: 1.4rem; font-weight: bold; margin-bottom: 12px; }
.status-pass { color: var(--success); }
.status-fail { color: var(--danger); }
.percentage-text { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 30px; }

/* --- Mobile Responsiveness --- */
@media (max-width: 500px) {
    .exam-step { padding: 20px 15px; }
    .exam-btn { padding: 12px 20px; font-size: 0.95rem; }
    .score-circle { width: 110px; height: 110px; font-size: 1.8rem; border-width: 6px; }
    .exam-footer { flex-direction: column; gap: 15px; }
    .nav-right { margin-left: 0; width: 100%; justify-content: space-between; }
    .nav-right .exam-btn { flex: 1; }
    #prevBtn { width: 100%; }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-97a0902 *//* --- Root Colors & Variables --- */
:root {
    --brand-color: #4f46e5;
    --brand-hover: #4338ca;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --border-light: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius-lg: 16px;
    --radius-md: 10px;
}

/* --- Main Container (Laptop Friendly) --- */
.exam-container-pro {
    background: var(--white);
    max-width: 800px; /* Laptop/Tablet Width */
    width: 100%;
    margin: 30px auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

/* --- Header --- */
.exam-header-pro {
    background: linear-gradient(135deg, var(--brand-color), #3b82f6);
    color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-title { display: flex; align-items: center; gap: 12px; }
.header-title h2 { margin: 0; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.5px; }
.timer-badge { background: rgba(0,0,0,0.2); padding: 8px 16px; border-radius: 30px; font-weight: 700; font-size: 1rem; backdrop-filter: blur(5px); }

/* --- Steps --- */
.exam-step-pro { display: none; padding: 40px; }
.exam-step-pro.active { display: block; animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Step 1: Welcome Box --- */
.welcome-box { text-align: center; max-width: 500px; margin: 0 auto; }
.welcome-box h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--text-dark); }
.welcome-box p { color: var(--text-gray); margin-bottom: 30px; font-size: 1.1rem; }
.input-group input { width: 100%; padding: 16px; border: 2px solid var(--border-light); border-radius: var(--radius-md); font-size: 1.1rem; transition: 0.3s; margin-bottom: 25px; background: var(--bg-light); }
.input-group input:focus { border-color: var(--brand-color); outline: none; background: var(--white); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); }

/* --- Buttons --- */
.btn-pro { border: none; padding: 14px 24px; font-size: 1.05rem; font-weight: 600; border-radius: var(--radius-md); cursor: pointer; transition: all 0.2s ease; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-primary-pro { background: var(--brand-color); color: var(--white); width: 100%; box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2); }
.btn-primary-pro:hover { background: var(--brand-hover); transform: translateY(-2px); }
.btn-outline-pro { background: transparent; color: var(--text-gray); border: 2px solid var(--border-light); }
.btn-outline-pro:hover { background: var(--bg-light); color: var(--text-dark); }
.btn-danger-pro { background: var(--danger-color); color: var(--white); }
.btn-danger-pro:hover { background: #b91c1c; }

/* --- Exam Interface (Step 2) --- */
.info-bar { display: flex; justify-content: space-between; background: var(--bg-light); padding: 15px 20px; border-radius: var(--radius-md); margin-bottom: 30px; font-weight: 600; color: var(--text-gray); border: 1px solid var(--border-light); }
.status-badge { background: var(--white); padding: 4px 12px; border-radius: 20px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); color: var(--brand-color); }
.question-box h3 { font-size: 1.4rem; line-height: 1.6; margin-bottom: 30px; color: var(--text-dark); }

/* --- Options Styling --- */
.options-grid { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.option-item { display: flex; align-items: center; padding: 18px 20px; border: 2px solid var(--border-light); border-radius: var(--radius-md); cursor: pointer; transition: all 0.2s; font-size: 1.1rem; background: var(--white); }
.option-item:hover { border-color: var(--brand-color); background: #f5f3ff; }
.option-item input { margin-right: 15px; width: 22px; height: 22px; accent-color: var(--brand-color); cursor: pointer; }

/* Navigation Footer */
.nav-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-light); padding-top: 25px; }
.nav-right { display: flex; gap: 15px; margin-left: auto; }
.nav-right .btn-pro { width: auto; }

/* --- Result Section --- */
.text-center { text-align: center; }
.result-title { font-size: 2rem; margin-bottom: 30px; }
.score-card { background: var(--bg-light); padding: 40px; border-radius: var(--radius-lg); margin-bottom: 30px; }
.score-circle-pro { width: 150px; height: 150px; border-radius: 50%; border: 10px solid var(--brand-color); display: flex; justify-content: center; align-items: center; font-size: 2.5rem; font-weight: 800; color: var(--brand-color); margin: 0 auto 20px; background: var(--white); box-shadow: 0 10px 20px rgba(79,70,229,0.15); }
.status-message { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; }
.percentage-box { font-size: 1.2rem; color: var(--text-gray); background: var(--white); padding: 10px 20px; border-radius: 30px; display: inline-block; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
#step3 .btn-primary-pro { max-width: 300px; margin: 0 auto; }

/* === MOBILE RESPONSIVE DESIGN (Smartphone Friendly) === */
@media (max-width: 768px) {
    .exam-container-pro { margin: 15px auto; border-radius: 12px; border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
    .exam-header-pro { padding: 15px 20px; flex-direction: column; gap: 12px; text-align: center; }
    .exam-step-pro { padding: 25px 20px; }
    
    .welcome-box h3 { font-size: 1.5rem; }
    .input-group input { padding: 14px; font-size: 1rem; }
    
    .info-bar { flex-direction: column; gap: 10px; text-align: center; padding: 12px; }
    .question-box h3 { font-size: 1.2rem; margin-bottom: 20px; }
    .option-item { padding: 15px; font-size: 1rem; }
    
    /* Footer Navigation Stack on Mobile */
    .nav-footer { flex-direction: column; gap: 15px; }
    .nav-right { width: 100%; justify-content: space-between; margin-left: 0; gap: 10px; }
    .btn-pro { width: 100%; padding: 14px; font-size: 1rem; }
    .nav-right .btn-pro { flex: 1; }
    #prevBtn { width: 100%; }

    .score-circle-pro { width: 120px; height: 120px; font-size: 2rem; border-width: 8px; }
    .status-message { font-size: 1.2rem; }
    .score-card { padding: 25px 15px; }
}/* End custom CSS */