﻿body {
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
   
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 25px;
    z-index: 999;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    background: transparent; 
    transition: background 0.3s ease;
}

    .navbar.scrolled {
        background: linear-gradient(90deg, #020001, #43220b, #020001);
    }

    .navbar .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 22px;
        font-weight: bold;
        white-space: nowrap;
        color: #fff;
    }

        .navbar .logo img {
            width: 7rem;
            height: 6rem;
        }


    .navbar ul {
        list-style: none;
        display: flex;
        gap: 30px;
        margin: 0;
        padding: 0;
        transition: all 0.3s ease-in-out;
    }

        .navbar ul li a {
            position: relative;
            text-decoration: none;
            color: white;
            font-weight: 500;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

            .navbar ul li a::after {
                content: "";
                position: absolute;
                width: 0;
                height: 2px;
                left: 0;
                bottom: 0;
                background: #ff3c3c;
                transition: width 0.3s ease;
            }

            .navbar ul li a:hover {
                color: #ff3c3c;
            }

                .navbar ul li a:hover::after {
                    width: 100%;
                }


    .navbar .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        width: 30px;
        height: 22px;
        justify-content: space-between;
        position: relative;
        z-index: 1000;
    }

        .navbar .menu-toggle span {
            background: white;
            height: 3px;
            width: 100%;
            border-radius: 3px;
            transition: all 0.4s ease;
            transform-origin: center;
        }

        .navbar .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .navbar .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .navbar .menu-toggle.active span:nth-child(3) {
            transform: rotate(-50deg) translate(8px, -8px);
        }



