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

  :root {
      --green:      #39ff7e;
            --green-dim:  #1db954;
            --yellow:     #f4f082;
            --dark:       #050a05;
            --card-bg:    rgba(255,255,255,0.04);
            --border:     rgba(57,255,126,0.18);
        }

body, html {
 
    color: white;
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
  
}

/* header section */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
/* Particles.js container */

#particles-js {
position: absolute;
width: 100%;
background-color: #000000;
background-image: url("https://legeretech.github.io/bitnium/images/logos/Group%2037.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
z-index: 1;
}
   #particles-js {
  
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            background-color: var(--dark-bg);
        }

         /* ══════════════════════════════════════
               NAVBAR WRAPPER
            ══════════════════════════════════════ */
        .nb {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            transition: all 0.4s ease;
            background: transparent;
            /* Default background */
        }
    
        /* Background when scrolling */
        .nb.scrolled {
            background: #111;
            /* Change to any color you want */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
    
 
    
        @keyframes scanline {
            0% {
                background-position: 200% 0;
            }
    
            100% {
                background-position: -200% 0;
            }
        }
    
         /* nb-bg = full-width background layer */
         .nb-bg {
             background: rgba(5, 10, 5, 0.72);
             backdrop-filter: blur(18px);
             -webkit-backdrop-filter: blur(18px);
             border-bottom: 1px solid var(--border);
             width: 100%;
             transition: all 0.4s ease;
         }
    
         .nb.scrolled .nb-bg {
             background: rgba(5, 10, 5, 0.96);
             border-bottom-color: rgba(57, 255, 126, 0.28);
             box-shadow: 0 4px 32px rgba(0, 0, 0, 0.7), 0 0 60px rgba(57, 255, 126, 0.04);
         }
    
         /* nb-inner = container-width flex row */
         .nb-inner {
             max-width: 1320px;
             width: 100%;
             margin: 0 auto;
             margin-top: 10px;
             margin-bottom: 20px;
             padding: 0  24px;
             display: flex;
             align-items: center;
             height: 68px;
             gap: 0;
             transition: height 0.4s ease;
         }
    
         .nb.scrolled .nb-inner {
             height: 56px;
         }
    
         /* ══════════════════════════════════════
               LOGO
            ══════════════════════════════════════ */
         .nb-logo {
             display: flex;
             align-items: center;
             gap: 10px;
             text-decoration: none;
             flex-shrink: 0;
         }
    
         .nb-logo img {
             height: 42px;
             object-fit: contain;
             filter: drop-shadow(0 0 6px rgba(57, 255, 126, 0.5));
             transition: filter 0.3s;
         }
    
         .nb-logo:hover img {
             filter: drop-shadow(0 0 12px rgba(57, 255, 126, 0.9));
         }
    
         /* ══════════════════════════════════════
               CENTER NAV
            ══════════════════════════════════════ */
         .nb-nav {
             display: flex;
             align-items: center;
             gap: 2px;
             margin: 0 auto;
             list-style: none;
             padding: 0;
         }
    
         .nb-nav a {
             position: relative;
             color: rgba(255, 255, 255, 0.75);
             text-decoration: none;
             font-family: 'Rajdhani', sans-serif;
             font-size: 14.5px;
             font-weight: 600;
             letter-spacing: 0.08em;
             text-transform: uppercase;
             padding: 6px 14px;
             border-radius: 4px;
             transition: color 0.25s, background 0.25s;
         }
    
         .nb-nav a::after {
             content: '';
             position: absolute;
             bottom: 2px;
             left: 50%;
             width: 0;
             height: 2px;
             background: var(--green);
             border-radius: 2px;
             transform: translateX(-50%);
             transition: width 0.3s ease;
             box-shadow: 0 0 6px var(--green);
         }
    
         .nb-nav a:hover {
             color: #fff;
             background: rgba(57, 255, 126, 0.06);
         }
    
         .nb-nav a:hover::after {
             width: 55%;
         }
    
         /* ══════════════════════════════════════
               RIGHT ACTIONS
            ══════════════════════════════════════ */
         .nb-actions {
             display: flex;
             align-items: center;
             gap: 4px;
             flex-shrink: 0;
         }
    
         /* App pill */
         .app-pill {
             display: flex;
             align-items: center;
             gap: 7px;
             text-decoration: none;
             padding: 6px 12px;
             border-radius: 30px;
             border: 1px solid rgba(255, 255, 255, 0.1);
             background: rgba(255, 255, 255, 0.04);
             transition: all 0.3s ease;
             position: relative;
             overflow: hidden;
         }
    
         .app-pill::before {
             content: '';
             position: absolute;
             inset: 0;
             background: linear-gradient(135deg, rgba(57, 255, 126, 0.12) 0%, transparent 100%);
             opacity: 0;
             transition: opacity 0.3s;
         }
    
         .app-pill:hover {
             border-color: var(--green);
             box-shadow: 0 0 14px rgba(57, 255, 126, 0.2), inset 0 0 14px rgba(57, 255, 126, 0.05);
             transform: translateY(-1px);
         }
    
         .app-pill:hover::before {
             opacity: 1;
         }
    
         .app-pill img {
             width: 76px;
             height: 26px;
             object-fit: contain;
             flex-shrink: 0;
         }
    
         .app-pill-text {
             display: flex;
             flex-direction: column;
             line-height: 1.2;
         }
    
         .app-pill-text .t1 {
             font-family: 'Rajdhani', sans-serif;
             font-size: 9px;
             font-weight: 500;
             color: rgba(255, 255, 255, 0.45);
             letter-spacing: 0.12em;
             text-transform: uppercase;
         }
    
         .app-pill-text .t2 {
             font-family: 'Rajdhani', sans-serif;
             font-size: 13px;
             font-weight: 700;
             color: var(--yellow);
             letter-spacing: 0.04em;
         }
    
         /* Thin separator */
         .nb-sep {
             width: 1px;
             height: 30px;
             background: linear-gradient(180deg, transparent, rgba(57, 255, 126, 0.25), transparent);
             margin: 0 6px;
         }
    
         /* DEX button – glow CTA */
         .btn-dex {
             font-family: 'Orbitron', monospace;
             font-size: 12px;
             font-weight: 700;
             letter-spacing: 0.12em;
             color: var(--dark);
             background: var(--green);
             border: none;
             padding: 9px 22px;
             border-radius: 4px;
             text-decoration: none;
             position: relative;
             overflow: hidden;
             transition: all 0.3s ease;
             box-shadow: 0 0 16px rgba(57, 255, 126, 0.35), 0 0 0 0 rgba(57, 255, 126, 0);
             display: inline-flex;
             align-items: center;
             gap: 6px;
         }
    
         .btn-dex::before {
             content: '';
             position: absolute;
             inset: 0;
             background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
             pointer-events: none;
         }
    
         .btn-dex::after {
             content: '';
             position: absolute;
             inset: -2px;
             border-radius: 6px;
             background: var(--green);
             z-index: -1;
             filter: blur(10px);
             opacity: 0;
             transition: opacity 0.3s;
         }
    
         .btn-dex:hover {
             transform: translateY(-2px);
             box-shadow: 0 0 28px rgba(57, 255, 126, 0.55), 0 6px 20px rgba(0, 0, 0, 0.4);
             color: var(--dark);
         }
    
         .btn-dex:hover::after {
             opacity: 0.6;
         }
    
         /* Gold100 icon */
         .gold-btn {
             display: flex;
             align-items: center;
             justify-content: center;
             width: 82px;
             height: 44px;
             border-radius: 10px;
             border: 1px solid rgba(244, 240, 130, 0.2);
             background: rgba(244, 240, 130, 0.04);
             transition: all 0.3s ease;
             text-decoration: none;
             position: relative;
         }
    
         .gold-btn img {
             width: 82px;
             height: 30px;
             object-fit: contain;
         }
    
         .gold-btn:hover {
             border-color: var(--yellow);
             background: rgba(244, 240, 130, 0.1);
             box-shadow: 0 0 14px rgba(244, 240, 130, 0.3);
             transform: translateY(-2px);
         }
    
         /* Tooltip on gold btn */
         .gold-btn::after {
             content: 'Gold 100';
             position: absolute;
             bottom: -26px;
             left: 50%;
             transform: translateX(-50%);
             font-family: 'Rajdhani', sans-serif;
             font-size: 10px;
             color: var(--yellow);
             white-space: nowrap;
             opacity: 0;
             transition: opacity 0.2s;
             pointer-events: none;
         }
    
         .gold-btn:hover::after {
             opacity: 1;
         }
    
         /* ══════════════════════════════════════
               HAMBURGER
            ══════════════════════════════════════ */
         .nb-toggler {
             display: none;
             flex-direction: column;
             justify-content: center;
             gap: 5px;
             width: 34px;
             height: 34px;
             background: transparent;
             border: 1px solid var(--border);
             border-radius: 6px;
             padding: 6px;
             cursor: pointer;
             transition: border-color 0.3s;
             flex-shrink: 0;
         }
    
         .nb-toggler:hover {
             border-color: var(--green);
         }
    
         .nb-toggler span {
             display: block;
             height: 2px;
             background: var(--green);
             border-radius: 2px;
             transition: all 0.3s ease;
             box-shadow: 0 0 4px var(--green);
         }
    
         .nb-toggler.open span:nth-child(1) {
             transform: translateY(7px) rotate(45deg);
         }
    
         .nb-toggler.open span:nth-child(2) {
             opacity: 0;
             transform: scaleX(0);
         }
    
         .nb-toggler.open span:nth-child(3) {
             transform: translateY(-7px) rotate(-45deg);
         }
    
         /* ══════════════════════════════════════
               MOBILE DRAWER
            ══════════════════════════════════════ */
         .nb-drawer {
             display: none;
             position: fixed;
             top: 70px;
             left: 0;
             right: 0;
             width: 100%;
             background: rgba(5, 10, 5, 0.97);
             border-bottom: 1px solid var(--border);
             backdrop-filter: blur(20px);
             z-index: 9998;
             transform: translateY(-10px);
             opacity: 0;
             pointer-events: none;
             transition: transform 0.35s ease, opacity 0.35s ease;
         }
    
         .nb-drawer.open {
             transform: translateY(0);
             opacity: 1;
             pointer-events: all;
         }
    
         /* Container wrapper inside drawer */
         .nb-drawer-inner {
             max-width: 1320px;
             width: 100%;
             margin: 0 auto;
             padding: 20px 24px 28px;
         }
    
         .nb-drawer .mob-nav {
             list-style: none;
             padding: 0;
             margin: 0 0 20px;
             display: flex;
             flex-direction: column;
             gap: 2px;
         }
    
         .nb-drawer .mob-nav a {
             display: block;
             color: rgba(255, 255, 255, 0.75);
             text-decoration: none;
             font-family: 'Rajdhani', sans-serif;
             font-size: 16px;
             font-weight: 600;
             letter-spacing: 0.08em;
             text-transform: uppercase;
             padding: 10px 14px;
             border-radius: 6px;
             transition: all 0.2s;
             border-left: 2px solid transparent;
         }
    
         .nb-drawer .mob-nav a:hover {
             color: var(--green);
             background: rgba(57, 255, 126, 0.06);
             border-left-color: var(--green);
         }
    
         .mob-actions {
             display: grid;
             grid-template-columns: 1fr 1fr;
             gap: 10px;
         }
    
         .mob-app-card {
             display: flex;
             align-items: center;
             gap: 10px;
             text-decoration: none;
             padding: 10px 14px;
             border-radius: 10px;
             border: 1px solid rgba(57, 255, 126, 0.15);
             background: rgba(57, 255, 126, 0.04);
             transition: all 0.25s;
         }
    
         .mob-app-card:hover {
             border-color: var(--green);
             background: rgba(57, 255, 126, 0.1);
         }
    
         .mob-app-card img {
             width: 32px;
             height: 32px;
             object-fit: contain;
         }
    
         .mob-app-card .t1 {
             font-family: 'Rajdhani', sans-serif;
             font-size: 9px;
             font-weight: 500;
             color: rgba(255, 255, 255, 0.4);
             letter-spacing: 0.12em;
             text-transform: uppercase;
         }
    
         .mob-app-card .t2 {
             font-family: 'Rajdhani', sans-serif;
             font-size: 14px;
             font-weight: 700;
             color: var(--yellow);
         }
    
         .mob-dex-row {
             display: flex;
             gap: 10px;
             margin-top: 10px;
         }
    
         .mob-dex-row .btn-dex {
             flex: 1;
             justify-content: center;
             font-size: 13px;
         }
    
         .mob-dex-row .gold-btn {
             width: auto;
             padding: 0 16px;
             flex-shrink: 0;
         }
    
         .mob-dex-row .gold-btn img {
             width: 28px;
             height: 28px;
         }
    
         /* ══════════════════════════════════════
               RESPONSIVE BREAKPOINT
            ══════════════════════════════════════ */
         @media (max-width: 991px) {
    
             .nb-nav,
             .nb-actions {
                 display: none;
             }
    
             .nb-toggler {
                 display: flex;
                 margin-left: auto;
             }
    
             .nb-drawer {
                 display: block;
             }
    
             .nb-inner {
                 padding: 0 20px;
             }
         }
    
         @media (max-width: 480px) {
            .gold-btn {
                height:57px;
            }
            .mob-dex-row .gold-btn img {
                width: 150px;
                    height: 48px;
            }
            .mob-dex-row {
                padding: 10px;
            }
             .mob-actions {
                padding: 10px;
                 grid-template-columns: 1fr 1fr;
             }
         }




        .hero-section {
            position: relative;
            z-index: 2;
           
            display: flex;
            align-items: center;
            padding: 120px 0 60px;
        }
        
        .hero-container {
            position: relative;
            width: 100%;
            margin-top: 60px;
        }
        
        .hero-content {
            max-width: 650px;
            position: relative;
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: 700;
            color:white;
            line-height: 1.2;
            margin-bottom: 40px;
        }
        
        .token-button {
            background-color: var(--bitnium-green);
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 30px;
            transition: all 0.3s;
        }

        .token-button:hover {
            background-color: #6da31f;
        }
        
        .network-text {
            color:#a0a0a0;
            font-size: 15px;
            color: white;
            line-height: 1.6;
            max-width: 500px;
        }
        
        .logo-3d-container {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
        }
        
        .logo-3d {
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        @media (max-width: 1200px) {
            .hero-title {
                font-size: 42px;
            }
            
            .logo-3d-container {
                width: 350px;
                height: 350px;
            }
        }

        @media (max-width: 991px) {
         

            .hero-section {
                text-align: center;
                padding: 100px 0 40px;
            }

            .hero-content {
                margin: 0 auto;
                padding: 0 20px;
            }

            .hero-title {
                font-size: 36px;
            }

            .network-text {
                margin: 0 auto;
            }

            .logo-3d-container {
                position: relative;
                width: 300px;
                height: 300px;
                margin: 60px auto 0;
                transform: none;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 32px;
            }

            .btn-signup, .btn-buy {
                padding: 8px 16px;
                font-size: 13px;
            }

            .token-button {
                padding: 10px 30px;
                font-size: 15px;
            }

            .logo-3d-container {
                width: 250px;
                height: 250px;
                margin-top: 40px;
            }

            .network-text {
                font-size: 14px;
                padding: 0 15px;
            }
        }
/* header section */


/* second section numbers */
.bitnium-section-main{
    background-color: #000000;

}

.bitnium-section-1 {

    padding: 60px 30px;
    text-align: center;
      margin-top: 50px;
}

.bitnium-section-1__title-2 {
    font-size: 3rem;
    font-weight: 300;
    color: #a3e44c;
    margin-bottom: 50px;
}

.bitnium-section-1__title-2__span-3 {
    font-weight: bold;
  
}

.steps-container-4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-5 {
    display: flex;
    align-items: flex-start;
    width: 24%;
    padding: 20px;
    box-sizing: border-box;
}

.step-5__number-6 {
    font-size: 9.5rem;
    color: #A3E44C;
    font-weight: bold;
    margin-right: 15px;
    line-height: 1;
    margin-top: 30px;
}

.step-5__content-7 {
    margin-top: 20px;
    text-align: left;
}

.step-5__content-7__title-8 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #efeaea;
    margin-bottom: 10px;
}

.step-5__content-7__description-9 {
    font-size: 1rem;
    color: #e7e7e7;
    line-height: 1.5;
    width: 200px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .bitnium-section-1__title-2 {
        font-size: 2.8rem;
    }

    .step-5__number-6 {
        font-size: 8.5rem;
    }

    .step-5__content-7__title-8 {
        font-size: 1.1rem;
    }

    .step-5__content-7__description-9 {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .steps-container-4 {
        flex-direction: column;
        align-items: center;
    }

    .step-5 {
        width: 100%;
        justify-content: flex-start;
        padding: 20px;
        max-width: 500px;
    }

    .step-5__number-6 {
        font-size: 6rem;
        margin-right: 20px;
        min-width: 80px;
        text-align: center;
    }

    .step-5__content-7 {
        margin-top: 0;
        flex-grow: 1;
    }
}

@media (max-width: 768px) {
    .bitnium-section-1__title-2 {
        font-size: 2.5rem;
    }

    .step-5__number-6 {
        font-size: 5rem;
        min-width: 70px;
    }

    .step-5__content-7__title-8 {
        font-size: 1rem;
    }

    .step-5__content-7__description-9 {
        font-size: 0.9rem;
        width: auto;
    }
}

@media (max-width: 480px) {
    .bitnium-section-1__title-2 {
        font-size: 2rem;
    }

    .step-5 {
        padding: 15px;
    }

    .step-5__number-6 {
        font-size: 4rem;
        min-width: 60px;
    }

    .step-5__content-7__title-8 {
        font-size: 0.9rem;
    }

    .step-5__content-7__description-9 {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 320px) {
    .bitnium-section-1__title-2 {
        font-size: 1.8rem;
    }

    .step-5 {
        padding: 10px;
    }

    .step-5__number-6 {
        font-size: 3.5rem;
        min-width: 50px;
    }

    .step-5__content-7__title-8 {
        font-size: 0.85rem;
    }

    .step-5__content-7__description-9 {
        font-size: 0.75rem;
    }
}

@media (max-width: 200px) {
    .bitnium-section-1__title-2 {
        font-size: 1.5rem;
    }

    .step-5__number-6 {
        font-size: 3rem;
        min-width: 40px;
    }

    .step-5__content-7__title-8 {
        font-size: 0.8rem;
    }

    .step-5__content-7__description-9 {
        font-size: 0.7rem;
    }
}
/* second section numbers */



/* funding section 5th  */
.funding-container-main{
    font-family: Arial, sans-serif;
    background-color: #000000; /* Background color from the image */
    color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.funding-container {
    width: 90%;

    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ensures wrap on smaller screens */
}

.funding-text-section {
    width: 45%;
}

.funding-text-section h1 {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;  
}

.funding-text-section p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;  
    margin-bottom: 20px;
    line-height: 1.6;
}

.funding-bold-text{
    font-family: 'Poppins Black', sans-serif;
    font-weight: 900;  
    font-size: 38px;

}

.funding-graphic-section {
    width: 50%;
    position: relative;
}

/* Image and overlay container */
.funding-image-container {
    position: relative;
    width: 100%;
    height: auto;
}

/* Image styling */
.funding-graphic-section img {
    width: 100%;
    height: auto;
    max-width: 600px;
}

/* Overlay effect */
.funding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Centered logo */
.funding-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: logo-pulse 4s ease-in-out infinite, logo-rotate 20s linear infinite;
}

.funding-logo img {
    width: 250px; /* Adjust the logo size */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(38, 50, 20, 0.7));
}

@keyframes logo-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .funding-logo img {
        width: 200px; /* Smaller size for mobile devices */
    }
}

