* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f172a;
    color: white;
}

/* Navbar */
header {
    background: #020617;
    padding: 15px 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: white;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero button {
    padding: 10px 20px;
    margin-top: 15px;
    border: none;
    background: #38bdf8;
    cursor: pointer;
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

/* Skills */
.skills-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.skills-list li {
    background: #1e293b;
    padding: 10px;
    border-radius: 5px;
}

/* Projects */
.project-card {
    background: #1e293b;
    margin: 15px auto;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #020617;
}
