:root {
    --bg-color: #030008;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent-color: #9d4edd;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100vw;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.ui-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 4rem;
    pointer-events: none;
    /* Let clicks pass through if needed, re-enable on interactive elements */
    will-change: opacity, transform;
}

/* Make interactive elements clickable */
a,
.pagination .dot {
    pointer-events: auto;
}

/* --- Header --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    letter-spacing: -1px;
}

.logo-dot {
    width: 4px;
    height: 4px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    margin-right: 2px;
    margin-top: 6px;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.7;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
}

/* --- Center Content --- */
.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.hero-center h1 {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}
.subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--text-secondary);
}

.hello-text {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 3rem;
    padding-left: 5px;
}
/* --- Side Elements --- */
.pagination {
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.pagination .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination .dot.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Connecting line for pagination */
.pagination::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.scroll-explore {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.scroll-explore span {
    writing-mode: vertical-rl;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.scroll-explore .line {
    width: 1px;
    height: 60px;
    background-color: var(--text-secondary);
}

/* --- Footer --- */
.footer {
    display: flex;
    justify-content: flex-end;
    /* Keep availability status on the right after removing social links */
    align-items: flex-end;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;

    position: absolute;
    bottom: 35px;
    left: 60px;

    right: auto;
    transform: none;
}

.mouse {
    width: 20px;
    height: 32px;
    border: 3px solid var(--text-secondary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    margin-bottom: 8px;
}

.wheel {
    width: 2px;
    height: 6px;
    background-color: var(--text-primary);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.arrow-down {
    color: var(--text-secondary);
    stroke-width: 5px;
    width: 14px;
    height: 14px;
    animation: bounce 2s infinite;
}

.availability {
    position: absolute;
    bottom: 50px;
    right: 50px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.availability span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 500;
}

.avail-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-color);
    animation: pulse 2s infinite;
}

/* --- Animations --- */
@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(6px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-3px);
    }

    60% {
        transform: translateY(-1px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(157, 78, 221, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0);
    }
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 1024px) {
    .hero-center h1 {
        font-size: 4.5rem;
    }

    .ui-container {
        padding: 2rem;
    }

    .pagination {
        left: 2rem;
    }

    .scroll-explore {
        right: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    /* Hide full nav on mobile for simplicity, or implement burger menu */
    .hero-center h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 0.6rem;
        letter-spacing: 4px;
    }

    .pagination,
    .scroll-explore {
        display: none;
    }

    /* Hide sidebars on small screens */
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .scroll-indicator {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
    }

    .name-reveal {
        font-size: 3rem;
    }

    .about-section {
        padding: 4rem 2rem;
    }

    .about-title {
        font-size: 4rem;
    }
}

/* --- Scroll Animation Elements --- */
.scroll-track {
    position: relative;
    z-index: 0;
    width: 100%;
}

.scroll-spacer {
    height: 450vh;
    /* Increased significantly so the user has time to read the name before the next section scrolls up */
    width: 100%;
    pointer-events: none;
}

.name-reveal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    will-change: opacity;
    animation: tubeFlicker 4s infinite;
}

.hello-text {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 3rem;
    padding-left: 5px;
}

.name-text {
    font-size: 7rem;
    font-weight: 300;
    /* Thinner font looks more like a glass tube */
    letter-spacing: 2px;
    display: block;
    white-space: nowrap;
}

.role-text {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    display: block;
    margin-top: 2.5rem;
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Neon Tube Light Flicker Animation */
@keyframes tubeFlicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        text-shadow:
            0 0 4px #fff,
            0 0 10px #fff,
            0 0 20px #b53cff,
            0 0 40px #b53cff,
            0 0 80px #b53cff,
            0 0 120px #b53cff,
            0 4px 20px rgba(0, 0, 0, 0.9);
        /* Deep background separation */
    }

    20%,
    24%,
    55% {
        text-shadow:
            0 0 2px rgba(255, 255, 255, 0.5),
            0 0 5px rgba(181, 60, 255, 0.5),
            0 4px 20px rgba(0, 0, 0, 0.9);
    }
}

