body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #111;
    color: white;
    padding: 40px 20px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
}

.profile-pic img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #00bcd4;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.intro-text h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.intro-text h1 span {
    color: #00bcd4;
}

.intro-text p {
    font-size: 1.1rem;
    color: #ccc;
}

header h1 span {
    color: #00bcd4;
}

section {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    color: #00bcd4;
    margin-bottom: 10px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.project-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.project-card a {
    color: #00bcd4;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 10px;
}