* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    scroll-behavior: smooth;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: white;
}

.hero {
    text-align: center;
    padding: 180px 20px 100px;
}

.highlight {
    color: #00f2fe;
}

.buttons {
    margin-top: 20px;
}

.btn {
    background: #00f2fe;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: black;
    margin-right: 10px;
}

.btn-outline {
    border: 2px solid white;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
}

section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 20px;
}

.project-card {
    margin-bottom: 20px;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}