/* ==========================
FTP PREMIUM CSS - PART 1
BASE + BACKGROUND + HEADER
========================== */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Poppins',sans-serif;
    color:#ffffff;
    overflow-x:hidden;
    position:relative;

    background:
    linear-gradient(
        rgba(0,0,0,.70),
        rgba(0,0,0,.85)
    ),
    url('assets/bg.png');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

}


/* Container */

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}



/* Background Grid */

.grid-bg{

    position:fixed;
    inset:0;

    background-image:

    linear-gradient(
    rgba(0,255,136,.04) 1px,
    transparent 1px),

    linear-gradient(
    90deg,
    rgba(0,255,136,.04) 1px,
    transparent 1px);


    background-size:50px 50px;

    z-index:-3;

}



/* Glow Lights */


.light{

    position:fixed;
    border-radius:50%;
    filter:blur(100px);
    background:#00ff88;
    opacity:.15;
    z-index:-2;

}


.light-1{

    width:250px;
    height:250px;
    top:15%;
    left:5%;

}


.light-2{

    width:300px;
    height:300px;
    right:5%;
    top:45%;

}


.light-3{

    width:220px;
    height:220px;
    bottom:5%;
    left:40%;

}



/* Header */


.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:
    rgba(0,0,0,.75);

    backdrop-filter:blur(15px);

    border-bottom:
    1px solid rgba(0,255,136,.2);

}



.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 0;

}



.logo{

    font-size:34px;
    font-weight:700;
    color:#00ff88;

}



nav ul{

    display:flex;
    gap:35px;
    list-style:none;

}



nav a{

    color:#fff;
    text-decoration:none;
    transition:.3s;

}



nav a:hover{

    color:#00ff88;

}



/* ==========================
FTP PREMIUM CSS - PART 2
HERO SECTION
========================== */


.hero{

    min-height:100vh;

    padding:180px 0 100px;

    display:flex;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

}



.hero h1{

    font-size:64px;

    line-height:1.2;

    max-width:900px;

    margin:0 auto;

    font-weight:700;

}



.hero p{

    max-width:650px;

    margin:25px auto;

    color:#cccccc;

    font-size:18px;

    line-height:1.7;

}




/* Hero Buttons */


.hero-buttons{

    margin-top:35px;

}



.btn-primary{

    display:inline-block;

    padding:15px 35px;

    background:#00ff88;

    color:#000;

    text-decoration:none;

    font-weight:600;

    border-radius:50px;

    transition:.3s;

}



.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 30px #00ff88;

}




.btn-secondary{

    display:inline-block;

    padding:15px 35px;

    margin-left:15px;

    border:1px solid #00ff88;

    color:#00ff88;

    text-decoration:none;

    border-radius:50px;

    transition:.3s;

}



.btn-secondary:hover{

    background:#00ff88;

    color:#000;

}





/* Hero Image */


.hero-image{

    margin-top:60px;

    display:flex;

    justify-content:center;

}



.hero-image img{

    width:330px;

    max-width:90%;

    animation:float 5s infinite ease-in-out;

    filter:
    drop-shadow(0 0 30px rgba(0,255,136,.5));

}




/* Floating Animation */


@keyframes float{

    0%{

        transform:translateY(0);

    }


    50%{

        transform:translateY(-25px);

    }


    100%{

        transform:translateY(0);

    }

}





/* Hero Glow */


.hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    left:50%;

    top:40%;

    transform:translate(-50%,-50%);


    background:
    radial-gradient(
    circle,
    rgba(0,255,136,.20),
    transparent 70%
    );


    filter:blur(80px);

    z-index:-1;

}



/* ==========================
FTP PREMIUM CSS - PART 3
ABOUT SECTION
========================== */


section{

    padding:100px 0;

}


/* Section Title */


.section-title{

    text-align:center;

    margin-bottom:60px;

}


.section-title h2{

    font-size:42px;

    color:#00ff88;

    font-weight:700;

}






/* About Layout */


.about{

    position:relative;

}




.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}






/* About Content */


.about-content p{

    color:#cccccc;

    font-size:17px;

    line-height:1.8;

    margin-bottom:30px;

}




.about-content ul{

    list-style:none;

}