@media (max-width: 480px) {
    .funding-logo img {
        width: 150px; /* Even smaller size for very small devices */
    }
}

@media screen and (max-width: 768px) {
    .funding-container {
        flex-direction: column;
        text-align: center;
    }

    .funding-text-section, .funding-graphic-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .funding-logo img {
        width: 100px; /* Adjust logo size for mobile */
    }

    .funding-text-section h1 {
        font-size: 28px;
    }

    .funding-text-section p {
        font-size: 16px;
    }

    .funding-bold-text {
        font-size: 20px;
    }
}
      /* Responsive for screens between 768px and 576px */
      @media screen and (max-width: 768px) {
    .funding-container {
        flex-direction: column;
        text-align: center;
    }

    .funding-text-section, .funding-graphic-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .funding-logo img {
        width: 150px; /* Adjust logo size for medium screens */
    }

    .funding-text-section h1 {
        font-size: 28px;
    }

    .funding-text-section p {
        font-size: 16px;
    }

    .funding-bold-text {
        font-size: 20px;
    }
}

/* Responsive for screens between 575px and 400px */
@media screen and (max-width: 575px) {
    .funding-text-section h1 {
        font-size: 24px;
    }

    .funding-text-section p {
        font-size: 14px;
    }

    .funding-bold-text {
        font-size: 18px;
    }

    .funding-logo img {
        width: 120px;
    }
}

