
        :root {
            --bg-dark: #0a0118;
            --primary: #7b00ff;
            --accent: #00f2ff;
            --accent-pink: #ff00d4;
            --accent-green: #00ffc8;
            --accent-orange: #ff8800;
            --accent-gold: #FFD700;
            --glass: rgba(20, 10, 40, 0.6);
            --glass-light: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.1);
            --text-main: #fff;
            --text-muted: #b3b3b3;
            --drawer-text-color: #f5f5ff;
            --drawer-primary-color: #00ffc8;
            --drawer-bg-color: linear-gradient(180deg, rgba(10,20,35,0.98), rgba(5,10,15,0.99));
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        
        /* ===== DESKTOP SCROLL FIXES ONLY ===== */
        @media (min-width: 769px) {
            html {
                scroll-behavior: auto !important; /* Smooth scroll DISABLE on desktop ONLY */
            }
            
            /* Desktop par heavy animations disable */
            .orb {
                display: none !important;
            }
            
            #particles-canvas {
                display: none !important;
            }
            
            .noise-overlay {
                display: none !important;
            }
        }

        /* ===== MOBILE (EVERYTHING AS BEFORE) ===== */
        @media (max-width: 768px) {
            html {
                scroll-behavior: smooth; /* Mobile par smooth scroll enabled */
            }
            
            .orb {
                display: block !important; /* Mobile par wapas enable */
            }
            
            #particles-canvas {
                display: block !important; /* Mobile par wapas enable */
            }
            
            .noise-overlay {
                display: block !important; /* Mobile par wapas enable */
            }
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark); }
        ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--accent), var(--accent-pink)); border-radius: 10px; }

        .circle-logo {
            width: 30px;
            height: 30px;
            object-fit: contain;
            margin: 0px;
        }
        
        .circle-logo-loading {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin: 0;
        }

        .loader-wrapper {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--bg-dark); z-index: 10000;
            display: flex; align-items: center; justify-content: center; flex-direction: column;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        .loader-wrapper.hidden { opacity: 0; visibility: hidden; }

        .loader-logo {
            font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800;
            background: linear-gradient(135deg, var(--accent), var(--accent-pink));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-bottom: 30px; animation: pulse 1.5s infinite;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .loader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
        
        
        
        .loader-progress {
    height: 100%;
    background: linear-gradient(
        90deg, 
        #00f2ff 0%,      /* Cyan */
        #ff00d4 25%,     /* Pink */
        #00ffc8 50%,     /* Green */
        #ff8800 75%,     /* Orange */
        #00f2ff 100%     /* Cyan again */
    );
    background-size: 300% 100%; 
    border-radius: 10px;
    animation: loading 1.5s ease-in-out forwards, shimmer 1s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 300% center; }
    100% { background-position: 0% center; }
}

        @keyframes loading { 0% { width: 0%; } 100% { width: 100%; } }
        @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
        @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.98); } }

        #particles-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }

        .bg-fixed {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
            background: radial-gradient(ellipse at 50% -20%, #2a0055 0%, #05010d 60%);
        }

        .orb {
            position: fixed; border-radius: 50%; filter: blur(70px); opacity: 0.2; z-index: -1;
            animation: float 30s infinite alternate ease-in-out;
        }
        .orb-1 { top: 5%; left: -15%; width: 300px; height: 300px; background: var(--accent); }
        .orb-2 { bottom: 5%; right: -15%; width: 250px; height: 250px; background: var(--accent-pink); animation-delay: -7s; }
        .orb-3 { top: 50%; left: 50%; width: 300px; height: 300px; background: var(--primary); animation-delay: -3s; transform: translate(-50%, -50%); }

        @keyframes float {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(40px, 20px) scale(1.1); }
            100% { transform: translate(-20px, 40px) scale(0.97); }
        }

        .noise-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            z-index: 0; pointer-events: none; opacity: 0.02;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* ===== HEADER - MOBILE FIX (WAPAS PURANA STYLE) ===== */
        .header-bar {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 25px; position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
            background: transparent; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* MOBILE PAR HEADER SCROLLED STATE - BLACK BLUR BACKGROUND */
       .header-bar.scrolled {
    background: rgba(10, 1, 24, 0.95) !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3); 
    padding: 15px 25px;
}

/* Desktop - Heavy blur */
@media (min-width: 769px) {
    .header-bar.scrolled {
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }
}

