/* General Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px 40px 20px;
    background: #f6f8fa;
    color: #222;
}
nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 36px;
    background: #fff;
    padding: 18px 0 12px 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 10;
}
nav a {
    text-decoration: none;
    color: #0077b5;
    font-weight: 600;
    font-size: 1.08em;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    padding: 4px 8px;
    border-radius: 4px;
}
nav a:hover {
    background: #e6f0fa;
    color: #005fa3;
}
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(120deg, #e6f0fa 0%, #f6f8fa 100%);
    padding: 40px 0 32px 0;
    border-radius: 16px;
    margin-bottom: 36px;
    box-shadow: 0 2px 12px rgba(0,119,181,0.06);
}
.profile-img {
    width: 150px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,119,181,0.10);
    margin-bottom: 18px;
}
.hero-section h1 {
    font-size: 2.2em;
    margin: 0 0 8px 0;
    color: #0077b5;
}
.hero-section h2 {
    font-size: 1.3em;
    font-weight: 400;
    margin: 0 0 10px 0;
    color: #444;
}
.hero-section p {
    font-size: 1.08em;
    color: #333;
    margin-bottom: 16px;
}
.linkedin-btn {
    display: inline-block;
    background: #0077b5;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 8px;
}
.linkedin-btn:hover {
    background: #005fa3;
}
section {
    margin-bottom: 36px;
    background: #fff;
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
section h2 {
    color: #0077b5;
    margin-bottom: 18px;
    font-size: 1.4em;
}
.experience-list, .education-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.experience-item, .education-item {
    background: #f6f8fa;
    border-radius: 8px;
    padding: 16px 18px;
    box-shadow: 0 1px 4px rgba(0,119,181,0.04);
}
.experience-item h3, .education-item h3 {
    margin: 0 0 4px 0;
    color: #005fa3;
}
.experience-item span, .education-item span {
    color: #666;
    font-size: 0.98em;
}
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.skills-list span {
    background: #e6f0fa;
    color: #0077b5;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 1em;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,119,181,0.04);
}
.projects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.project-item {
    flex: 1 1 260px;
    background: #f0f4f8;
    padding: 18px 16px;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0,119,181,0.06);
}
.project-item:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 4px 16px rgba(0,119,181,0.10);
    background: #e6f0fa;
}
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}
input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    background: #f6f8fa;
}
button {
    background: #0077b5;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: #005fa3;
}
.contact-links {
    margin-top: 10px;
    font-size: 1.08em;
}
.contact-links a {
    color: #0077b5;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.2s;
}
.contact-links a:hover {
    color: #005fa3;
}
.split-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding-left: 24px;
}
.split-timeline .experience-item {
    position: relative;
    background: #f6f8fa;
    border-radius: 8px;
    padding: 18px 20px 18px 32px;
    box-shadow: 0 1px 4px rgba(0,119,181,0.04);
    border-left: 4px solid #0077b5;
}
.split-timeline .experience-item h3 {
    margin-top: 0;
    color: #005fa3;
}
.split-timeline .experience-item span {
    color: #666;
    font-size: 0.98em;
}
.split-timeline .experience-item ul {
    margin: 12px 0 0 0;
    padding-left: 18px;
}
.split-timeline .experience-item ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}
@media (max-width: 700px) {
    body {
        max-width: 100vw;
        margin: 0;
        padding: 0 4vw 40px 4vw;
    }
    nav {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.98em;
    }
    .projects-list {
        flex-direction: column;
    }
    section {
        padding: 18px 6vw;
    }
    .hero-section {
        padding: 28px 0 18px 0;
    }
    .split-timeline {
        padding-left: 0;
    }
    .split-timeline .experience-item {
        padding-left: 16px;
    }
}
