/* --- Google Fonts Integration --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Rajdhani:wght@500;600;700&display=swap');

/* --- Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050507;
    color: #e2e8f0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-red {
    color: #ff2a2a;
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.4);
}

.text-center {
    text-align: center;
}

.subtitle {
    display: block;
    color: #38bdf8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: #94a3b8;
}

/* --- Header / Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(5, 5, 7, 0.95);
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: #ff2a2a;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff2a2a;
}

.btn-enroll {
    background-color: #ff2a2a;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
    transition: transform 0.2s, background-color 0.3s;
}

.btn-enroll:hover {
    background-color: #d61f1f;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-section {
    padding: 100px 0 60px 0;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 42, 42, 0.15) 0%, rgba(5, 5, 7, 0) 60%);
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 20px;
}

/* --- Intro Section (Built by Drivers) --- */
.intro-section {
    padding: 60px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #1e293b;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.intro-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.intro-text p {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 17px;
}

/* --- Core MVP Cards --- */
.core-mvp {
    padding: 40px 0;
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mvp-card {
    background: linear-gradient(145deg, #0f172a, #0b0f19);
    border: 1px solid #1e293b;
    padding: 30px;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.mvp-card:hover {
    border-color: #ff2a2a;
}

.card-icon {
    color: #ff2a2a;
    font-size: 24px;
    margin-bottom: 15px;
}

.mvp-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.mvp-card p {
    color: #94a3b8;
    font-size: 16px;
}

/* --- What We Stand For Section --- */
.stand-for-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: #0b0f19;
    border: 1px solid #1e293b;
    padding: 30px;
    border-radius: 8px;
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.value-card p {
    color: #94a3b8;
    font-size: 15px;
}

/* --- Timeline Section --- */
.timeline-section {
    padding: 80px 0;
}

.timeline-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    position: relative;
    border-left: 2px solid #1e293b;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #050507;
    border: 4px solid #ff2a2a;
}

.time-year {
    font-family: 'Orbitron', sans-serif;
    color: #ff2a2a;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 5px;
}

.time-content {
    color: #94a3b8;
    font-size: 16px;
}

/* --- Team Section --- */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: #0b0f19;
    border: 1px solid #1e293b;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
}

.avatar-circle {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 42, 42, 0.1);
    border: 2px solid #ff2a2a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-family: 'Orbitron', sans-serif;
    color: #ff2a2a;
    font-weight: 700;
    font-size: 20px;
}

.team-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card .role {
    color: #38bdf8;
    font-size: 14px;
    margin-bottom: 5px;
}

.team-card .exp {
    color: #64748b;
    font-size: 13px;
}

/* --- Stats Section --- */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(to right, #0b0f19, #0f172a, #0b0f19);
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 44px;
    color: #ff2a2a;
}

.stat-card p {
    color: #94a3b8;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Promise Box Banner --- */
.promise-banner-section {
    padding: 80px 0;
}

.promise-box {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 42, 42, 0.3);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.promise-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.promise-list-grid {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.promise-list-grid ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    text-align: left;
}

.promise-list-grid ul li {
    font-size: 17px;
    color: #e2e8f0;
}

.promise-list-grid ul li i {
    margin-right: 10px;
}

.btn-primary {
    display: inline-block;
    background-color: #ff2a2a;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(255, 42, 42, 0.4);
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #d61f1f;
}

/* --- Footer --- */
.footer {
    background-color: #050507;
    border-top: 1px solid #1e293b;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 15px;
    margin: 20px 0;
}

.social-icons a {
    color: #94a3b8;
    margin-right: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff2a2a;
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff2a2a;
}

.contact-info p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-info p i {
    color: #ff2a2a;
    margin-right: 8px;
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.bottom-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 20px;
}

.bottom-links a:hover {
    color: #ff2a2a;
}

/* --- Responsive Layout (Mobile Friendly) --- */
@media (max-width: 992px) {
    .intro-grid, .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mvp-grid, .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid, .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .intro-grid, .mvp-grid, .values-grid, .team-grid, .stats-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 38px;
    }
    .promise-list-grid ul {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}