/* --- Content Background Wrapper --- */
.content-bg-wrapper {
    position: relative;
    width: 100%;
    z-index: 20;
    background-color: #030008;
    overflow: hidden;
    /* Contain ambient orbs for the entire scrollable area */
    /* Continuous technical blueprint grid + noise */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.04"/></svg>');
    background-size: 50px 50px, 50px 50px, 100% 100%;
}

/* --- About Section & Decorations --- */
.about-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.8);
    padding: 8rem 4rem;
    display: flex;
    justify-content: center;
}

/* Ambient Glow Orbs */
.ambient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: pulseOrb 8s infinite alternate ease-in-out;
}

.orb-purple {
    width: 40vw;
    height: 40vw;
    background: #9d4edd;
    top: 10%;
    left: -15vw;
}

.orb-orange {
    width: 30vw;
    height: 30vw;
    background: #ffaa00;
    bottom: -5vw;
    right: -10vw;
    animation-delay: -4s;
}

@keyframes pulseOrb {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.1) translate(20px, -20px);
        opacity: 0.5;
    }
}

/* Side Typography & Crosshairs */
.side-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.left-decor {
    left: 4rem;
}

.right-decor {
    right: 4rem;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.right-decor .vertical-text {
    transform: rotate(0deg);
}

.crosshair {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
    font-family: monospace;
    line-height: 1;
    pointer-events: none;
}

.top-left {
    top: 4rem;
    left: 4rem;
}

.top-right {
    top: 4rem;
    right: 4rem;
}

.bottom-left {
    bottom: 4rem;
    left: 4rem;
}

.bottom-right {
    bottom: 4rem;
    right: 4rem;
}

/* Content Card */
.about-content {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-title {
    font-family: 'Caveat', cursive;
    font-size: 6.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    transform: rotate(-2deg);
    display: inline-block;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem 4rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.about-text p {
    margin-bottom: 2rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Highlight first paragraph */
.about-text p:first-child {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    border-left: 2px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-left: calc(-1.5rem - 2px);
    /* Hanging indent: pulls the purple line out so the text perfectly aligns with the paragraphs below */
}

/* --- Experience Section --- */
.experience-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.8);
    padding: 8rem 4rem;
    display: flex;
    justify-content: center;
}

.experience-content {
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Caveat', cursive;
    font-size: 6.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #ffffff;
    transform: rotate(-2deg);
    display: inline-block;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-left: 4rem;
    /* Align perfectly with the left edge of the experience cards */
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    padding-left: 4rem;
}

/* The Glowing Timeline Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    /* Center the line perfectly exactly on the 0 coordinate */
    top: -7rem;
    /* Extends exactly upwards alongside the Experience title */
    bottom: auto;
    height: var(--line-height, 100%);
    /* Calculated by JS to stop at last dot */
    width: 4px;
    background: linear-gradient(to bottom, #9d4edd, #ffaa00);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
    z-index: 1;
}

.exp-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    padding: 1.5rem 2.5rem;
    /* Even tighter padding */
    position: relative;
    z-index: 2;
    /* Ensures the card's stacking context (created by backdrop-filter) is above the timeline line (z-index: 1) */
    /* Anchor the transform origin exactly to the 0 coordinate of the timeline so it doesn't shift left/right when scaling */
    transform-origin: calc(-4rem - 1px) center;
}

/* The Timeline Dot */
.exp-card::before {
    content: '';
    position: absolute;
    /* -4rem padding brings us to left:0 of timeline. -1px accounts for the card's border. */
    left: calc(-4rem - 1px);
    transform: translateX(-50%);
    /* Centers the dot exactly on the 0 coordinate */
    top: 2.5rem;
    /* Align roughly with the header */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    /* Static solid filled dot */
    box-sizing: border-box;
    /* Ensure exact width */
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.8), inset 0 0 4px rgba(0, 0, 0, 0.2);
    /* Slight inset for 3D effect instead of border */
    z-index: 5;
}

