       :root {
            --primary: #721b7b;
            --secondary: #00579d;
            --accent-orange: #fa5716;
            --accent-red: #DC3545;
            --white: #FFFFFF;
            --alabaster: #f8f8f8;
            --text-dark: #333;
            --text-light: #666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s, visibility 0.5s;
        }
        
        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: var(--white);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(45deg, #f8f8f8 25%, transparent 25%),
                        linear-gradient(-45deg, #f8f8f8 25%, transparent 25%),
                        linear-gradient(45deg, transparent 75%, #f8f8f8 75%),
                        linear-gradient(-45deg, transparent 75%, #f8f8f8 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            animation: bgMove 20s linear infinite;
            opacity: 0.03;
        }
        
        @keyframes bgMove {
            0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
            100% { background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px; }
        }
        
        /* Floating Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        header.scrolled {
            padding: 15px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
     .logo {
            display: flex;
            align-items: center;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .logo::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
            animation: logoGlow 3s infinite;
        }
        
        @keyframes logoGlow {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            display: inline-block;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent-orange));
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .connect-wallet-btn {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .connect-wallet-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .connect-wallet-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .connect-wallet-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(114, 27, 123, 0.3);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1e3f 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        /* .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(114, 27, 123, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 87, 157, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        } */
            .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #5f1b69, #f6f6f6);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(114, 27, 123, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 87, 157, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(50px); }
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            width: 100%;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            flex: 1;
            max-width: 600px;
            position: relative;
            z-index: 2;
        }
        
        .hero-label {
            display: inline-block;
            background: rgba(114, 27, 123, 0.2);
            border: 1px solid rgba(114, 27, 123, 0.5);
            color: var(--accent-orange);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero h1 {
            font-size: 56px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--accent-orange), var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .typing-text {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            min-height: 30px;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .cursor {
            display: inline-block;
            width: 3px;
            height: 20px;
            background-color: var(--accent-orange);
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease 0.6s both;
        }
        
        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
            color: var(--white);
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .hero-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .hero-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(250, 87, 22, 0.4);
        }
        
        .hero-btn-secondary {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
        }
        
        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-orange);
        }
        
        /* Globe Container */
        .globe-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            height: 600px;
        }
        
        .globe-wrapper {
            position: relative;
            width: 600px;
            height: 600px;
        }
        
        #globeViz {
            width: 100%;
            height: 100%;
        }
        
        .tech-badge {
            position: absolute;
            background: rgba(10, 14, 39, 0.9);
            border: 1px solid rgba(250, 87, 22, 0.5);
            padding: 10px 15px;
            border-radius: 10px;
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            backdrop-filter: blur(10px);
            animation: fadeIn 1s ease both;
        }
        
        /* .tech-badge-1 {
            top: 10%;
            right: -20%;
            animation-delay: 1s;
        }
        
        .tech-badge-2 {
            bottom: 15%;
            right: -15%;
            animation-delay: 1.5s;
        }
        
        .tech-badge-3 {
            top: 30%;
            left: -25%;
            animation-delay: 2s;
        }
         */
        .tech-badge-1 {
            top: 10%;
            right: 7%;
            animation-delay: 1s;
        }
        
        .tech-badge-2 {
            bottom: 15%;
            right: -5%;
            animation-delay: 1.5s;
        }
        
        .tech-badge-3 {
            top: 30%;
            left: 5%;
            animation-delay: 2s;
        }


        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            animation: fadeInUp 1s ease 0.8s both;
        }
        
        .hero-stat {
            text-align: left;
        }
        
        .hero-stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--accent-orange);
            margin-bottom: 5px;
        }
        
        .hero-stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            animation: fadeInUp 0.6s ease;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent-orange));
            animation: expandWidth 1s ease;
        }

        .section-title02 {
            font-size: 36px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: white;
            background-clip: text;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            animation: fadeInUp 0.6s ease;
        }
        
        .section-title02::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent-orange));
            animation: expandWidth 1s ease;
        }
        
        @keyframes expandWidth {
            from { width: 0; }
            to { width: 80px; }
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: box-shadow 0.2s ease, transform 0.2s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(114, 27, 123, 0.12);
        }
        
        .product-card:active {
            transform: translateY(-2px);
        }
        
        .product-icon {
            font-size: 48px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            transition: transform 0.3s;
        }
        
        .product-card:hover .product-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .product-card h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            transition: color 0.3s;
        }
        
        .product-card:hover h3 {
            color: var(--secondary);
        }
        
        .product-card p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .product-link {
            color: var(--secondary);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
            pointer-events: none;
        }
        
        .product-link:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .product-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .product-link:hover i {
            transform: translateX(5px);
        }
        
        /* Services Section */
        .services-container {
            background: linear-gradient(135deg, var(--alabaster) 0%, rgba(0, 87, 157, 0.05) 100%);
            position: relative;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            height: 100%;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-30px);
        }
        
        .service-card.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .service-card:nth-child(even) {
            transform: translateX(30px);
        }
        
        .service-card:nth-child(even).visible {
            transform: translateX(0);
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent-orange), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }
        
        .service-card:hover::after {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 87, 157, 0.2);
        }
        
        .service-card h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .service-card h3 i {
            margin-right: 10px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s;
        }
        
        .service-card:hover h3 i {
            transform: rotate(360deg);
        }
        
        .service-card ul {
            list-style: none;
            padding-left: 15px;
        }
        
        .service-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
            transition: transform 0.3s;
        }
        
        .service-card ul li:hover {
            transform: translateX(5px);
        }
        
        .service-card ul li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--secondary);
            transition: transform 0.3s;
        }
        
        .service-card ul li:hover::before {
            transform: rotate(90deg);
        }
        
        /* Stats Counter */
        
        .stats-section {
            padding: 60px 0;
            /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
            background: white;
            color: var(--white);
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .stat-item {
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.6s;
        }
        
        .stat-item.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            opacity: 0.9;
        }
        
        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
            position: relative;
            opacity: 0;
            transform: rotateY(90deg);
            transform-style: preserve-3d;
        }
        
        .project-card.visible {
            opacity: 1;
            transform: rotateY(0);
        }
        
        .project-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(114, 27, 123, 0.2);
        }
        
        .project-image {
            height: 200px;
            background: linear-gradient(135deg, var(--alabaster), rgba(114, 27, 123, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 18px;
            position: relative;
            overflow: hidden;
        }
        
        .project-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.6s;
            opacity: 0;
        }
        
        .project-card:hover .project-image::before {
            animation: shimmer 0.6s;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
        }
        
        .project-content {
            padding: 25px;
        }
        
        .project-content h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            transition: color 0.3s;
        }
        
        .project-card:hover .project-content h3 {
            color: var(--secondary);
        }
        
        .project-content p {
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .project-link {
            color: var(--secondary);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .project-link:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .project-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .project-link:hover i {
            transform: translateX(5px);
        }
        
        /* Blog Section */
        .blog-container {
            background: linear-gradient(135deg, var(--alabaster) 0%, rgba(250, 87, 22, 0.05) 100%);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
            position: relative;
            opacity: 0;
            transform: scale(0.8);
        }
        
        .blog-card.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .blog-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(250, 87, 22, 0.2);
        }
        
        .blog-image {
            height: 200px;
            background: linear-gradient(135deg, var(--alabaster), rgba(250, 87, 22, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 18px;
            position: relative;
            overflow: hidden;
        }
        
        .blog-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3));
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .blog-card:hover .blog-image::after {
            opacity: 1;
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .blog-content h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            transition: color 0.3s;
        }
        
        .blog-card:hover .blog-content h3 {
            color: var(--accent-orange);
        }
        
        .blog-content p {
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .blog-link {
            color: var(--secondary);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .blog-link:hover {
            color: var(--accent-orange);
            transform: translateX(5px);
        }
        
        .blog-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .blog-link:hover i {
            transform: translateX(5px);
        }
        
        /* Job Section */
        .job-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .job-item {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-50px);
        }
        
        .job-item.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .job-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, var(--primary), var(--accent-orange));
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.3s;
        }
        
        .job-item:hover::before {
            transform: scaleY(1);
        }
        
        .job-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(114, 27, 123, 0.15);
        }
        
        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .job-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary);
            transition: color 0.3s;
        }
        
        .job-item:hover .job-title {
            color: var(--secondary);
        }
        
        .job-type {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .job-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .job-meta span {
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }
        
        .job-meta span:hover {
            color: var(--primary);
        }
        
        .job-meta i {
            margin-right: 5px;
        }
        
        .job-description {
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .apply-btn {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .apply-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .apply-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(250, 87, 22, 0.3);
        }
        
        /* About Section */
        .about-container {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .about-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
            background-size: 60px 60px;
            animation: bgMove 20s linear infinite;
            opacity: 0.5;
        }
        
        .about-content {
            display: flex;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
            opacity: 0;
            transform: translateX(-50px);
        }
        
        .about-text.visible {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s;
        }
        
        .about-text h3 {
            font-size: 28px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .about-text p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .about-text.visible p {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s;
        }
        
        .about-text.visible p:nth-child(2) { transition-delay: 0.2s; }
        .about-text.visible p:nth-child(3) { transition-delay: 0.4s; }
        .about-text.visible p:nth-child(4) { transition-delay: 0.6s; }
        
        .about-image {
            flex: 1;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            opacity: 0;
            transform: translateX(50px);
        }
        
        .about-image.visible {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s 0.3s;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        
        .about-image:hover img {
            transform: scale(1.1);
        }
        
        /* Unified Showcase Section */
        .showcase-section {
            background: linear-gradient(135deg, var(--alabaster) 0%, rgba(114, 27, 123, 0.08) 100%);
        }

        .showcase-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .eyebrow-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--secondary);
            display: inline-block;
            margin-bottom: 15px;
        }

        .showcase-subtitle {
            color: var(--text-light);
            font-size: 18px;
            margin-top: 20px;
            line-height: 1.6;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .card-panel {
            background: var(--white);
            border-radius: 25px;
            padding: 35px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(18, 13, 60, 0.12);
            border: 1px solid rgba(114, 27, 123, 0.05);
            transition: box-shadow 0.2s ease;
        }

        .card-panel:hover {
            box-shadow: 0 20px 45px rgba(18, 13, 60, 0.18);
        }

        .panel-heading {
            margin-bottom: 25px;
        }

        .panel-heading h3 {
            font-size: 26px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .panel-heading p {
            color: var(--text-light);
            margin: 0;
        }

        .products-panel {
            grid-row: span 2;
        }

        .media-panel .video-grid {
            margin-top: 30px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .video-card {
            background: var(--alabaster);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 28px rgba(0,0,0,0.07);
            transition: box-shadow 0.2s ease;
        }

        .video-card:hover {
            box-shadow: 0 16px 32px rgba(114, 27, 123, 0.12);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: var(--white);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-info {
            padding: 20px 25px 25px;
            background: var(--white);
        }

        .video-info h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .partners-panel {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .partners-panel .partners-image {
            width: 100%;
            border-radius: 18px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
            cursor: pointer;
        }

        body.lightbox-open {
            overflow: hidden;
        }

        .image-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 13, 60, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease;
            z-index: 2000;
        }

        .image-lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .image-lightbox img {
            max-width: min(90vw, 1200px);
            max-height: 85vh;
            border-radius: 18px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 25px;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
        }

        .lightbox-close:focus {
            outline: 2px solid rgba(255, 255, 255, 0.6);
            outline-offset: 4px;
        }

        @media (max-width: 992px) {
            .showcase-grid {
                grid-template-columns: 1fr;
            }
            
            .products-panel {
                grid-row: auto;
            }
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--alabaster) 0%, rgba(114, 27, 123, 0.05) 100%);
            color: var(--text-dark);
            position: relative;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .cta-content h2.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }
        
        .cta-content p {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--text-light);
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .cta-content p.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease 0.2s;
        }
        
        .cta-form {
            background: var(--white);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            border: 1px solid rgba(114, 27, 123, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .cta-form.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease 0.4s;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            position: relative;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(114, 27, 123, 0.2);
            border-radius: 10px;
            background: var(--alabaster);
            color: var(--text-dark);
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-light);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-orange);
            background: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(250, 87, 22, 0.3);
        }
        
        .form-group select option {
            background: var(--white);
            color: var(--text-dark);
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
            color: var(--white);
            padding: 18px 40px;
            border: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(250, 87, 22, 0.4);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
            background-size: 100px 100px;
            animation: bgMove 20s linear infinite;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column {
            opacity: 0;
            transform: translateY(30px);
        }
        
        .footer-column.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s;
        }
        
        .footer-column:nth-child(1) { transition-delay: 0.1s; }
        .footer-column:nth-child(2) { transition-delay: 0.2s; }
        .footer-column:nth-child(3) { transition-delay: 0.3s; }
        .footer-column:nth-child(4) { transition-delay: 0.4s; }
        .footer-column:nth-child(5) { transition-delay: 0.5s; }
        .footer-column:nth-child(6) { transition-delay: 0.6s; }
        .footer-column:nth-child(7) { transition-delay: 0.7s; }
        .footer-column:nth-child(8) { transition-delay: 0.8s; }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-orange);
            animation: expandWidth 1s ease;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            opacity: 0;
            transform: translateX(-20px);
        }
        
        .footer-column.visible ul li {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.3s;
        }
        
        .footer-column.visible ul li:nth-child(1) { transition-delay: 0.1s; }
        .footer-column.visible ul li:nth-child(2) { transition-delay: 0.2s; }
        .footer-column.visible ul li:nth-child(3) { transition-delay: 0.3s; }
        .footer-column.visible ul li:nth-child(4) { transition-delay: 0.4s; }
        .footer-column.visible ul li:nth-child(5) { transition-delay: 0.5s; }
        .footer-column.visible ul li:nth-child(6) { transition-delay: 0.6s; }
        .footer-column.visible ul li:nth-child(7) { transition-delay: 0.7s; }
        .footer-column.visible ul li:nth-child(8) { transition-delay: 0.8s; }

        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent-orange);
            transform: translateX(5px);
        }
        
        .footer-column p {
            margin-bottom: 10px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .social-links a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background-color: var(--accent-orange);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s;
        }
        
        .social-links a:hover::before {
            width: 100%;
            height: 100%;
        }
        
        .social-links a:hover {
            transform: translateY(-5px) rotate(360deg);
        }
        
        .social-links a i {
            position: relative;
            z-index: 1;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            position: relative;
            z-index: 1;
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--primary);
            margin: 5px 0;
            transition: all 0.3s;
            position: relative;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                flex: 100%;
            }
            
            .hero-container {
                flex-direction: column;
                padding: 40px 30px;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
                margin-bottom: 40px;
            }
            
            .hero h1 {
                font-size: 42px;
            }
            
            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .globe-container {
                height: 500px;
            }
            
            .globe-wrapper {
                width: 500px;
                height: 500px;
            }
            
            .tech-badge-1 {
                right: -10%;
            }
            
            .tech-badge-2 {
                right: -10%;
            }
            
            .tech-badge-3 {
                left: -10%;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 60px 0 40px;
            }
            
            .hero-container {
                padding: 20px;
            }
            
            .hero-content {
                margin-bottom: 30px;
            }
            
            .hero-label {
                font-size: 12px;
                padding: 6px 15px;
            }
            
            .hero h1 {
                font-size: 32px;
                margin-bottom: 15px;
            }
            
            .typing-text {
                font-size: 16px;
                margin-bottom: 30px;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-btn {
                width: 100%;
                justify-content: center;
                padding: 12px 25px;
                font-size: 14px;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
                margin-top: 30px;
            }
            
            .hero-stat {
                flex: 1 1 calc(50% - 10px);
                text-align: center;
                min-width: 120px;
            }
            
            .hero-stat-number {
                font-size: 28px;
            }
            
            .hero-stat-label {
                font-size: 12px;
            }
            
            .globe-container {
                height: 400px;
                margin-bottom: 20px;
            }
            
            .globe-wrapper {
                width: 100%;
                max-width: 400px;
                height: 400px;
            }
            
            .tech-badge {
                font-size: 12px;
                padding: 8px 12px;
            }
            
            .tech-badge-1 {
                top: 5%;
                right: 20%;
            }
            
            .tech-badge-2 {
                bottom: 5%;
                right: 20%;
            }
            
            .tech-badge-3 {
                top: 50%;
                left: 20%;
                transform: translateY(-50%);
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--white);
                transition: left 0.3s;
                z-index: 99;
                overflow-y: auto;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin: 15px 0;
                opacity: 0;
                transform: translateX(-20px);
            }
            
            nav.active ul li {
                opacity: 1;
                transform: translateX(0);
                transition: all 0.3s;
            }
            
            nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
            nav.active ul li:nth-child(2) { transition-delay: 0.2s; }
            nav.active ul li:nth-child(3) { transition-delay: 0.3s; }
            nav.active ul li:nth-child(4) { transition-delay: 0.4s; }
            nav.active ul li:nth-child(5) { transition-delay: 0.5s; }
            nav.active ul li:nth-child(6) { transition-delay: 0.6s; }
            nav.active ul li:nth-child(7) { transition-delay: 0.7s; }
            nav.active ul li:nth-child(8) { transition-delay: 0.8s; }
            nav.active ul li:nth-child(9) { transition-delay: 0.9s; }
            nav.active ul li:nth-child(10) { transition-delay: 1.0s; }
            
            .connect-wallet-btn {
                margin-top: 20px;
                width: 100%;
            }
            
            .section-title {
                font-size: 28px;
            }
            .section-title02 {
                font-size: 28px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .product-card {
                text-align: left;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cta-content h2 {
                font-size: 36px;
            }

            .cta-content p {
                font-size: 18px;
            }

            .cta-form {
                padding: 30px 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .cta-button {
                width: 100%;
                padding: 16px 30px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .typing-text {
                font-size: 14px;
            }
            
            .hero-stat-number {
                font-size: 24px;
            }
            
            .hero-stat-label {
                font-size: 11px;
            }
            
            .globe-container {
                height: 320px;
            }
            
            .globe-wrapper {
                max-width: 320px;
                height: 320px;
            }
            
            .tech-badge {
                font-size: 10px;
                padding: 6px 10px;
            }
            
            .tech-badge i {
                font-size: 10px;
            }

            .cta-section {
                padding: 40px 0;
            }

            .cta-content h2 {
                font-size: 28px;
                margin-bottom: 15px;
            }

            .cta-content p {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .cta-form {
                padding: 25px 20px;
                margin-top: 30px;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 12px 15px;
                font-size: 14px;
            }

            .cta-button {
                padding: 14px 25px;
                font-size: 15px;
            }
        }
        
        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent-orange), var(--secondary));
            z-index: 10000;
            transition: width 0.1s;
        }
