 /* Base Styles */
        * {
            font-family: 'Inter', sans-serif;
            cursor: none !important;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            overflow-x: hidden;
        }
        
        body {
            overflow-x: hidden;
            background: #F8FAFC;
        }
        
        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #2563EB;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease;
            mix-blend-mode: difference;
        }
        
        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.6s ease;
            mix-blend-mode: difference;
        }
        
        .cursor.hover {
            transform: scale(1.5);
            background: #2563EB;
            mix-blend-mode: normal;
        }
        
        .cursor.click {
            transform: scale(0.8);
            background: #DC2626;
        }
        
        /* Magnifying Glass Effect */
        .magnify-hover {
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .magnify-hover:hover {
            transform: scale(1.05);
            z-index: 10;
        }
        
        .magnify-hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.3) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }
        
        .magnify-hover:hover::before {
            opacity: 1;
        }
        
        /* Logo Styles */
        .logo-container {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .logo-img {
            height: 85px;
            width: auto;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
            transition: all 0.3s ease;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            margin-left: 12px;
        }
        
        .logo-main-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.75rem;
            color: #111827;
            line-height: 1.1;
            position: relative;
            display: inline-block;
        }
        
        .logo-main-text::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #2563EB, #0D9488);
            transition: width 0.3s ease;
        }
        
        .logo-container:hover .logo-main-text::after {
            width: 100%;
        }
        
        .logo-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #2563EB;
            text-transform: uppercase;
            margin-top: 2px;
        }
        
        /* Creative Layout Elements */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        .floating-card {
            animation: float 6s ease-in-out infinite;
            transition: all 0.3s ease;
        }
        
        .floating-card:hover {
            animation-play-state: paused;
            transform: translateY(-10px) scale(1.02);
        }
        
        .gradient-border {
            position: relative;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(135deg, #2563EB, #0D9488) border-box;
            border: 2px solid transparent;
        }
        
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #2563EB 0%, #0D9488 50%, #DC2626 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: shimmer 2s ease infinite;
        }
        
        .parallax-bg {
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }
        
        .creative-shape {
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }
        
        .creative-shape-reverse {
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
        }
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .cursor, .cursor-follower {
                display: none;
            }
            
            * {
                cursor: auto !important;
            }
            
            .mobile-stack {
                flex-direction: column;
            }
            
            .mobile-center {
                text-align: center;
            }
            
            .logo-img {
                height: 40px;
            }
            
            .logo-main-text {
                font-size: 1.4rem;
            }
            
            .mobile-padding {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .mobile-full {
                width: 100% !important;
                max-width: 100% !important;
            }
            
            .mobile-margin {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            
            .creative-shape, .creative-shape-reverse {
                clip-path: none;
            }
            
            .parallax-bg {
                background-attachment: scroll;
            }
            
            .glass-card {
                backdrop-filter: blur(5px);
            }
        }
        
        @media (max-width: 480px) {
            .logo-img {
                height: 35px;
            }
            
            .logo-main-text {
                font-size: 1.2rem;
            }
            
            .logo-tagline {
                font-size: 0.55rem;
            }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #2563EB, #0D9488);
            border-radius: 10px;
            border: 2px solid #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #1d4ed8, #0d9488);
        }
        
        /* Loading Animation */
        .loading-dots {
            display: inline-flex;
            align-items: center;
        }
        
        .loading-dots span {
            width: 8px;
            height: 8px;
            margin: 0 3px;
            background-color: #2563EB;
            border-radius: 50%;
            display: inline-block;
            animation: bounce 1.4s infinite ease-in-out both;
        }
        
        .loading-dots span:nth-child(1) { animation-delay: -0.32s; }
        .loading-dots span:nth-child(2) { animation-delay: -0.16s; }
        
        /* Tilt Effect */
        .tilt-effect {
            transition: transform 0.3s ease;
        }
        
        .tilt-effect:hover {
            transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
        }
        
        /* Particle Background */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            animation: float infinite linear;
        }