.exp-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px rgba(157, 78, 221, 0.15);
    border-color: rgba(157, 78, 221, 0.3);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.exp-role {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.exp-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.exp-company {
    font-size: 1.3rem;
    /* Increased size */
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.exp-date {
    font-size: 0.95rem;
    /* Increased size */
    font-family: monospace;
    color: rgba(255, 255, 255, 0.6);
    /* Slightly brighter for readability at larger size */
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.exp-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.exp-column h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 0.8rem;
}

.exp-column h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.exp-column ul {
    list-style: none;
    padding: 0;
}

.exp-column li {
    font-size: 0.85rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.exp-column li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-family: monospace;
}

.exp-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Tools Section --- */
.tools-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Keep ambient orbs from causing scrolling */
}

/* Ambient Background Lights */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    /* Massive blur for soft glow */
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

.orb-purple {
    background: #9d4edd;
    width: 500px;
    height: 500px;
    top: 10%;
    left: -10%;
}

.orb-orange {
    background: #ffaa00;
    width: 400px;
    height: 400px;
    bottom: -5%;
    right: -5%;
}

.tools-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.tool-icon {
    width: 42px;
    height: 42px;
    overflow: hidden;
    padding: 0;
}

.tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.tool-category-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tool-category-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(157, 78, 221, 0.3);
    border-color: rgba(157, 78, 221, 0.4);
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tool-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tool-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-name {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Specific App Icon Colors */
.ps-icon {
    background: #001E36;
    color: #31A8FF;
    border-color: #31A8FF;
}

.ai-icon {
    background: #330000;
    color: #FF9A00;
    border-color: #FF9A00;
}

.canva-icon {
    background: linear-gradient(135deg, #00C4CC, #7D2AE8);
    color: white;
    border-color: #00C4CC;
}

.figma-icon {
    background: #1E1E1E;
    color: #F24E1E;
    border-color: #F24E1E;
}

.corel-icon {
    background: #00773E;
    color: white;
    border-color: #00773E;
}

.blender-icon {
    background: #EA7600;
    color: white;
    border-color: #EA7600;
}

.sw-icon {
    background: #E32636;
    color: white;
    border-color: #E32636;
}

.acad-icon {
    background: #E81A25;
    color: white;
    border-color: #E81A25;
}

.ptc-icon {
    background: #80C342;
    color: white;
    border-color: #80C342;
}

.max-icon {
    background: #11789B;
    color: white;
    border-color: #11789B;
}

.pr-icon {
    background: #00005C;
    color: #E98FFF;
    border-color: #E98FFF;
}

.filmora-icon {
    background: #03C4B6;
    color: white;
    border-color: #03C4B6;
}

.pd-icon {
    background: #0044CC;
    color: white;
    border-color: #0044CC;
}

.ae-icon {
    background: #00005C;
    color: #D291FF;
    border-color: #D291FF;
}

/* Progress Bars */
.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9d4edd, #ffaa00);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
    /* Animation for filling up */
    animation: fillProgress 1.5s ease-out forwards;
    transform-origin: left;
}

@keyframes fillProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Reusing skill-tag from earlier but putting it here for clarity */
.skill-tag {
    font-size: 0.7rem;
    font-family: monospace;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    background: rgba(157, 78, 221, 0.4);
    border-color: rgba(157, 78, 221, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.2);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 2rem;
    }

    .section-title {
        margin-left: 2rem;
    }

    .exp-card {
        transform-origin: calc(-2rem - 1px) center;
    }

    .exp-card::before {
        left: calc(-2rem - 1px);
    }

    .exp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .exp-meta {
        align-items: flex-start;
    }

    .exp-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }
}