:root {
--navy: #0f2a5e;
--navy-light: #1a3669;
--navy-dark: #081d45;
--gold: #e8a020;
--gold-light: #f5b942;
--gold-pale: #fef3e0;
--mint: #e8f4f2;
--mint-dark: #c2e0da;
--white: #ffffff;
--gray-50: #f8f9fb;
--gray-100: #eef0f5;
--gray-200: #dde2ec;
--gray-600: #5a6478;
--gray-800: #2d3344;
--success: #1db87a;
--shadow-sm: 0 2px 8px rgba(15,42,94,0.08);
--shadow-md: 0 6px 24px rgba(15,42,94,0.12);
--shadow-lg: 0 16px 48px rgba(15,42,94,0.16);
--radius: 12px;
--radius-lg: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family:'Montserrat', sans-serif;
color: var(--gray-800);
background: var(--white);
line-height: 1.6;
overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family:'Montserrat', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

/* ---- NAVBAR ---- */
.nav {
position: sticky; top: 0; z-index: 100;
background: var(--navy-dark);
padding: 14px 40px;
display: flex; align-items: center; justify-content: space-between;
box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-logo {
font-family:'Montserrat', sans-serif;
font-size: 1.35rem; color: var(--white); font-weight: 700;
letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
color: rgba(255,255,255,0.75); text-decoration: none;
font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
background: var(--gold); color: var(--navy-dark); border: none;
padding: 9px 22px; border-radius: 6px;
font-size: 0.85rem; font-weight: 700; cursor: pointer;
text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e4080 100%);
min-height: 60vh;
display: grid; grid-template-columns: 1fr 1.1fr;
align-items: center;
padding: 30px 60px 0 60px;
gap: 40px; overflow: hidden; position: relative;
}
.hero::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(232,160,32,0.07) 0%, transparent 70%);
pointer-events: none;
}
.hero-badge {
display: inline-block;
background: rgba(232,160,32,0.18); border: 1px solid rgba(232,160,32,0.4);
color: var(--gold-light); padding: 6px 16px; border-radius: 100px;
font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
margin-bottom: 20px;
}
.hero-title { color: var(--white); margin-bottom: 16px; }
.hero-title span { color: var(--gold); }
.hero-subtitle {
color: var(--gold); font-size: 1rem; font-weight: 600;
letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-desc {
color: rgba(255,255,255,0.72); font-size: 0.95rem;
max-width: 500px; line-height: 1.75; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
background: var(--gold); color: var(--navy-dark);
padding: 13px 28px; border-radius: 8px;
font-weight: 700; font-size: 0.9rem; text-decoration: none;
transition: all 0.2s; border: none; cursor: pointer;
box-shadow: 0 4px 16px rgba(232,160,32,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.45); }
.btn-outline {
background: transparent; color: var(--white);
padding: 13px 28px; border-radius: 8px;
font-weight: 600; font-size: 0.9rem; text-decoration: none;
border: 1.5px solid rgba(255,255,255,0.35);
transition: all 0.2s; cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.hero-image-wrap {
position: relative; align-self: flex-end; margin-bottom: 0;
animation: heroSlide 0.8s ease-out;
}
@keyframes heroSlide { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-img {
width: 100%; max-width: 950px; border-radius: 16px 16px 0 0;
display: block;
box-shadow: -8px -8px 40px rgba(0,0,0,0.4), 8px 8px 40px rgba(0,0,0,0.2);
}
.hero-img-label {
position: absolute; bottom: 0; left: 0; right: 0;
background: linear-gradient(0deg, rgba(8,29,69,0.92) 0%, transparent 100%);
padding: 24px 20px 12px;
border-radius: 0 0 0 0;
color: rgba(255,255,255,0.7); font-size: 0.75rem; text-align: center;
}

/* ---- STATS BAR ---- */
.stats-bar {
background: var(--gold);
padding: 22px 60px;
display: flex; justify-content: center; gap: 0;
}
.stat-item {
text-align: center; padding: 0 40px;
border-right: 1.5px solid rgba(15,42,94,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
font-family:'Montserrat', sans-serif;
font-size: 2.2rem; font-weight: 700;
color: var(--navy-dark); line-height: 1;
}
.stat-label {
font-size: 0.78rem; font-weight: 600;
color: rgba(15,42,94,0.65); text-transform: uppercase;
letter-spacing: 0.06em; margin-top: 4px;
}

/* ---- SECTION WRAPPER ---- */
.section { padding: 80px 60px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
display: inline-block; color: var(--gold);
font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
text-transform: uppercase; margin-bottom: 10px;
padding-bottom: 6px; border-bottom: 2px solid var(--gold);
}
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-desc { color: var(--gray-600); max-width: 680px; font-size: 0.95rem; line-height: 1.75; }

/* ---- ABOUT ---- */
.about { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
.about-text p { color: var(--gray-600); margin-bottom: 18px; line-height: 1.5; font-size: 0.95rem; }
.about-visual {
background: var(--navy);
border-radius: var(--radius-lg); padding: 36px;
display: flex; flex-direction: column; gap: 20px;
box-shadow: var(--shadow-lg);
}
.about-visual-title {
font-family:'Montserrat', sans-serif;
color: var(--white); font-size: 1.1rem; font-weight: 600;
padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.about-feat {
display: flex; gap: 14px; align-items: flex-start;
}
.about-feat-icon {
width: 38px; height: 38px; border-radius: 8px;
background: rgba(232,160,32,0.2); display: flex; align-items: center; justify-content: center;
flex-shrink: 0; font-size: 1.1rem;
color:#fff;
font-weight:700;
}
.about-feat-text h4 { color: var(--white); font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; }
.about-feat-text p { color: rgba(255,255,255,0.6); font-size: 0.78rem; line-height: 1.5; }

/* ---- ACHIEVERS ---- */
.achievers { background: var(--white); }
.achievers-title { 
text-align: center; 
margin-bottom: 40px; 
font-family: 'Plus Jakarta Sans', sans-serif; 
font-weight: 700; 
color: var(--navy-dark); 
font-size: clamp(1.8rem, 4vw, 2.4rem); 
}
.achievers-carousel-wrap {
overflow: hidden;
margin-bottom: 32px;
}
.achievers-grid { 
display: flex; 
gap: 24px; 
transition: transform 0.5s ease;
}
.achiever-card {
background: var(--white); 
border: 1px solid var(--gray-100);
border-radius: var(--radius); 
padding: 16px;
box-shadow: 0 4px 16px rgba(0,0,0,0.03);
display: flex; 
flex-direction: column;
flex: 0 0 calc(25% - 18px);
text-align:center;
}
.achiever-img {
width: 100%; 
border-radius: 8px; 
margin-bottom: 16px;
}
.achiever-name {
color: var(--navy-dark); 
font-size: 1.1rem; 
font-weight: 700; 
margin-bottom: 4px;
}
.achiever-score {
color: var(--gray-600); 
font-size: 0.8rem; 
margin-bottom: 16px;
}
.achiever-badge {
background: #ffcc00; 
color: var(--navy-dark);
padding: 6px 12px; 
border-radius: 100px;
font-size: 0.75rem; 
font-weight: 700; 
margin-bottom: 16px;
}
.achiever-course {
color: var(--navy-dark); 
font-size: 0.85rem; 
font-weight: 700; 
margin-top: auto;
}
.achiever-dots { 
display: flex; 
justify-content: center; 
gap: 8px; 
}
.achiever-dot { 
width: 8px; 
height: 8px; 
border-radius: 50%; 
background: var(--gray-200); 
cursor: pointer; 
}
.achiever-dot.active { 
background: var(--navy); 
}

/* ---- SCHOLARSHIP TABS ---- */
.tabs-section { background: var(--white); }
.main-tabs {
display: flex; gap: 0; border-bottom: 2px solid var(--gray-200);
margin-bottom: 40px;
}
.main-tab {
padding: 14px 28px; cursor: pointer;
font-size: 0.88rem; font-weight: 600;
color: var(--gray-600); background: none; border: none;
border-bottom: 3px solid transparent; margin-bottom: -2px;
transition: all 0.2s; white-space: nowrap;
letter-spacing: 0.02em;
}
.main-tab:hover { color: var(--navy); }
.main-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---- CONDITIONS CARD ---- */
.conditions-card {
background: var(--navy);
border-radius: var(--radius-lg); padding: 32px 36px;
margin-bottom: 0px; position: relative;
}
.conditions-card::before {
content: '';
position: absolute; top: -30px; right: -30px;
width: 120px; height: 120px; border-radius: 50%;
background: rgba(232,160,32,0.12);
}
.conditions-card h4 {
color: var(--gold); font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
text-transform: uppercase; margin-bottom: 16px;
}
.conditions-grid { display: grid; grid-template-columns: repeat(auto-fill); gap: 12px; }
.condition-item {
display: flex; gap: 10px; align-items: flex-start;
}
.condition-dot {
width: 6px; height: 6px; border-radius: 50%;
background: var(--gold); margin-top: 7px; flex-shrink: 0;
}
.condition-item p { color: rgba(255,255,255,0.72); font-size: 0.83rem; line-height: 1.55; }

/* ---- SUB TABS ---- */
.sub-tabs {
display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.sub-tab {
padding: 8px 18px; border-radius: 100px; cursor: pointer;
font-size: 0.8rem; font-weight: 600; border: 1.5px solid var(--gray-200);
color: var(--gray-600); background: none; transition: all 0.2s;
}
.sub-tab:hover { border-color: var(--navy); color: var(--navy); }
.sub-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sub-content { display: none; }
.sub-content.active { display: block; animation: fadeIn 0.25s ease; }

/* ---- SCHOLARSHIP TABLE ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.sch-table {
width: 100%; border-collapse: collapse;
font-size: 0.83rem;
}
.sch-table thead tr { background: var(--navy); }
.sch-table thead th {
color: var(--white); padding: 13px 16px; text-align: left;
font-weight: 600; letter-spacing: 0.03em; white-space: nowrap;
font-size: 0.78rem; text-transform: uppercase;
}
.sch-table thead th:first-child { border-radius: 12px 0 0 0; }
.sch-table thead th:last-child { border-radius: 0 12px 0 0; }
.sch-table tbody tr:nth-child(even) { background: var(--gray-50); }
.sch-table tbody tr:hover { background: rgba(232,160,32,0.06); }
.sch-table tbody td {
padding: 12px 16px; border-bottom: 1px solid var(--gray-100);
color: var(--gray-800); vertical-align: top; line-height: 1.5;
}
.sch-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.badge-100 { background: #1db87a1a; color: #0a7a4c; border: 1px solid #1db87a40; padding: 3px 10px; border-radius: 100px; font-weight: 700; font-size: 0.75rem; display: inline-block; white-space: nowrap; }
.badge-50 { background: #768ebb; color: white; border: 1px solid #1a366940; padding: 3px 10px; border-radius: 100px; font-weight: 700; font-size: 0.75rem; display: inline-block; white-space: nowrap; }
.badge-25 { background: #e8a0201a; color: #7a4a00; border: 1px solid #e8a02040; padding: 3px 10px; border-radius: 100px; font-weight: 700; font-size: 0.75rem; display: inline-block; white-space: nowrap; }
.badge-20 { background: #5a647840; color: var(--gray-800); border: 1px solid #dde2ec; padding: 3px 10px; border-radius: 100px; font-weight: 600; font-size: 0.75rem; display: inline-block; white-space: nowrap; }
.table-note {
background: var(--gray-50); border-left: 3px solid var(--gold);
padding: 14px 18px; border-radius: 0 8px 8px 0;
margin-top: 16px; font-size: 0.8rem; color: var(--gray-600); line-height: 1.6;
}
.table-note strong { color: var(--navy); }

/* ---- SPECIAL SCHOLARSHIP ---- */
.martyr-card {
background: linear-gradient(135deg, var(--navy-dark), var(--navy));
border-radius: var(--radius-lg); padding: 40px;
color: var(--white); margin-bottom: 32px;
position: relative; overflow: hidden;
}
.martyr-card::after {
content: '⭐';
position: absolute; right: 30px; top: 30px;
font-size: 4rem; opacity: 0.08;
}
.martyr-card h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 10px; }
.martyr-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.75; margin-bottom: 24px; }
.criteria-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.criteria-list li {
display: flex; gap: 10px; align-items: flex-start;
color: rgba(255,255,255,0.8); font-size: 0.85rem; line-height: 1.55;
}
.criteria-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0px; }
.orgs-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 10px; margin-top: 24px;
}
.org-tag {
background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
border-radius: 8px; padding: 10px 14px;
font-size: 0.8rem; color: rgba(255,255,255,0.8); text-align: center;
}

/* ---- CONTINUATION POLICY ---- */
.continuation { background: var(--gray-50); }
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.policy-card {
background: var(--white); border-radius: var(--radius);
padding: 28px; border: 1px solid var(--gray-200);
box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s;
}
.policy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.policy-pct {
font-family:'Montserrat', sans-serif;
font-size: 2rem; font-weight: 700; margin-bottom: 8px;
}
.pct-100 { color: var(--success); }
.pct-50 { color: var(--navy); }
.pct-25 { color: var(--gold); }
.policy-card h4 { color: var(--gray-800); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.policy-card p { color: var(--gray-600); font-size: 0.82rem; line-height: 1.6; }
.exclusions {
background: var(--gold-pale); border: 1px solid rgba(232,160,32,0.3);
border-radius: var(--radius); padding: 24px 28px; margin-top: 32px;
}
.exclusions h4 { color: var(--navy); font-size: 0.88rem; font-weight: 700; margin-bottom: 12px; }
.exclusions ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px; }
.exclusions ul li {
display: flex; gap: 8px; align-items: center;
color: var(--gray-800); font-size: 0.84rem;
}
.exclusions ul li::before { content: '–'; color: var(--gold); font-weight: 700; }

<!-- ... existing code ... -->
/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--navy); padding: 80px 60px!important; }
.testimonials .section-label { color: var(--gold-light); }
.testimonials .section-title { color: var(--white); }
.testimonials-carousel-wrap { 
overflow: hidden; 
margin-top: 40px; 
}
.testimonials-track {
display: flex;
gap: 24px;
transition: transform 0.5s ease;
}
.testi-card {
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.12);
border-radius: var(--radius-lg); padding: 32px;
display: flex;
flex-direction: column;
/* Force cards to take up exactly half the container width minus half the gap */
flex: 0 0 calc(50% - 12px); 
}
.quote-mark { font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 0px; }
.testi-text { margin-bottom: 20px; }

