* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
header {
    position: sticky;
    top: 0;
    background: #333;
    padding: 15px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Sections */
.section {
    padding: 60px;
    text-align: center;
}
.section.home {
      background: linear-gradient(to bottom, #1f5fbf 95%, #eaf3ff 5%);
}

/* Home */
.home img {
    width: 150px;
    border-radius: 50%;
}

/* Skills */
.skills {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

/* Projects */
.project-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gallery img {
    width: 200px;
    height: 150px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
}