
        :root {
            --bg-dark: #0a0a0a;
            --bg-black: #000000;
            --blue-primary: #cc9b1e;
            --blue-secondary: #c7ff9a;
            --blue-dark: #ff4305;
            --blue-glow: rgba(0, 102, 255, 0.6);
            --blockchain-green: #e8cd00;
            --blockchain-glow: rgba(255, 240, 105, 0.4);
            --charcoal: #111111;
            --charcoal-light: #1a1a1a;
            --glass-dark: rgba(17, 17, 17, 0.8);
            --glass-light: rgba(255, 255, 255, 0.05);
            --text-light: #f5f5f5;
            --text-gray: #aaaaaa;
            --gradient-tech: linear-gradient(135deg, var(--blue-primary), var(--blockchain-green));
            --gradient-card: linear-gradient(145deg, rgba(0, 102, 255, 0.1), rgba(0, 255, 136, 0.05));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
            color: #ebf300 !important;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(0, 168, 255, 0.03) 0%, transparent 30%);
            pointer-events: none;
            z-index: -1;
        }
        
        /* Animated Blockchain Background */
        .blockchain-grid {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            opacity: 0.1;
        }
        
        .grid-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, var(--blockchain-green), transparent);
            animation: gridMove 20s linear infinite;
        }
        
        .grid-node {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--blue-primary);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--blue-glow);
            animation: pulse 2s infinite alternate;
        }
        
        @keyframes gridMove {
            0% { transform: translateX(-100%) translateY(-100%); }
            100% { transform: translateX(100%) translateY(100%); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.5); opacity: 1; }
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(15px);
            background: rgba(10, 10, 10, 0.9);
            border-bottom: 1px solid rgba(0, 102, 255, 0.2);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: var(--gradient-tech);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-tech);
            border-radius: 2px;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-tech);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .nav-links a:hover {
            color: var(--blue-secondary);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .login-btn {
            background: var(--gradient-tech);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .login-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }
        
        .login-btn:hover::before {
            left: 100%;
        }
        
        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
        }
        
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--blue-primary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            padding: 12rem 5% 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: var(--gradient-tech);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
            line-height: 1.2;
            animation: techGlow 3s infinite alternate;
        }
        
        @keyframes techGlow {
            0% { text-shadow: 0 0 20px rgba(0, 102, 255, 0.3); }
            100% { text-shadow: 0 0 30px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 255, 136, 0.2); }
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            color: var(--text-gray);
            margin-bottom: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-highlight {
            background: var(--gradient-card);
            border: 1px solid rgba(0, 102, 255, 0.2);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 3rem auto;
            max-width: 1200px;
            text-align: left;
            backdrop-filter: blur(10px);
        }
        
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .highlight-item:hover {
            background: rgba(0, 102, 255, 0.1);
            transform: translateX(10px);
        }
        
        .highlight-icon {
            color: var(--blockchain-green);
            font-size: 1.5rem;
        }
        
        /* Slider Section */
        .slider-section {
            padding: 4rem 5%;
        }
        
        .slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .swiper {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
        }
        
        .swiper-slide {
            background: var(--glass-dark);
            border: 1px solid rgba(0, 102, 255, 0.2);
            border-radius: 15px;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .swiper-slide:hover {
            border-color: rgba(0, 255, 136, 0.3);
            transform: translateY(-5px);
        }
        
        .slide-icon {
            font-size: 3rem;
            color: var(--blue-primary);
            margin-bottom: 1.5rem;
        }
        
        .slide-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--blockchain-green);
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--blue-primary) !important;
            background: rgba(0, 0, 0, 0.5);
            width: 50px !important;
            height: 50px !important;
            border-radius: 50%;
            backdrop-filter: blur(10px);
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.5rem !important;
        }
        
        .swiper-pagination-bullet {
            background: var(--blue-primary) !important;
            opacity: 0.5;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--blockchain-green) !important;
            opacity: 1;
        }
        
        /* Sections Common Styles */
        section {
            padding: 6rem 5%;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            background: var(--gradient-tech);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-tech);
            border-radius: 3px;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            max-width: 900px;
            margin: 0 auto 3rem;
            font-size: 1.2rem;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
        }
        
        .about-text {
            background: var(--glass-dark);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(171, 236, 20, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            line-height: 1.8;
            position: relative;
            overflow: hidden;
        }
        
        .about-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-tech);
        }
        
        .vision-mission {
            background: var(--gradient-card);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(197, 135, 3, 0.2);
        }
        
        /* Services Section */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .service-card {
            background: var(--glass-dark);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 102, 255, 0.2);
            border-radius: 15px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(222, 7, 7, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 255, 136, 0.3);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-tech);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--blue-primary);
            margin-bottom: 1.5rem;
        }
        
        .service-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--blockchain-green);
        }
        
        /* Policy Section */
        .policy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .policy-card {
            background: var(--glass-dark);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 102, 255, 0.2);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .policy-card:hover {
            border-color: rgba(0, 255, 136, 0.3);
            transform: translateY(-5px);
        }
        
        .policy-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--blue-primary);
        }
        
        /* Staking Table */
        .staking-table {
            width: 100%;
            background: var(--glass-dark);
            border-radius: 15px;
            overflow: hidden;
            margin: 2rem 0;
            border: 1px solid rgba(0, 102, 255, 0.2);
        }
        
        .staking-table th {
            background: rgba(0, 102, 255, 0.2);
            padding: 1.5rem;
            text-align: left;
            color: var(--blockchain-green);
            font-weight: 700;
        }
        
        .staking-table td {
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .staking-table tr:hover {
            background: rgba(0, 102, 255, 0.1);
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .contact-card {
            background: var(--glass-dark);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 102, 255, 0.2);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--blue-primary);
            margin-bottom: 1.5rem;
        }
        
        /* Footer */
        footer {
            background: var(--charcoal);
            padding: 4rem 5% 2rem;
            border-top: 1px solid rgba(0, 102, 255, 0.2);
            margin-top: 4rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-tech);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .footer-tagline {
            color: var(--blockchain-green);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .social-icons {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--charcoal-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-primary);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--gradient-tech);
            color: white;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .swiper {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(15px);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid rgba(0, 102, 255, 0.2);
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .hero {
                padding: 10rem 5% 4rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .swiper {
                height: 300px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-card, .policy-card {
                min-width: 100%;
            }
            
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .swiper {
                height: 250px;
                padding: 1rem;
            }
            
            .swiper-slide {
                padding: 2rem;
            }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-tech);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--blue-primary);
        }
        
        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .floating {
            animation: float 5s ease-in-out infinite;
        }
        
        /* Tech Badge */
        .tech-badge {
            display: inline-block;
            background: var(--gradient-tech);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0.5rem;
            box-shadow: 0 5px 15px rgba(255, 226, 7, 0.3);
        }
        
        /* Blockchain Effect */
        .blockchain-effect {
            position: relative;
            overflow: hidden;
        }
        
        .blockchain-effect::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }

        /* Hero Banner Slider */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

