:root {
    --bg-primary: #0B0F1A;
    --bg-secondary: #111827;
    --accent-cyan: #00E5FF;
    --accent-violet: #7C4DFF;
    --text-main: #FFFFFF;
    --text-muted: #A0AEC0;
    --border-color: #1F2937;

 
    --glow-cyan: 0 0 20px rgba(0, 229, 255, 0.45);
    --glow-violet: 0 0 20px rgba(124, 77, 255, 0.45);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent-cyan);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    border-radius: 2px;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--accent-cyan);
    font-weight: 100;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Canvas styling */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}


.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-mono);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.btn-primary:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}


.glass-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(11, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.btn-nav {
    border: 1px solid var(--accent-cyan);
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--accent-cyan) !important;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

.accent {
    color: var(--accent-cyan);
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-content {
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical alignment relative to photo */
    height: 100%;
}

.eyebrow {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Static Reveal Text */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up-reveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fade-up-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Glass Panel - Refined */
.hero-glass-panel {
    background: transparent;
    /* Removed heavy panel background for cleaner look as requested */
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: left;
}

/* Re-add alignment for desktop */
@media (min-width: 993px) {
    .hero-glass-panel {
        text-align: left;
        align-items: flex-start;
    }
}

/* Glass CTA Buttons - Premium Style */
.hero-btns {
    display: flex;
    gap: 16px;
    margin-top: 2rem;
}

.hero-btns .btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    color: var(--text-main);
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Specific button overrides */
.hero-btns .btn-primary {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.3);
}

.hero-btns .btn-secondary {
    color: var(--text-muted);
}

/* Hover Effects */
.hero-btns .btn:hover {
    transform: translateY(-3px);
    background: rgba(0, 229, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
    color: var(--accent-cyan);
}

.hero-btns .btn:active {
    transform: translateY(0) scale(0.98);
}

/* Light Sweep Effect */
.hero-btns .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
    pointer-events: none;
}

.hero-btns .btn:hover::before {
    left: 150%;
    transition: 0.7s ease-in-out;
}


/* Hero Image & Animation - Futuristic Enhance */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    animation: profile-entry 1.2s ease-out forwards;
    animation-delay: 0.1s;
    perspective: 1000px;
}

.image-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Continuous Subtle Floating */
    animation: float 8s ease-in-out infinite;
    /* Slower, calmer float */
    transform-style: preserve-3d;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 5;
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 1. Intelligent Liquid Halo (Primary Layer) */
.liquid-halo {
    position: absolute;
    inset: -20px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: transparent;
    border: 2px solid rgba(0, 229, 255, 0.5);
    /* Slightly clearer */
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.15), inset 0 0 15px rgba(0, 229, 255, 0.05);
    z-index: 4;
    animation: liquid-morph 20s linear infinite;
    /* Slower morph */
    backdrop-filter: blur(2px);
    transition: all 0.6s ease;
}

/* 2. AI Signal Pulse (Secondary Layer) */
.signal-pulse {
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.3);
    z-index: 3;
    opacity: 0;
    animation: signal-expand 5s ease-out infinite;
    /* Calmer pulse */
}

/* 3. Orbiting Particles & Dotted Arcs (Depth Layer) */
.orbit-particles {
    position: absolute;
    inset: -70px;
    width: calc(100% + 140px);
    height: calc(100% + 140px);
    border-radius: 50%;
    z-index: 6;
    pointer-events: none;
}

/* Dotted Arc style for particles container or psuedo elements */
.orbit-particles::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 229, 255, 0.15);
    /* Dotted orbit track */
    animation: spin-slow 30s linear infinite;
    z-index: 0;
}

.particle {
    position: absolute;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
    opacity: 0.8;
}

/* Positioning & Animation for individual particles */
.particle.p1 {
    width: 4px;
    height: 4px;
    top: 50%;
    left: 0;
    animation: orbit-1 15s linear infinite;
}

.particle.p2 {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 85%;
    animation: orbit-2 22s linear infinite reverse;
}

/* Slower */
.particle.p3 {
    width: 5px;
    height: 5px;
    bottom: 25%;
    right: 15%;
    animation: orbit-3 25s linear infinite;
    filter: blur(1px);
}

.particle.p4 {
    width: 2px;
    height: 2px;
    top: 5%;
    left: 50%;
    animation: orbit-2 18s linear infinite;
    opacity: 0.5;
}

