@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


        /* Base & Scrollbar */
        body {
            background-color: #F8FAFC;
            color: #0F172A;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .dark body {
            background-color: #0F172A;
            color: #F8FAFC;
        }
        
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        ::-webkit-scrollbar-thumb {
            background-color: #CBD5E1;
            border-radius: 20px;
        }
        .dark ::-webkit-scrollbar-thumb {
            background-color: #334155;
        }

        /* Scroll Progress Bar */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #2563EB, #10B981, #F97316);
            z-index: 1000;
            transition: width 0.1s;
        }

        /* Custom Cursor */
        @media (pointer: fine) {
            body { cursor: none; }
            a, button, input, textarea { cursor: none; }
            
            .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: 8px;
                height: 8px;
                background-color: #2563EB;
            }
            .cursor-outline {
                width: 40px;
                height: 40px;
                border: 1px solid rgba(37, 99, 235, 0.5);
                transition: width 0.2s, height 0.2s, background-color 0.2s;
            }
            .cursor-hover .cursor-outline {
                width: 60px;
                height: 60px;
                background-color: rgba(37, 99, 235, 0.1);
                border-color: transparent;
            }
        }

        /* Glassmorphism */
        .glass {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        .dark .glass {
            background: rgba(15, 23, 42, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Background Gradient Blobs (Premium Vercel/Stripe style) */
        .bg-blobs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        .blob {
            position: absolute;
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s infinite ease-in-out;
        }
        .dark .blob { opacity: 0.15; }
        .blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: #2563EB; animation-delay: 0s; }
        .blob-2 { top: 40%; right: -10%; width: 400px; height: 400px; background: #10B981; animation-delay: -5s; }
        .blob-3 { bottom: -20%; left: 20%; width: 600px; height: 600px; background: #F97316; animation-delay: -10s; }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Reveal Animations (Intersection Observer) */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* Initial Loader */
        #loader {
            position: fixed;
            inset: 0;
            background-color: #F8FAFC;
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease;
        }
        .dark #loader { background-color: #0F172A; }
        .loader-line {
            width: 0;
            height: 2px;
            background: #2563EB;
            animation: load 1s ease forwards;
        }
        @keyframes load {
            to { width: 200px; }
        }

        /* Masonry Gallery */
        .masonry {
            column-count: 1;
            column-gap: 1.5rem;
        }
        @media (min-width: 768px) { .masonry { column-count: 2; } }
        @media (min-width: 1024px) { .masonry { column-count: 3; } }
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
        }

        /* Hover Premium */
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
        }
        .dark .hover-lift:hover {
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
        }

        /* Timeline */
        .timeline-container::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background: #CBD5E1;
            transform: translateX(-50%);
        }
        .dark .timeline-container::before { background: #334155; }
        
        @media (max-width: 768px) {
            .timeline-container::before { left: 20px; }
            .timeline-item { width: 100% !important; padding-left: 50px !important; text-align: left !important; }
            .timeline-item .dot { left: 20px !important; }
        }
             
        
        