body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #444;
}

/* NAVBAR */
.custom-navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #1e3a8a;
}

.home-btn {
    text-decoration: none;
    color: #2563eb;
}

/* HERO */
.future-hero {
    background: linear-gradient(135deg, #0a4fd6, #3b5bdb);
    color: white;
    padding: 80px 20px;
}

.future-hero h1 {
    font-size: 42px;
    font-weight: 800;
}

/* VISION */
.vision-section {
    padding: 60px 20px;
    background: #f9fbff;
}

.vision-text {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
}

/* ROADMAP */
.roadmap-section {
    padding: 80px 20px;
}

.timeline {
    border-left: 3px solid #4f46e5;
    padding-left: 20px;
}

.timeline-item {
    margin-bottom: 30px;
}

.timeline-item h4 {
    color: #4f46e5;
}

/* INNOVATION */
.innovation-section {
    padding: 80px 0;
    background: #f9fbff;
}

.innovation-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.innovation-card:hover {
    transform: translateY(-8px);
}

.innovation-card i {
    font-size: 28px;
    color: #4f46e5;
    margin-bottom: 10px;
}

/* CTA */
.future-cta {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 60px 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #0072ff;
    color: white;
    border-radius: 25px;
    text-decoration: none;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 40px;
}