*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    min-height: 30px;
    width: 100%;
    background-color: #22222A;
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/banner.png);*/
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.header .title {
    color: #e6e6e6; 
    /* font-weight: bold; */
    font-size: 25px;
    padding-left: 20px;
  }
.brand-left{
    display: flex;
    align-items: center;
}

.nav-cta{
    display: inline-block;
    margin-left: 16px;
    padding: 8px 14px;
    text-decoration: none;
    color: #e6e6e6;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    font-size: 14px;
    transition: .5s;
}

.nav-cta:hover{
    border: 1px solid #52525c;
    background: #52525c;
}

nav{
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 60px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #e6e6e6;
    text-decoration: none;
    font-size: 16px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #52525c;
    display: block;
    margin: auto;
    transition: .5s;    
}
.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa{
    display: none;
}
nav .fa-solid {
    display: none;
}
/* ---------- Copyable Command Blocks ---------- */

.copy-block{
    border-left: 4px solid #52525c;
    padding: 14px 18px;
    margin: 20px auto;
    max-width: 980px;
    background: #1c1c23;
    color: #e6e6e6;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    user-select: text;
    border-radius: 10px;
    transition: background 0.3s, border-color 0.3s;

    white-space: pre-wrap;     /* keep line breaks + allow wrap */
    overflow-wrap: anywhere;   /* don’t overflow on long hashes */
}

/* ---------- Legacy (read-only) command blocks ---------- */
.legacy-block{
    border-left: 4px solid #444;
    padding: 14px 18px;
    margin: 20px auto;
    max-width: 980px;
    background: #18181f;
    color: #aaa;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 10px;
    white-space: pre-wrap;
}


.copy-block:hover{
    background: #25252f;
}

.copy-block::after{
    content: "Click to copy (one-liner)";
    display: block;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #999;
}

.main{
    min-height: 100vh;
    width: 100%;
    background-color: #22222A;
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/banner.png);*/
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.text-box {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    color: #e6e6e6;
}
.text-box h1{
    font-size: 48px;
    color: #e6e6e6;
}
.text-box p{
    margin: 20px 0 40px;
    font-size: 18px;
    color: #e6e6e6;
}

.home-row {
    display: flex;
    height: 100px;
}

.home-col {
    flex-basis: 50%;
    border-radius: 0px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: .5s;
}

.hero-btn {
    display: inline-block;
    line-height: 60px;
    text-decoration: none;
    color: #e6e6e6;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    font-size: 15px;
    background: transparent;
    /*position: relative;*/
    cursor: pointer;
    transition: 1s;
    width: 350px;
    height: 60px;
}

.hero-btn:hover{
    border: 1px solid #52525c;
    background: #52525c;
}

@media(max-width: 700px)
{
    .nav-cta{
    display: none;
    }

    .text-box {
        margin-top: 20%;
        height: auto;
        width: 95%;
    }
        .text-box p {
            margin: 10px 0 10px;
            font-size: 15px;
        }
    .home-col {
        padding: 8px 6px;
    }
    .hero-btn {
        margin-top: 1%;
        width: 90%;
        max-width: 350px;
        height: 60px;
    }
    .home-row {
        flex-direction: column;
        width: 100%;
        height: auto;
        font-size: 13px;
    }
    .header .title {
        font-size: 22px;
        padding-left: 1px;
    }
   .nav-links ul li
    {
        display: block;
    }
    .nav-links {
        position: fixed;
        background: #454555;
        height: 100vh;
        width: 120px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }
    .nav-links ul{
        padding: 10px;
    }
    nav .fa{
        display: block;
        color: #e6e6e6;
        margin: 10px;
        font-size: 22px;
        cursor: pointer; 
    }
    nav .fa-solid {
        display: block;
        color: #e6e6e6;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .text-box h1{
        font-size: 20px;
    }
    nav img {
        width: 40px;
    }
}

/*---------- roadmap --------*/
.roadmap{
    min-height: 100vh;
    width: 100%;
    background-color: #22222A;
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/banner.png);*/
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.roadmap-content{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    color: #e6e6e6;
}
h1{
    font-size: 36px;
    font-weight: 600;
    color: #e6e6e6;
}
p {
    color: #999;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 2%;
    display: flex;
    justify-content: space-between;  
}
  
