/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

h1, h2, h3 {
    margin: 0.5em 0;
}

section {
    padding: 20px;
    text-align: center;
}

/* Header Styles */
.header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

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

.nav-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #00bcd4;
}

/* Section Styles */
.about, .skills, .projects, .contact {
    background: #f4f4f4;
    margin: 20px 0;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.skill {
    background: #00bcd4;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1em;
}

.project {
    margin: 10px 0;
}

.project a {
    color: #00bcd4;
    text-decoration: none;
    font-weight: bold;
}

.project a:hover {
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .skills-container {
        flex-direction: column;
    }
}