/* Responsive for screens between 399px and 200px */
@media screen and (max-width: 399px) {
    .funding-text-section h1 {
        font-size: 20px;
    }

    .funding-text-section p {
        font-size: 12px;
    }

    .funding-bold-text {
        font-size: 16px;
    }

    .funding-logo img {
        width: 100px; /* Adjust logo size for very small screens */
    }

    .funding-graphic-section img {
        max-width: 300px; /* Limit image size on very small screens */
    }
}

/* Responsive for very small screens between 299px and 200px */
@media screen and (max-width: 299px) {
    .funding-text-section h1 {
        font-size: 16px;
    }

    .funding-text-section p {
        font-size: 10px;
    }

    .funding-bold-text {
        font-size: 14px;
    }

    .funding-logo img {
        width: 80px; /* Further adjust logo size for smallest screens */
    }

    .funding-graphic-section img {
        max-width: 200px;
    }
}

/* funding section 5th  */



/* trading choose design */
.trade-choose-bg {
    width: 100%;
    background-image: url('./images/logos/background.png'); /* Ensure this path is correct */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 20px; /* Prevents the image from repeating */
}
.trading-strategies-main{
    margin-top: 80px;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.trading-strategies {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    padding: 20px;
    border-radius: 10px;
}
.trading-images {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.trading-big-logo {
    width: 90%;
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(38, 49, 21, 0.5));
    }
    100% {
        transform: scale(1.05);
       
    }
}

