
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    background: #080808;
    color: white;
}

.navbar {
    background: #222;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.navbar a {
    color: white;
    margin: 5px 15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #f4a261;
}

.hero {
    background: url('./GnImrRhbgAMLcbi.jpeg') no-repeat center center;
    background-size: contain;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.section {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.section h2 {
    color: #f4a261;
    font-size: 26px;
}

.section p {
    font-size: 18px;
    color: #ddd;
}

.roadmap ul {
    list-style: none;
    padding: 0;
}

.roadmap li {
    background: #f4a261;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero {
        font-size: 20px;
        height: 40vh;
        background-size: cover;
    }
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .navbar a {
        display: block;
        margin: 5px 0;
    }
    .section {
        padding: 40px 15px;
    }
}
