        :root {
            --primary: #6366f1;
            --secondary: #ec4899;
            --dark: #050505;
            --glass: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
        }

        body {
            font-family: 'Outfit', sans-serif;
            /* Updated Background as requested */
            background: linear-gradient(90deg, #000000 0%, #000000 50%, #000000 100%);
            background-attachment: fixed;
            color: #e2e8f0;
            overflow-x: hidden;
            cursor: none; /* Custom cursor */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #000;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            border-radius: 10px;
        }

        /* 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: 8px;
            height: 8px;
            background-color: white;
        }
        .cursor-outline {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: width 0.2s, height 0.2s, background-color 0.2s;
        }
        body:hover .cursor-outline {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.05);
            border-color: var(--primary);
        }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .loader-text {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 1.5s infinite;
        }
        .loader-bar-container {
            width: 300px;
            height: 2px;
            background: #1a1a1a;
            margin-top: 20px;
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }
        .loader-progress {
            width: 0%;
            height: 100%;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transition: width 0.2s ease;
            box-shadow: 0 0 10px var(--primary);
        }

        /* Glassmorphism Cards */
        .glass-card {
            background: var(--glass);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
            transition: 0.5s;
        }
        .glass-card:hover::before {
            left: 100%;
        }
        .glass-card:hover {
            transform: translateY(-8px);
            border-color: rgba(99, 102, 241, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #6366f1 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientMove 3s linear infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        /* Button Styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 14px 35px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }
        .btn-primary:hover::after {
            opacity: 1;
        }
        .btn-primary:hover {
            box-shadow: 0 0 25px rgba(99, 102, 241, 0.5);
            transform: translateY(-2px);
        }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            z-index: 100;
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }
        .whatsapp-float:hover {
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
        }

        /* AI Robot Container */
        #robot-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.4;
            pointer-events: none;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        .modal-content {
            background: #0f172a;
            width: 90%;
            max-width: 900px;
            border-radius: 24px;
            padding: 40px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--glass-border);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            max-height: 90vh;
            overflow-y: auto;
        }
        .modal-overlay.active .modal-content {
            transform: scale(1);
        }
        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 28px;
            cursor: pointer;
            color: #94a3b8;
            transition: color 0.3s;
            z-index: 10;
        }
        .close-modal:hover {
            color: white;
            transform: rotate(90deg);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-10px);}
            60% {transform: translateY(-5px);}
        }
        
        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        /* Navigation Active State */
        .nav-link {
            position: relative;
            color: #94a3b8;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: white;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        /* Skill Tag */
        .skill-tag {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .skill-tag:hover {
            background: rgba(99, 102, 241, 0.1);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        /* Testimonial Slider */
        .testimonial-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            padding-bottom: 20px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .testimonial-slider::-webkit-scrollbar {
            display: none;
        }
        .testimonial-card {
            scroll-snap-align: start;
            min-width: 350px;
        }

        /* Professional Image Shape - Squircle */
        .pro-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .pro-image-frame {
            position: relative;
            border-radius: 40px; /* Modern Squircle Shape */
            overflow: hidden;
            aspect-ratio: 4/5;
            background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            transition: transform 0.1s ease-out;
            transform-style: preserve-3d;
        }

        .pro-image-frame::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #6366f1, #ec4899, #6366f1);
            border-radius: 42px;
            z-index: -1;
            opacity: 0.6;
            filter: blur(10px);
        }

        .pro-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.5s ease;
        }

        .pro-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(5, 5, 5, 0.95) 0%,
                rgba(5, 5, 5, 0.4) 30%,
                transparent 60%
            );
            pointer-events: none;
        }

        .pro-badge {
            position: absolute;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 20px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 10;
            transform: translateZ(20px);
        }

        .badge-1 { top: 10%; left: -20px; animation: floatBadge 4s ease-in-out infinite; }
        .badge-2 { bottom: 15%; right: -20px; animation: floatBadge 4s ease-in-out infinite 1s; }
        .badge-3 { top: 50%; right: -30px; animation: floatBadge 4s ease-in-out infinite 2s; }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0) translateZ(20px); }
            50% { transform: translateY(-10px) translateZ(20px); }
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            position: relative;
        }
        .status-dot::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: #22c55e;
            opacity: 0.4;
            animation: pingDot 1.5s ease-out infinite;
        }
        @keyframes pingDot {
            0% { transform: scale(1); opacity: 0.4; }
            100% { transform: scale(2.5); opacity: 0; }
        }

        @media (max-width: 768px) {
            .pro-image-wrapper { max-width: 350px; }
            .pro-badge { padding: 8px 12px; font-size: 12px; border-radius: 12px; }
            .badge-1 { left: -10px; }
            .badge-2 { right: -10px; }
            .badge-3 { right: -15px; }
        }