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

  :root {
            --bitnium-green: #7fba27;
            --dark-bg: #0a0a0a;
        }

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%;
height: 100vh;
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 Styling */
   .navbar {
       background-color: rgba(10, 10, 10, 0.60) !important;
       padding: 20px 0;
       position: fixed;
       top: 0;
       width: 100%;
       z-index: 1000;
       box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
       transition: all 0.4s ease;
   }

   /* Navbar when scrolled down */
   .navbar-scrolled {
       background-color: rgba(10, 10, 10, 0.95) !important;
       padding: 10px 0 !important;
       box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
   }

   .navbar-scrolled .navbar-brand img {
       height: 28px;
       transition: height 0.4s ease;
   }

   .navbar-brand img {
       height: 32px;
       transition: height 0.4s ease;
   }

   .navbar-nav .nav-link {
       color: white !important;
       font-size: 15px;
       padding: 0.5rem 1.2rem !important;
       transition: color 0.3s ease;
   }

   .navbar-nav .nav-link:hover {
       color: var(--bitnium-green) !important;
   }

   .nav-buttons {
       display: flex;
       gap: 15px;
       align-items: center;
   }

   /* Buttons */
   .btn-buy {
       background-color: transparent;
       color: var(--bitnium-green);
       border: 1px solid var(--bitnium-green);
       padding: 8px 24px;
       border-radius: 4px;
       font-size: 14px;
       font-weight: bold;
       transition: all 0.3s;
       cursor: pointer;
   }

   .btn-buy:hover {
       background-color: var(--bitnium-green);
       color: white;
   }

   .nav-cntr {
       padding: 10px 0px !important;
   }

   /* Custom Hamburger Menu Icon */
   .navbar-toggler {
       border: none !important;
       padding: 0;
       width: 30px;
       height: 30px;
       position: relative;
       background: transparent !important;
       outline: none !important;
       box-shadow: none !important;
   }

   .navbar-toggler:focus {
       box-shadow: none !important;
   }

   .hamburger-icon {
       display: block;
       position: relative;
       width: 30px;
       height: 24px;
   }

   .hamburger-icon .line {
       display: block;
       height: 3px;
       width: 100%;
       background-color: var(--bitnium-green);
       border-radius: 2px;
       position: absolute;
       left: 0;
       transition: all 0.3s ease;
   }

   .hamburger-icon .line:nth-child(1) {
       top: 0;
   }

   .hamburger-icon .line:nth-child(2) {
       top: 50%;
       transform: translateY(-50%);
   }

   .hamburger-icon .line:nth-child(3) {
       bottom: 0;
   }

   /* Hamburger to X animation when menu is open */
   .navbar-toggler:not(.collapsed) .hamburger-icon .line:nth-child(1) {
       top: 50%;
       transform: translateY(-50%) rotate(45deg);
   }

   .navbar-toggler:not(.collapsed) .hamburger-icon .line:nth-child(2) {
       opacity: 0;
   }

   .navbar-toggler:not(.collapsed) .hamburger-icon .line:nth-child(3) {
       bottom: 50%;
       transform: translateY(50%) rotate(-45deg);
   }
/* Mobile Menu Alignment */
@media (max-width: 991px) {
.navbar {
        padding: 15px 0;
    }

    .navbar-scrolled {
        padding: 10px 0 !important;
    }

    .nav-buttons {
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }

    .navbar-collapse {
        margin-top: 15px;
    }
}
@media (max-width: 768px) {
    .nav-cntr {
padding: 10px !important;
    }
}


        .hero-section {
            position: relative;
            z-index: 2;
           
            display: flex;
            align-items: center;
            padding: 120px 0 60px;
        }
        
        .hero-container {
            position: relative;
            width: 100%;
        }
        
        .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: #7BD341;

}

.bitnium-section-1 {

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

.bitnium-section-1__title-2 {
    font-size: 3rem;
    font-weight: 300;
    color: #0b0b0b;
    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: #000000;
    margin-bottom: 10px;
}

.step-5__content-7__description-9 {
    font-size: 1rem;
    color: #000000;
    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: #7BD341; /* 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 */