.about-content li{

    padding:15px 0;

    border-bottom:

    1px solid rgba(255,255,255,.08);


    color:#ffffff;

    font-size:16px;

}



.about-content li::before{

    content:"✓ ";

    color:#00ff88;

    font-weight:bold;

}





/* About Image */


.about-image{

    display:flex;

    justify-content:center;

    align-items:center;

}




.about-image img{

    width:100%;

    max-width:450px;

    border-radius:25px;


    filter:

    drop-shadow(0 0 35px rgba(0,255,136,.25));


    animation:float 6s infinite ease-in-out;

}





/* About Glow */


.about::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    left:-150px;

    top:50px;

    background:

    rgba(0,255,136,.08);


    filter:blur(120px);

    z-index:-1;

}






/* Mobile */


@media(max-width:768px){


.about-grid{

    grid-template-columns:1fr;

    gap:40px;

}


.about-content{

    text-align:center;

}


.about-content li{

    text-align:left;

}



.section-title h2{

    font-size:32px;

}



}

/* ==========================
FTP PREMIUM CSS - PART 4
FEATURES SECTION
========================== */


.features{

    position:relative;

}




.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}





/* Feature Card */


.feature-card{

    background:

    rgba(15,15,15,.75);

    padding:35px 30px;

    border-radius:20px;


    border:

    1px solid rgba(0,255,136,.15);


    backdrop-filter:blur(10px);


    transition:.4s;


    position:relative;

    overflow:hidden;

}





.feature-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    top:-60px;

    right:-60px;


    background:#00ff88;


    opacity:.08;


    filter:blur(40px);


}





.feature-card:hover{

    transform:

    translateY(-10px);


    border-color:#00ff88;


    box-shadow:

    0 0 35px rgba(0,255,136,.20);

}






.feature-card h3{

    color:#00ff88;

    font-size:22px;

    margin-bottom:15px;

}




.feature-card p{

    color:#cfcfcf;

    line-height:1.7;

    font-size:15px;

}





/* Features Background Glow */


.features::before{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    right:-150px;

    top:100px;


    background:

    rgba(0,255,136,.08);


    filter:blur(120px);


    z-index:-1;

}





/* Tablet */


@media(max-width:992px){


.feature-grid{

    grid-template-columns:

    repeat(2,1fr);

}


}





/* Mobile */


@media(max-width:600px){


.feature-grid{

    grid-template-columns:1fr;

}


.feature-card{

    padding:30px 25px;

}


}


/* ==========================
FTP PREMIUM CSS - PART 5
AI SECTION
========================== */


.ai-section{

    position:relative;

}



.ai-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}




/* AI Content */


.ai-content h2{

    font-size:48px;

    line-height:1.2;

    margin-bottom:25px;

}




.ai-content p{

    color:#cccccc;

    font-size:17px;

    line-height:1.8;

    margin-bottom:35px;

}





/* AI Points */


.ai-points{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}




.ai-points div{

    background:

    rgba(15,15,15,.75);


    padding:20px;


    border-radius:15px;


    border:

    1px solid rgba(0,255,136,.15);


    color:#fff;


    transition:.3s;

}




.ai-points div:hover{

    border-color:#00ff88;


    transform:translateY(-5px);


    box-shadow:

    0 0 25px rgba(0,255,136,.15);

}




/* AI Image */


.ai-image{

    display:flex;

    justify-content:center;

    align-items:center;

}




.ai-image img{

    width:100%;

    max-width:480px;


    border-radius:25px;


    filter:

    drop-shadow(

    0 0 35px rgba(0,255,136,.25)

    );


    animation:float 6s infinite ease-in-out;

}







/* AI Glow */


.ai-section::before{

    content:"";

    position:absolute;


    width:400px;

    height:400px;


    left:50%;

    top:20%;


    background:

    rgba(0,255,136,.08);


    filter:blur(120px);


    z-index:-1;

}






/* Tablet */


@media(max-width:992px){


.ai-grid{

    grid-template-columns:1fr;

    text-align:center;

}



.ai-points{

    grid-template-columns:1fr 1fr;

}



}




/* Mobile */


@media(max-width:600px){


.ai-content h2{

    font-size:34px;

}



.ai-points{

    grid-template-columns:1fr;

}



}


