* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.highlight {
    color: #ffd700;
}

header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 5px solid #667eea;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #667eea;
}

.about p {
    max-width: 700px;
    margin: 0 auto 15px;
    font-size: 1.1rem;
    color: #555;
}

.projects {
    padding: 80px 0;
    background: #f4f4f4;
    text-align: center;
}

.projects h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #667eea;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.social a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 10px;
}

.social a:hover {
    text-decoration: underline;
}

/* Mobile friendly */
@media (max-width: 768px) {
    header h1 { font-size: 2.5rem; }
    header p { font-size: 1.1rem; }
}