/* --- Brand Identity & Theme Palette --- */
:root {
    --primary-dark: #002d72;     
    --primary-mid: #0056b3;      
    --primary-light: #e6f0fa;    
    --accent-orange: #ff5500;   
    --accent-pink: #ff007f;     
    --bg-light: #f7faff;        
    --text-dark: #1a2530;       
    --text-muted: #4b6584;      
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

h1, h2, h3, h4 {
    color: var(--primary-dark);
    font-weight: 800;
}

/* --- Header Component --- */
header {
    background: var(--white);
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 45, 114, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

/* --- Hero Banner Layout --- */
.hero-banner {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    color: var(--white);
    padding: 60px 8% 80px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-left {
    max-width: 48%;
    z-index: 5;
}

.hero-left h1 {
    color: var(--white);
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.offer-tag {
    font-size: 15px; 
    background: rgba(255, 255, 255, 0.15); 
    border-left: 4px solid var(--accent-orange);
    padding: 12px 18px; 
    border-radius: 4px;
    font-weight: 600;
}

.hero-right {
    width: 46%;
    z-index: 5;
}

.spacecraft-launcher {
    position: absolute;
    bottom: -60px;
    left: 40%;
    font-size: 70px;
    z-index: 10;
    pointer-events: none;
    animation: simpleFloat 3s ease-in-out infinite;
}

@keyframes simpleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.booking-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 45, 114, 0.25);
    color: var(--text-dark);
}

.booking-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
    text-align: center;
}

.booking-card p {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.submit-form-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    color: var(--white);
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 0, 127, 0.2);
}

/* --- Curriculum Cards Layout --- */
.wrapper {
    padding: 80px 8%;
}

.section-headline {
    text-align: center;
    font-size: 36px;
    margin-bottom: 12px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 18px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.track-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.track-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 45, 114, 0.03);
    border: 2px solid #f0f4fa;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

.track-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    box-shadow: 0 12px 30px rgba(255, 0, 127, 0.08);
}

.vector-canvas {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px auto;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.panel-maths { background-color: #511845; color: #ffffff; }     
.panel-coding { background-color: #f8b400; color: #ffffff; }    
.panel-science { background-color: #00bdaa; color: #ffffff; }   

.canvas-main-icon {
    font-size: 50px;
    z-index: 2;
}

.canvas-sub-text {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 5px;
    opacity: 0.9;
    z-index: 2;
}

.canvas-decor {
    position: absolute;
    font-size: 16px;
    opacity: 0.3;
    z-index: 1;
}

.dec-1 { top: 15px; left: 15px; }
.dec-2 { bottom: 15px; right: 15px; }

/* --- Methods & Core Grid Rules --- */
.tint-section { background-color: var(--bg-light); }
.grid-2-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.system-box { background: var(--white); padding: 35px; border-radius: 20px; border-top: 5px solid var(--primary-mid); }
.system-box h4 { font-size: 21px; margin-bottom: 12px; }

.inspiration-quote-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    color: var(--white);
    padding: 45px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 700;
    margin: 45px 0;
}

.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.tier-card { background: var(--white); border: 2px dashed var(--accent-pink); padding: 35px 25px; border-radius: 20px; text-align: center; }
.tier-card h3 { font-size: 40px; background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; font-weight: 900; }
.reward-alert { background: linear-gradient(135deg, #fffcf5 0%, #fff7df 100%); border: 1px solid #ffe8a1; padding: 30px; border-radius: 20px; margin-top: 45px; display: flex; align-items: center; gap: 25px; }

.faculty-flex { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.faculty-card { background: var(--white); padding: 40px 30px; border-radius: 24px; text-align: center; box-shadow: 0 6px 20px rgba(0, 45, 114, 0.03); width: 300px; border: 1px solid #f0f4fa; }
.faculty-img { width: 110px; height: 110px; background: var(--primary-light); border-radius: 50%; margin: 0 auto 20px auto; display: flex; align-items: center; justify-content: center; font-size: 50px; }
.scholarship-banner { max-width: 800px; margin: 60px auto 0 auto; background: var(--white); padding: 30px; border-radius: 16px; box-shadow: 0 8px 25px rgba(0, 45, 114, 0.05); text-align: center; border-left: 6px solid var(--accent-pink); }

/* --- Footer Alignment --- */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 70px 8% 40px 8%;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 45px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 45px;
}

.footer-cols h5 {
    color: var(--accent-orange);
    font-size: 19px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-cols p, .footer-cols a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 14px;
    display: block;
    opacity: 0.9;
}

.footer-logo-container {
    margin-bottom: 20px;
    display: block;
}

.bottom-bar {
    text-align: center;
    padding-top: 35px;
    font-size: 14px;
    color: #a0b2c6;
}