/* ==========================
FTP PREMIUM CSS - PART 6
HOW IT WORKS SECTION
========================== */


.works{

    position:relative;

}





.works-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}





/* Work Card */


.work-card{

    background:

    rgba(15,15,15,.75);


    padding:35px 25px;


    border-radius:20px;


    text-align:center;


    border:

    1px solid rgba(0,255,136,.15);


    backdrop-filter:blur(10px);


    transition:.4s;


}





.work-card:hover{


    transform:

    translateY(-10px);


    border-color:#00ff88;


    box-shadow:

    0 0 30px rgba(0,255,136,.20);


}




.work-card h3{

    color:#00ff88;

    font-size:22px;

    margin-bottom:15px;

}




.work-card p{

    color:#cfcfcf;

    line-height:1.7;

    font-size:15px;

}





/* Number Glow */


.work-card h3::first-letter{

    text-shadow:

    0 0 15px #00ff88;

}






/* Works Background Glow */


.works::before{

    content:"";


    position:absolute;


    width:350px;

    height:350px;


    right:-150px;

    top:50px;



    background:

    rgba(0,255,136,.08);



    filter:blur(120px);


    z-index:-1;

}







/* Tablet */


@media(max-width:992px){


.works-grid{

    grid-template-columns:
    repeat(2,1fr);

}


}





/* Mobile */


@media(max-width:600px){


.works-grid{

    grid-template-columns:1fr;

}


.work-card{

    padding:30px 20px;

}


}




/* ==========================
FTP PREMIUM CSS - PART 7
BLOCKCHAIN + COMMUNITY
========================== */


/* Blockchain Section */


.blockchain{

    position:relative;

}




.blockchain-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}





/* Blockchain List */


.blockchain-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}



.blockchain-list div{


    background:

    rgba(15,15,15,.75);


    padding:22px 30px;


    border-radius:15px;


    border:

    1px solid rgba(0,255,136,.15);


    color:#fff;


    transition:.3s;


}





.blockchain-list div:hover{


    border-color:#00ff88;


    transform:translateX(10px);


    box-shadow:

    0 0 25px rgba(0,255,136,.15);


}






/* Blockchain Image */


.blockchain-image{


    display:flex;

    justify-content:center;

    align-items:center;


}



.blockchain-image img{


    width:100%;


    max-width:450px;


    border-radius:25px;


    filter:

    drop-shadow(

    0 0 35px rgba(0,255,136,.25)

    );


}





/* Blockchain Glow */


.blockchain::before{


    content:"";


    position:absolute;


    width:400px;


    height:400px;


    left:-150px;


    top:50px;


    background:

    rgba(0,255,136,.08);


    filter:blur(120px);


    z-index:-1;


}







/* Community Section */


.community{


    text-align:center;


    position:relative;


}





.community h2{


    font-size:48px;


    margin-bottom:20px;


    color:#00ff88;


}





.community p{


    max-width:700px;


    margin:auto;


    color:#cccccc;


    font-size:18px;


    line-height:1.8;


}






.community::before{


    content:"";


    position:absolute;


    width:500px;


    height:300px;


    left:50%;


    top:0;


    transform:translateX(-50%);



    background:

    rgba(0,255,136,.10);



    filter:blur(120px);


    z-index:-1;


}








/* Tablet */


@media(max-width:992px){


.blockchain-grid{

    grid-template-columns:1fr;

    gap:50px;

}



.blockchain-image{

    order:-1;

}



.community h2{

    font-size:38px;

}


}





/* Mobile */


@media(max-width:600px){


.community h2{

    font-size:32px;

}



.blockchain-list div{

    padding:18px 20px;

}


}


/* ==========================
FTP PREMIUM CSS - PART 8
FAQ + CTA + FOOTER + RESPONSIVE
========================== */


/* FAQ SECTION */


.faq{

    position:relative;

}



.faq > .container > h2{

    text-align:center;

    font-size:42px;

    color:#00ff88;

    margin-bottom:50px;

}




.faq-item{


    max-width:800px;

    margin:0 auto 20px;


    background:

    rgba(15,15,15,.75);


    border:

    1px solid rgba(0,255,136,.15);


    border-radius:15px;


    overflow:hidden;


}