/* Optional: Add a rotating animation to small logos if they exist */
.trading-small-logo {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trading-images {
        width: 80%;
    }
    
    .trading-big-logo {
        width: 100%;
    }
}

.trading-small-icons {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
}

.trading-small-icon {
    margin-bottom: 2rem;
}

.trading-small-icon:first-child {
    width: 120px;
margin-top: -190px;
    margin-left: 250px;
}



.trading-content {
    width: 50%;
    text-align: right;
}

.trading-content h1 {
    font-size: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;  
    margin-bottom: 1rem;
    text-align: left;
}

.trading-content p {
    text-align: left;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;  
    line-height: 1.5;
    margin-bottom: 2rem;
}

.trading-buy-btn {
    background-color: #8CC63F;
    color: #373737;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;   
    text-align: center;
    font-size: 24px;
    width: 200px;
}

.trading-buy-btn-container {
    display: flex;
    justify-content: flex-start;
}

/* Responsive styles */
@media screen and (max-width: 1000px) {
    .trading-strategies {
        flex-direction: column;
        width: 90%;
        padding: 10px;
    }

    .trading-images, .trading-content {
        width: 100%;
        text-align: center;
    }

    .trading-small-icons {
        top: 55%;
        transform: translateY(-55%);
    }

    .trading-big-logo, .trading-small-icon {
        width: 55%;
    }

    .trading-content h1 {
        font-size: 2rem;
    }

    .trading-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .trading-small-icons {
        flex-direction: row;
        justify-content: center;
    }

    .trading-small-icon {
        margin: 0 1rem;
    }

    .trading-big-logo {
        width: 60%;
    }

    .trading-small-icon {
        width: 100px;
    }

    .trading-content h1 {
        font-size: 1.8rem;
    }

    .trading-content p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .trading-content h1 {
        font-size: 1.5rem;
    }

    .trading-content p {
        font-size: 0.8rem;
    }

    .trading-big-logo {
        width: 50%;
    }

    .trading-small-icon:first-child {
        margin-left: 0;
    }

    .trading-small-icon:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 400px) {
    .trading-content h1 {
        font-size: 1.3rem;
    }

    .trading-content p {
        font-size: 0.7rem;
    }

    .trading-big-logo {
        width: 70%;
    }

    .trading-small-icon {
        width: 70px;
    }
    .trading-small-icon:first-child {
        margin-left: 0;
    }

    .trading-small-icon:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 300px) {
    .trading-content h1 {
        font-size: 1rem;
    }

    .trading-content p {
        font-size: 0.6rem;
    }

    .trading-big-logo {
        width: 60%;
    }

    .trading-small-icon {
        width: 50px;
    }
}


