:root {
    --bg-color: #0f172a;
    --text-color: #94a3b8;
    --heading-color: #e2e8f0;
    --accent-color: #5eead4;
    --nav-color: #64748b;
}

/* Visibility Fix for Section Titles on Desktop Right Side */
.section-title {
    display: block !important; 
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

.skip-link {
    position: absolute; top: -40px; left: 0; background: var(--accent-color);
    color: var(--bg-color); padding: 8px; z-index: 10000; transition: top 0.3s;
}
.skip-link:focus { top: 0; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-color); color: var(--text-color);
    font-family: 'Inter', sans-serif; line-height: 1.6; overflow-x: hidden;
}

.cursor-glow {
    position: fixed; top: 0; left: 0; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.15) 0%, transparent 80%);
    border-radius: 50%; pointer-events: none; z-index: 9999; will-change: transform;
}

.container { max-width: 1200px; margin: 0 auto; display: flex; padding: 0 50px; }

.sidebar {
    width: 40%; height: 100vh; position: sticky; top: 0;
    padding: 100px 0; display: flex; flex-direction: column; justify-content: space-between;
}

.name { font-size: 3rem; font-weight: 700; color: var(--heading-color); line-height: 1.1; }
.professional-title { font-size: 1.25rem; color: var(--heading-color); margin-top: 15px; font-weight: 600; }
.secondary { font-size: 1.1rem; color: var(--nav-color); margin-top: 5px; }
.tagline { margin-top: 25px; max-width: 300px; }

.nav-links { margin-top: 50px; }
.nav-links ul { list-style: none; }
.nav-links li { margin-bottom: 20px; }
.nav-links a {
    text-decoration: none; color: var(--nav-color); font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.1rem; display: flex; align-items: center; transition: 0.3s;
}
.nav-line { width: 30px; height: 1px; background-color: var(--nav-color); margin-right: 15px; transition: 0.3s; }
.nav-links a.active { color: var(--heading-color); }
.nav-links a.active .nav-line { width: 60px; background-color: var(--heading-color); }

.social-links { display: flex; gap: 20px; font-size: 1.4rem; }
.social-links a { color: var(--text-color); transition: 0.3s; }
.social-links a:hover { color: var(--heading-color); }

.content { width: 60%; padding: 100px 0; }
section { margin-bottom: 120px; }

.highlights-container { display: flex; gap: 20px; margin-top: 40px; }
.highlight-item {
    flex: 1; background: rgba(255, 255, 255, 0.03); padding: 20px;
    border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05);
}
.highlight-value { font-size: 1.8rem; font-weight: 700; color: var(--accent-color); }
.highlight-label { font-size: 0.7rem; font-weight: 700; color: var(--heading-color); text-transform: uppercase; margin: 5px 0; }
.highlight-desc { font-size: 0.8rem; }

.services-grid { display: flex; flex-direction: column; gap: 40px; }
.service-card { display: flex; gap: 20px; }
.service-icon { font-size: 1.5rem; color: var(--accent-color); }
.service-info h3 { color: var(--heading-color); margin-bottom: 10px; font-size: 1.1rem; }

.tech-category { margin-bottom: 30px; }
.tech-category h3 { font-size: 0.9rem; color: var(--heading-color); margin-bottom: 15px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-tags span {
    background: rgba(94, 234, 212, 0.1); color: var(--accent-color);
    padding: 5px 12px; border-radius: 4px; font-size: 0.85rem;
}

.experience-card { display: flex; gap: 30px; margin-bottom: 50px; }
.date { min-width: 150px; font-size: 0.75rem; font-weight: 700; color: var(--nav-color); }
.details h3 { color: var(--heading-color); font-size: 1.1rem; margin-bottom: 15px; }
.exp-bullets { list-style: none; margin-bottom: 20px; }
.exp-bullets li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.exp-bullets li::before { content: "▹"; position: absolute; left: 0; color: var(--accent-color); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span {
    background: rgba(45, 212, 191, 0.1); color: var(--accent-color);
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem;
}

.resume-link-container { margin-top: 40px; }
.resume-link { text-decoration: none; color: var(--heading-color); font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }
.resume-link:hover .arrow { transform: translate(5px, -5px); transition: 0.3s; }

.contact-form {
    display: flex; flex-direction: column; gap: 20px;
    background: rgba(255, 255, 255, 0.02); padding: 30px;
    border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05);
}
.form-title { color: var(--heading-color); margin-bottom: 1.5rem; font-size: 1.2rem; }
.form-group input, .form-group textarea {
    width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px; border-radius: 4px; color: white; font-family: inherit;
}
.submit-btn {
    background: transparent; border: 1px solid var(--accent-color); color: var(--accent-color);
    padding: 12px 25px; border-radius: 4px; cursor: pointer; font-weight: 700;
    width: fit-content; display: flex; align-items: center; gap: 10px;
}
.form-status { margin-top: 1.5rem; font-size: 0.9rem; font-weight: 500; }

@media (max-width: 1024px) {
    .container { flex-direction: column; padding: 0 25px; }
    .sidebar { width: 100%; height: auto; position: relative; padding: 50px 0; }
    .content { width: 100%; padding: 0; }
    .section-title {
        position: sticky; top: 0; background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(8px); padding: 20px 0; z-index: 10;
    }
    .experience-card { flex-direction: column; gap: 10px; }
}