<!-- ... existing code ... -->
/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
.achiever-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 900px) {
.nav { padding: 14px 24px; }
.nav-links { display: none; }
.hero { grid-template-columns: 1fr; padding: 50px 28px 0; min-height: auto; }
.hero-image-wrap { max-width: 100%; }
.stats-bar { padding: 20px 24px; gap: 0; flex-wrap: wrap; }
.stat-item { padding: 10px 20px; }
.section { padding: 60px 28px; }
.achievers { padding: 60px 28px; }
.about-grid { grid-template-columns: 1fr; gap: 36px; }
.policy-grid { grid-template-columns: 1fr; }
.testimonials { padding: 60px 28px!important; }
.testi-card { flex: 0 0 100%; } /* Switches to 1 column on mobile */
.cta-section { padding: 60px 28px; }
footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px; }
}

/* ---- CTA ---- */
.cta-section {
background: linear-gradient(135deg, var(--gold) 0%, #c47a12 100%);
padding: 70px 60px; text-align: center;
}
.cta-section h2 { color: var(--navy-dark); font-size: 2rem; margin-bottom: 14px; }
.cta-section p { color: rgba(15,42,94,0.7); max-width: 520px; margin: 0 auto 32px; font-size: 0.95rem; }
.cta-btn {
background: var(--navy-dark); color: var(--white);
padding: 14px 36px; border-radius: 8px;
font-weight: 700; font-size: 0.95rem; text-decoration: none;
transition: all 0.2s; display: inline-block;
box-shadow: 0 4px 20px rgba(8,29,69,0.35);
}
.cta-btn:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(8,29,69,0.45); }