/* Background Images for Slides */
.slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('banner1.jpg');
}

.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('banner2.jpg');
}

.slide-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('banner3.jpg');
}

.slide-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('banner4.jpg');
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 255, 136, 0.1));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-button.primary {
    background: var(--gradient-tech);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--blockchain-green);
    border: 2px solid var(--blockchain-green);
    box-shadow: 0 5px 20px rgba(232, 205, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.6);
}

.cta-button.secondary:hover {
    background: var(--blockchain-green);
    color: var(--bg-dark);
}

.feature-grid, .crypto-features, .compliance-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--blue-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--blockchain-green);
    font-size: 1.3rem;
}

.crypto-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    min-width: 200px;
}

.crypto-item i {
    font-size: 2.5rem;
    color: var(--blockchain-green);
    margin-bottom: 1rem;
}

.crypto-item h3 {
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.crypto-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge i {
    color: var(--blockchain-green);
}

.badge span {
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Swiper Navigation */
.hero-next, .hero-prev {
    color: var(--blue-primary) !important;
    background: rgba(10, 10, 10, 0.7);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-next:hover, .hero-prev:hover {
    background: var(--gradient-tech);
    border-color: var(--blue-primary);
    transform: scale(1.1);
}

.hero-next:after, .hero-prev:after {
    font-size: 1.8rem !important;
    font-weight: bold;
}

.hero-pagination {
    bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
    background: var(--blue-primary);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--blockchain-green);
    opacity: 1;
    transform: scale(1.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--blue-primary);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-20px) translateX(-50%);}
    60% {transform: translateY(-10px) translateX(-50%);}
}

/* Services Highlight Section */
.services-highlight {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--charcoal) 100%);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--glass-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--blue-primary);
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    color: var(--blockchain-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.highlight-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design for Hero Banner */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .crypto-item {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 600px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        min-width: 160px;
        font-size: 1rem;
    }
    
    .feature-grid, .crypto-features, .compliance-badges {
        gap: 1rem;
    }
    
    .crypto-item {
        min-width: 150px;
        padding: 1rem;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .hero-next, .hero-prev {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .scroll-indicator {
        font-size: 1.5rem;
        bottom: 50px;
    }
}
        