
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a1033;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}
      /* Navbar styling */
      .navbar {
        background-color: #070730;
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .nav-link {
        color: white !important;
        font-weight: 500;
        padding: 0.5rem 1rem !important;
        position: relative;
    }
    
    .nav-link:hover {
        color: #ffc107 !important;
    }
    
    .dropdown-menu {
        background-color: #070730;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        padding: 0.5rem 0;
        margin-top: 15px;
    }
    
    .dropdown-item {
        color: white;
        padding: 0.75rem 1.5rem;
        font-weight: 500;
    }
    
    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffc107;
    }
    
    .login-btn {
        background-color: transparent;
        border: 2px solid #ffc107;
        color: white;
        border-radius: 5px;
        padding: 8px 25px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .login-btn:hover {
        background-color: #ffc107;
        color: #070730;
    }
    
    /* Dropdown styling */
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }
    
    /* Fix for nested dropdowns */
    .dropdown-item.dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.5em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid transparent;
        border-right: 0;
        border-bottom: 0.3em solid transparent;
        border-left: 0.3em solid;
    }
    
    /* Mobile menu styling */
    .navbar-toggler {
        border: none;
        background: transparent;
        padding: 0;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        background-image: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        .navbar-collapse {
            background-color: #070730;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .dropdown-menu {
            background-color: rgba(255, 255, 255, 0.05);
            border: none;
            margin-top: 0;
            box-shadow: none;
        }
        
        .dropdown-submenu .dropdown-menu {
            left: 0;
            margin-left: 1rem;
        }
        
        .login-btn {
            margin-top: 10px;
            width: 100%;
            text-align: center;
        }
    }
/* navbar */
/* hero section */
     
      .hero-section {
        background-color: #0a0a2e;
        position: relative;
        overflow: hidden;
        padding: 80px 0;
        min-height: 100vh;
    }

    /* Canvas for particle effect */
    #can {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    /* Content styles */
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 20px 0;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        color: white;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 1.2rem;
        color: white;
        margin-bottom: 30px;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 5px;
        margin-right: 15px;
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background-color: #007bff;
        border-color: #007bff;
    }

    .btn-primary:hover {
        background-color: #0069d9;
        border-color: #0062cc;
    }

    /* Logo styles */
    .logo-container {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .logo {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
        }
        
        .logo {
            max-width: 280px;
            margin-top: 30px;
        }
    }

    @media (max-width: 767.98px) {
        .hero-section {
            text-align: center;
            padding: 60px 0;
        }
        
        .logo-container {
            margin-top: 40px;
        }
    }
/* hero section */


/* icon slide animation */
.logo-slider {
    background-color: #0c1033;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    width: 100%;
}

.logo-slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    width: calc(200px * 14); /* Width of each logo * number of logos * 2 */
}

.logo-slide {
    width: 200px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 100%;
    height: auto;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.logo-slide img:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7)); /* Width of each logo * number of logos */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-slide {
        width: 170px;
    }
    
    .logo-slide-track {
        width: calc(170px * 14);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 7));
        }
    }
}

@media (max-width: 576px) {
    .logo-slide {
        width: 150px;
    }
    
    .logo-slide-track {
        width: calc(150px * 14);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 7));
        }
    }
}
/* icon slide animation */

/* our products */
      /* our products */
      .products-section {
        padding: 60px 0;
        background-color: #0a0a2e;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 50px;
        color: white;
    }

    .product-card {
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        height: 450px;
        margin-bottom: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .product-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        padding: 30px 20px;
        z-index: 2;
    }

    .product-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .platform-icons {
        display: flex;
        gap: 15px;
        margin-top: 15px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .product-card:hover .platform-icons {
        opacity: 1;
        transform: translateY(0);
    }

    .platform-icon {
        background-color: rgba(255, 255, 255, 0.2);
        width: 40px;
        height: 40px;
        text-decoration:none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .platform-icon:hover {
        background-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }

    .platform-icon i {
        color: white;
        font-size: 1.2rem;
    }

    /* Mobile scroll styles */
    @media (max-width: 768px) {
        .products-container {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 20px;
            margin-left: -10px;
            margin-right: -10px;
            width: calc(100% + 20px);
        }
        
        .product-col {
            flex: 0 0 85%;
            min-width: 85%;
            scroll-snap-align: center;
            padding: 0 10px;
        }
        
        .product-card {
            margin-bottom: 0;
        }
        
        /* Hide scrollbar */
        .products-container::-webkit-scrollbar {
            display: none;
        }
        
        .products-container {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        /* Scroll indicators */
        .scroll-indicator {
            position: relative;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        
        .scroll-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            transition: background-color 0.3s ease;
        }
        
        .scroll-dot.active {
            background-color: rgba(255, 255, 255, 0.8);
        }
    }
/* our products */
/* counts */
.stats-section {
    background-color: #070b36;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.stat-box {
    background-color: rgba(8, 19, 94, 0.8);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
}

.stat-icon {
    color: #1e90ff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.stat-number {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: white;
    font-size: 1.1rem;
}

/* counts */
/* about  */
.about-section {
    background-color: #0a0a2e;
    color: white;
    padding: 80px 0;
    min-height: 400px;
}
.about-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.cyan-text {
    color: #40e0d0; 
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.btn-learn-more {
    background-color: #0d6efd;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 20px;
}
.about-content {
    line-height: 1.6;
}



/* about */

/* cipher (cpr) */
.cipher-section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contract-btn {
    background-color: #0091d7;
    color: white;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.contract-btn:hover {
    background-color: #007bba;
    color: white;
}

.phone-container {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.phone-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}



@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
        margin-top: 40px;
    }
    
    .phone-container {
        margin-top: 40px;
    }
    
    .description {
        font-size: 0.95rem;
    }
}
/* cipher (cpr) */
/* access analatycs */
.analytics-section {
    padding: 20px 0;
    position: relative;
    margin-bottom:50px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.description {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.learn-more-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #0069d9;
    color: white;
}

.laptop-container {
    position: relative;
}

.laptop-image {
    max-width: 100%;
    height: auto;
}


@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .laptop-container {
        margin-top: 50px;
        text-align: center;
    }
    
    .circle-1 {
        width: 80px;
        height: 80px;
    }
    
    .circle-2 {
        width: 60px;
        height: 60px;
    }
}
/* access analatycs */
/* powered by eth polygon */
.blockchain-section {
    padding: 80px 0;
}

.content-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 255, 0.1);
}

.chart-side {
    background-color: #051440;
    padding: 0;
    height: 100%;
    position: relative;
}

.info-side {
    background-color: #2a0a4a;
    padding: 40px;
    height: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.description {
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.supply-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.check-icon {
    color: #02e4f7;
    margin-right: 15px;
    font-size: 1.2rem;
}

.chart-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .info-side {
        padding: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* powered by eth polygon */

/* getstart section */
.cta-section {
    background: linear-gradient(90deg, #001240 0%, #001959 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 30px;
}

.cta-button {
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 30px;
    padding: 12px 40px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.coin-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .coin-image-container {
        text-align: center;
        margin-top: 30px;
    }
    
    .coin-image {
        max-width: 200px;
    }
}

/* getstart section */
.footer {
    background-color: #0c0a47;
    color: white;
    padding: 50px 0 20px 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: #f8c300;
    text-decoration: underline;
}

.logo {
    color: #f8c300;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 18px;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-column-header {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.email-links i {
    margin-right: 10px;
}

.email-links div {
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 0.9rem;
}