/* ---- FOOTER ---- */
footer {
background: var(--navy-dark); padding: 32px 60px;
display: flex; justify-content: space-between; align-items: center;
border-top: 1px solid rgba(255,255,255,0.1);
}
footer p { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
footer a { color: var(--gold); text-decoration: none; font-size: 0.78rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
.achiever-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 900px) {
.nav { padding: 14px 24px; }
.nav-links { display: none; }
.hero { grid-template-columns: 1fr; padding: 50px 28px 0; min-height: auto; }
.hero-image-wrap { max-width: 100%; }
.stats-bar { padding: 20px 24px; gap: 0; flex-wrap: wrap; }
.stat-item { padding: 10px 20px; }
.section { padding: 60px 28px; }
.achievers { padding: 60px 28px; }
.about-grid { grid-template-columns: 1fr; gap: 36px; }
.policy-grid { grid-template-columns: 1fr; }
.testimonials { padding: 60px 28px; }
.testi-card { flex: 0 0 100%; } /* Switches to 1 column on mobile */
.cta-section { padding: 60px 28px; }
footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px; }
}
@media (max-width: 600px) {
.achiever-card { flex: 0 0 100%; }
}
@media only screen and (min-width: 320px) and (max-width: 769px) {
.main-tabs {
overflow-x: auto;
}
.stat-item {border: none; width: 100%;}


}


