* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: white;
    overflow-x: hidden;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

main {
    position: relative;
    padding: 0 2rem;
}

header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    margin-bottom: 0;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

h2 {
    margin-bottom: 1.5rem;
}

section {
    min-height: auto;
    padding: 2rem 0;
    margin: 0;
}

.bio-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.profile-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.project-card h3 {
    margin-bottom: 1rem;
    color: #64ffda;
}

.project-card p {
    margin: 0.5rem 0;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #64ffda;
}

.education, .skills {
    margin: 1.5rem 0;
}

.skills p {
    margin: 0.3rem 0;
}

.experience-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem auto;
    max-width: 1200px;
}

.achievements-grid {
    max-width: 1200px;
    margin: 1rem auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
}

.achievements-grid ul {
    list-style-position: inside;
    margin: 0.5rem 0;
}

.achievements-grid li {
    margin: 0.3rem 0;
}

.certifications {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .bio-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .profile-image img {
        width: 250px;
        height: 250px;
    }

    h1 {
        font-size: 3rem;
    }

    section {
        padding: 2rem 0;
    }
} 