/* =========================================
   GLOBAL RESET
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f172a;
    color:#ffffff;
    line-height:1.8;
    overflow-x:hidden;
}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#020617;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        45deg,
        #3b82f6,
        #8b5cf6
    );
    border-radius:20px;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    position:sticky;
    top:0;
    z-index:9999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:rgba(15,23,42,0.95);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    font-size:24px;
    font-weight:700;
    color:#60a5fa;
}

.logo i{
    margin-right:8px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:#ffffff;
    transition:.3s;
}

.nav-links a:hover{
    color:#60a5fa;
}

.nav-links a.active{
    color:#60a5fa;
    font-weight:600;
}

/* =========================================
   HERO
========================================= */

.hero{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:100px 8%;

    background:
    linear-gradient(
        135deg,
        #111827,
        #0f172a,
        #1e293b
    );
}

.hero-content{
    max-width:1000px;
}

.hero h1{

    font-size:72px;

    line-height:1.2;

    margin-bottom:25px;

    background:
    linear-gradient(
        45deg,
        #60a5fa,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero h2{
    font-size:32px;
    margin-bottom:25px;
    color:#cbd5e1;
}

.hero p{
    font-size:22px;
    color:#cbd5e1;
    margin-bottom:40px;
}

/* =========================================
   BUTTON
========================================= */

.btn{

    display:inline-block;

    padding:15px 35px;

    border-radius:50px;

    background:
    linear-gradient(
        45deg,
        #2563eb,
        #8b5cf6
    );

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
}

/* =========================================
   SECTIONS
========================================= */

.section{
    padding:90px 8%;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:42px;
    color:#60a5fa;
    margin-bottom:15px;
}

.section-header p{
    color:#cbd5e1;
}

/* =========================================
   CARDS
========================================= */

.card{

    background:#1e293b;

    padding:35px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:25px;

    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    color:#93c5fd;
    margin-bottom:15px;
}

.card p{
    color:#e2e8f0;
}

.card ul{
    padding-left:25px;
}

.card li{
    margin-bottom:10px;
}

/* =========================================
   GRID LAYOUTS
========================================= */

.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.three-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;
}

/* =========================================
   FEATURE BOX
========================================= */

.feature-box{

    background:#1e293b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box h3{
    color:#93c5fd;
    margin-bottom:15px;
}

.feature-box p{
    color:#cbd5e1;
}

/* =========================================
   WORKFLOW
========================================= */

.workflow{

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.step{

    width:400px;

    text-align:center;

    padding:18px;

    border-radius:15px;

    background:
    linear-gradient(
        45deg,
        #2563eb,
        #8b5cf6
    );

    font-weight:600;

    transition:.3s;
}

.step:hover{
    transform:scale(1.05);
}

.arrow{
    font-size:30px;
    color:#60a5fa;
}

/* =========================================
   TABLES
========================================= */

table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;
}

th{

    background:#2563eb;

    color:white;

    padding:15px;

    text-align:left;
}

td{

    padding:15px;

    border:1px solid rgba(255,255,255,.08);

    background:#1e293b;
}

tr:hover td{
    background:#243447;
}

/* =========================================
   PRE BLOCKS
========================================= */

pre{

    background:#020617;

    padding:20px;

    border-radius:15px;

    overflow-x:auto;

    color:#93c5fd;

    margin-top:15px;

    white-space:pre-wrap;
}

/* =========================================
   IMAGES
========================================= */

img{

    max-width:100%;

    border-radius:20px;

    transition:.4s;
}

img:hover{
    transform:scale(1.02);
}

/* =========================================
   HR
========================================= */

hr{

    border:none;

    height:1px;

    background:
    rgba(255,255,255,.1);

    margin:20px 0;
}

/* =========================================
   FOOTER
========================================= */

footer{

    padding:80px 8%;

    text-align:center;

    background:#020617;
}

footer h2{
    color:#60a5fa;
    margin-bottom:20px;
}

footer p{
    color:#cbd5e1;
}

/* =========================================
   PROGRESS BAR
========================================= */

.progress-bar{

    position:fixed;

    top:0;
    left:0;

    width:0;

    height:4px;

    z-index:99999;

    background:
    linear-gradient(
        90deg,
        #3b82f6,
        #8b5cf6
    );
}

/* =========================================
   BACK TO TOP
========================================= */

.top-btn{

    position:fixed;

    bottom:20px;
    right:20px;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#2563eb;

    color:white;

    cursor:pointer;

    display:none;

    z-index:9999;

    transition:.3s;
}

.top-btn:hover{
    transform:scale(1.1);
}

/* =========================================
   FADE ANIMATION
========================================= */

.section{

    opacity:1;
    transform:none;
}

.section.show{

    opacity:1;
    transform:none;
}

/* =========================================
   BOOTSTRAP ICONS
========================================= */

.bi{
    margin-right:8px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .hero h1{
        font-size:56px;
    }

    .hero h2{
        font-size:28px;
    }

}

@media(max-width:768px){

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

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero h2{
        font-size:24px;
    }

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

    .section-header h2{
        font-size:30px;
    }

    .step{
        width:100%;
    }

    table{
        display:block;
        overflow-x:auto;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:34px;
    }

    .hero h2{
        font-size:20px;
    }

    .section{
        padding:70px 5%;
    }

}