/* Modern Reset and Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f172a; /* Sleek dark blue/grey background */
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navigation Bar */
nav {
    width: 100%;
    background-color: #1e293b;
    padding: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #38bdf8; /* Bright neon blue accent */
}

/* Main Container */
main {
    max-width: 900px;
    width: 90%;
    margin: 4rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    color: #ffffff;
}

h2 {
    font-size: 2rem;
    color: #38bdf8;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 600px;
}

/* Profile Image Styling */
.profile-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%; /* Makes your profile pic a clean circle */
    border: 4px solid #38bdf8;
    box-shadow: 0 10px 15px -3px rgba(56, 189, 248, 0.2);
}

/* Project Layouts */
.project-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.project-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin-top: 1.5rem;
}