.auth-buttons {
    display: flex;
    gap: 12px;
    margin-left: 25px;
}

    .auth-buttons .btn {
        padding: 6px 18px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }


    .auth-buttons .login-btn {
        color: #fff;
        border: 1.5px solid #744e05;
        background: transparent;
    }

        .auth-buttons .login-btn:hover {
            background: linear-gradient(90deg, #744e05, #2d1709);
            color: #fff;
        }

    .auth-buttons .register-btn {
        background: linear-gradient(90deg, #744e05, #2d1709);
        color: #fff;
        border: none;
    }

        .auth-buttons .register-btn:hover {
            background: none;
            color: #fff;
            border: 1.5px solid #744e05;
        }




@media (max-width: 900px) {
    .navbar {
        background: linear-gradient(90deg, #020001, #43220b, #020001);
    }

        .navbar ul {
            position: absolute;
            top: 97px;
            left: 0;
            width: 100%;
            background: radial-gradient(circle at center, #43220b, #020001 80%);
            flex-direction: column;
            align-items: center;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

            .navbar ul.active {
                max-height: 500px;
                padding: 30px 0;
            }

        .navbar .menu-toggle {
            display: flex;
        }
}

/* Section 1 */
/*.section1 {
    width: 100%;
    height: 90vh;
    background-image: url('../images/banner1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

    .section1 .sec1 {
        max-width: 800px;
    }

        .section1 .sec1 h1 {
            font-size: 2.6rem;
            font-weight: bold;
            line-height: 1.3;
            margin: 0 0 15px;
            color: #ffffff;
            opacity: 0;
            animation: fadeRight 2s ease forwards;
        }

        .section1 .sec1 p {
            font-size: 1.3rem;
            margin: 0;
            color: #ffffff;
            opacity: 0;
            animation: fadeRight 2s ease forwards;
            animation-delay: 1s;
        }


@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 992px) {
    .section1 {
        justify-content: center; 
        height: 80vh;
    }

        .section1 .sec1 h1 {
            font-size: 2.2rem;
        }

        .section1 .sec1 p {
            font-size: 1.1rem;
            padding: 0; 
        }
}

@media (max-width: 768px) {
    .section1 {
        height: 75vh;
        text-align: center;
        padding: 0 20px;
    }

        .section1 .sec1 h1 {
            font-size: 1.8rem;
            line-height: 1.2;
        }

        .section1 .sec1 p {
            font-size: 1rem;
        }
}

@media (max-width: 480px) {
    .section1 {
        height: 70vh;
    }

        .section1 .sec1 {
            padding: 0;
        }
        .section1 .sec1 h1 {
            font-size: 1.5rem;
        }

        .section1 .sec1 p {
            font-size: 0.9rem;
        }
}
*/













.home-hero-container {
    margin: 0;
    height: 70vh;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #ffffff;
    /*background: linear-gradient(135deg, #0a0a0a, #4a3400);*/
    background-size: 200% 200%;
    background-image: url('../images/bann.jpg');
    animation: gradientMove 12s ease infinite;
   
    
}

    .home-hero-container .sec1 {
        height: 100%;
        width: 100%;
        background: rgba(0,0,0,0.5);
        padding: 50px 16px 0 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        overflow-x: hidden;
    }

     @keyframes gradientMove {
        0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.home-hero-container h1 {
    margin: 0 0 16px;
    font-size: clamp(28px, 5vw, 54px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #ffd700, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.home-hero-container p.lead {
    margin: 0 auto 24px;
    max-width: 700px;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: #d1d5db;
    animation: fadeInUp 1.3s ease forwards;
    opacity: 0;
}

.home-hero-container .cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease forwards;
    opacity: 0;
}

.home-hero-container .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

    .home-hero-container .btn.primary {
        background: linear-gradient(90deg, #000, #1a1a1a);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }

        .home-hero-container .btn.primary:hover {
            background: linear-gradient(90deg, #1a1a1a, #333);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        }

    .home-hero-container .btn.ghost {
        background: transparent;
        border: 2px solid #ffd700;
        color: #ffd700;
    }

        .home-hero-container .btn.ghost:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*section 2*/


.why-choose {
    padding: 80px 10%;
    text-align: center;
     background: #111;
  /*  background-image: url('../images/bg-img.png');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    color: #fff;
}

    .why-choose .section-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

        .why-choose .section-title span {
            color: #ff3c3c;
        }

    .why-choose .section-desc {
        max-width: 750px;
        margin: 0 auto 50px auto;
        font-size: 1.1rem;
        line-height: 1.6;
        color: #ddd;
    }


    .why-choose .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
        gap: 25px;
    }

    .why-choose .card {
        background: rgba(255,255,255,0.05);
        border-radius: 15px;
        padding: 30px 20px;
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    }

        .why-choose .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 25px rgba(255,60,60,0.4);
        }

        .why-choose .card .icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .why-choose .card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #ff3c3c;
        }

        .why-choose .card p {
            font-size: 1rem;
            color: #ccc;
            line-height: 1.5;
        }


    .why-choose .fade-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s forwards;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media(max-width:768px) {
    .why-choose .section-title {
        font-size: 2rem;
    }

    .why-choose .section-desc {
        font-size: 1rem;
    }

    .why-choose .card {
        padding: 20px;
    }
}



/*section3*/  





.purpose-vision {
    padding: 80px 5%;
    background: #111;
    color: #fff;
}


    .purpose-vision .top-content {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto 50px auto;
    }

    .purpose-vision .section-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.3;
        color: #fff;
    }

    .purpose-vision .intro {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #ddd;
        padding: 0 6rem;
    }

        .purpose-vision .intro span {
            color: #ff3c3c;
        }


    .purpose-vision .container {
        display: flex;
        align-items: center;
        gap: 50px;
        flex-wrap: wrap;
    }

    .purpose-vision .left-img {
        flex: 1;
        min-width: 300px;
    }

        .purpose-vision .left-img img {
            width: 100%;
            border-radius: 15px;
           /* box-shadow: 0 8px 25px rgba(0,0,0,0.5);*/
        }

    .purpose-vision .right-content {
        flex: 2;
        min-width: 320px;
        display: grid;
        gap: 20px;
    }


    .purpose-vision .card {
        background: rgba(255,255,255,0.05);
        padding: 20px;
        border-radius: 10px;
        transition: all .4s ease;
    }

        .purpose-vision .card h3 {
            margin-bottom: 10px;
        }

        .purpose-vision .card p {
            font-size: 1rem;
            color: #ccc;
            line-height: 1.5;
        }

        .purpose-vision .card:hover {
            transform: translateX(10px) scale(1.02);
        }


        .purpose-vision .card.purpose {
            border-left: 4px solid #28a745;
        }

            .purpose-vision .card.purpose h3 {
                color: #28a745;
            }

            .purpose-vision .card.purpose:hover {
                background: rgba(40,167,69,0.1);
            }

        .purpose-vision .card.vision {
            border-left: 4px solid #007bff;
        }

            .purpose-vision .card.vision h3 {
                color: #007bff;
            }

            .purpose-vision .card.vision:hover {
                background: rgba(0,123,255,0.1);
            }

        .purpose-vision .card.mission {
            border-left: 4px solid #9b59b6;
        }

            .purpose-vision .card.mission h3 {
                color: #9b59b6;
            }

            .purpose-vision .card.mission:hover {
                background: rgba(155,89,182,0.1);
            }


    .purpose-vision .fade-in {
        opacity: 0;
        animation: fadeIn 1.2s ease forwards;
    }

    .purpose-vision .slide-in {
        opacity: 0;
        transform: translateX(40px);
        animation: slideIn 1.2s ease forwards;
    }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 900px) {
    
    .purpose-vision .container {
        flex-direction: column;
        text-align: center;
    }

    .purpose-vision .left-img, .right-content {
        flex: 100%;
    }

    .purpose-vision .right-content .card {
        text-align: left;
    }
    .purpose-vision .intro {
        padding: 0;
    }
}

@media (max-width:768px) {
    .purpose-vision .section-title {
        font-size: 2rem;
    }
    
}










/*section 4*/





.future-trading {
    padding: 40px 5% 60px 5%;
    background: #111;
    /* background: #0e0e0e;*/
    color: #fff;
}

    .future-trading .section-title {
        font-size: 2.4rem;
        margin-bottom: 20px;
        /*color: #ff3c3c;*/
        text-align: center;
        text-align: center;
        background: linear-gradient(90deg, #00d4ff, #ff6600);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .future-trading .intro {
        max-width: 1100px;
        margin: 0 auto 60px auto;
        font-size: 1.1rem;
        line-height: 1.7;
        color: #ddd;
        text-align: center;
    }


    .future-trading .timeline {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .future-trading .step {
        display: flex;
        align-items: center;
        gap: 30px;
    }

        .future-trading .step:nth-child(even) {
            flex-direction: row-reverse;
            text-align: right;
        }

        .future-trading .step .icon {
            font-size: 3rem;
            flex-shrink: 0;
            transition: transform 0.4s ease;
        }

        .future-trading .step .text {
            max-width: 550px;
        }

        .future-trading .step p {
            font-size: 1rem;
            color: #ccc;
            line-height: 1.6;
        }

        .future-trading .step:hover .icon {
            transform: scale(1.2) rotate(10deg);
        }

    .future-trading .heading-tools {
        color: #28a745;
    }

    .future-trading .heading-data {
        color: #007bff;
    }

    .future-trading .heading-hedge {
        color: #ff9800;
    }

    .future-trading .heading-strategy {
        color: #9b59b6;
    }

    .future-trading .fade-left {
        opacity: 0;
        transform: translateX(-50px);
        animation: fadeInLeft 1s forwards;
    }

    .future-trading .fade-right {
        opacity: 0;
        transform: translateX(50px);
        animation: fadeInRight 1s forwards;
    }

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media(max-width:768px) {
    .future-trading .step, .step:nth-child(even) {
        flex-direction: column ;
        text-align: center;
    }

        .future-trading .step .text {
            max-width: 100%;
        }

        .future-trading .step:nth-child(even) {
            flex-direction: column;
            text-align: center;
        }
}




/*footer*/




.footer {
    position: relative;
    background: #0e0e0e;
    color: #ccc;
    padding: 60px 5% 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

  
    .footer::before {
        content: "";
        position: absolute;
        top: -80px;
        left: 0;
        width: 100%;
        height: 200px;
        background-image: url('../images/facts-bg.png');
        background-size: cover;
    }


    .footer .footer-container {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        position: relative;
        z-index: 1;
        animation: fadeInUp 1s ease forwards;
        opacity: 0;
    }


    .footer .footer-about .footer-logo {
        width: 100px;
        margin-bottom: 15px;
    }

    .footer .footer-about h3 {
        color: #ff3c3c;
        margin-bottom: 10px;
    }

    .footer .footer-about p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #bbb;
    }


    .footer .footer-links h4,
    .footer .footer-social h4,
    .footer .footer-search h4 {
        margin-bottom: 15px;
        font-size: 1.1rem;
        color: #ff9800;
    }

    .footer .footer-links ul {
        list-style: none;
        padding: 0;
    }

        .footer .footer-links ul li {
            margin-bottom: 8px;
        }

            .footer .footer-links ul li a {
                color: #ccc;
                text-decoration: none;
                transition: color 0.3s ease;
            }

                .footer .footer-links ul li a:hover {
                    color: #ff3c3c;
                }


    .footer .social-icons {
        display: flex;
        gap: 15px;
    }

        .footer .social-icons a {
            color: #ccc;
            font-size: 1.4rem;
            transition: all 0.3s;
        }

            .footer .social-icons a:hover {
                color: #fff;
                transform: scale(1.2) rotate(10deg);
            }


    .footer .search-box {
        display: flex;
        align-items: center;
        border-radius: 50px;
        overflow: hidden;
        background: #1c1c1c;
        box-shadow: inset 0 0 5px rgba(255,255,255,0.1);
        transition: box-shadow 0.3s;
    }

        .footer .search-box input {
            background: transparent;
            border: none;
            padding: 12px 15px;
            color: #fff;
            outline: none;
            width: 100%;
            font-size: 0.95rem;
        }

            .footer .search-box input:focus {
                box-shadow: 0 0 10px #ff3c3c;
            }

        .footer .search-box button {
            background: #ff3c3c;
            border: none;
            padding: 12px 18px;
            cursor: pointer;
            color: #fff;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

            .footer .search-box button:hover {
                background: #ff6c6c;
                transform: scale(1.1);
            }


    .footer .footer-bottom {
        text-align: center;
        padding-top: 25px;
        border-top: 1px solid #222;
        margin-top: 40px;
        font-size: 0.9rem;
        color: #777;
        position: relative;
        z-index: 1;
    }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media(max-width: 992px) {
    .footer .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .footer .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer .social-icons {
        justify-content: center;
    }
}






/*ABOUT PAGE STYLE*/

/*ABOUT section 1*/



.about-hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('../images/about-image.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
    overflow: hidden;
}

   
    .about-hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.65);
        z-index: 1;
    }


    .about-hero-section .hero-content {
        position: relative;
        z-index: 2;
        max-width: 600px;
        animation: fadeLeft 1.5s ease forwards;
        opacity: 0;
    }

        .about-hero-section .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(90deg, #00c6ff, #ff6600);
            /* background: linear-gradient(90deg, #ff3c3c, #ff9800);*/
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            animation: slideIn 1.5s ease forwards;
            opacity: 0;
        }

        .about-hero-section .hero-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #f5f5f5;
            animation: fadeIn 2s ease forwards;
            opacity: 0;
            animation-delay: 0.5s;
        }


@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@media (max-width: 900px) {
    .about-hero-section {
        padding: 0 5%;
        text-align: center;
    }

        .about-hero-section .hero-content {
            max-width: 100%;
        }

            .about-hero-section .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-hero-section .hero-content p {
                font-size: 1rem;
            }
}



/*ABOUT SECTION1 */




.about-section1 {
    padding: 80px 4%;
    /*background: #0d0810;*/
    background: #111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}


    .about-section1 .about-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        flex-direction: row;
    }


    .about-section1 .about-img {
        flex: 1;
        text-align: center;
    }

        .about-section1 .about-img img {
            width: 100%;
           
            border-radius: 20px;
            /*box-shadow: 0 10px 30px rgba(255, 60, 60, 0.3);*/
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

            .about-section1 .about-img img:hover {
                transform: scale(1.05);
                box-shadow: 0 8px 20px rgba(255, 150, 50, 0.4);
            }


    .about-section1 .about-text {
        flex: 1;
    }

    .about-section1 h2 {
        font-size: 2.4rem;
        text-align: center;
        margin-bottom: 50px;
        /*background: linear-gradient(90deg, #00c6ff, #ff6600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;*/
        animation: fadeInUp 1.2s ease forwards;
    }

        .about-section1 .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #ddd;
            animation: fadeInUp 1.5s ease forwards;
            opacity: 0;
        }

            .about-section1 .about-text p:nth-child(2) {
                animation-delay: 0.3s;
            }

            .about-section1 .about-text p:nth-child(3) {
                animation-delay: 0.6s;
            }

            .about-section1 .about-text p:nth-child(4) {
                animation-delay: 0.9s;
            }

    .about-section1 .highlight {
        color: #fff;
        font-weight: bold;
    }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 992px) {
    .about-section1 .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-section1 .about-text h2 {
        font-size: 2rem;
    }

    .about-section1 .about-text p {
        font-size: 1rem;
    }
}

/*ABOUT section 2 SYTLE*/


.about-section2 {
    padding: 80px 8% 100px 8%;
    background: #111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}


    .about-section2 .about-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        flex-direction: row; 
    }


    .about-section2 .about-text {
        flex: 1;
        animation: fadeInLeft 1.5s ease forwards;
        opacity: 0;
    }

        .about-section2 h2 {
            font-size: 2.4rem;
            margin-bottom: 40px;
            text-align: center;
            background: linear-gradient(90deg, #00d4ff, #ff6600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-section2 .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #ddd;
            animation: fadeInUp 1.2s ease forwards;
            opacity: 0;
        }

            .about-section2 .about-text p:nth-child(2) {
                animation-delay: 0.3s;
            }

            .about-section2 .about-text p:nth-child(3) {
                animation-delay: 0.6s;
            }

            .about-section2 .about-text p:nth-child(4) {
                animation-delay: 0.9s;
            }

    .about-section2 .highlight {
        color: #fff;
        font-weight: bold;
    }


    .about-section2 .about-img {
        flex: 1;
        text-align: center;
        animation: fadeInRight 1.5s ease forwards;
        opacity: 0;
    }

        .about-section2 .about-img img {
            width: 100%;
            max-width: 450px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

            .about-section2 .about-img img:hover {
                transform: scale(1.08) rotate(-2deg);
                box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
            }


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 992px) {
    .about-section2 .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-section2 .about-text h2 {
        font-size: 2rem;
    }

    .about-section2 .about-text p {
        font-size: 1rem;
    }
}









/*HOW IT WORK PAGE STYLE*/


.how-works-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 6vw;
    color: #f5f2f2;
    /*background-image: url('../images/bitcoin-circuit-board.jpg');*/
    background-image: url('../images/work1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    isolation: isolate;
}

    .how-works-hero::after {
        content: "";
        position: absolute;
        inset: 0; 
        background: rgba(0, 0, 0, 0.8);
        z-index: -1; 
    }


    .how-works-hero .hero-wrap {
        max-width: 900px;
        text-align: center;
        z-index: 1;
    }



.how-works-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
     background: linear-gradient(90deg, #00c6ff, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: slideIn 1.5s ease forwards;
    opacity: 0;
}


.how-works-hero p {
    color: #d1cbe9;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 920px;
    margin: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s .8s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatGlow {
    from {
        transform: translateY(-2%);
    }

    to {
        transform: translateY(2%);
    }
}


@media(max-width:768px) {
    .how-works-hero {
        padding: 72px 5vw;
    }

        .how-works-hero h1 {
            font-size: 2.2rem;
        }

        .how-works-hero p {
            font-size: 1rem;
        }
}



/* how it work sec2 */




.protection-section {
    padding: 80px 5%;
    background: #111;
    color: #fff;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

    .protection-section h2 {
        font-size: 2.6rem;
        margin-bottom: 20px;
       
        animation: fadeInDown 1s ease;
    }

    .protection-section p.intro {
        font-size: 1.1rem;
        color: #d1cbe9;
        max-width: 800px;
        margin: 0 auto 60px;
        line-height: 1.7;
        animation: fadeInUp 1.2s ease;
    }


    .protection-section .protection-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }


    .protection-section .protection-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 30px 25px;
        border-radius: 18px;
        text-align: left;
        border: 1px solid rgba(255, 180, 0, 0.15);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        overflow: hidden;
        opacity: 0;
        animation: fadeUp 1s forwards;
    }

        .protection-section .protection-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .protection-section .protection-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .protection-section .protection-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .protection-section .protection-card:nth-child(4) {
            animation-delay: 0.8s;
        }

        .protection-section .protection-card:nth-child(5) {
            animation-delay: 1s;
        }

        .protection-section .protection-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
            border-color: rgba(0, 140, 255, 0.5);
        }

        .protection-section .protection-card h3 {
            font-size: 1.4rem;
            margin-bottom: 18px;
            /*background: linear-gradient(90deg, #ff7a18, #ffb400);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;*/
        }

        .protection-section .protection-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #ddd;
        }

   
        .protection-section .protection-card::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(255, 180, 0, 0.12), transparent 70%);
            transform: rotate(25deg);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .protection-section .protection-card:hover::before {
            opacity: 1;
        }


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .protection-section h2 {
        font-size: 2rem;
    }

    .protection-section p.intro {
        font-size: 1rem;
    }
}











/*how it work section 2*/





.work-innovation-section {
    padding: 80px 6%;
    position: relative;
    overflow: hidden;
    background: #111;
}

    .work-innovation-section h2 {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 20px;
        color: #fff;
        animation: fadeDown 1s ease;
    }

    .work-innovation-section p.intro {
        font-size: 1.15rem;
        color: #d1cbe9;
        max-width: 850px;
        margin: 0 auto 70px;
        text-align: center;
        line-height: 1.7;
        animation: fadeUp 1.2s ease;
    }


    .work-innovation-section .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }


    .work-innovation-section .feature-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 25px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 122, 24, 0.12), rgba(125, 95, 255, 0.12));
        backdrop-filter: blur(6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 1s forwards;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

        .work-innovation-section .feature-block:nth-child(2n) {
            background: linear-gradient(135deg, rgba(0, 200, 150, 0.15), rgba(125, 95, 255, 0.12));
        }

        .work-innovation-section .feature-block:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 8px 18px rgba(125, 95, 255, 0.25);
        }

    .work-innovation-section .feature-icon {
        font-size: 2.5rem;
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #ff7a18, #ffb400);
        box-shadow: 0 0 25px rgba(255, 122, 24, 0.6);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .work-innovation-section .feature-block:hover .feature-icon {
        transform: scale(1.2) rotate(8deg);
        box-shadow: 0 0 40px rgba(125, 95, 255, 0.6);
    }

    .work-innovation-section .feature-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        background: linear-gradient(90deg, #7d5fff, #00c896);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .work-innovation-section .feature-content p {
        font-size: 1rem;
        line-height: 1.7;
        color: #ccc;
    }


@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media(max-width: 768px) {
    .work-innovation-section h2 {
        font-size: 2.2rem;
    }

    .work-innovation-section p.intro {
        font-size: 1rem;
    }
}





/*TOKEN*/


/* Hero Section */
.token-hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #0a0a0a 85%, #b38600 15%);
}

    .token-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.2;
        background: linear-gradient(90deg, #00c6ff, #ff6600);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
        animation: slideIn 1.5s ease forwards;
        opacity: 0;
    }

    .token-hero p {
        font-size: 1.2rem;
        max-width: 700px;
        color: #fff;
    }

/* Token Structure */
.token-structure {
    padding: 60px 8%;
    width: 100%;
    background: #111;
}

    .token-structure h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2.2rem;
        color: #ff3c3c; /* Red-orange heading */
    }

/* Token Distribution Bar */
    .token-structure .token-bar {
        display: flex;
        height: 40px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 50px;
    }

        .token-structure .token-bar div {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
        }

    .token-structure .community {
        background: #ff3c3c;
        width: 70%;
    }
/* Red-orange */
    .token-structure .funding {
        background: #ff8c42;
        width: 15%;
    }
/* Orange */
    .token-structure .team {
        background: #ffc107;
        width: 9%;
    }
/* Gold */
    .token-structure .advisors {
        background: #2f80ed;
        width: 3%;
    }
/* Blue */
    .token-structure .bounty {
        background: #6a1b9a;
        width: 3%;
    }
/* Purple */

/* Grid Layout */
    .token-structure .token-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .token-structure .card {
        background: #202020 !important; /* Darker gray card */
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 150, 255, 0.3); /* Blue box shadow */
        transition: 0.3s;
    }

        .token-structure .card p {
            color: #fff;
        }

        .token-structure .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 150, 255, 0.4); /* Stronger blue glow */
        }

        .token-structure .card h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
            color: #00bfff; /* Blue heading on dark background */
        }

    .token-structure .highlight {
        background: linear-gradient(135deg, #ff3c3c, #00bfff); /* Red-orange to Blue gradient */
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff;
    }


/*ROADMAP PAGE STYLE*/





.roadmap-section {
    padding: 12rem 1rem;
    background: linear-gradient(180deg, #0d1117 0%, #151a23 100%);
}

    .roadmap-section .title {
        text-align: center;
        margin-bottom: 4rem;
    }

        .roadmap-section .title h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(90deg, #00c6ff, #ff6600);
            /* background: linear-gradient(90deg, #ff3c3c, #ff9800); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            animation: slideIn 1.5s ease forwards;
            opacity: 0;
        }

        .roadmap-section .title p {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            color: #9ca3af;
        }

/* Timeline */
    .roadmap-section .timeline {
        position: relative;
        max-width: 1000px;
        margin: auto;
        padding: 2rem 0;
    }

        .roadmap-section .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 3px; /* thinner line */
            height: 100%;
            background: #ed3939; /* new theme color */
            box-shadow: 0 0 12px rgba(237, 57, 57, 0.8);
            border-radius: 2px;
        }

    .roadmap-section .timeline-item {
        position: relative;
        width: 50%;
        padding: 2rem;
        box-sizing: border-box;
        animation: fadeInUp 1s ease forwards;
        opacity: 0;
    }

        .roadmap-section .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .roadmap-section .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .roadmap-section .timeline-item .content {
            background: linear-gradient(145deg, #1f2937, #111827);
            padding: 1.5rem 2rem;
            border-radius: 1rem;
            position: relative;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(237,57,57,0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .roadmap-section .timeline-item:hover .content {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 25px rgba(237,57,57,0.7);
        }

        .roadmap-section .timeline-item .icon {
            width: 50px; /* smaller circle */
            height: 50px;
            border-radius: 50%;
            background: #ed3939; /* theme color */
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem; /* smaller icon */
            font-weight: bold;
            position: absolute;
            top: 20px;
            right: -25px; /* adjust for smaller size */
            z-index: 10;
            box-shadow: 0 0 15px rgba(237, 57, 57, 0.8);
        }

        .roadmap-section .timeline-item:nth-child(even) .icon {
            left: -25px;
            right: auto;
        }

        .roadmap-section .timeline-item h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            margin: 0 0 0.5rem;
            color: #ed3939; /* heading matches theme */
        }

        .roadmap-section .timeline-item p {
            margin: 0;
            font-size: 1rem;
            color: #d1d5db;
            line-height: 1.6;
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .roadmap-section .timeline::before {
        left: 30px;
    }

    .roadmap-section .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px;
        text-align: left !important;
    }

        .roadmap-section .timeline-item .icon {
            left: 0 !important;
            right: auto;
        }
}









/* TEAM PAGE */

.team-main {
    background-color: #0b0f20;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

    .team-main a {
        text-decoration: none;
        color: inherit;
    }

/* Hero Section */
    .team-main .hero-section {
        background: linear-gradient(135deg, #0d0a02, #241a05);
        padding: 150px 20px 80px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* New Animation: Pulsating, Fading Circles */
        .team-main .hero-section::before, .hero-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 215, 0, 0.1);
            animation: pulseFade 15s infinite ease-out;
            z-index: 1;
        }

        .team-main .hero-section::before {
            width: 80vw;
            height: 80vw;
            top: -40vw;
            left: -40vw;
        }

        .team-main .hero-section::after {
            width: 60vw;
            height: 60vw;
            bottom: -30vw;
            right: -30vw;
            animation-delay: 5s;
            animation-duration: 18s;
        }

@keyframes pulseFade {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.team-main .hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

    .team-main .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        background: linear-gradient(90deg, #00c6ff, #ff6600);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
        animation: slideIn 1.5s ease forwards;
        opacity: 0;
    }

    .team-main .hero-content p {
        font-size: clamp(1rem, 2vw, 1.3rem);
        color: #d1d5db;
        margin-bottom: 30px;
    }

.team-main .btn-main {
    display: inline-block;
    background: linear-gradient(90deg, #ffd700, #b89c00);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

    .team-main .btn-main:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
        background: linear-gradient(90deg, #b89c00, #ffd700);
    }

/* Team Section */
.team-section {
    padding: 80px 20px;
    background-color: #111;
    text-align: center;
}

    .team-section h2 {
        font-size: 2.4rem;
        text-align: center;
        margin-bottom: 50px;
        animation: fadeInUp 1.2s ease forwards;
    }

        .team-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff3c3c, #cc0000); /* Red gradient */
            border-radius: 2px;
        }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Team Card - Red Theme */
.team-card {
    background-color: #1a1f38;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 60, 60, 0.2); /* Red border */
    will-change: transform, box-shadow;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 60, 60, 0.6); /* Red glow on hover */
    }

.team-img-container {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid #312604; /* Red border */
    box-shadow: 0 0 0 6px rgba(255, 60, 60, 0.3); /* Red shadow */
    transition: border-color 0.4s ease, transform 0.4s ease;
    will-change: transform;
}

.team-card:hover .team-img-container {
    border-color: #cc0000; /* Darker red on hover */
    transform: translateY(5px);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.linkedin-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0077b5; /* Keeping LinkedIn blue as it's an external brand color */
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

    .linkedin-badge:hover {
        transform: scale(1.1);
    }

.team-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff; 
}

.team-card p {
    font-size: 0.95rem;
    color: #d1d5db;
    text-align: center;
    margin-bottom: 15px;
    flex-grow: 1;
}

.team-card .read-more {
    color: #ff3c3c; /* Red accent */
    font-weight: 600;
    transition: color 0.3s ease;
}

    .team-card .read-more:hover {
        color: #cc0000; /* Darker red on hover */
        text-decoration: underline;
    }


/* Responsive adjustments */
@media (max-width: 768px) {
    .team-main .hero-section {
        padding: 80px 15px;
    }

    .team-main .hero-content h1 {
        font-size: 2.5rem;
    }

    .team-main .hero-content p {
        font-size: 1rem;
    }

    .team-main .team-section {
        padding: 60px 15px;
    }

        .team-main .team-section h2 {
            font-size: 2rem;
            margin-bottom: 40px;
        }
}

@media (max-width: 480px) {
    .team-main .team-grid {
        grid-template-columns: 1fr;
    }

    .team-main .hero-content h1 {
        font-size: 2rem;
    }

    .team-main .hero-content p {
        font-size: 0.9rem;
    }
}