/* Mobile - Light blur */
@media (max-width: 768px) {
    .header-bar.scrolled {
        backdrop-filter: blur(6px) !important;
        -webkit-backdrop-filter: blur(6px) !important;
    }
}

        .brand-logo {
    font-family: 'Outfit', sans-serif; 
    font-weight: 900; 
    font-size: 1.5rem;
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 10px;
    margin-top: -4px;
    
    /* Elegant gradient with animation */
    background: linear-gradient(
        90deg,
        #00f2ff 0%,
        #00f2ff 25%,
        #ff00ff 50%,
        #ff00ff 75%,
        #00f2ff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s linear infinite;
}

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

.circle-logo {
    animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-3px) rotate(14deg);
    }
}

.brand-logo:hover {
    animation: gradientFlow 2s linear infinite;
}

        .hero-section {
            padding: 140px 20px 60px; text-align: center; max-width: 900px;
            margin: 0 auto; position: relative; z-index: 1; min-height: 70vh;
            display: flex; flex-direction: column; justify-content: center;
        }

        /* --- HERO TITLE --- */
        h1.hero-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: clamp(2.5rem, 9vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 15px;
            color: #ffffff;
        }

        /* --- SUBTITLE STYLE --- */
        .hub-subtitle {
            display: block;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(0.8rem, 3vw, 1.2rem);
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: 6px;
            margin-bottom: 12px;
            opacity: 0.9;
            animation: fadeIn 1s ease-in forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 0.9; transform: translateY(0); }
        }

        /* --- BABUBHAIKUNDAN GRADIENT --- */
        .brand-gradient {
            background-image: linear-gradient(
                to right, 
                #00f2ff 0%,
                #ffffff 50%,
                #ff00d4 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            display: inline-block;
            animation: shineFlow 4s linear infinite;
        }

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

        /* --- KUNDAN YADAV --- */
        .identity-typing {
            font-family: 'Courier New', monospace;
            font-size: clamp(1.5rem, 6vw, 2.5rem);
            font-weight: 900;
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2px;
        }

        .bracket {
            color: rgba(255, 255, 255, 0.3);
            font-weight: 900;
            margin: 0 5px;
        }

        .static-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 900 !important;
            letter-spacing: 1px;
            background: linear-gradient(to right, #FFD700, #FF8C00, #FF4500);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
            animation: goldShine 4s linear infinite;
            display: inline-block;
        }

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

        /* --- ROLE TYPING STYLE --- */
        .role-typing {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(0.9rem, 3.5vw, 1.2rem);
            color: var(--text-muted);
            margin-bottom: 45px;
            font-weight: 500;
            height: 25px;
            letter-spacing: 1px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        #role-typewriter {
            color: #d4aeff; 
            font-weight: 600;
            text-shadow: 0 0 10px rgba(189, 0, 255, 0.3);
        }

        .hero-desc {
            color: var(--text-muted); font-size: 1.15rem; line-height: 1.8;
            margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
            opacity: 0; animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .cta-buttons {
            display: flex; gap: 15px; justify-content: center; flex-wrap: wrap;
            opacity: 0; animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .btn-primary {
            padding: 16px 38px;
            background: linear-gradient(135deg, var(--primary), var(--accent-pink));
            border: none; border-radius: 50px; color: white; font-weight: 700; font-size: 1rem;
            text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 25px rgba(123, 0, 255, 0.3);
            position: relative; overflow: hidden;
        }
        .btn-primary::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(123, 0, 255, 0.5); }

        .btn-secondary {
            padding: 16px 38px; background: transparent; border: 2px solid var(--border);
            border-radius: 50px; color: white; font-weight: 700; font-size: 1rem;
            text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative; overflow: hidden;
        }
        .btn-secondary::before {
            content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
            background: rgba(0, 242, 255, 0.1); transition: width 0.4s; z-index: -1;
        }
        .btn-secondary:hover::before { width: 100%; }
        .btn-secondary:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2); }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

        .floating-icons { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; overflow: hidden; }
        .floating-icon { position: absolute; font-size: 2rem; opacity: 0.12; animation: floatIcon 30s infinite ease-in-out; }
        .floating-icon:nth-child(1) { top: 20%; left: 8%; color: var(--accent); font-size: 2.5rem; }
        .floating-icon:nth-child(2) { top: 65%; left: 5%; animation-delay: -5s; color: var(--accent-pink); }
        .floating-icon:nth-child(3) { top: 25%; right: 8%; animation-delay: -10s; color: var(--accent-green); font-size: 2.2rem; }
        .floating-icon:nth-child(4) { top: 70%; right: 6%; animation-delay: -15s; color: var(--accent-orange); }
        .floating-icon:nth-child(5) { top: 45%; left: 3%; animation-delay: -8s; color: var(--accent-gold); font-size: 1.8rem; }
        .floating-icon:nth-child(6) { top: 40%; right: 4%; animation-delay: -12s; color: var(--primary); font-size: 2rem; }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(15deg); }
            50% { transform: translateY(10px) rotate(-10deg); }
            75% { transform: translateY(-12px) rotate(8deg); }
        }

        .scroll-indicator {
            position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 10px;
            opacity: 0; animation: fadeInUp 0.8s ease 1s forwards;
        }
        .scroll-indicator span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
        .scroll-indicator i { font-size: 1.5rem; color: var(--accent); animation: bounce 2s infinite; }

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

        #tools-section { padding-top: 40px; }

        .grid-container {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px; padding: 20px; max-width: 1200px; margin: 0 auto 80px;
            position: relative; z-index: 1;
        }

        .card-skeleton {
            background: var(--glass); border-radius: 24px; padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1); animation: skeletonPulse 1.5s infinite;
        }
        .card-skeleton .skeleton-icon { width: 75px; height: 75px; background: rgba(255,255,255,0.1); border-radius: 22px; margin-bottom: 25px; }
        .card-skeleton .skeleton-title { width: 60%; height: 24px; background: rgba(255,255,255,0.1); border-radius: 8px; margin-bottom: 12px; }
        .card-skeleton .skeleton-desc { width: 100%; height: 60px; background: rgba(255,255,255,0.1); border-radius: 8px; margin-bottom: 20px; }
        .card-skeleton .skeleton-btn { width: 40%; height: 20px; background: rgba(255,255,255,0.1); border-radius: 8px; }

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

        .app-card {
            --card-color: var(--accent);
            background: var(--glass); border-radius: 24px; padding: 30px;
            text-decoration: none; position: relative; overflow: hidden;
            display: flex; flex-direction: column;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            backdrop-filter: blur(12px); opacity: 1; transform: translateY(0);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
        }

        .app-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            border-radius: 24px; padding: 2px;
            background: linear-gradient(135deg, color-mix(in srgb, var(--card-color) 30%, transparent), transparent 50%, color-mix(in srgb, var(--card-color) 20%, transparent));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor; mask-composite: exclude; transition: background 0.5s;
        }
        .app-card:hover::before { background: linear-gradient(135deg, var(--card-color), var(--accent-pink), var(--card-color)); }

        .app-card::after {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, color-mix(in srgb, var(--card-color) 15%, transparent) 0%, transparent 50%);
            opacity: 0.3; transition: opacity 0.5s; pointer-events: none;
        }
        .app-card:hover::after { opacity: 1; }

        .app-card:hover {
            transform: translateY(-9px) scale(1.01); border-color: var(--card-color);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px color-mix(in srgb, var(--card-color) 20%, transparent);
        }

        .card-number {
            position: absolute; top: 20px; right: 20px; width: 38px; height: 38px;
            background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem;
            color: var(--text-muted); transition: all 0.3s;
        }
        .app-card:hover .card-number { background: var(--card-color); color: var(--bg-dark); border-color: var(--card-color); box-shadow: 0 0 20px var(--card-color); }

        .icon-box {
            width: 75px; height: 75px; border-radius: 22px;
            display: flex; align-items: center; justify-content: center;
            font-size: 34px; margin-bottom: 25px; position: relative; overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--card-color);
            background: color-mix(in srgb, var(--card-color) 15%, transparent);
            box-shadow: 0 0 50px color-mix(in srgb, var(--card-color) 30%, transparent), inset 0 0 20px color-mix(in srgb, var(--card-color) 10%, transparent);
            border: 1px solid color-mix(in srgb, var(--card-color) 40%, transparent);
        }
        .app-card:hover .icon-box { transform: scale(1.05) rotate(3deg); box-shadow: 0 0 50px color-mix(in srgb, var(--card-color) 50%, transparent); }
        .icon-box::before { content: ''; position: absolute; width: 100%; height: 100%; background: inherit; filter: blur(25px); opacity: 0.6; }
        .icon-box img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; position: relative; z-index: 1; }
        .icon-box i { position: relative; z-index: 1; }

        .app-card h3 { color: white; font-family: 'Outfit', sans-serif; font-size: 1.5rem; margin-bottom: 12px; position: relative; transition: all 0.3s; }
        .app-card:hover h3 { background: linear-gradient(135deg, #fff, var(--card-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        .app-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 25px; flex-grow: 1; }

        .arrow-btn { font-weight: 700; color: white; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; margin-top: auto; transition: all 0.4s; }
        .arrow-btn i { transition: transform 0.4s; }
        .app-card:hover .arrow-btn { gap: 18px; color: var(--card-color); }
        .app-card:hover .arrow-btn i { transform: translateX(8px); }

        .features-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

        .section-header { text-align: center; margin-bottom: 50px; padding: 0 20px; }

        .section-tag {
            display: inline-block; padding: 10px 22px; background: var(--glass);
            border: 1px solid var(--border); border-radius: 50px; font-size: 0.85rem;
            color: var(--accent); margin-bottom: 18px; text-transform: uppercase;
            letter-spacing: 3px; font-weight: 600;
        }

        .section-title {
            font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800; margin-bottom: 15px;
            background: linear-gradient(135deg, #fff, var(--accent));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }

        .section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }

        .feature-item {
            text-align: center; padding: 35px 25px; background: var(--glass);
            border: 1px solid var(--border); border-radius: 20px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .feature-item:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1); }

        .feature-icon {
            width: 85px; height: 85px; margin: 0 auto 25px; background: var(--glass-light);
            border: 1px solid var(--border); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 2.2rem; transition: all 0.4s;
        }
        .feature-item:hover .feature-icon { transform: scale(1.15) rotate(10deg); border-color: var(--accent); box-shadow: 0 0 40px rgba(0, 242, 255, 0.3); }

        .feature-item h4 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; margin-bottom: 12px; }
        .feature-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

        .stats-section { padding: 60px 20px; max-width: 1000px; margin: 0 auto 0; position: relative; z-index: 1; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 25px; }

        .stat-card {
            background: var(--glass); border: 1px solid var(--border); border-radius: 24px;
            padding: 30px 22px; text-align: center; backdrop-filter: blur(15px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative; overflow: hidden;
        }
        .stat-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: left 0.6s;
        }
        .stat-card:hover::before { left: 100%; }
        .stat-card:hover { transform: translateY(-8px) scale(1.02); border-color: var(--accent); box-shadow: 0 20px 50px rgba(0, 242, 255, 0.15); }

        .stat-number {
            font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 800;
            background: linear-gradient(135deg, var(--accent), var(--accent-pink));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-bottom: 8px; line-height: 1;
        }
        .stat-label { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }

        .drawer-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.75); z-index: 1000; opacity: 0; visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: blur(12px);
        }
        .drawer-overlay.open { opacity: 1; visibility: visible; }

        .drawer-toggle {
            position: fixed; top: 15px; right: 20px; z-index: 1100;
            background: var(--glass); border: 1px solid var(--border);
            width: 50px; height: 50px; border-radius: 16px;
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
            cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(15px);
        }
        .drawer-toggle:hover { border-color: var(--accent); box-shadow: 0 0 30px rgba(0, 242, 255, 0.25); transform: scale(1.05); }
        .drawer-toggle span { height: 3px; width: 24px; background: white; border-radius: 4px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        .drawer-toggle.active { background: var(--accent); border-color: var(--accent); }
        .drawer-toggle.active span { background: var(--bg-dark); }
        .drawer-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .drawer-toggle.active span:nth-child(2) { opacity: 0; transform: scale(0); }
        .drawer-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        .drawer-nav {
            position: fixed; top: 0; right: 0; width: 340px; max-width: 90%; height: 100%;
            background: var(--drawer-bg-color); z-index: 1050; transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
            display: flex; flex-direction: column;
            box-shadow: -15px 0 55px rgba(0,0,0,0.6); border-left: 1px solid var(--border);
        }
        .drawer-nav.open { transform: translateX(0); }

        .drawer-header { padding: 30px; border-bottom: 1px solid var(--border); }
        .drawer-logo { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
        .drawer-logo i { color: var(--accent); }

        .drawer-nav ul { list-style: none; padding: 30px; flex: 1; }
        .drawer-nav li { margin: 25px 0; opacity: 0; transform: translateX(40px); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        .drawer-nav.open li { opacity: 1; transform: translateX(0); }
        .drawer-nav.open li:nth-child(1) { transition-delay: 0.1s; }
        .drawer-nav.open li:nth-child(2) { transition-delay: 0.15s; }
        .drawer-nav.open li:nth-child(3) { transition-delay: 0.2s; }
        .drawer-nav.open li:nth-child(4) { transition-delay: 0.25s; }

        .drawer-nav a {
            font-size: 1.3rem; font-weight: 700; color: var(--drawer-text-color);
            text-decoration: none; font-family: 'Outfit', sans-serif; transition: all 0.4s;
            display: flex; align-items: center; gap: 15px; padding: 12px 0;
        }
        .drawer-nav a:hover { color: var(--drawer-primary-color); transform: translateX(12px); }
        .drawer-nav a i {
            font-size: 1.1rem; width: 35px; height: 35px;
            display: flex; align-items: center; justify-content: center;
            background: var(--glass); border-radius: 10px; transition: all 0.3s;
        }
        .drawer-nav a:hover i { background: var(--drawer-primary-color); color: var(--bg-dark); }

        .drawer-social { padding: 30px; border-top: 1px solid var(--border); margin-top: auto; }
        .drawer-social-title { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 18px; font-weight: 600; }
        .drawer-social-links { display: flex; gap: 12px; }
        .drawer-social-links a {
            width: 48px; height: 48px; background: var(--glass); border: 1px solid var(--border);
            border-radius: 14px; display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.2rem; transition: all 0.4s; padding: 0;
        }
        .drawer-social-links a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-5px) rotate(5deg); box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2); }

        .scroll-top {
            position: fixed; bottom: 30px; right: 30px; width: 55px; height: 55px;
            background: var(--glass); border: 1px solid var(--border); border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.3rem; cursor: pointer; z-index: 99;
            opacity: 0; visibility: hidden; transform: translateY(30px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: blur(15px);
        }
        .scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .scroll-top:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0, 242, 255, 0.25); }

        .footer-wrapper {
            text-align: center; padding: 50px 20px 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            position: relative; z-index: 10;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
        }

        .footer-logo {
            font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800;
            margin-bottom: 15px; display: inline-flex; align-items: center; gap: 12px;
        }
        .footer-logo i { color: var(--accent); animation: spin 10s linear infinite; }

        .footer-links { display: flex; justify-content: center; gap: 35px; margin: 25px 0; flex-wrap: wrap; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: all 0.3s; position: relative; }
        .footer-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
        .footer-links a:hover { color: var(--accent); }
        .footer-links a:hover::after { width: 100%; }

        .bawal-footer-wrapper { text-align: center; margin-top: 30px; margin-bottom: 9px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 10; }

        .bawal-footer-link {
            display: inline-flex; align-items: center; gap: 10px; background: #1A1A1A;
            padding: 12px 22px; border-radius: 30px; text-decoration: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.4); border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .bawal-footer-link:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px rgba(0, 255, 200, 0.4), 0 0 40px rgba(0, 255, 200, 0.2); }
        .bawal-footer-link .dev-text { color: #00ffc8; font-weight: bold; font-size: 15px; text-shadow: 0 0 8px rgba(0, 255, 200, 0.6); }
        .bawal-footer-link .name-text { display: flex; align-items: center; gap: 6px; color: #FFD700; font-size: 15px; font-weight: bold; text-shadow: 0 0 8px rgba(255, 215, 0, 0.6); }
        .bawal-footer-link img { width: 24px; height: 24px; border-radius: 50%; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
        .bawal-footer-link:hover .telegram-icon { transform: rotate(360deg); }
        .bawal-footer-link:hover .profile-pic { transform: scale(1.2) rotate(-15deg); }

        .footer-copy { color: #555; font-size: 0.85rem; margin-top: 25px; }
        .footer-copy span { color: var(--accent-pink); }

        .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; }

        .cards-error { text-align: center; padding: 60px 20px; color: var(--text-muted); }
        .cards-error i { font-size: 4rem; color: var(--accent-pink); margin-bottom: 20px; }
        .cards-error h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; margin-bottom: 10px; color: white; }
        .retry-btn { margin-top: 20px; padding: 12px 30px; background: var(--glass); border: 1px solid var(--accent); border-radius: 50px; color: var(--accent); font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .retry-btn:hover { background: var(--accent); color: var(--bg-dark); }

        @media (max-width: 768px) {
            .hero-section { padding: 120px 15px 40px; min-height: auto; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            /* 🚀 GPU Acceleration for smooth animations */
    .hero-section, .scroll-top, .btn-primary, .btn-secondary,
    .stat-card, .feature-item, .footer-wrapper {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
    
    /* iOS smooth scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
            .grid-container { padding: 15px; gap: 20px; }
            .app-card { padding: 25px; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
            .floating-icons { display: none; }
            .scroll-indicator { display: none; }
            
            .drawer-toggle {
                width: 40px !important;
                height: 40px !important;
                top: 8px !important;
                right: 10px !important;
                border-radius: 10px !important;
            }

            .drawer-toggle span {
                width: 20px !important;
                height: 2px !important;
            }

            .scroll-top { bottom: 20px; right: 20px; width: 50px; height: 50px; }
            
            .circle-logo {
                width: 25px;
                height: 25px;
            }
            
            .circle-logo-loading {
                width: 40px;
                height: 40px;
            }
            
            .brand-logo {
                font-size: 1.2rem;
            }
        }
        
      
      
      /* ===== INSTALL BUTTON - Compact Size ===== */
.install-btn {
    position: fixed;
    top: 17px;
    right: 100px;
    height: 38px;
    padding: 0 14px;
    background: linear-gradient(
        135deg,
        rgba(123, 0, 255, 0.3),
        rgba(255, 0, 212, 0.3)
    );
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow:
        0 8px 30px rgba(123, 0, 255, 0.22),
        inset 0 0 10px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(13px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Normal install button hover */
.install-btn:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 12px 35px rgba(123, 0, 255, 0.35),
        inset 0 0 15px rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

/* Already installed state (green theme) */
.install-btn.installed {
    background: linear-gradient(
        135deg,
        rgba(0, 200, 83, 0.3),
        rgba(76, 175, 80, 0.3)
    );
    box-shadow:
        0 8px 30px rgba(0, 200, 83, 0.22),
        inset 0 0 10px rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 230, 118, 0.3);
    cursor: default;
}

/* Already installed hover - subtle only */
.install-btn.installed:hover {
    transform: none;
    box-shadow:
        0 8px 30px rgba(0, 200, 83, 0.25),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 230, 118, 0.4);
}

/* Pulse animation for normal install button only */
@keyframes subtlePulse {
    0%, 100% { 
        box-shadow: 
            0 8px 30px rgba(123, 0, 255, 0.22),
            inset 0 0 10px rgba(255, 255, 255, 0.08);
    }
    50% { 
        box-shadow: 
            0 8px 35px rgba(123, 0, 255, 0.3),
            inset 0 0 12px rgba(255, 255, 255, 0.1);
    }
}

.install-btn.pulse:not(.installed) {
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Green pulse for installed state (optional) */
@keyframes greenPulse {
    0%, 100% { 
        box-shadow: 
            0 8px 30px rgba(0, 200, 83, 0.22),
            inset 0 0 10px rgba(255, 255, 255, 0.08);
    }
    50% { 
        box-shadow: 
            0 8px 35px rgba(0, 230, 118, 0.25),
            inset 0 0 12px rgba(255, 255, 255, 0.1);
    }
}

.install-btn.installed.pulse {
    animation: greenPulse 4s ease-in-out infinite;
}

/* Mobile View */
@media (max-width: 768px) {
    .install-btn {
        top: 12px;
        right: 70px;
        height: 30px;
        padding: 0 11px;
        font-size: 0.6rem;
        border-radius: 18px;
    }
    
    .install-btn.installed {
        font-size: 0.55rem;
        padding: 0 9px;
    }
}

/* Desktop View */
@media (min-width: 769px) {
    .install-btn {
        top: 20px;
        right: 105px;
        height: 40px;
        padding: 0 15px;
        font-size: 0.8rem;
    }
    
    .install-btn.installed {
        font-size: 0.75rem;
        padding: 0 13px;
    }
}

/* Small text adjustment for "Already Installed" */
.install-btn.installed {
    letter-spacing: 0.2px;
}  




        

        @media (max-width: 480px) {
            .stat-number { font-size: 2.2rem; }
            .bawal-footer-link { padding: 10px 18px; gap: 8px; }
            .bawal-footer-link .dev-text, .bawal-footer-link .name-text { font-size: 13px; }
        }

        ::selection { background: var(--accent); color: var(--bg-dark); }
        /* ===== LOW-END DEVICE OPTIMIZATION ===== */
@media (prefers-reduced-motion: reduce) {
    /* Heavy elements hide karo */
    .orb, #particles-canvas, .floating-icon, .noise-overlay {
        display: none !important;
    }
    
    /* Shadow reduce karo */
    .app-card, .stat-card, .feature-item {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    /* Transitions instant */
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
    