/* choose section start */
.choose-card-section {
    text-align: center;
    padding: 50px 20px;
}

.choose-section-heading {
    font-size: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;  
    margin-bottom: 40px;
    color: #8CC63F;
}

/* Cards Container */
.choose-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styles */
.choose-card {

    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-10px);
}

.choose-card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.choose-card-title {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;  
    color: #f4f4f4;
    text-align: start;
    margin: 0;
    padding: 0;
}

.choose-card-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 15px;
}

.choose-card-description {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;  
    color: #eeeeee;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: start;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .choose-card-title {
        font-size: 1.25rem;
    }

    .choose-section-heading {
        font-size: 2rem;
    }

    .choose-card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .choose-section-heading {
        font-size: 1.8rem;
    }

    .choose-card-title {
        font-size: 1.2rem;
    }

    .choose-card-description {
        font-size: 0.9rem;
    }

    .choose-card-logo {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .choose-section-heading {
        font-size: 1.5rem;
    }

    .choose-card-title {
        font-size: 1rem;
    }

    .choose-card-description {
        font-size: 0.85rem;
    }

    .choose-card-logo {
        width: 35px;
        height: 35px;
    }
}

/* <!-- choose section end  --> */
/* trading choose design */

/* pateners and support section */
.supporters-container-main {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    padding: 20px;
    background-image: url('./images/logos/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.supporters-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    margin-top: 70px;
}
.supporters-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    text-align: start;
    margin-right: 40px; 
    flex-basis: 30%; 
}
.supporters-title span {
    color: #ffffff; 
}
.supporters-content {
    font-size: 18px;
    line-height: 1.6;
    flex-basis: 70%;
}
.supporters-content-h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
.supporters-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
.supporters-highlight {
    background-color: #273D0F;
    padding: 15px;
    font-size: 1.0rem;
    border-radius: 50px;
    margin: 10px 0;
    color: #c0ffc0;
}
.supporters-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: auto;
}
.supporters-card-grid {
    flex: 1 1 calc(25% - 20px);
    padding: 20px;
    border-radius: 10px;
    min-width: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.supporters-card-grid h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-align: start;
    margin-bottom: 10px;
    color: #97e92d;
}
.supporters-card-grid p {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin: 10px 0 0 0;
}
@media screen and (max-width: 1000px) {
    .supporters-container {
        flex-direction: column;
        align-items: center;
    }
    .supporters-title {
        text-align: center;
        margin: 0;
        flex-basis: 100%;
    }
    .supporters-content {
        flex-basis: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
    .supporters-cards-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .supporters-card-grid {
        flex: 0 0 70%;
        margin-right: 10px;
    }
}
@media screen and (max-width: 500px) {
    .supporters-title {
        font-size: 36px;
    }
    .supporters-content {
        font-size: 16px;
    }
    .supporters-card-grid {
        flex: 0 0 80%;
    }
}
@media screen and (max-width: 320px) {
    .supporters-title {
        font-size: 28px;
    }
    .supporters-content {
        font-size: 14px;
    }
    .supporters-card-grid {
        flex: 0 0 90%;
    }
}
/* pateners and support section */

/* contact section  */
/* Contact section */
.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-left {
    font-family: 'Poppins Light', sans-serif;
    font-weight: 300;
    font-size: 64px;
    line-height: 1.2;
    color: #fff;
    flex: 1;
    max-width: 40%;
}

.contact-right {
    flex: 2;
    width: 60%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.contact-input-fields {
    display: flex;
    gap: 24px;
    width: 100%;
}

.contact-input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 50%;
}

.contact-input,
.contact-textarea {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid #496721;
    background-color: transparent;
    color: #9aff00;
    font-size: 16px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.contact-textarea {
    width: 50%;
    resize: vertical;
    min-height: 120px;
}

.contact-button-email-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}

.contact-send-button {
    background-color: #8CC63F;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 160px;
}

.contact-send-button:hover {
    background-color: #86c800;
}

.contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-email-link {
    color: #A0EB39;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-email-link img {
    max-width: 24px;
    height: auto;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .contact-left {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 32px;
    }

    .contact-left {
        max-width: 100%;
        text-align: center;
        font-size: 48px;
    }

    .contact-right {
        width: 100%;
    }

    .contact-input-fields {
        flex-direction: column;
    }

    .contact-input-group,
    .contact-textarea {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-button-email-container {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .contact-info {
        justify-content: center;
        text-align: center;
    }

    .contact-send-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 40px 16px;
    }

    .contact-left {
        font-size: 40px;
    }

    .contact-input,
    .contact-textarea {
        padding: 12px;
        font-size: 14px;
    }

    .contact-email-link {
        font-size: 14px;
    }

    .contact-send-button {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media (max-width: 360px) {
    .contact-left {
        font-size: 32px;
    }

    .contact-email-link {
        font-size: 13px;
    }
}
/* contact section  */

/* roadpmap */
.container {
  
    padding: 0px 15px;
    width: 1600px;
  }
  .box-section {
    background: #000000;
  }
  .box-container {
    margin: 0px auto;
    padding: 0px;
    max-width: 70%;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-auto-flow: row dense;
    list-style: none;
    position: relative;
  }
  .box-container::before,
  .box-container::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #8cc63f;
    position: absolute;
    right: calc(100% + 9px);
    top: 0;
    display: block;
  }
  .box-container::after {
    left: calc(100% + 9px);
    right: auto;
  }
  .box-container li {
    position: relative;
  }
  .box-container li > div {
    padding: 15px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    height: 100%;
  }
  .box-container li > div > div {
    padding: 20px;
    border: 1px solid#8cc63f;
    position: relative;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  .box-container li > div > div,
  .box-container li > div > div > div {
    border-radius: 8px;
    -webkit-border-radius: 8px;
  }
  .box-container li > div::before {
    content: "";
    width: 4px;
    height: 50%;
    position: absolute;
    top: 0px;
    left: calc(100% + 9px);
    display: block;
    z-index: 1;
  }
  .box-container li:nth-child(6n + 3) > div::before,
  .box-container li:nth-child(6n + 4) > div::before,
  .box-container li:nth-child(6n + 6) > div::before,
  .box-container li:nth-child(6n + 1) > div::before {
    background-color: #000000;
  }
  .box-container li:nth-child(6n + 4) > div::before {
    top: 50%;
  }
  .box-container li:nth-child(6n + 6) > div::before,
  .box-container li:nth-child(6n + 1) > div::before {
    left: auto;
    right: calc(100% + 9px);
  }
  .box-container li:nth-child(6n + 1) > div::before {
    top: 50%;
  }
  .box-container li:nth-child(6n + 1):first-child > div::before,
  .box-container li:nth-child(6n + 6):last-child > div::before,
  .box-container li:nth-child(6n + 3):last-child > div::before {
    top: 0px;
    height: 100%;
  }
  .box-container li > div > div > div {
    padding: 20px;
    background: #8cc63f;
    background: linear-gradient(
      45deg,
      rgb#8cc63f 0%,
      rgb#8cc63f 0%
    );
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
    font-weight: 600;
  }
  .box-container li > div > div > div:not(:last-child) {
    margin-bottom: 10px;
  }
  .box-container li::before,
  .box-container li:nth-child(6n + 7)::after,
  .box-container li:nth-child(6n + 6)::after {
    content: "\f177";
    font-family: "FontAwesome";
    position: absolute;
    left: calc(100% - 7px);
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    display: block;
    color: #8cc63f;
  }
  .box-container li:nth-child(6n + 4) {
    grid-column-start: 3;
    grid-column-end: 3;
  }
  .box-container li:nth-child(6n + 5) {
    grid-column-start: 2;
    grid-column-end: 2;
  }
  .box-container li:nth-child(6n + 6) {
    grid-column-start: 1;
    grid-column-end: 1;
  }
  .box-container li:nth-child(6n + 4)::before,
  .box-container li:nth-child(6n + 6)::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .box-container li:nth-child(6n + 5)::before {
    transform: translateY(-50%) rotate(0deg);
  }
  .box-container li:nth-child(6n + 6)::before {
    transform: translateY(-50%) rotate(0deg);
  }
  .box-container li:nth-child(6n + 7)::after,
  .box-container li:nth-child(6n + 6)::after {
    right: calc(100% - 7px);
    left: auto;
  }
  .box-container li:nth-child(6n + 6):last-child:after,
  .box-container li:nth-child(1):last-child:before,
  .box-container li:nth-child(2):last-child:before,
  .box-container li:nth-child(3):last-child:before,
  .box-container li:nth-child(6n + 9):last-child:before,
  .box-container li:nth-child(6n + 7):last-child:before,
  .box-container li:nth-child(6n + 2):last-child:before {
    content: none;
  }
  .box-container li.before-none:before,
  .box-container li.before-none:after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #000000;
  }
  .box-container li.before-none:after {
    position: absolute;
    top: 50%;
    right: calc(100% - 9px);
    transform: translateY(-50%);
    display: block;
  }
  
  /* media query start */
  @media (min-width: 992px) and (max-width: 1199px) {
    .container {
      width: 970px;
    }
  }
  @media (min-width: 768px) and (max-width: 991px) {
    .container {
      width: 720px;
    }
    .box-container {
      max-width: 100%;
    }
    .box-container li:nth-child(6n + 6) > div::before,
    .box-container li:nth-child(6n + 1) > div::before {
      left: auto;
      right: calc(100% + 8px);
    }
    .box-container li > div::before {
      left: calc(100% + 8px);
    }
  }
  @media (max-width: 767px) {
    .container {
      width: 100%;
    }
    .box-container {
      max-width: 90%;
      display: block;
    }
    .box-container li > div {
      height: auto;
    }
    .box-container::before,
    .box-container::after {
      content: none;
    }
    .box-container li::before,
    .box-container li:nth-child(6n + 7)::after,
    .box-container li:nth-child(6n + 4)::before,
    .box-container li:nth-child(6n + 6)::after,
    .box-container li:nth-child(6n + 5)::before,
    .box-container li:nth-child(6n + 6)::before {
      left: 50%;
      transform: translateX(-50%) rotate(-90deg);
      -webkit-transform: translateX(-50%) rotate(-90deg);
      top: auto;
      bottom: -10px;
    }
    .box-container li:nth-child(6n + 6)::after,
    .box-container li:nth-child(6n + 7)::after,
    .box-container li:nth-child(6n + 6):last-child:before {
      content: none;
    }
  }

/* roadpmap */

/* footer section */
.footer-main-section {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #9ff36a;
    padding: 40px 20px;
}

.footer-1 {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
}

.footer-download-section-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    max-width: 1200px;
    width: calc(100% - 40px);
    background-color: #A0EB39;
    padding: 40px;
    margin: 0 auto;
}

.footer-download-section-2__title-3 {
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 300;
}

.footer-store-buttons-4 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-store-buttons-4__img-5 {
    height: 50px;
    width: auto;
}

.footer-links-and-icons-6 {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    max-width: 1200px;
    margin: 50px auto 0;
    width: 100%;
}

.footer-links-7 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 14px;
}

.footer-links-7__link-8 {
    color: #9ff36a;
    text-decoration: none;
    margin-right: 20px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.footer-links-7__link-8:hover {
    text-decoration: underline;
}

.footer-social-icons-9 {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social-icons-9__link-10 {
    color: #1c1c1c;
    background-color: #9ff36a;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons-9__link-10:hover {
    background-color: #1c1c1c;
    color: #9ff36a;
    transform: scale(1.1);
}

.footer-copyright-11 {
    font-size: 12px;
    margin-top: 20px;
    text-align: center;
}

.footer-copyright-11__link-12 {
    color: #9ff36a;
    text-decoration: none;
}

.footer-copyright-11__link-12:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .footer-download-section-2,
    .footer-links-and-icons-6 {
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1000px) {
    .footer-download-section-2 {
        padding: 30px;
    }

    .footer-download-section-2__title-3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .footer-main-section {
        padding: 30px 15px;
    }

    .footer-download-section-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        margin: 0 auto 20px;
    }

    .footer-download-section-2__title-3 {
        font-size: 20px;
        margin-bottom: 15px;
        width: 100%;
    }

    .footer-store-buttons-4 {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .footer-store-buttons-4__img-5 {
        height: 45px;
    }

    .footer-links-and-icons-6 {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .footer-links-7 {
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-social-icons-9 {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main-section {
        padding: 20px 10px;
    }

    .footer-download-section-2 {
        padding: 20px 15px;
    }

    .footer-download-section-2__title-3 {
        font-size: 18px;
    }

    .footer-store-buttons-4__img-5 {
        height: 40px;
    }

    .footer-links-7__link-8 {
        font-size: 12px;
        margin: 0 10px 10px;
    }

    .footer-social-icons-9__link-10 {
        font-size: 18px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 320px) {
    .footer-main-section {
        padding: 15px 5px;
    }

    .footer-download-section-2 {
        padding: 15px 10px;
    }

    .footer-download-section-2__title-3 {
        font-size: 16px;
    }

    .footer-store-buttons-4__img-5 {
        height: 35px;
    }

    .footer-links-7__link-8 {
        font-size: 11px;
        margin: 0 5px 5px;
    }

    .footer-social-icons-9__link-10 {
        font-size: 16px;
        width: 30px;
        height: 30px;
    }

    .footer-copyright-11 {
        font-size: 10px;
    }
}
@media (max-width: 250px) {
    .footer-social-icons-9 {
        gap: 6px;
    }
    
    .footer-social-icons-9__link-10 {
        font-size: 10px;
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 200px) {
    .footer-social-icons-9 {
        gap: 4px;
    }
    
    .footer-social-icons-9__link-10 {
        font-size: 8px;
        width:15px;
        height: 15px;
    }
}
/* footer section */
