ScholarX National Olympiad 2026 | Knowledge. Excellence. India.

:root {
–royal: #1A3A6C;
–royal-dark: #0F2347;
–royal-mid: #1E4D8C;
–gold: #D4A017;
–gold-light: #F0C040;
–gold-pale: #FFF8E7;
–white: #FFFFFF;
–off-white: #F7F9FC;
–text: #1C1C2E;
–text-light: #5A6072;
–border: #E2E8F0;
–shadow: 0 4px 24px rgba(26,58,108,0.10);
–shadow-gold: 0 4px 24px rgba(212,160,23,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
font-family: ‘DM Sans’, sans-serif;
color: var(–text);
background: var(–white);
overflow-x: hidden;
}

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── MARQUEE ── */
.marquee-bar {
background: var(–gold);
color: var(–royal-dark);
font-size: 0.82rem;
font-weight: 600;
letter-spacing: 0.04em;
padding: 7px 0;
overflow: hidden;
white-space: nowrap;
}
.marquee-inner {
display: inline-block;
animation: marquee 28s linear infinite;
}
@keyframes marquee {
from { transform: translateX(100vw); }
to { transform: translateX(-100%); }
}

/* ── NAV ── */
nav {
background: var(–royal-dark);
position: sticky; top: 0; z-index: 100;
box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.nav-inner {
max-width: 1200px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
padding: 0 24px;
height: 64px;
}
.nav-logo {
display: flex; align-items: center; gap: 11px;
cursor: pointer; text-decoration: none;
}
.logo-icon {
width: 42px; height: 42px;
background: var(–gold);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
font-size: 1.35rem;
box-shadow: 0 2px 8px rgba(212,160,23,0.35);
}
.logo-text {
display: flex; flex-direction: column; line-height: 1.1;
}
.logo-text span:first-child {
font-family: ‘Playfair Display’, serif;
font-weight: 900; font-size: 1.18rem;
color: var(–gold-light); letter-spacing: 0.01em;
}
.logo-text span:last-child {
font-size: 0.63rem; font-weight: 500;
color: rgba(255,255,255,0.55); letter-spacing: 0.1em;
text-transform: uppercase;
}
.nav-links {
display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
color: rgba(255,255,255,0.78); text-decoration: none;
font-size: 0.84rem; font-weight: 500;
padding: 6px 12px; border-radius: 6px;
transition: all 0.2s;
cursor: pointer;
}
.nav-links a:hover { color: var(–gold-light); background: rgba(255,255,255,0.07); }
.nav-links .nav-cta {
background: var(–gold); color: var(–royal-dark) !important;
font-weight: 700; margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(–gold-light); }

/* ── HERO ── */
.hero {
background: linear-gradient(135deg, var(–royal-dark) 0%, var(–royal-mid) 60%, #163872 100%);
position: relative; overflow: hidden;
padding: 80px 24px 90px;
text-align: center;
}
.hero::before {
content: ”;
position: absolute; inset: 0;
background: url(“data:image/svg+xml,%3Csvg width=’60’ height=’60’ viewBox=’0 0 60 60′ xmlns=’http://www.w3.org/2000/svg’%3E%3Cg fill=’none’ fill-rule=’evenodd’%3E%3Cg fill=’%23ffffff’ fill-opacity=’0.03’%3E%3Cpath d=’M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z’/%3E%3C/g%3E%3C/g%3E%3C/svg%3E”);
}
.hero-badge {
display: inline-flex; align-items: center; gap: 7px;
background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4);
color: var(–gold-light); font-size: 0.78rem; font-weight: 600;
letter-spacing: 0.08em; text-transform: uppercase;
padding: 5px 14px; border-radius: 20px;
margin-bottom: 22px;
}
.hero h1 {
font-family: ‘Playfair Display’, serif;
font-size: clamp(2.2rem, 5vw, 3.6rem);
font-weight: 900; line-height: 1.12;
color: var(–white); margin-bottom: 10px;
}
.hero h1 span { color: var(–gold-light); }
.hero-sub {
font-size: 1.05rem; color: rgba(255,255,255,0.72);
max-width: 540px; margin: 0 auto 14px;
line-height: 1.65;
}
.hero-class {
font-size: 0.9rem; color: var(–gold-light);
font-weight: 600; letter-spacing: 0.04em;
margin-bottom: 36px;
}
.hero-btns {
display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
background: var(–gold); color: var(–royal-dark);
font-weight: 700; font-size: 0.92rem;
padding: 13px 28px; border-radius: 8px; border: none;
cursor: pointer; transition: all 0.2s;
box-shadow: 0 4px 18px rgba(212,160,23,0.35);
text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(–gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,160,23,0.45); }
.btn-outline {
background: transparent; color: var(–white);
font-weight: 600; font-size: 0.92rem;
padding: 13px 28px; border-radius: 8px;
border: 1.5px solid rgba(255,255,255,0.4);
cursor: pointer; transition: all 0.2s; text-decoration: none;
display: inline-block;
}
.btn-outline:hover { border-color: var(–gold-light); color: var(–gold-light); }
.hero-stats {
display: flex; justify-content: center; gap: 48px;
margin-top: 52px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
font-family: ‘Playfair Display’, serif;
font-size: 1.9rem; font-weight: 700; color: var(–gold-light);
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 2px; }

/* ── SECTION COMMONS ── */
section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
text-transform: uppercase; color: var(–gold);
margin-bottom: 10px;
}
.section-title {
font-family: ‘Playfair Display’, serif;
font-size: clamp(1.7rem, 3vw, 2.5rem);
font-weight: 700; color: var(–royal-dark);
line-height: 1.2; margin-bottom: 14px;
}
.section-desc {
font-size: 1rem; color: var(–text-light);
max-width: 560px; line-height: 1.7;
}
.section-header { margin-bottom: 48px; }

/* ── ABOUT STRIP ── */
.about-strip {
background: var(–off-white);
border-top: 3px solid var(–gold);
}
.about-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 56px; align-items: center;
}
@media(max-width:720px){ .about-grid { grid-template-columns: 1fr; } }
.about-img {
border-radius: 16px; overflow: hidden;
box-shadow: var(–shadow);
aspect-ratio: 4/3;
background: linear-gradient(135deg, var(–royal) 0%, var(–royal-mid) 100%);
display: flex; align-items: center; justify-content: center;
}
.about-img-inner { text-align: center; color: rgba(255,255,255,0.7); }
.about-img-inner .big-emoji { font-size: 5rem; }
.about-img-inner p { font-size: 0.85rem; margin-top: 10px; font-style: italic; }
.about-points { list-style: none; margin-top: 24px; }
.about-points li {
display: flex; align-items: flex-start; gap: 12px;
margin-bottom: 16px; font-size: 0.95rem; color: var(–text-light); line-height: 1.6;
}
.about-points li::before {
content: ‘✦’;
color: var(–gold); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0;
}

/* ── SUBJECTS ── */
.subjects-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 22px;
}
.subject-card {
background: var(–white);
border: 1.5px solid var(–border);
border-radius: 14px; padding: 28px 24px;
transition: all 0.25s;
position: relative; overflow: hidden;
}
.subject-card::after {
content: ”; position: absolute;
bottom: 0; left: 0; right: 0; height: 3px;
background: var(–gold);
transform: scaleX(0); transform-origin: left;
transition: transform 0.3s;
}
.subject-card:hover { box-shadow: var(–shadow-gold); border-color: var(–gold); transform: translateY(-4px); }
.subject-card:hover::after { transform: scaleX(1); }
.subject-icon {
width: 52px; height: 52px; border-radius: 12px;
background: var(–gold-pale); display: flex; align-items: center;
justify-content: center; font-size: 1.6rem; margin-bottom: 16px;
}
.subject-card h3 {
font-family: ‘Playfair Display’, serif;
font-size: 1.1rem; font-weight: 700; color: var(–royal-dark);
margin-bottom: 8px;
}
.subject-card p { font-size: 0.86rem; color: var(–text-light); line-height: 1.65; }
.subject-card .badge {
display: inline-block; margin-top: 14px;
font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
background: var(–gold-pale); color: var(–gold);
border: 1px solid rgba(212,160,23,0.3);
}
.subject-card.free-card { border-color: rgba(212,160,23,0.4); background: var(–gold-pale); }
.subject-card.free-card .subject-icon { background: rgba(212,160,23,0.2); }
.subject-card.free-card .badge { background: var(–gold); color: var(–royal-dark); }

