:root {
    --bg-color: #0c0c0d;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-primary: #3b82f6;
    /* Modern Blue */
    --accent-secondary: #6366f1;
    /* Indigo */
    --glass-bg: rgba(17, 17, 19, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --premium-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    --gradient-text: linear-gradient(to bottom right, #f8fafc 30%, #94a3b8 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background - More subtle and professional */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #17171a 0%, #0c0c0d 100%);
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 25s infinite ease-in-out;
}

.globe-1 {
    top: -10%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
}

.globe-2 {
    bottom: 5%;
    right: 5%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(12, 12, 13, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-logo-img {
    height: 28px;
    width: 28px;
    filter: grayscale(1) brightness(2);
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
}

/* Resume Layout */
.resume-container {
    padding: 8rem 5% 4rem;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.resume-paper {
    width: 100%;
    max-width: 1100px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: var(--premium-shadow);
    backdrop-filter: blur(20px);
}

/* Header */
.resume-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.resume-header h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.resume-header h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.summary-text {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-info {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--accent-primary);
}

.contact-item i {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Grid Layout */
.resume-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 5rem;
}

/* Sections */
.section-heading {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

/* Timeline */
.timeline-entry {
    margin-bottom: 3rem;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.entry-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.company {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.badge {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.timeline-entry ul {
    list-style: none;
}

.timeline-entry li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline-entry li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 1px;
    background: var(--accent-primary);
}

/* Sidebar */
.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-pill {
    padding: 0.4rem 0.9rem;
    background: var(--glass-highlight);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.skill-pill:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn.primary {
    background: #fff;
    color: #000;
}

.btn.primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn.secondary {
    background: var(--glass-highlight);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Tweaks */
@media (max-width: 900px) {
    .resume-body {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .resume-paper {
        padding: 2.5rem 1.5rem;
    }

    .resume-header h1 {
        font-size: 2.5rem;
    }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    padding: 4rem 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--glass-border);
}