body {
font-family: 'Inter', sans-serif;
color: var(--dark-gray);
background: var(--off-white);
line-height: 1.6;
}
/* ── HEADER ── */
.site-header {
background: var(--navy);
padding: 16px 0;
border-bottom: 3px solid var(--gold);
}
.header-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: 'Playfair Display', serif;
color: var(--white);
font-size: 22px;
font-weight: 700;
text-decoration: none;
}
.logo span { color: var(--gold); }
.header-nav a {
color: var(--gold-light);
text-decoration: none;
font-size: 14px;
margin-left: 24px;
transition: color 0.2s;
}
.header-nav a:hover { color: var(--white); }
/* ── HERO ── */
.hero {
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
padding: 60px 24px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(201,169,98,0.08) 0%, transparent 70%);
border-radius: 50%;
}
.hero h1 {
font-family: 'Playfair Display', serif;
color: var(--white);
font-size: clamp(28px, 5vw, 42px);
margin-bottom: 12px;
position: relative;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
color: var(--gold-light);
font-size: clamp(15px, 2.5vw, 18px);
max-width: 700px;
margin: 0 auto 24px;
position: relative;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 30px;
flex-wrap: wrap;
position: relative;
}
.hero-stat {
text-align: center;
}
.hero-stat .num {
font-family: 'Playfair Display', serif;
font-size: 36px;
color: var(--gold);
font-weight: 700;
display: block;
}
.hero-stat .label {
color: rgba(255,255,255,0.7);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1px;
}
/* ── MAIN CONTENT ── */
.main {
max-width: 800px;
margin: 0 auto;
padding: 40px 24px 80px;
}
/* ── MODE SELECTOR ── */
.mode-selector {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 40px;
}
.mode-card {
background: var(--white);
border: 2px solid var(--light-gray);
border-radius: 12px;
padding: 28px 24px;
cursor: pointer;
transition: all 0.25s;
text-align: center;
}
.mode-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.mode-card.active { border-color: var(--gold); background: linear-gradient(135deg, #FFFDF5 0%, #FFF9E8 100%); }
.mode-card h3 {
font-family: 'Playfair Display', serif;
font-size: 20px;
color: var(--navy);
margin-bottom: 8px;
}
.mode-card p { color: var(--mid-gray); font-size: 14px; }
.mode-icon {
font-size: 36px;
margin-bottom: 12px;
display: block;
}
/* ── CATEGORY FILTER ── */
.category-bar {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 24px;
}
.cat-btn {
background: var(--white);
border: 1px solid var(--light-gray);
border-radius: 20px;
padding: 6px 16px;
font-size: 13px;
cursor: pointer;
transition: all 0.2s;
font-family: 'Inter', sans-serif;
color: var(--mid-gray);
}
.cat-btn:hover { border-color: var(--gold); color: var(--navy); }
.cat-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
/* ── PROGRESS BAR ── */
.progress-wrap {
background: var(--white);
border-radius: 12px;
padding: 20px 24px;
margin-bottom: 24px;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.progress-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
font-size: 14px;
color: var(--mid-gray);
}
.progress-header strong { color: var(--navy); }
.progress-bar {
height: 8px;
background: var(--light-gray);
border-radius: 4px;
overflow: hidden;
}
.progress-fill {
height: 100%;
border-radius: 4px;
transition: width 0.4s ease;
background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.score-row {
display: flex;
gap: 20px;
margin-top: 12px;
font-size: 14px;
}
.score-correct { color: var(--green); font-weight: 600; }
.score-incorrect { color: var(--red); font-weight: 600; }
/* ── QUESTION CARD ── */
.q-card {
background: var(--white);
border-radius: 12px;
padding: 32px;
margin-bottom: 20px;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.q-number {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--gold-dark);
font-weight: 600;
margin-bottom: 8px;
}
.q-category {
display: inline-block;
background: var(--navy);
color: var(--white);
font-size: 11px;
padding: 3px 10px;
border-radius: 12px;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.q-text {
font-family: 'Playfair Display', serif;
font-size: 22px;
color: var(--navy);
line-height: 1.4;
margin-bottom: 24px;
}
/* ── ANSWER OPTIONS ── */
.answer-btn {
display: block;
width: 100%;
text-align: left;
background: var(--off-white);
border: 2px solid transparent;
border-radius: 10px;
padding: 14px 18px;
margin-bottom: 10px;
font-size: 15px;
font-family: 'Inter', sans-serif;
cursor: pointer;
transition: all 0.2s;
color: var(--dark-gray);
line-height: 1.5;
}
.answer-btn:hover:not(.disabled) { border-color: var(--gold); background: #FFFDF5; }
.answer-btn.correct { background: var(--green-light); border-color: var(--green); color: var(--green); }
.answer-btn.incorrect { background: var(--red-light); border-color: var(--red); color: var(--red); }
.answer-btn.show-correct { background: var(--green-light); border-color: var(--green); color: var(--green); }
.answer-btn.disabled { cursor: default; opacity: 0.7; }
.answer-btn .check { margin-right: 8px; }
/* ── EXPLANATION ── */
.explanation {
background: var(--blue-light);
border-radius: 8px;
padding: 16px 20px;
margin-top: 16px;
font-size: 14px;
line-height: 1.6;
display: none;
}
.explanation.show { display: block; animation: fadeIn 0.3s ease; }
.explanation strong { color: var(--navy); }
/* ── NAVIGATION ── */
.q-nav {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 28px;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
font-family: 'Inter', sans-serif;
cursor: pointer;
transition: all 0.2s;
border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); }
.btn-secondary { background: var(--light-gray); color: var(--mid-gray); }
.btn-secondary:hover { background: #ddd; color: var(--dark-gray); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
/* ── RESULTS ── */
.results-card {
background: var(--white);
border-radius: 16px;
padding: 48px 32px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
display: none;
}
.results-card.show { display: block; animation: fadeIn 0.4s ease; }
.result-icon { font-size: 64px; margin-bottom: 16px; }
.result-title {
font-family: 'Playfair Display', serif;
font-size: 32px;
color: var(--navy);
margin-bottom: 8px;
}
.result-subtitle { font-size: 18px; color: var(--mid-gray); margin-bottom: 32px; }
.result-score {
display: inline-flex;
align-items: baseline;
gap: 4px;
margin-bottom: 24px;
}
.result-score .big {
font-family: 'Playfair Display', serif;
font-size: 72px;
font-weight: 700;
color: var(--navy);
}
.result-score .total {
font-size: 28px;
color: var(--mid-gray);
}
.result-bar {
max-width: 400px;
margin: 0 auto 32px;
}
.result-bar .progress-bar { height: 12px; }
.result-pass-line {
position: relative;
max-width: 400px;
margin: -38px auto 32px;
height: 20px;
}
.pass-marker {
position: absolute;
left: 60%;
top: 0;
transform: translateX(-50%);
font-size: 11px;
color: var(--mid-gray);
border-left: 2px dashed var(--mid-gray);
padding-left: 6px;
padding-top: 2px;
height: 20px;
}
/* ── STUDY MODE ── */
.study-list {
display: none;
}
.study-list.show { display: block; }
.study-item {
background: var(--white);
border-radius: 10px;
padding: 20px 24px;
margin-bottom: 12px;
box-shadow: 0 1px 4px rgba(0,0,0,0.04);
cursor: pointer;
transition: all 0.2s;
}
.study-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.study-item .s-num { font-size: 12px; color: var(--gold-dark); font-weight: 700; letter-spacing: 1px; }
.study-item .s-q { font-size: 16px; color: var(--navy); margin: 6px 0 0; font-weight: 500; }
.study-item .s-a { font-size: 14px; color: var(--green); margin-top: 8px; display: none; line-height: 1.6; }
.study-item.open .s-a { display: block; animation: fadeIn 0.2s ease; }
.study-item .s-toggle { float: right; color: var(--mid-gray); font-size: 20px; transition: transform 0.2s; }
.study-item.open .s-toggle { transform: rotate(180deg); }
/* ── CTA ── */
.cta-section {
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
border-radius: 16px;
padding: 40px 32px;
text-align: center;
margin-top: 48px;
}
.cta-section h2 {
font-family: 'Playfair Display', serif;
color: var(--white);
font-size: 26px;
margin-bottom: 12px;
}
.cta-section p {
color: var(--gold-light);
font-size: 15px;
margin-bottom: 24px;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.cta-section .btn { font-size: 16px; padding: 14px 36px; }
/* ── FOOTER ── */
.site-footer {
background: var(--navy);
padding: 32px 24px;
text-align: center;
}
.footer-text {
color: rgba(255,255,255,0.5);
font-size: 13px;
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}
.footer-text a { color: var(--gold-light); text-decoration: none; }
/* ── RESPONSIVE ── */
@media (max-width: 600px) {
.mode-selector { grid-template-columns: 1fr; }
.hero-stats { gap: 24px; }
.q-card { padding: 24px 18px; }
.q-text { font-size: 18px; }
.header-nav { display: none; }
}
.hidden { display: none !important; }
U.S. Citizenship Civics Test Practice
Free interactive practice for the 2025 USCIS Naturalization Civics Test. All 128 official questions with instant feedback.
128Questions
20Asked on Test
12Needed to Pass
📝
Practice Test
Simulate the real exam — 20 random questions. Need 12 correct to pass.
📖
Study All 128
Review every question and answer. Click to reveal answers. Filter by category.
✓ Correct: 0
✗ Incorrect: 0
60% to pass ▸
Ready to Begin Your Citizenship Journey?
Attorney Arunima Datta guides clients through every step of the naturalization process — from N-400 filing through the interview and oath ceremony.
Schedule a Consultation