/* ====================================
   AXIO Exchange - Global Stylesheet
   Theme: Black & Blue Tech Style
==================================== */

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#050505;
    color:#ffffff;
    line-height:1.8;
}

/* LINKS */

a{
    text-decoration:none;
    transition:0.3s;
}

ul{
    list-style:none;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* HEADER */

header{
    background:#000000;
    border-bottom:1px solid #0d6efd;
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(10px);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo img{
    height:60px;
    width:auto;
}

/* NAVIGATION */

nav ul{
    display:flex;
    gap:30px;
}

nav ul li a{
    color:#ffffff;
    font-size:16px;
    font-weight:600;
    letter-spacing:0.5px;
}

nav ul li a:hover{
    color:#0d6efd;
}

/* BANNER */

.banner{
    height:650px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    background-size:cover;
    background-position:center;
}

.banner::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.banner-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.banner h1{
    font-size:68px;
    color:#0d6efd;
    margin-bottom:20px;
    text-transform:uppercase;
}

.banner p{
    font-size:22px;
    margin-bottom:15px;
    color:#e2e2e2;
}

/* BUTTONS */

.btn{
    display:inline-block;
    padding:14px 35px;
    background:#0d6efd;
    color:#ffffff;
    border-radius:5px;
    font-weight:600;
    margin-top:15px;
}

.btn:hover{
    background:#3385ff;
    transform:translateY(-2px);
}

/* SECTION */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#0d6efd;
    margin-bottom:15px;
}

.section-title p{
    color:#bdbdbd;
    max-width:700px;
    margin:auto;
}

/* CARDS */

.card{
    background:#101010;
    border:1px solid #1f3d70;
    border-radius:12px;
    padding:30px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#0d6efd;
    box-shadow:0 0 25px rgba(13,110,253,.25);
}

/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.feature-card{
    background:#101010;
    border:1px solid #1f3d70;
    border-radius:12px;
    overflow:hidden;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(13,110,253,.25);
}

.feature-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.feature-content{
    padding:25px;
}

.feature-content h3{
    color:#0d6efd;
    margin-bottom:10px;
}

/* STATS */

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    background:#101010;
    border:1px solid #1f3d70;
    padding:35px;
    text-align:center;
    border-radius:10px;
}

.stat-box h3{
    color:#0d6efd;
    font-size:42px;
    margin-bottom:10px;
}

/* ABOUT */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-grid img{
    width:100%;
    border-radius:12px;
}

/* MISSION */

.mission-box{
    background:#101010;
    padding:40px;
    border-left:5px solid #0d6efd;
    border-radius:10px;
}

/* VALUES */

.values{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.value-card{
    background:#101010;
    padding:30px;
    border-radius:10px;
    border:1px solid #1f3d70;
}

.value-card h3{
    color:#0d6efd;
    margin-bottom:15px;
}

/* FAQ */

.faq-item{
    background:#101010;
    border:1px solid #1f3d70;
    margin-bottom:20px;
    border-radius:10px;
    overflow:hidden;
}

.faq-question{
    padding:20px;
    font-weight:600;
    color:#0d6efd;
}

.faq-answer{
    padding:0 20px 20px;
    color:#dddddd;
}

/* CONTACT */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info{
    background:#101010;
    padding:35px;
    border-radius:10px;
    border:1px solid #1f3d70;
}

.contact-info h3{
    color:#0d6efd;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:12px;
}

.contact-info a{
    color:#4ea1ff;
}

.contact-info a:hover{
    color:#ffffff;
}

/* FORM */

.contact-form{
    background:#101010;
    padding:35px;
    border-radius:10px;
    border:1px solid #1f3d70;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    background:#1b1b1b;
    color:#ffffff;
    border-radius:5px;
}

.contact-form textarea{
    resize:vertical;
    min-height:180px;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/* SOCIAL */

.social-links{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-links a{
    background:#0d6efd;
    padding:12px 18px;
    border-radius:6px;
    color:#ffffff;
}

.social-links a:hover{
    background:#3385ff;
}

/* CTA */

.cta{
    background:linear-gradient(
        135deg,
        #071426,
        #0b2548
    );
    text-align:center;
    padding:100px 20px;
}

.cta h2{
    font-size:42px;
    color:#ffffff;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:25px;
}

/* FOOTER */

footer{
    background:#000000;
    border-top:1px solid #0d6efd;
    text-align:center;
    padding:30px;
}

footer p{
    color:#bcbcbc;
}

/* IMAGE PLACEHOLDER */

.image-placeholder{
    width:100%;
    height:350px;
    background:#111;
    border:2px dashed #0d6efd;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#0d6efd;
    border-radius:10px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .banner h1{
        font-size:48px;
    }

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .banner{
        height:500px;
    }

    .banner h1{
        font-size:38px;
    }

    .banner p{
        font-size:18px;
    }

    .section-title h2{
        font-size:32px;
    }

}
```
