/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    background-color: #f9fafb;
    color: #333;
}
/*********************************************************************/
.header div {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #3b82f6, #4c1d96);
    color: white;
}
.header h1 {
    font-size: 30px;
}
.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.header a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.header a:hover {
    opacity: 0.8;
}
/*********************************************************************/
.hero {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.hero-content p {
    margin-bottom: 5px;
    color: #555;
}
.profile-pic {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
/*********************************************************************/
.projects {
    padding: 10px;
}
.projects h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}
.projects-grid {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.project-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    border: 1px solid #e5e7eb;
    transition: 0.2s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 66, 248, 0.304);
}
.project-card h3 {
    margin-bottom: 10px;
}
.project-card .description {
    margin-bottom: 15px;
    color: #555;
}
.project-card .status {
    font-weight: bold;
    margin-bottom: 5px;
}
.project-card .tech {
    font-size: 14px;
    color: #666;
}
/*********************************************************************/
.footer {
    background: linear-gradient(to right, #3b82f6, #581c87);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}
.footer p {
    margin-top: 0.5rem;
    color: #e5e7eb;
}
.copyright {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px; 
    }
    .header div {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }
}