
        :root {
            --primary: #00e5ff;
            --secondary: #9d4edd;
            --accent: #ff6d00;
            --success: #00ff9d;
            --dark: #0a0a1a;
            --darker: #050510;
            --light: #f0f8ff;
            --gray: #2a2a3e;
            --card-bg: rgba(20, 20, 40, 0.7);
            --glow: 0 0 15px var(--primary);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(157, 78, 221, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 20%);
        }

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
            background-color: rgba(10, 10, 26, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 229, 255, 0.2);
        }

        header.scrolled {
            padding: 15px 0;
            box-shadow: var(--glow);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        .logo i {
            margin-right: 10px;
            font-size: 2rem;
            animation: pulse 2s infinite;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-cta {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--dark);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            margin-left: 2rem;
            transition: var(--transition);
            box-shadow: var(--glow);
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--primary);
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(rgba(5, 5, 16, 0.6), rgba(5, 5, 16, 0.6)), 
                        url('https://www.securities.io/wp-content/uploads/2024/03/DALL%C2%B7E-2024-03-21-09.08.33-A-highly-detailed-and-realistic-image-showing-an-advanced-robot-seated-at-a-modern-sleek-desk-surrounded-by-multiple-screens-displaying-complex-algor.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.8;
        }

        .hero-content {
            max-width: 700px;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 5s infinite alternate;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #c8d6ff;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-top: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            font-family: 'Orbitron', sans-serif;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--dark);
            box-shadow: var(--glow);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 25px var(--primary);
        }

        .btn-secondary {
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-secondary:hover {
            background-color: var(--primary);
            color: var(--dark);
            box-shadow: var(--glow);
        }

        /* Sections */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Team Section - Scrollable */
        .team-section {
            background-color: rgba(10, 10, 26, 0.7);
            position: relative;
            overflow: hidden;
        }

        .team-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-slider-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .team-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
            padding: 0 10px;
        }

        .team-card {
            background-color: var(--card-bg);
            padding: 35px;
            border-radius: 20px;
            min-width: 350px;
            max-width: 380px;
            border: 2px solid var(--primary);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
            flex-shrink: 0;
            transition: var(--transition);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 229, 255, 0.3);
        }

        .team-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 3.5rem;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .team-photo:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            opacity: 0.8;
        }

        .team-photo i {
            position: relative;
            z-index: 1;
        }

        .photo-1 { background: linear-gradient(45deg, #00e5ff, #9d4edd); }
        .photo-2 { background: linear-gradient(45deg, #ff6d00, #00ff9d); }
        .photo-3 { background: linear-gradient(45deg, #9d4edd, #00e5ff); }
        .photo-4 { background: linear-gradient(45deg, #00ff9d, #ff6d00); }
        .photo-5 { background: linear-gradient(45deg, #ff6d00, #9d4edd); }
        .photo-6 { background: linear-gradient(45deg, #00e5ff, #00ff9d); }

        .team-card h3 {
            font-size: 1.8rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 5px;
        }

        .team-card h4 {
            font-size: 1.1rem;
            color: var(--accent);
            text-align: center;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .team-card p {
            color: #c8d6ff;
            margin-bottom: 20px;
            text-align: center;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .team-skills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }

        .skill-tag {
            background: rgba(0, 229, 255, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(0, 229, 255, 0.3);
        }

        .skill-tag.ai { background: rgba(157, 78, 221, 0.1); color: var(--secondary); border-color: rgba(157, 78, 221, 0.3); }
        .skill-tag.blockchain { background: rgba(0, 229, 255, 0.1); color: var(--primary); border-color: rgba(0, 229, 255, 0.3); }
        .skill-tag.security { background: rgba(255, 109, 0, 0.1); color: var(--accent); border-color: rgba(255, 109, 0, 0.3); }
        .skill-tag.finance { background: rgba(0, 255, 157, 0.1); color: var(--success); border-color: rgba(0, 255, 157, 0.3); }

        /* Slider Controls */
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
        }

        .slider-btn {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--dark);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            box-shadow: var(--glow);
        }

        .slider-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 25px var(--primary);
        }

        .slider-dots {
            display: flex;
            gap: 12px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            transition: var(--transition);
            border: 1px solid rgba(0, 229, 255, 0.1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 229, 255, 0.2);
            border-color: var(--primary);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .service-list {
            list-style: none;
            margin-top: 15px;
        }

        .service-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .service-list li:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        /* Why SDU Section */
        .why-sdu-section {
            background: linear-gradient(rgba(5, 5, 16, 0.9), rgba(5, 5, 16, 0.9)), 
                        url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .why-card {
            background-color: rgba(20, 20, 40, 0.8);
            border-radius: 15px;
            padding: 30px;
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }

        .why-card:hover {
            transform: translateY(-5px);
            background-color: rgba(30, 30, 50, 0.9);
        }

        .why-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        /* Token Section */
        .token-section {
            background: radial-gradient(circle at center, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
        }

        .token-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .token-visual {
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(rgba(5, 5, 16, 0.7), rgba(5, 5, 16, 0.7)), 
                        url('https://images.unsplash.com/photo-1620336655055-bd87c5d1d73f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            border-radius: 20px;
            overflow: hidden;
        }

        .token {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, var(--primary), var(--secondary));
            box-shadow: 0 0 50px var(--primary);
            position: relative;
            animation: pulse 3s infinite;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--dark);
            font-weight: 900;
            font-size: 1.5rem;
            text-align: center;
            z-index: 2;
        }

        .token:before {
            content: '';
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            border: 2px dashed var(--primary);
            animation: rotate 20s linear infinite;
        }

        .token span {
            font-size: 2.5rem;
            font-family: 'Orbitron', sans-serif;
        }

        .token-info h3 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .token-details {
            list-style: none;
        }

        .token-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .token-details i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 1.3rem;
        }

        /* Mission & Vision */
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 50px;
        }

        .mission-card, .vision-card {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            border-top: 5px solid var(--primary);
        }

        .mission-card {
            border-top-color: var(--primary);
        }

        .vision-card {
            border-top-color: var(--secondary);
        }

        .mission-card h3, .vision-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .mission-card h3 i, .vision-card h3 i {
            margin-right: 10px;
        }

        /* Payment Gateway Section */
        .payment-section {
            background: linear-gradient(rgba(5, 5, 16, 0.8), rgba(5, 5, 16, 0.8)), 
                        url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
        }

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

        .payment-feature {
            background-color: rgba(20, 20, 40, 0.8);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(0, 229, 255, 0.2);
            transition: var(--transition);
        }

        .payment-feature:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .payment-feature i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background-color: #050510;
            padding: 70px 0 30px;
            border-top: 1px solid rgba(0, 229, 255, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h4 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #c8d6ff;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--gray);
            color: var(--light);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary);
            color: var(--dark);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--gray);
            color: #a0a0c0;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

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

        /* Responsive Design */
        @media (max-width: 1200px) {
            .team-card {
                min-width: 320px;
            }
        }

        @media (max-width: 992px) {
            .about-content, .token-container, .mission-vision {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .team-card {
                min-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 26, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                z-index: 999;
                border-bottom: 1px solid rgba(0, 229, 255, 0.2);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .nav-cta {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .btn {
                width: 100%;
                margin-bottom: 15px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .team-card {
                min-width: 280px;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .team-card {
                min-width: 260px;
                padding: 25px;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
            }
        }