/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f9;
}

header {
    background-color: #0d6efd;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ffdd57;
}

section {
    padding: 50px 20px;
    background: #fff;
    margin-bottom: 10px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.project-card {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.project-card a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: bold;
}

.project-card a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

#contact a:hover {
    color: #ff6a00;
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0d6efd;
    color: #fff;
}
