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

body {
    background: #e0e0e0;
    color: #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    font-size: 18px;
    background: #111;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #fff;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

.hero {
    height: 90vh;
    background: linear-gradient(135deg, #4f04ff, #062bff);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero span {
    color: yellow;
}

.hero button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    background: #fff;
    color: #1829be;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.section {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.project-list {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

input, textarea {
    padding: 10px;
}

button {
    background: #0c5c81;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}