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

        :root {
            --color-primary: #05070A;
            --color-secondary: #0D1117;
            --color-accent-gold: #D4AF37;
            --color-light: #FFFFFF;
            --color-text-primary: #E8E9EB;
            --color-text-secondary: #A8AAAF;
            --font-header: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;
            --tracking-body: 1.5px;
            --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            color: var(--color-text-primary);
            letter-spacing: var(--tracking-body);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Custom Cursor - desktop only */
        @media (hover: hover) and (pointer: fine) {
            * {
                cursor: none;
            }
        }

        .cursor-dot {
            position: fixed;
            width: 10px;
            height: 10px;
            background: var(--color-accent-gold);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            display: none;
            transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            transform: translate(-50%, -50%);
        }

        .cursor-dot.active {
            display: block;
        }

        .cursor-dot.hovering {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.15);
            border: 2px solid var(--color-accent-gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--color-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--color-accent-gold), var(--color-accent-gold));
            border-radius: 10px;
            box-shadow: inset 0 0 6px rgba(212, 175, 55, 0.3);
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
            background: rgba(5, 7, 10, 0.7);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            padding: 12px 30px;
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--color-accent-gold);
            font-size: 1.4rem;
            cursor: pointer;
            padding: 4px;
        }

        .nav-links {
            display: contents;
        }

        nav a {
            color: var(--color-text-primary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s var(--transition-smooth);
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent-gold);
            transition: width 0.3s var(--transition-smooth);
        }

        nav a:hover {
            color: var(--color-accent-gold);
        }

        nav a:hover::after {
            width: 100%;
        }

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

        #particleCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 40px;
        }

        .hero-title {
            font-family: var(--font-header);
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--color-light) 0%, var(--color-accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .typewriter-text {
            display: inline-block;
            min-height: 1.2em;
            border-right: 3px solid var(--color-accent-gold);
            animation: blink-caret 0.75s step-end infinite;
            font-family: var(--font-header);
            font-size: 2.5rem;
            color: var(--color-accent-gold);
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: var(--color-accent-gold); }
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--color-text-secondary);
            margin-top: 30px;
            margin-bottom: 50px;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 50px;
            background: linear-gradient(135deg, var(--color-accent-gold), #F0D580);
            color: var(--color-primary);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s var(--transition-smooth);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
            letter-spacing: 1px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: left 0.4s var(--transition-smooth);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Section Styles */
        section {
            padding: 120px 60px;
            position: relative;
            z-index: 5;
        }

        section > h2 {
            font-family: var(--font-header);
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            color: var(--color-light);
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--color-text-secondary);
            margin-bottom: 60px;
            max-width: 500px;
        }

        /* About Section */
        #about {
            background: linear-gradient(180deg, var(--color-secondary) 0%, rgba(13, 17, 23, 0.8) 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text p {
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 30px;
            color: var(--color-text-primary);
        }

        .about-highlight {
            color: var(--color-accent-gold);
            font-weight: 600;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        /* Skills Section */
        #skills {
            background: var(--color-primary);
        }

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

        .skill-card {
            background: rgba(255, 255, 255, 0.05);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s var(--transition-smooth);
        }

        .skill-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(212, 175, 55, 0.6);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
        }

        .skill-card h3 {
            font-family: var(--font-header);
            font-size: 1.5rem;
            color: var(--color-accent-gold);
            margin-bottom: 15px;
        }

        .skill-card ul {
            list-style: none;
        }

        .skill-card li {
            font-size: 0.95rem;
            color: var(--color-text-primary);
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .skill-card li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: var(--color-accent-gold);
        }

        /* Projects Section */
        #projects {
            background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-primary) 100%);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.03);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s var(--transition-smooth);
            transform-style: preserve-3d;
        }

        .project-card:hover {
            border-color: rgba(212, 175, 55, 0.6);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .project-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s var(--transition-smooth);
        }

        .project-card:hover .project-image::after {
            opacity: 1;
        }

        .project-content {
            padding: 30px;
        }

        .project-content h3 {
            font-family: var(--font-header);
            font-size: 1.5rem;
            color: var(--color-light);
            margin-bottom: 10px;
        }

        .project-description {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin-bottom: 20px;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
            perspective: 1000px;
        }

        .tag {
            display: inline-block;
            background: rgba(212, 175, 55, 0.15);
            color: var(--color-accent-gold);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--color-primary);
            background: var(--color-accent-gold);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 9px 20px;
            border-radius: 50px;
            border: 2px solid var(--color-accent-gold);
            transition: all 0.25s ease;
            position: relative;
            z-index: 10;
            pointer-events: all;
            letter-spacing: 0.3px;
        }

        .project-link:nth-child(2) {
            background: transparent;
            color: var(--color-accent-gold);
        }

        .project-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        .project-link:nth-child(2):hover {
            background: rgba(212, 175, 55, 0.1);
        }

        /* Project image as link */
        a.project-image {
            text-decoration: none;
            cursor: pointer;
            display: flex;
        }

        .project-image-overlay {
            position: absolute;
            inset: 0;
            background: rgba(212, 175, 55, 0.85);
            color: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 0;
        }

        a.project-image:hover .project-image-overlay {
            opacity: 1;
        }

        .project-actions {
            display: flex;
            gap: 12px;
            position: relative;
            z-index: 10;
        }
            background: var(--color-primary);
        }

        .timeline-container {
            position: relative;
            padding: 60px 0;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, var(--color-accent-gold), transparent);
            transform: translateX(-50%);
            z-index: 1;
        }

        @media (max-width: 768px) {
            .timeline-line {
                left: 30px;
            }
        }

        .timeline-item {
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

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

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 52%;
            margin-right: 0;
            text-align: left;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--color-accent-gold);
            border: 3px solid var(--color-primary);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 3;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.03);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 25px;
            border-radius: 8px;
            transition: all 0.3s var(--transition-smooth);
        }

        .timeline-content:hover {
            border-color: rgba(212, 175, 55, 0.6);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
        }

        .timeline-content h4 {
            color: var(--color-accent-gold);
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .timeline-content p {
            color: var(--color-text-secondary);
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 60px;
                margin-right: 0;
                text-align: left;
            }

            .timeline-dot {
                left: 30px;
            }
        }

        /* Contact Section */
        #contact {
            background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-primary) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-container {
            max-width: 600px;
            width: 100%;
            padding: 40px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 50px;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--color-text-primary);
            padding: 10px 0;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s var(--transition-smooth);
            resize: vertical;
        }

        .form-group textarea {
            min-height: 120px;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: var(--color-accent-gold);
        }

        .form-label {
            position: absolute;
            top: 0;
            left: 0;
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            transition: all 0.3s var(--transition-smooth);
            pointer-events: none;
        }

        .form-group input:focus ~ .form-label,
        .form-group input:not(:placeholder-shown) ~ .form-label,
        .form-group textarea:focus ~ .form-label,
        .form-group textarea:not(:placeholder-shown) ~ .form-label {
            top: -20px;
            color: var(--color-accent-gold);
            font-size: 0.8rem;
        }

        .submit-button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--color-accent-gold), #F0D580);
            color: var(--color-primary);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s var(--transition-smooth);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
        }

        .submit-button:hover {
            box-shadow: 0 15px 60px rgba(212, 175, 55, 0.5);
            transform: translateY(-2px);
        }

        .contact-fallback {
            margin-top: 18px;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            text-align: center;
            line-height: 1.6;
        }

        .contact-fallback a {
            color: var(--color-accent-gold);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-fallback a:hover {
            text-decoration: underline;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 50px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-accent-gold);
            text-decoration: none;
            transition: all 0.3s var(--transition-smooth);
            cursor: pointer;
            font-size: 1.2rem;
        }

        .social-icon:hover {
            background: var(--color-accent-gold);
            color: var(--color-primary);
            transform: scale(1.2) translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        /* Footer */
        footer {
            background: var(--color-primary);
            text-align: center;
            padding: 30px;
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 12px 20px;
                gap: 0;
                border-radius: 30px;
            }

            .nav-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                gap: 15px;
                padding-top: 15px;
                width: 100%;
                text-align: center;
            }

            .nav-links.active {
                display: flex;
            }

            section {
                padding: 80px 30px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                height: 300px;
            }

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

            .typewriter-text {
                font-size: 1.5rem;
            }

            .contact-form {
                padding: 30px;
            }

            #particleCanvas {
                display: none;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Utility Classes */
        .glass-morphism {
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
            background: rgba(5, 7, 10, 0.7);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

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

        .contact-heading {
            text-align: center;
            margin-bottom: 50px;
        }

        .glow-text {
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

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

        /* Ripple Effect */
        @keyframes ripple {
            0% {
                transform: scale(0);
                opacity: 1;
            }
            100% {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        .ripple-active {
            animation: ripple 0.6s ease-out;
        }

        /* Heartbeat Pulse */
        @keyframes heartbeat {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
            }
            50% {
                box-shadow: 0 15px 60px rgba(212, 175, 55, 0.6);
            }
        }

        .pulse-heartbeat {
            animation: heartbeat 1.2s ease-in-out infinite;
        }

        /* Shake Animation */
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-8px); }
            75% { transform: translateX(8px); }
        }

        .shake-error {
            animation: shake 0.4s var(--transition-smooth);
        }

        /* Liquid Underline for Nav */
        @keyframes slideUnderline {
            0% { left: 0; width: 0; }
            100% { left: 0; width: 100%; }
        }

        .nav-underline {
            position: absolute;
            bottom: -8px;
            height: 2px;
            background: var(--color-accent-gold);
            width: 0;
            left: 0;
            transition: all 0.3s var(--transition-smooth);
        }

        /* Drawing Checkmark */
        @keyframes drawCheckmark {
            0% {
                stroke-dashoffset: 60;
            }
            100% {
                stroke-dashoffset: 0;
            }
        }

        .checkmark-svg {
            stroke-dasharray: 60;
            stroke-dashoffset: 60;
            animation: drawCheckmark 0.6s ease-out forwards;
        }

        /* Staggered Tag Animation */
        @keyframes tagSlideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tag-stagger {
            animation: tagSlideIn 0.4s var(--transition-smooth) forwards;
            opacity: 0;
        }

        /* Form Success State */
        .form-success {
            display: none;
        }

        .form-success.active {
            display: block;
        }

        .success-message {
            text-align: center;
            animation: fadeInUp 0.6s ease-out;
        }

        .success-message h3 {
            font-family: var(--font-header);
            color: var(--color-accent-gold);
            margin: 20px 0;
            font-size: 1.5rem;
        }

        .success-checkmark {
            margin: 0 auto 20px;
            width: 80px;
            height: 80px;
        }

        .success-subtext {
            color: var(--color-text-secondary);
            font-size: 0.95rem;
        }

        /* Input Error State */
        .form-group input.error,
        .form-group textarea.error {
            border-bottom-color: #ff6b6b;
        }

        .form-group input.error ~ .form-label,
        .form-group textarea.error ~ .form-label {
            color: #ff6b6b;
        }

        /* Hero Location */
        .hero-location {
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            letter-spacing: 1px;
        }

        .hero-location i {
            color: var(--color-accent-gold);
            margin-right: 6px;
        }

        /* Projects Case Study Layout */
        .projects-case-study {
            grid-template-columns: 1fr;
        }

        .project-header-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .project-header-row h3 {
            margin-bottom: 0;
        }

        .project-live-badge {
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.5);
            color: var(--color-accent-gold);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Case Study Block */
        .case-study {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .case-study-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .case-study-block {
            background: rgba(212, 175, 55, 0.04);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 8px;
            padding: 18px;
        }

        .case-study-block h5 {
            color: var(--color-accent-gold);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .case-study-block h5 i {
            margin-right: 6px;
        }

        .case-study-block p {
            font-size: 0.88rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        .case-study-block ul {
            list-style: none;
            padding: 0;
        }

        .case-study-block li {
            font-size: 0.88rem;
            color: var(--color-text-secondary);
            padding-left: 16px;
            position: relative;
            margin-bottom: 6px;
            line-height: 1.6;
        }

        .case-study-block li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--color-accent-gold);
        }

        /* Timeline Role */
        .timeline-role {
            display: block;
            color: var(--color-accent-gold);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .timeline-highlights {
            list-style: none;
            margin: 12px 0;
            padding: 0;
        }

        .timeline-highlights li {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            padding-left: 18px;
            position: relative;
            margin-bottom: 6px;
            line-height: 1.6;
        }

        .timeline-highlights li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--color-accent-gold);
        }

        .timeline-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        /* Achievements Section */
        #achievements {
            background: var(--color-primary);
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .achievement-card {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s var(--transition-smooth);
        }

        .achievement-card:hover {
            border-color: rgba(212, 175, 55, 0.6);
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
        }

        .achievement-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: rgba(212, 175, 55, 0.12);
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--color-accent-gold);
        }

        .achievement-body h3 {
            font-family: var(--font-header);
            font-size: 1.15rem;
            color: var(--color-light);
            margin-bottom: 8px;
        }

        .achievement-body p {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .achievement-link {
            color: var(--color-accent-gold);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: opacity 0.2s ease;
        }

        .achievement-link:hover {
            opacity: 0.8;
        }

        /* Button Enhanced Hover with Letter Spacing */
        .cta-button, .submit-button {
            position: relative;
        }

        .button-hover-pulse {
            letter-spacing: 3px;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-spinner {
            width: 48px;
            height: 48px;
            border: 3px solid rgba(212, 175, 55, 0.2);
            border-top-color: var(--color-accent-gold);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Hero Name & Actions */
        .hero-greeting {
            font-family: var(--font-body);
            font-size: 1.2rem;
            color: var(--color-text-secondary);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .hero-typewriter {
            margin-bottom: 20px;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .resume-button {
            display: inline-block;
            padding: 16px 50px;
            background: transparent;
            color: var(--color-accent-gold);
            border: 2px solid var(--color-accent-gold);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s var(--transition-smooth);
            letter-spacing: 1px;
        }

        .resume-button:hover {
            background: rgba(212, 175, 55, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
        }
