Rathinam Scholarship
:root {
--navy: #0f3460;
--blue: #1a4f8a;
--purple: #7c3aed;
--accent: #f97316;
--gold: #f5c842;
--light: #f4f6fb;
--muted: #6b7a99;
--border: #dce4f2;
--white: #ffffff;
--ink: #0d1b2a;
--body: #3a4a6b;
}
.rs-page {
font-family: 'DM Sans', sans-serif;
background: var(--white);
color: var(--ink);
max-width: 900px;
margin: 0 auto;
padding: 52px 36px 72px;
}
/* ── Heading ── */
.rs-page h1 {
font-family: 'DM Serif Display', serif;
font-size: 2.2rem;
font-weight: 400;
color: var(--navy);
margin-bottom: 6px;
}
.rs-page .rs-sub {
font-size: 0.9rem;
color: var(--muted);
margin-bottom: 32px;
padding-bottom: 24px;
border-bottom: 1px solid var(--border);
}
/* ── Intro banner ── */
.rs-banner {
background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
border-radius: 14px;
padding: 28px 32px;
margin-bottom: 32px;
position: relative;
overflow: hidden;
}
.rs-banner::before {
content: '';
position: absolute;
width: 300px; height: 300px;
border-radius: 50%;
background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
top: -80px; right: -60px;
pointer-events: none;
}
.rs-banner .banner-inner { position: relative; z-index: 1; }
.rs-banner h2 {
font-family: 'DM Serif Display', serif;
font-size: 1.5rem;
font-weight: 400;
color: var(--white);
margin-bottom: 8px;
line-height: 1.2;
}
.rs-banner p {
font-size: 0.9rem;
color: rgba(255,255,255,0.65);
line-height: 1.65;
max-width: 560px;
}
.rs-banner .pct-badge {
display: inline-block;
background: linear-gradient(135deg, var(--accent), var(--gold));
color: var(--navy);
font-size: 0.82rem;
font-weight: 800;
padding: 5px 14px;
border-radius: 20px;
margin-bottom: 12px;
letter-spacing: 0.02em;
}
/* ── Section title ── */
.sec-title {
font-family: 'DM Serif Display', serif;
font-size: 1.3rem;
font-weight: 400;
color: var(--navy);
margin-bottom: 16px;
padding-left: 12px;
border-left: 3px solid var(--accent);
}
/* ── Scholarship cards ── */
.schol-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 32px;
}
.schol-card {
border: 1px solid var(--border);
border-radius: 12px;
padding: 20px;
position: relative;
overflow: hidden;
transition: border-color 0.2s, box-shadow 0.2s;
}
.schol-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; height: 3px;
background: linear-gradient(90deg, var(--accent), var(--gold));
}
.schol-card:hover {
border-color: rgba(249,115,22,0.4);
box-shadow: 0 8px 28px rgba(15,52,96,0.1);
}
.schol-card .sc-icon {
font-size: 1.6rem;
margin-bottom: 10px;
display: block;
}
.schol-card h3 {
font-family: 'DM Serif Display', serif;
font-size: 1rem;
font-weight: 400;
color: var(--navy);
margin-bottom: 6px;
line-height: 1.3;
}
.schol-card p {
font-size: 0.84rem;
color: var(--muted);
line-height: 1.65;
}
.schol-card .sc-badge {
display: inline-block;
margin-top: 10px;
background: var(--light);
border: 1px solid var(--border);
color: var(--navy);
font-size: 0.72rem;
font-weight: 700;
padding: 3px 10px;
border-radius: 20px;
}
/* ── How to apply steps ── */
.steps-section { margin-bottom: 32px; }
.steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.step {
display: flex;
flex-direction: column;
gap: 10px;
}
.step-num {
width: 36px; height: 36px;
border-radius: 50%;
background: var(--navy);
color: var(--white);
font-family: 'DM Serif Display', serif;
font-size: 1rem;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.step h4 {
font-size: 0.88rem;
font-weight: 600;
color: var(--navy);
margin-bottom: 3px;
}
.step p {
font-size: 0.82rem;
color: var(--muted);
line-height: 1.6;
}
/* ── Divider ── */
.rs-divider {
height: 1px;
background: var(--border);
margin: 28px 0;
}
/* ── CTA ── */
.rs-cta {
background: linear-gradient(135deg, var(--navy), var(--blue));
border-radius: 12px;
padding: 26px 30px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
flex-wrap: wrap;
}
.rs-cta p {
font-size: 0.95rem;
color: rgba(255,255,255,0.72);
margin: 0;
}
.rs-cta p strong {
display: block;
font-family: 'DM Serif Display', serif;
font-size: 1.1rem;
font-weight: 400;
color: var(--white);
margin-bottom: 3px;
}
.rs-cta a {
background: linear-gradient(135deg, var(--accent), var(--gold));
color: var(--navy);
font-family: 'DM Sans', sans-serif;
font-size: 0.87rem;
font-weight: 700;
padding: 11px 24px;
border-radius: 8px;
text-decoration: none;
white-space: nowrap;
flex-shrink: 0;
box-shadow: 0 3px 14px rgba(249,115,22,0.4);
transition: opacity 0.2s, transform 0.2s;
}
.rs-cta a:hover { opacity: 0.9; transform: translateY(-1px); }
/* ── Responsive ── */
@media (max-width: 620px) {
.rs-page { padding: 32px 18px 52px; }
.rs-page h1 { font-size: 1.7rem; }
.rs-banner { padding: 22px 20px; }
.rs-banner h2 { font-size: 1.25rem; }
.schol-grid { grid-template-columns: 1fr; }
.steps { grid-template-columns: 1fr; }
.rs-cta { flex-direction: column; align-items: flex-start; }
.rs-cta a { width: 100%; text-align: center; }
}
@media (max-width: 400px) {
.rs-page h1 { font-size: 1.45rem; }
}
Rathinam Scholarship
Scholarship Programs – Rathinam Institute of Technology
Up to 100% Scholarship Available
Invest in Your Future.
We'll Support You.
Rathinam offers multiple scholarship pathways — BMST for MBA & BCA students, and N-SAT for B.E students.
Scholarship Programs
🧠
Bright Minds Scholarship Test (BMST)
The primary scholarship route for MBA and BCA students. Students who clear the BMST are eligible for significant fee concessions based on their performance.
MBA & BCA
🎯
N-SAT (New-Age Scholarship & Admission Test)
B.E students can earn scholarships up to 100% on tuition fees through the N-SAT based on their percentile score.
B.E Programs
📝
SAT Score-Based Scholarship
Students who appear for the Sunstone Admission Test (SAT) and perform well can receive up to 80% scholarship on their tuition fees.
Up to 80% Off
How to Apply
Students can apply for the Sunstone Scholarship Test online and need to submit their 10th, 12th mark sheets, and other required documents for evaluation.
1
Apply Online
Register for the Sunstone Scholarship Test (BMST/SAT) through the official portal.
2
Submit Documents
Upload your 10th and 12th mark sheets along with other required documents for evaluation.
3
Get Scholarship
Scholarship amount is determined based on your test performance and academic record.
Ready to Apply?Take the scholarship test and secure financial aid for your education at Rathinam.
Apply Now →