:root {
    --primary: #2563eb;
    --secondary: #7c3aed;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;

    --shadow:
        0 10px 30px rgba(0,0,0,0.08);

    --radius: 20px;
}

.page-content{
    padding-top:74px; /* same as navbar height */
}

html {
    scroll-behavior: smooth;
}

.hero{
    margin-top:-84px;
    padding-top:84px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #060816;
}

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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family: "Inter", sans-serif;
    background:#f8fafc;
    color:#0f172a;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1400px;
    padding:0 32px;
    margin:auto;
}

section{
    padding:100px 0;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.btn{
    display:inline-block;
    padding:16px 36px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );
    color:white;
    font-weight:600;
    transition:.3s;
    box-shadow:var(--shadow);
}

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

/* ==========================
   GLOBAL SCROLL REVEAL
========================== */


/*========================================
PAGE LOADER
========================================*/

#page-loader{

    position:fixed;

    top:0;
    left:0;

    width:0;

    height:3px;

    background:linear-gradient(
        90deg,
        #2563eb,
        #60a5fa
    );

    z-index:999999;

    transition:width .3s ease;

    box-shadow:
        0 0 10px rgba(37,99,235,.4);

}

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

#scroll-progress{

    position:fixed;

    top:0;
    left:0;

    width:0%;
    height:4px;

    border-radius:0 8px 8px 0;

    background:linear-gradient(
        90deg,
        #2563eb,
        #60a5fa,
        #93c5fd
    );

    box-shadow:
        0 0 12px rgba(37,99,235,.5),
        0 0 20px rgba(37,99,235,.25);

    z-index:999999;

    transition:width .05s linear;

}