
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0a0e17;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        #hero {
            /*
            background: linear-gradient(rgba(10, 15, 30, 0.9), rgba(5, 10, 20, 0.95)), 
                        radial-gradient(circle at 20% 80%, rgba(30, 50, 100, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(70, 30, 100, 0.2) 0%, transparent 50%);
            
             background: linear-gradient(rgba(100, 75, 9, 0.9), rgba(217, 163, 19, 0.95)), 
                        radial-gradient(circle at 20% 80%, rgba(30, 50, 100, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(70, 30, 100, 0.2) 0%, transparent 50%);
            */
                        
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(217, 163, 19, 0.95)), 
                        radial-gradient(circle at 20% 80%, rgba(30, 50, 100, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(70, 30, 100, 0.2) 0%, transparent 50%);
                        
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 25% 25%, rgba(74, 108, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(155, 81, 224, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .ai-pulse {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74, 108, 247, 0.2) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 4s infinite;
            z-index: 1;
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0.7;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.3;
            }
            100% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0.7;
            }
        }

        .small-business-animations {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .business-icon {
            position: absolute;
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            animation: float 6s infinite ease-in-out;
        }

        .business-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .business-icon:nth-child(2) { top: 70%; left: 15%; animation-delay: 1s; }
        .business-icon:nth-child(3) { top: 30%; left: 85%; animation-delay: 2s; }
        .business-icon:nth-child(4) { top: 80%; left: 80%; animation-delay: 3s; }
        .business-icon:nth-child(5) { top: 60%; left: 5%; animation-delay: 4s; }
        .business-icon:nth-child(6) { top: 10%; left: 70%; animation-delay: 5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .growth-chart {
            position: absolute;
            bottom: 30%;
            right: 10%;
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 100px;
        }
/*
        .chart-bar {
            width: 12px;
            background: linear-gradient(to top, #4a6cf7, #9b51e0);
            border-radius: 4px 4px 0 0;
            animation: grow 2s ease-out forwards;
            opacity: 0;
        }
 */       
           .chart-bar {
            width: 12px;
            background: linear-gradient(to top, #644b09, #d9a313);
            border-radius: 4px 4px 0 0;
            animation: grow 2s ease-out forwards;
            opacity: 0;
        }

        @keyframes grow {
            from {
                height: 0;
                opacity: 0;
            }
            to {
                height: var(--target-height);
                opacity: 0.7;
            }
        }

        .digital-transformation {
            position: absolute;
            top: 40%;
            left: 10%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .transformation-item {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            animation: pulse 3s infinite;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 0;
            position: relative;
            z-index: 2;
        }

        #hero h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }


        #hero h2 .empowering {
            color: #644b09; /* Keep "Empowering" white */
        }

        #hero h2 .small-businesses {
            color: #644b09; /* Keep "Small Businesses" white */
        }

        #hero h2 .thrive-digitally {
            /* background: linear-gradient(90deg, #4a6cf7, #9b51e0, #00d4ff, #4a6cf7); */
            background: linear-gradient(90deg, #644b09, #d9a313, #644b09, #644b09);
            background-size: 300% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradient-shift 4s ease infinite;
            text-shadow: 0 0 10px rgba(74, 108, 247, 0.5);
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .hero-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #4a6cf7, #9b51e0);
            margin: 1.5rem auto;
            border: none;
        }
        /*

        #hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: color-glow 6s infinite alternate;
            text-shadow: 0 0 8px currentColor;
        }


        @keyframes color-glow {
            0% {
                color: #a5b4fc;
                text-shadow: 0 0 8px #a5b4fc, 0 0 15px #818cf8;
            }
            25% {
                color: #93c5fd;
                text-shadow: 0 0 8px #93c5fd, 0 0 15px #60a5fa;
            }
            50% {
                color: #86efac;
                text-shadow: 0 0 8px #86efac, 0 0 15px #4ade80;
            }
            75% {
                color: #fbbf24;
                text-shadow: 0 0 8px #fbbf24, 0 0 15px #f59e0b;
            }
            100% {
                color: #f87171;
                text-shadow: 0 0 8px #f87171, 0 0 15px #ef4444;
            }
        }
*/

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin: 2rem 0 1rem 0;
            flex-wrap: wrap;
        }

        .btn-hero {
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-hero-primary {
            background: linear-gradient(90deg, #fff, #644b09);
            color: black;
            border: none;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.4);
        }

        .btn-hero-secondary {
           background: linear-gradient(90deg, #fff, #644b09);
            color: black;
            border: none;
        }

        .btn-hero-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.4);
        }

        .web3-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .web3-text {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #fff, #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .blockchain-elements {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .blockchain-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: float 3s infinite ease-in-out;
        }

        .blockchain-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .blockchain-label {
            font-size: 0.8rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            #hero h2 {
                font-size: 1.8rem;
            }
            
            #hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-hero {
                width: 200px;
                justify-content: center;
            }
            
            .blockchain-elements {
                gap: 1rem;
            }
            
            .blockchain-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
  