* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

body {
    background: #f7f7f7;
    color: #333;
}

/* Header */
header {
    text-align: center;
    padding: 40px;
    background: #4c6ef5;
    color: white;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

header nav a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    width: 80%;
    margin: auto;
    padding: 40px 0;
}

h2 {
    margin-bottom: 20px;
    color: #4c6ef5;
}

/* Skills */
.skill-box {
    margin-bottom: 20px;
}

.bar {
    width: 100%;
    background: #ddd;
    height: 10px;
    border-radius: 5px;
}

.bar span {
    display: block;
    height: 10px;
    background: #4c6ef5;
    border-radius: 5px;
}

/* Project Cards */
.project-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #4c6ef5;
    border-radius: 5px;
}

.project-card a {
    color: #4c6ef5;
    text-decoration: none;
    font-weight: bold;
}

.project-card a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #4c6ef5;
    color: white;
    margin-top: 20px;
}
