:root {
    --bg-color: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary-color: #00f2ff;
    --secondary-color: #7000ff;
    --accent-color: #ff007a;
    --text-main: #e0e0e0;
    --text-dim: #a0a0a0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-bg: rgba(10, 10, 12, 0.8);
    --radius: 4px;
    --title-gradient-start: #ffffff;
    --primary-glow: rgba(0, 242, 255, 0.15);
    --electric-blue: #58a6ff;
    
    /* Technical Skills Colors matching the dark screen mockup */
    --skill-item-bg: rgba(255, 255, 255, 0.045);
    --skill-item-border: rgba(255, 255, 255, 0.08);
    --skill-item-text: #8b949e;
    --skill-item-hover-bg: rgba(255, 255, 255, 0.08);
    --skill-item-hover-border: rgba(255, 255, 255, 0.18);
    --skill-card-bg: rgba(255, 255, 255, 0.08);
}

/* Light Mode Variables - Impactful Premium */
[data-theme="light"] {
    --bg-color: #f0f4ff;
    --card-bg: #ffffff;
    --glass-border: rgba(88, 166, 255, 0.3);
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --text-main: #0f172a;
    --text-dim: #475569;
    --nav-bg: rgba(240, 244, 255, 0.92);
    --glass-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
    --title-gradient-start: #0f172a;
    --primary-glow: rgba(37, 99, 235, 0.12);
    --electric-blue: #2563eb;
    
    /* Technical Skills Light Mode Colors */
    --skill-item-bg: rgba(37, 99, 235, 0.05);
    --skill-item-border: rgba(37, 99, 235, 0.12);
    --skill-item-text: #475569;
    --skill-item-hover-bg: rgba(37, 99, 235, 0.12);
    --skill-item-hover-border: rgba(37, 99, 235, 0.25);
    --skill-card-bg: var(--card-bg);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism utility */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow, none);
    transition: var(--transition);
}

.glass:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.16);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    transform: translateY(-3px);
}

/* Background Animation */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(112, 0, 255, 0.07) 0%, transparent 45%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.toggles {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.toggle-btn {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.toggle-btn:hover {
    background: var(--glass-border);
    color: var(--primary-color);
}

.lang-btn {
    font-weight: 600;
    font-size: 0.75rem;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Section Header & Titles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.module-id {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-id::before,
.module-id::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary-color);
    opacity: 0.3;
}

.section-title {
    font-size: 2.5rem;
    color: #d1d5db; /* Beautiful grey/silver matching the mockup */
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    display: none; /* Remove cyan underline and shadow glow to match clean mockup */
}

.section-title.left {
    text-align: left;
    color: var(--primary-color);
}

.section-title.left::after {
    left: 0;
    transform: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

#network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.hero-bento {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.bento-cell {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cell-photo {
    width: 280px;
    height: 280px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    background: transparent;
    transition: all 0.5s ease;
}

/* Option 1: Pulse */
.photo-pulse {
    box-shadow: 0 0 15px var(--primary-color);
    animation: pulse-ring 2s infinite alternate;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 10px rgba(0, 242, 255, 0.2); }
    100% { box-shadow: 0 0 35px var(--primary-color); }
}

/* Option 2: Hexa */
.photo-hexa {
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 0 15px var(--primary-color));
}



.profile-tech-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(0, 242, 255, 0.4);
    box-shadow: inset 0 0 20px var(--primary-glow);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.cell-identity {
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.cell-identity h1 {
    font-size: 5.5rem;
    margin: 0;
    letter-spacing: -2px;
    position: relative;
    animation: glitch 5s infinite;
    background: linear-gradient(to bottom, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .cell-identity h1 {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: none; opacity: 1; }
    92% { transform: skewX(10deg); opacity: 0.8; }
    94% { transform: skewX(-10deg); opacity: 0.8; }
    96% { transform: skewX(5deg); opacity: 0.9; }
}

.cell-bio {
    max-width: 800px;
    min-height: 160px;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    padding: 0 5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
}

.cell-bio p {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.cell-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Profile Tech UI */
.profile-tech-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: var(--transition);
}



.status-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    border: 1px solid var(--glass-border);
}

.accent-text {
    color: inherit;
    position: relative;
}

.tech-details {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item i {
    color: var(--secondary-color);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4);
    filter: brightness(1.1);
}

.hero-tag {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    background: rgba(0, 242, 255, 0.08);
    color: var(--primary-color);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-family: 'Fira Code', monospace;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 242, 255, 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

/* Profile Image Box */
.profile-container {
    display: none;
    /* Replaced by Bento Cell */
}

/* Skills */
#skills {
    background-color: var(--bg-color);
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

#skills::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
    pointer-events: none;
}

#skills::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 100%);
    pointer-events: none;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    padding: 2rem;
    background: var(--skill-card-bg, var(--card-bg));
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.skill-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-item,
.tag {
    background: var(--skill-item-bg);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    color: var(--skill-item-text);
    border: 1px solid var(--skill-item-border);
    transition: var(--transition);
    letter-spacing: 0.2px;
    font-weight: 500;
}

.skill-item:hover,
.tag:hover {
    background: var(--skill-item-hover-bg);
    border-color: var(--skill-item-hover-border);
    color: var(--text-main);
    transform: translateY(-2px);
}

/* Timeline (Experience) */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
    padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0;
    z-index: 2;
    box-shadow: 0 0 15px var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    padding: 1.5rem;
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

[data-theme="light"] .timeline-content h3 {
    color: var(--primary-color);
}

.timeline-content h4 {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.timeline-item:nth-child(odd) ul {
    direction: rtl;
}

.timeline-content li {
    margin-bottom: 0.5rem;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: scale(1.02);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}



/* Soft Skills */
#soft-skills {
    background-color: var(--bg-color);
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
}

#soft-skills::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 100%);
    pointer-events: none;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at 100% 0%, var(--primary-glow) 0%, transparent 40%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-socials {
    display: flex;
    gap: 1.5rem;
}

.social-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-box i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.social-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--radius);
    color: #00ff88;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge .dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
    font-size: 1.2rem;
}