.particle.p5 {
    width: 3px;
    height: 3px;
    bottom: 10%;
    left: 20%;
    animation: orbit-1 28s linear infinite reverse;
    opacity: 0.6;
}


/* 5. Breathing Light Aura (Ambient Layer) */
.ambient-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
    /* Softer blur */
    animation: breathe-glow 8s ease-in-out infinite;
    /* Slower breathe */
}

/* Hero Ambient Particles (Background) */
/* We can add a pseudo-element to hero-content or a separate div for ambient particles */


/* Micro-Interaction (Hover Effects) */
.image-wrapper:hover img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 229, 255, 0.15);
}

.image-wrapper:hover .liquid-halo {
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
    animation-duration: 10s;
}

.image-wrapper:hover .signal-pulse {
    animation-duration: 2.5s;
}

/* Keyframes */
@keyframes profile-entry {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes liquid-morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }

    33% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    66% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(360deg);
    }
}

@keyframes signal-expand {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
        border-width: 1px;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        border-width: 0px;
    }
}

@keyframes breathe-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Orbit Patterns */
@keyframes orbit-1 {
    from {
        transform: rotate(0deg) translateX(190px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(190px) rotate(-360deg);
    }
}

@keyframes orbit-2 {
    from {
        transform: rotate(0deg) translateX(170px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(170px) rotate(-360deg);
    }
}

@keyframes orbit-3 {
    from {
        transform: rotate(360deg) translateX(210px) rotate(-360deg);
    }

    to {
        transform: rotate(0deg) translateX(210px) rotate(0deg);
    }
}

/* Certifications Section - Premium Glass */
#certifications .skill-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#certifications .skill-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.03),
            transparent);
    transition: 0.5s;
    pointer-events: none;
}

#certifications .skill-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 229, 255, 0.1);
}

#certifications .skill-card:hover::after {
    left: 100%;
    transition: 0.8s;
}

#certifications .skill-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

#certifications .skill-card:hover .skill-icon {
    background: rgba(0, 229, 255, 0.15);
    transform: scale(1.1);
    color: var(--accent-cyan);
}

#certifications h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

/* About Section (Centered) */
.about-section {
    padding: var(--section-padding);
}

.about-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.tech-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}



.badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Skills Section Filter & Grid */
.skills-section {
    padding: var(--section-padding);
}

.skills-filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.skills-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.skill-card-modern {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.15);
}

.skill-icon {
    color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.03);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}

.skill-card-modern:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 229, 255, 0.1);
}

.skill-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-main);
}

.skill-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
    font-family: var(--font-mono);
}

.skill-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-level {
    color: var(--accent-violet);
    font-weight: 600;
    background: rgba(124, 77, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.skill-progress-wrapper {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
}

.skill-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    border-radius: 6px;
    position: relative;
    width: 0;
    /* Animated via JS or default width style */
    transition: width 1s ease-out;
}

.skill-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.skill-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.skill-list li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.skill-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-violet);
    font-family: var(--font-mono);
}

/* Projects Section */
.projects-section {
    padding: var(--section-padding);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
}

.project-card:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 26, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.btn-icon {
    color: var(--text-main);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s;
}

.btn-icon:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.project-meta {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--accent-violet);
    font-family: var(--font-mono);
}

.project-details-list {
    margin-bottom: 1.5rem;
}

.project-details-list li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.project-details-list li::before {
    content: '▹';
    color: var(--accent-cyan);
}

.project-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    gap: 10px;
}

.project-tags span {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    background: rgba(0, 229, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Services */
.services-section {
    padding: var(--section-padding);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--accent-violet);
    margin-bottom: 1rem;
}

/* Experience Timeline */
.experience-section {
    padding: var(--section-padding);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    padding-left: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
}

.timeline-date {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.timeline-content h4 {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-content p {
    color: #ccc;
    font-size: 0.95rem;
}


/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 4px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -24px;
    left: 0;
    font-size: 0.85rem;
    color: var(--accent-cyan);
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: width 0.2s, height 0.2s;
}

/* Media Queries */
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Nav Active State */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--accent-cyan);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--accent-cyan);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-content {
        align-items: center;
    }

    .hero-glass-panel {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-btns {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(11, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .image-wrapper {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .eyebrow {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .image-wrapper {
        width: 250px;
        height: 250px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .glass-card,
    .skill-card-modern,
    .project-content {
        padding: 1.5rem;
    }
}