/* ── PRIZES ── */
.prizes-section { background: var(–royal-dark); }
.prizes-section .section-title { color: var(–white); }
.prizes-section .section-tag { color: var(–gold-light); }
.prizes-section .section-desc { color: rgba(255,255,255,0.6); }
.prizes-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 22px; margin-top: 16px;
}
.prize-card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 16px; padding: 32px 28px;
transition: all 0.25s;
}
.prize-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(212,160,23,0.4); }
.prize-level {
font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
text-transform: uppercase; color: var(–gold);
margin-bottom: 8px;
}
.prize-card h3 {
font-family: ‘Playfair Display’, serif;
font-size: 1.35rem; font-weight: 700; color: var(–white);
margin-bottom: 20px; padding-bottom: 16px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.prize-list { list-style: none; }
.prize-list li {
display: flex; align-items: flex-start; gap: 10px;
font-size: 0.88rem; color: rgba(255,255,255,0.72);
margin-bottom: 12px; line-height: 1.55;
}
.prize-list li span.icon { font-size: 1rem; flex-shrink: 0; }
.prize-card.featured {
border-color: var(–gold); background: rgba(212,160,23,0.07);
}
.prize-card.featured h3 { color: var(–gold-light); }

/* ── HOW IT WORKS ── */
.steps-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 24px; position: relative;
}
.step-card {
text-align: center; padding: 28px 20px;
background: var(–white); border: 1.5px solid var(–border);
border-radius: 14px;
transition: box-shadow 0.2s;
}
.step-card:hover { box-shadow: var(–shadow); }
.step-num {
width: 44px; height: 44px; border-radius: 50%;
background: var(–royal); color: var(–white);
font-weight: 700; font-size: 1.05rem;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 16px;
}
.step-card h4 { font-weight: 700; color: var(–royal-dark); margin-bottom: 8px; font-size: 0.97rem; }
.step-card p { font-size: 0.84rem; color: var(–text-light); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: var(–off-white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
background: var(–white); border: 1.5px solid var(–border);
border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-q {
padding: 18px 22px; font-weight: 600; font-size: 0.95rem;
color: var(–royal-dark); cursor: pointer;
display: flex; justify-content: space-between; align-items: center;
gap: 12px;
}
.faq-q:hover { background: var(–gold-pale); }
.faq-q .arrow { color: var(–gold); font-size: 1rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-a {
padding: 0 22px; max-height: 0; overflow: hidden;
transition: max-height 0.35s ease, padding 0.25s;
font-size: 0.9rem; color: var(–text-light); line-height: 1.7;
}
.faq-item.open .faq-q { background: var(–gold-pale); color: var(–royal-dark); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* ── COORDINATOR SECTION ── */
.coordinator-section {
background: linear-gradient(135deg, var(–royal-dark), var(–royal-mid));
color: var(–white); text-align: center;
}
.coordinator-section .section-title { color: var(–white); }
.coordinator-section .section-desc { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 32px; }
.coord-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
gap: 18px; margin: 36px 0;
}
.coord-card {
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.12);
border-radius: 12px; padding: 24px 20px; text-align: left;
}
.coord-card .icon { font-size: 1.6rem; margin-bottom: 12px; }
.coord-card h4 { font-weight: 700; color: var(–gold-light); margin-bottom: 6px; font-size: 0.95rem; }
.coord-card p { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── REGISTRATION PAGES ── */
.reg-section { background: var(–off-white); min-height: 80vh; }
.reg-card {
max-width: 640px; margin: 0 auto;
background: var(–white); border-radius: 18px;
box-shadow: var(–shadow); padding: 40px 36px;
}
.reg-card h2 {
font-family: ‘Playfair Display’, serif;
font-size: 1.8rem; font-weight: 700; color: var(–royal-dark);
margin-bottom: 6px;
}
.reg-card .reg-sub { font-size: 0.9rem; color: var(–text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:560px){ .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
display: block; font-size: 0.82rem; font-weight: 600;
color: var(–royal-dark); margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
width: 100%; padding: 10px 14px;
border: 1.5px solid var(–border); border-radius: 8px;
font-family: ‘DM Sans’, sans-serif; font-size: 0.92rem; color: var(–text);
transition: border-color 0.2s; background: var(–white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
outline: none; border-color: var(–royal);
box-shadow: 0 0 0 3px rgba(26,58,108,0.08);
}
.form-note {
background: var(–gold-pale); border-left: 3px solid var(–gold);
padding: 10px 14px; border-radius: 0 8px 8px 0;
font-size: 0.84rem; color: var(–royal-dark); margin-bottom: 20px;
}
.section-divider {
font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
text-transform: uppercase; color: var(–text-light);
padding: 6px 0; border-bottom: 1px solid var(–border);
margin: 22px 0 18px;
}
.btn-submit {
width: 100%; background: var(–royal); color: var(–white);
font-weight: 700; font-size: 1rem; padding: 14px;
border-radius: 10px; border: none; cursor: pointer;
transition: all 0.2s; margin-top: 8px;
font-family: ‘DM Sans’, sans-serif;
}
.btn-submit:hover { background: var(–royal-mid); transform: translateY(-1px); box-shadow: var(–shadow); }

/* ── CONTACT ── */
.contact-grid {
display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px;
align-items: start;
}
@media(max-width:720px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
background: var(–royal-dark); border-radius: 16px;
padding: 36px 28px; color: var(–white);
}
.contact-info-card h3 {
font-family: ‘Playfair Display’, serif; font-size: 1.4rem;
color: var(–gold-light); margin-bottom: 24px;
}
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail h4 { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(–gold); margin-bottom: 3px; }
.contact-detail p { font-size: 0.92rem; color: rgba(255,255,255,0.8); }

/* ── COORDINATOR PAGE ── */
.coord-page-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
@media(max-width:720px){ .coord-page-grid { grid-template-columns: 1fr; } }
.req-list { list-style: none; }
.req-list li {
display: flex; gap: 10px; font-size: 0.9rem; color: var(–text-light);
margin-bottom: 12px; line-height: 1.6;
}
.req-list li::before { content: ‘▸’; color: var(–gold); font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.responsibilities-list { counter-reset: resp; list-style: none; }
.responsibilities-list li {
counter-increment: resp;
display: flex; gap: 14px; font-size: 0.9rem;
color: var(–text-light); margin-bottom: 14px; line-height: 1.6;
align-items: flex-start;
}
.responsibilities-list li::before {
content: counter(resp);
background: var(–royal); color: var(–white);
font-weight: 700; font-size: 0.78rem;
width: 24px; height: 24px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
background: var(–royal-dark); color: rgba(255,255,255,0.6);
padding: 52px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
gap: 36px; margin-bottom: 40px;
}
@media(max-width:800px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p {
font-size: 0.88rem; line-height: 1.7; margin-top: 14px;
max-width: 280px;
}
.footer-col h4 {
font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
text-transform: uppercase; color: var(–gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
color: rgba(255,255,255,0.6); text-decoration: none;
font-size: 0.88rem; cursor: pointer; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(–gold-light); }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 22px; display: flex;
justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: 12px;
font-size: 0.82rem;
}
.footer-bottom span { color: var(–gold-light); }
.made-in {
display: flex; align-items: center; gap: 6px; font-size: 0.8rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
background: linear-gradient(135deg, var(–royal-dark) 0%, var(–royal-mid) 100%);
padding: 56px 24px;
text-align: center;
}
.page-hero h1 {
font-family: ‘Playfair Display’, serif;
font-size: clamp(1.8rem, 4vw, 2.8rem);
font-weight: 700; color: var(–white);
margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ── SUCCESS MODAL ── */
.modal-overlay {
display: none; position: fixed; inset: 0;
background: rgba(0,0,0,0.55); z-index: 200;
align-items: center; justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-box {
background: var(–white); border-radius: 18px;
padding: 44px 36px; text-align: center;
max-width: 420px; width: 90%;
box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal-box h3 {
font-family: ‘Playfair Display’, serif;
font-size: 1.5rem; color: var(–royal-dark); margin-bottom: 10px;
}
.modal-box p { font-size: 0.9rem; color: var(–text-light); line-height: 1.7; margin-bottom: 22px; }
.btn-modal { background: var(–royal); color: var(–white); padding: 11px 28px; border-radius: 8px; border: none; font-weight: 700; cursor: pointer; font-family: ‘DM Sans’, sans-serif; }

/* ── SYLLABUS CALLOUT ── */
.syllabus-bar {
background: var(–gold-pale);
border-top: 2px solid var(–gold);
border-bottom: 2px solid var(–gold);
padding: 22px 24px; text-align: center;
}
.syllabus-bar p { font-size: 0.95rem; color: var(–royal-dark); font-weight: 500; }
.syllabus-bar strong { color: var(–gold); }

/* ── RESPONSIVE NAV ── */
@media(max-width:800px){
.nav-links { display: none; }
.mobile-menu-btn { display: flex; background: none; border: none; color: var(–white); font-size: 1.4rem; cursor: pointer; }
}
@media(min-width:801px){ .mobile-menu-btn { display: none; } }
.mobile-nav {
display: none; flex-direction: column;
background: var(–royal-dark); padding: 12px 20px 20px;
border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
color: rgba(255,255,255,0.8); text-decoration: none;
padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
font-size: 0.95rem; font-weight: 500; cursor: pointer;
}
.mobile-nav a:last-child { border-bottom: none; }

    ☆ SNO 2026 Registrations are OPEN — Enroll your school TODAY!  •  🏆 Top prizes for Mental Maths, Language, GK & AI  •  📚 Aligned to NEP 2020  •  🎓 Classes I to X  •  ☆ SNO 2026 Registrations are OPEN — Enroll your school TODAY!  •  🏆 Top prizes for Mental Maths, Language, GK & AI  •  📚 Aligned to NEP 2020  •  🎓 Classes I to X    

⭐ SNO 2026 Registrations Now Open

India’s Premier
National Olympiad
for School Students

Empowering students to excel in Mathematics, Language, General Knowledge, and the future of AI — aligned with NEP 2020.

For Classes I to X  |  All Schools Across India


4
Olympiad Subjects
10
Classes Covered
3
Award Levels
NEP
2020 Aligned

Where Knowledge Meets
Excellence

ScholarX National Olympiad (SNO) is a school-based competitive examination designed to identify, nurture, and reward academic brilliance among students from Class I to Class X. Our Olympiad is carefully aligned with NEP 2020 and the NCERT curriculum — making it seamlessly relevant for every school.

  • Conducted offline, inside school premises — fully managed by us
  • School earns commission per enrolled student
  • Zero paperwork burden — we handle printing, logistics, certificates
  • NEP 2020 aligned subjects including AI & Cyber Aptitude

🏆

Your school banner/
photo goes here

Four Subjects. One Platform.
Unlimited Potential.

Unlike traditional Olympiads, ScholarX covers 21st-century skills — from rapid calculation to AI literacy — preparing students for tomorrow.

🧮

Mental Maths

Speed calculation, logical reasoning, number sense, applied mathematics. Builds strong numerical foundations from Class I onwards.

Core Subject

📖

Language Comprehension

Reading comprehension, vocabulary, grammar, and communication skills — in English, aligned with NCERT syllabus per class.

Core Subject

🌍

GK & Indian Knowledge

Current affairs, history, science, geography, Indian culture, and IKS (Indian Knowledge Systems) as per NEP 2020.

Core Subject

🤖

AI & Cyber Aptitude

Basic to advanced computer literacy, artificial intelligence fundamentals, digital safety, and cyber awareness — India’s future skill.

Flagship Subject

📄 Download the SNO 2026 Official Syllabus — Class-wise, subject-wise breakdowns for all 10 classes.  Download Now →

Three Tiers of Glory

From school-level toppers to national champions — every achiever is recognized and celebrated.

🥈 Tier 2

Regional Level

  • 🏅Regional Gold, Silver & Bronze Medals
  • 📜Excellence Certificates with Regional Ranking
  • 🎁Gift Vouchers & Educational Kits (Books, Hampers, Stationery)
  • 📢Recognition in SNO Newsletter & all Social Media
🥉 Tier 3

School Level

  • 📜School Topper Certificates per subject & class group
  • 🏅Medals for 1st, 2nd & 3rd in each class
  • Participation Certificate for every student
  • 🏫Excellence Certificate for schools with highest participation

Simple. Smooth. Rewarding.

1

School Registers

School coordinator fills a simple form. We contact within 24 hours to confirm and share the kit.

2

Students Enroll

Students register individually or through school. Fee collected by school. Commission paid to school.

3

Exam Conducted

OMR-based exam held inside school on scheduled date. Papers delivered and collected by us.

4

Results & Awards

Results declared online. Certificates, medals, and trophies dispatched to school within 4 weeks.

Become a ScholarX Coordinator

Join us as a regional coordinator — work in your own city, earn attractive commissions, and make a difference in education.

💼

Flexible Work

Part-time, commission-based. Work from your city on your schedule.

💰

Earn Per School

Attractive commission for every school you onboard. No cap on earnings.

🎓

Education Sector

Ideal for teachers, ex-educators, and education professionals with school networks.

📜

Certificate of Excellence

Receive an appreciation certificate for outstanding performance as a coordinator.

Have Doubts? We’ve Got Answers.

Who can participate in SNO?
Students from Class I to Class X across all schools in India can participate. Both CBSE and State board students are eligible.

How is SNO different from other Olympiads?
ScholarX is one of the few Olympiads to include AI & Cyber Aptitude as a standalone subject — a 21st-century skill aligned with NEP 2020. We also offer school-level commissions, making it rewarding for schools to participate.

What is the exam pattern?
The exam consists of Multiple Choice Questions (MCQs) on OMR sheets, based on the student’s class level and NCERT curriculum. Each subject has a separate paper. Difficulty increases progressively by class group.

Is the exam online or offline?
SNO is conducted offline inside schools to ensure fairness and equal participation. Schools organize the exam on the scheduled date provided by ScholarX.

How can our school earn through SNO?
Schools receive a commission per enrolled student. The more students that participate, the higher the school’s earnings. We also provide recognition certificates and trophies for top-performing schools.

About ScholarX National Olympiad

India’s most relevant, future-ready school Olympiad

Built for India’s
Next Generation

ScholarX National Olympiad was founded with a single mission: to create an Olympiad that is genuinely relevant for today’s students — one that tests not just textbook knowledge but also the skills that India’s future demands.

With the National Education Policy 2020 reshaping India’s classrooms, we designed SNO to align perfectly — incorporating AI & Cyber Aptitude, Indian Knowledge Systems, and holistic assessment into a competitive platform that schools across Tier 2 and Tier 3 cities can access with ease.

We believe every student deserves a stage. ScholarX is that stage.

Redefining What
It Means to Win

At SNO, our mission is to provide a rigorous, rewarding, and accessible Olympiad experience for every school student — from urban centers to small towns.

  • Identify and reward academic talent at school, regional, and national levels
  • Build future-ready skills including AI literacy and digital awareness
  • Support schools with a revenue-sharing model that incentivizes participation
  • Align with NEP 2020 to stay relevant for today’s curriculum
  • Create a culture of healthy, celebratory academic competition

Designed Around the New Education Policy

ScholarX is structured around the four pillars of NEP 2020 — holistic development, Indian Knowledge Systems, digital & AI literacy, and competency-based learning.

🧠

Competency-Based

Tests understanding and application, not rote memorization.

🇮🇳

Indian Knowledge Systems

GK subject includes IKS as mandated by NEP 2020.

🤖

AI & Digital Literacy

AI & Cyber subject prepares students for the digital economy.

📚

NCERT Aligned

All questions based on class-appropriate NCERT curriculum.

Frequently Asked Questions

Quick answers about ScholarX National Olympiad 2026

Who can participate in SNO Olympiad?
Students from Class I to Class X across all schools in India can participate. Both CBSE and State Board students are eligible. No prior Olympiad experience is required.

What makes SNO different from other Olympiads?
ScholarX is one of the first Olympiads in India to include AI & Cyber Aptitude as a core subject — a critical 21st-century skill. All subjects are aligned with NEP 2020 and NCERT. We also offer a school commission model, meaning schools benefit financially from participation.

What is the exam pattern?
The exam consists of Multiple Choice Questions (MCQs) on OMR answer sheets, based on the student’s class level and NCERT curriculum. Each subject has a separate paper. Difficulty levels are calibrated by class group (Classes 1–3, 4–6, 7–10).

Is the exam online or offline?
SNO is conducted offline inside school premises. This ensures fairness, equal opportunity, and zero digital infrastructure burden on students. Schools organize the exam on the scheduled date provided by ScholarX.

How does SNO benefit students?
SNO enhances academic knowledge, builds competitive confidence, and exposes students to 21st-century subjects like AI. Winners receive medals, certificates, cash prizes, and national recognition — providing strong college and resume credentials.

How can our school partner with SNO?
Schools register through our School Registration form. Once confirmed, we provide exam papers, OMR sheets, answer keys, guidelines, and all certificates and medals. Schools also earn a commission per student enrolled.

What does the school need to do?
Schools only need to (1) register, (2) collect student enrollment forms and fees, (3) provide a supervised classroom on exam day, and (4) return OMR sheets to us. We handle everything else — printing, logistics, evaluation, and dispatch of results and awards.

When is the exam scheduled?
SNO 2026 exams will be conducted between August and September 2026. Schools choose their preferred exam date during registration. Exact dates are confirmed after registration closes.

How will students receive their results and certificates?
Results are published on our website. Certificates, medals, and prizes are dispatched to the school within 4 weeks of the exam. Schools distribute them to students.

Contact Us

We’re here to help — reach out anytime

Get in Touch

📞

Phone / WhatsApp

+91 [Your Number Here]

📧

Email

info@scholarxolympiad.in

📍

Base Location

Agra, Uttar Pradesh, India

🕐

Response Time

Within 24 hours on working days

For school partnerships, coordinator inquiries, or student support — our team responds promptly.

Send Us a Message

School queries, partnership requests, or general questions — we’d love to hear from you.

Your Name *

Phone Number *

Email Address

I am a…

School Principal / Administrator
Teacher / Coordinator
Parent / Student
Prospective Coordinator
Other

Message *

Become a ScholarX Coordinator

Part-time · Commission-based · Work in your own city

Join SNO —
Make an Impact

We are looking for dynamic, motivated individuals to join us as ScholarX Coordinators across India. If you have a background in education or strong connections in the school sector, this is the opportunity for you.

Key Responsibilities
  1. Conduct school visits and presentations to introduce SNO 2026
  2. Schedule and attend meetings with school principals or management
  3. Onboard schools to conduct the Olympiad in offline mode
  4. Promote SNO among students, parents, and teachers in your area
  5. Coordinate with school authorities during the exam
  6. Resolve school and student queries promptly
  7. Maintain school data and documentation with confidentiality
Requirements
  • Background as teacher, educator, or professional with school network
  • Excellent communication and interpersonal skills
  • Self-motivated; ability to work independently with minimal supervision
  • Good organizational skills and attention to detail
  • Basic computer literacy — MS Office, email, data management

📋 What You Get

  • Attractive commission per school enrolled
  • Flexible hours — work alongside your current profession
  • Certificate of Appreciation for outstanding performance
  • Opportunity to contribute to a national academic initiative
  • Full support — training, materials, and school kits provided

Apply Now

Send your details and we’ll get back to you within 48 hours.

Full Name *
Phone *
City *

Email
Professional Background

Teacher / Educator
School Administrator
Education Sales / Marketing
Other Professional

School Connections (approx. no. of schools you can reach)

1–5 schools
6–15 schools
16–30 schools
30+ schools

School Registration

Register your school for SNO 2026 — Exams: Aug–Sep 2026

School Registration

Fill in your school details. Our team will contact you within 24 hours to confirm and share the exam kit.

📌 Registrations for SNO 2026 are open. Exam dates: August–September 2026. Early registrations get priority scheduling.
School Details
School Name *
School Address *
City *
Pincode *

Board Affiliation *
CBSEUP BoardICSEOther State Board
Approx. Student Strength (Class I–X) *

Principal Details
Principal Name *
Contact Number *
Email Address *

School Coordinator Details
Coordinator Name *
Coordinator Contact *

Exam Preferences

Choose 2 preferred exam dates (Aug–Sep 2026). We’ll confirm the final date based on availability.

Preferred Date 1 *
Preferred Date 2 *

Student Registration

Register for ScholarX National Olympiad 2026

Register Now

Fill the form below. After submission, proceed to pay the exam fee via the payment link.

💡 After submitting this form, please complete payment via the Payment Button / UPI link that appears below to confirm your registration.
Student Details
First Name *
Last Name *

Class *

Class IClass IIClass III
Class IVClass VClass VI
Class VIIClass VIIIClass IX
Class X

Date of Birth *

School Details
School Name *
City *
Board *
CBSEUP BoardICSEOther

Subject Selection

Select subjects you wish to appear for. Each subject is separately assessed.

Mental Maths

Language Comprehension

GK & Indian Knowledge Systems

AI & Cyber Aptitude

Parent / Guardian Details
Parent Name *
WhatsApp Number *

Email (for result communication)

function showPage(id) {
document.querySelectorAll(‘.page’).forEach(p => p.classList.remove(‘active’));
const el = document.getElementById(‘page-‘ + id);
if (el) {
el.classList.add(‘active’);
window.scrollTo({ top: 0, behavior: ‘smooth’ });
}
}

function toggleFaq(el) {
const item = el.parentElement;
const wasOpen = item.classList.contains(‘open’);
document.querySelectorAll(‘.faq-item’).forEach(i => i.classList.remove(‘open’));
if (!wasOpen) item.classList.add(‘open’);
}

function showModal(id) {
document.getElementById(‘modal-‘ + id).classList.add(‘show’);
}

function hideModal(id) {
document.getElementById(‘modal-‘ + id).classList.remove(‘show’);
}

function toggleMobileNav() {
const nav = document.getElementById(‘mobileNav’);
nav.classList.toggle(‘open’);
}

// Close modal on overlay click
document.querySelectorAll(‘.modal-overlay’).forEach(overlay => {
overlay.addEventListener(‘click’, function(e) {
if (e.target === this) this.classList.remove(‘show’);
});
});