/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #121212;
}

.wrapper {
    background: linear-gradient(45deg, #ff4081, #5c6bc0);
    padding: 20px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.navbar ul li a:hover {
    color: #ff4081;
}

.cta {
    background: #ff4081;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cta:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background-image: url('vast.jpg'); /* Replace with your own */
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

/* Features Section */
.features {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #5c6bc0, #121212);
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.feature-card {
    width: 200px;
    padding: 20px;
    background: #1c1c1c;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 2rem;
    color: #ff4081;
    margin-bottom: 10px;
}

/* Timeline Section */
.roadmap {
    padding: 60px 20px;
    text-align: center;
    background-color: #121212;
}

/* Footer */
footer {
    padding: 20px;
    background: #000;
    text-align: center;
}
