html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #0d0d0d;
    color: white;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 50px;
    background: linear-gradient(135deg, #1b1b1b, #000);
}

.hero h2 {
    font-size: 48px;
}

.accent {
    color: #00aaff;
}

.btn {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background: #00aaff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* About */
.about, .projects, .contact {
    padding: 100px 50px;
}

.about p {
    max-width: 600px;
    line-height: 1.6;
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.project-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    background: #222;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
    margin-top: 50px;
}
