body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f0f8;
    color: #333;
}

header {
    background: linear-gradient(135deg, #6a0dad, #9b59b6);
    color: white;
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-top: 20px;
}

header h1 {
    margin: 20px 0 5px;
    font-size: 2.5em;
}

header p {
    margin: 0;
    font-size: 1.2em;
}

section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}


h2 {
    color: #6a0dad;
    margin-bottom: 20px;
    border-bottom: 2px solid #9b59b6;
    display: inline-block;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

ul li::before {
    content: "•";
    color: #6a0dad;
    position: absolute;
    left: 0;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

.contact a {
    color: #6a0dad;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #6a0dad;
    color: white;
}

.quote {
    font-style: italic;
    color: #9b59b6;
    margin-top: 10px;
}

/* Social icons */
.social a {
    margin: 0 10px;
    color: #6a0dad;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s;
}

.social a:hover {
    color: #9b59b6;
}