.faq-item button{


    width:100%;


    padding:22px;


    background:transparent;


    border:none;


    color:#fff;


    text-align:left;


    font-size:18px;


    cursor:pointer;


}



.faq-item button:hover{


    color:#00ff88;


}




.faq-content{


    padding:0 22px 22px;


    color:#cccccc;


    line-height:1.7;


}







/* CTA SECTION */


.cta{


    text-align:center;


    position:relative;


}



.cta h2{


    max-width:800px;


    margin:0 auto 35px;


    font-size:48px;


    line-height:1.3;


}





.cta::before{


    content:"";


    position:absolute;


    width:500px;


    height:300px;


    left:50%;


    top:0;


    transform:translateX(-50%);


    background:

    rgba(0,255,136,.12);


    filter:blur(120px);


    z-index:-1;


}








/* FOOTER */


.footer{


    padding:40px 0;


    background:

    rgba(0,0,0,.85);


    border-top:

    1px solid rgba(0,255,136,.15);


    text-align:center;


}



.footer .logo{


    margin-bottom:15px;


}



.footer p{


    color:#aaa;


}








/* FINAL RESPONSIVE */


@media(max-width:992px){


.hero h1{

    font-size:48px;

}



.ai-content h2{

    font-size:38px;

}



.cta h2{

    font-size:38px;

}


}




@media(max-width:768px){


.header .container{


    flex-direction:column;

    gap:20px;


}



nav ul{


    gap:15px;

    flex-wrap:wrap;

    justify-content:center;


}



.hero{


    padding-top:160px;

}



.hero h1{


    font-size:38px;

}



.btn-secondary{


    margin-left:0;

    margin-top:15px;

}



.cta h2{


    font-size:30px;

}



.faq > .container > h2{


    font-size:32px;

}



}





@media(max-width:480px){



.logo{

    font-size:28px;

}



.hero h1{

    font-size:32px;

}



.section-title h2{

    font-size:30px;

}



}

/* ==========================
FTP PREMIUM CSS - PART 8
FAQ + CTA + FOOTER
========================== */


/* FAQ */

.faq{
    position:relative;
}


.faq > .container > h2{

    text-align:center;
    font-size:42px;
    color:#00ff88;
    margin-bottom:50px;

}


.faq-item{

    max-width:850px;
    margin:0 auto 20px;

    background:rgba(15,15,15,.75);

    border:1px solid rgba(0,255,136,.15);

    border-radius:15px;

    overflow:hidden;

}


.faq-item button{

    width:100%;

    padding:22px;

    background:transparent;

    border:none;

    color:#fff;

    text-align:left;

    font-size:18px;

    cursor:pointer;

}


.faq-item button:hover{

    color:#00ff88;

}


.faq-content{

    padding:0 22px 22px;

    color:#ccc;

    line-height:1.7;

}




/* CTA */


.cta{

    text-align:center;

    position:relative;

}


.cta h2{

    max-width:850px;

    margin:0 auto 40px;

    font-size:48px;

    line-height:1.3;

}


.cta::before{

    content:"";

    position:absolute;

    width:500px;

    height:300px;

    left:50%;

    top:0;

    transform:translateX(-50%);

    background:rgba(0,255,136,.12);

    filter:blur(120px);

    z-index:-1;

}





/* Footer */


.footer{

    padding:40px 0;

    background:rgba(0,0,0,.85);

    border-top:1px solid rgba(0,255,136,.15);

    text-align:center;

}


.footer .logo{

    margin-bottom:15px;

}


.footer p{

    color:#aaa;

}





/* Responsive */


@media(max-width:992px){

    .hero h1{
        font-size:48px;
    }


    .cta h2{
        font-size:38px;
    }

}



@media(max-width:768px){


.header .container{

    flex-direction:column;

}


nav ul{

    gap:15px;

    flex-wrap:wrap;

    justify-content:center;

}



.hero h1{

    font-size:38px;

}



.cta h2{

    font-size:30px;

}


.faq > .container > h2{

    font-size:32px;

}


}



@media(max-width:480px){


.logo{

    font-size:28px;

}


.hero h1{

    font-size:32px;

}


.section-title h2{

    font-size:30px;

}


}