/* TOP NAVIGATION */

.top-nav {
    width: 100%;
    background: #ffffff;
    padding: 20px 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.top-nav li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    transition: color 0.2s ease;
    font-family: Arial, sans-serif;
}

.top-nav li a:hover {
    color: #0077cc;
}


.top-nav li a.active {
    color: #0077cc;
    font-weight: 600;
    border-bottom: 2px solid #0077cc;
    padding-bottom: 3px;
}

/* Layout */
.resume-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    background: #f8f8f8;
    font-family: Arial, sans-serif;
}

/* Sidebar */
.resume-sidebar {
    background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 40%);
    border-right: 1px solid #e5e5e5;
    padding: 40px 30px;
    box-shadow: 4px 0 12px rgba(0,0,0,0.05);
}

.sidebar-inner {
    position: sticky;
    top: 40px;
}

.name {
    font-size: 28px;
    margin-bottom: 5px;
}

.title {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-section li {
    margin-bottom: 6px;
}

/* Main content */
.resume-main {
    padding: 50px 60px;
}

.resume-section {
    margin-bottom: 70px;
}

.resume-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    border-left: 4px solid #0077cc;
    padding-left: 12px;
}

.experience-item {
    margin-bottom: 25px;
}

.experience-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.exp-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.experience-item ul {
    padding-left: 20px;
}

/* Links */
a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.resume-photo {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;

}


/* Responsive */
@media (max-width: 900px) {
    .resume-container {
        grid-template-columns: 1fr;
    }

    .resume-sidebar {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .resume-main {
        padding: 30px 20px;
    }
}

/* Resume Cards */
.resume-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #0077cc;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.resume-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.resume-card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 20px;
    color: #0077cc;
    font-weight: 600;
}

.resume-card h4 {
    margin-top: 18px;
    margin-bottom: 4px;
    font-size: 16px;
}

.resume-card .exp-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.resume-card ul {
    padding-left: 20px;
    margin-top: 8px;
    margin-bottom: 10px;
}

.resume-card li {
    margin-bottom: 6px;
}