.item-text label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 0.2rem;
}

.item-text p {
    font-size: 1.1rem;
    font-weight: 500;
}

.card-footer {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.card-footer .cta-button {
    width: 100%;
    font-size: 1.15rem;
    padding: 1.2rem;
}

.secondary-cta {
    background: transparent;
    border: 1px solid var(--glass-border);
    box-shadow: none;
    color: var(--text-main);
}

.secondary-cta:hover {
    border-color: var(--primary-color);
    background: var(--primary-glow);
}

.main-cta {
    box-shadow: 0 10px 20px var(--primary-glow);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .contact-info-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-title.left {
        text-align: center;
    }

    .contact-socials {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .card-footer {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

[data-theme="light"] #network-bg {
    opacity: 0.85;
    filter: brightness(0.5) contrast(1.8) saturate(2) hue-rotate(200deg);
}

[data-theme="light"] .bg-gradient {
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
}

[data-theme="light"] .glass {
    background: #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12), 0 1px 3px rgba(15, 23, 42, 0.06);
    color: #0f172a;
}

[data-theme="light"] .glass h1,
[data-theme="light"] .glass h2,
[data-theme="light"] .glass h3 {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

[data-theme="light"] .glass p,
[data-theme="light"] .glass span,
[data-theme="light"] .glass .detail-item,
[data-theme="light"] .glass label {
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
}

[data-theme="light"] .glass .text-dim {
    color: #475569 !important;
    -webkit-text-fill-color: #475569 !important;
}

[data-theme="light"] .glass:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.2), 0 0 0 1px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

[data-theme="light"] .section-title {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 40%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .section-title::after {
    display: block;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
    width: 60px;
    height: 3px;
}

[data-theme="light"] .module-id {
    color: #2563eb;
    font-weight: 700;
    opacity: 0.9;
    letter-spacing: 3px;
}

[data-theme="light"] .module-id::before,
[data-theme="light"] .module-id::after {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    opacity: 0.6;
    width: 30px;
}

[data-theme="light"] .corner {
    border-color: var(--primary-color);
    opacity: 0.6;
}

/* Light mode: pill components — vivid and punchy */
[data-theme="light"] .skill-item,
[data-theme="light"] .tag {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: #1d4ed8 !important;
    font-weight: 600;
}

[data-theme="light"] .skill-item:hover,
[data-theme="light"] .tag:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

[data-theme="light"] .hero-tag {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.4);
    color: #1d4ed8 !important;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15);
}

[data-theme="light"] .contact-item i {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #2563eb;
}

[data-theme="light"] .social-box {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: #0f172a !important;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

[data-theme="light"] .social-box:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: #2563eb;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.18);
    color: #1d4ed8 !important;
}

[data-theme="light"] .timeline-dot {
    background: #2563eb;
    border: 2px solid #ffffff;
    box-shadow: 0 0 14px rgba(37, 99, 235, 0.55);
}

[data-theme="light"] .timeline::before {
    background: linear-gradient(to bottom, #2563eb, #7c3aed);
    opacity: 0.4;
}

[data-theme="light"] .status-indicator {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

[data-theme="light"] .status-badge {
    background: rgba(5, 150, 80, 0.1);
    border: 1px solid rgba(5, 150, 80, 0.35);
    color: #047857;
    font-weight: 700;
}

[data-theme="light"] .status-badge .dot {
    background: #059669;
    box-shadow: 0 0 8px rgba(5, 150, 105, 0.5);
}

[data-theme="light"] .contact-section {
    background: transparent;
}

[data-theme="light"] footer {
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

[data-theme="light"] .social-links a {
    color: #475569;
}

[data-theme="light"] .social-links a:hover {
    color: #2563eb;
}

[data-theme="light"] .contact-info {
    color: #475569;
}

footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-dim);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

@media (max-width: 992px) {
    .hero-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: center;
    }

    .cell-photo {
        grid-column: 1;
        width: 250px;
        margin: 0 auto;
    }

    .cell-identity {
        grid-column: 1;
        padding-left: 0;
    }

    .cell-identity h1 {
        font-size: 3rem;
    }

    .cell-bio, .cell-actions {
        grid-column: 1;
        clip-path: none;
    }

    .cell-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-bento {
        grid-template-columns: 1fr;
    }

    .cell-photo,
    .cell-identity,
    .cell-bio,
    .cell-actions {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .timeline::before {
        left: 2rem;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-dot {
        left: 1.5rem !important;
    }

    .timeline-item:nth-child(odd) ul {
        direction: ltr;
    }
}