.roadmap-col{
    flex-basis: 31%;
    background: #52525c;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: .5s;
}
h3 {
    text-align: center;
    font-weight: 600;
    margin: 0px 0;
    color: #b3b3b3;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width:700px){
    .row {
        flex-direction: column;

    }
    .roadmap-content {
        width: 90%;
    }
        .roadmap-content h1 {
            font-size: 22px;
        }
    .roadmap-col {
        padding: 2px 2px;
    }
        .roadmap-col h3 {
            font-size: 20px;
        }
}

/*---------- faq --------*/
.faqs {
    min-height: 100vh;
    width: 100%;
    background-color: #22222A;
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/banner.png);*/
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.faq-content {
    width: 80%;
    margin: auto;
    padding-top: 30px;
    color: #d9d9d9;
}
    
.faq{
    max-width: 800px;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d9d9d9;
    cursor: pointer;
}
.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .question h3 {
        font-size: 22px;
    }

    .answer{
        max-height: 0;
        overflow: hidden;
        transition: max-height 1.4s ease;
    }
.answer p {
    padding-top: 5px;
    line-height: 1.6;
    font-size: 16px;
    /*text-align: left;*/
}
.faq.active .answer{
    max-height: 300px;
    animation: fade 1s ease-in-out;
}

.faq.active svg {
    transform: rotate(180deg);
}
svg{
    transition: transform 0.5s ease-in;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:700px) {
    .faq-content {
        width: 85%;
        padding-top: 30px;
    }
        .faq-content h1 {
            font-size: 22px;
            text-align: center;
        }
    .faq {
        max-width: 800px;
        margin-top: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #d9d9d9;
    }
        .faq h3 {
            font-size: 18px;
        }
        .faq p {
            font-size: 16px;
        }
        .faq.active .answer {
            max-height: 700px;
            animation: fade 1s ease-in-out;
        }
} 

/*--------------Footer---------------*/

    .footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color: #22222A;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.footer p{
    color: #e6e6e6;
}


/*---------- Whitepaper -------------*/
.whitepaper{
    min-height: 100vh;
    width: 100%;
    background-color: #22222A;
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/banner.png);*/
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.whitepaper-content{
    width: 80%;
    margin: auto;
    padding-top: 20px;
}
.whitepaper-content h1{
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #e6e6e6;
}
.blog-block{
    width: 80%;
    margin: auto;
    padding: 10px 10px 10px 10px;
    background-color: #52525c;
    border-radius: 15px;
}
.blog-content{
    box-sizing: border-box;
    flex-basis: 65%;
    padding-left: 10px;
    padding-right: 10px;
}
.blog-content h1{
    color: #b3b3b3;
    font-weight: 600;
    font-size: 30px;
    text-align: left;
}
.blog-content h2{
    color: #b3b3b3;
    font-weight: 600;
    font-size: 22px;
}
.blog-content p{
    color: #999;
    padding: 0;
    font-size: 18px;
}
@media(max-width:700px) {
    .blog-block {
        width: 95%;
    }

    .whitepaper-content {
        width: 90%;
    }

        .whitepaper-content h1 {
            font-size: 22px;
            text-align: center;
        }
    .blog-content h1 {
        font-size: 20px;
        text-align: left;
    }
    .blog-content h2 {
        font-size: 18px;
    }

    .blog-content p {
        font-size: 16px;
    }
}


@media (max-width:700px){
    .sub-header h1{
        font-size: 24px;
    }
} 


/*------- Contact Us Page ------------*/
.contact{
    min-height: 100vh;
    width: 100%;
    background-color: #22222A;
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/banner.png);*/
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
    font-size: 20px;
}
    .contact-col p {
        font-size: 20px;
    }

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-col div .fab{
    font-size: 28px;
    color: #52525c;
    margin: 10px;
    margin-right: 30px;
}
    
.contact-col div p{
    padding: 0;
}
    .contact-col div h5 {
        font-size: 20px;
        margin-bottom: 5px;
        color: #52525c;
        font-weight: 400;
        padding-top: 10px;
    }

@media (max-width:700px) {
    .contact-us {
        width: 90%;
        margin: auto;
        padding-top: 20px;
    }

    .contact-col div h5 {
        font-size: 18px;
    }

        .contact-col div {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
} 

.footer-link{
    text-decoration: none;
    color: #777;
}













