/*=========================================================
  STRATIQLAB - STYLE.CSS
  PART 1
==========================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*======================
RESET
=======================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

/*======================
SCROLLBAR
=======================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#09111f;
}

::-webkit-scrollbar-thumb{
    background:#0B5FFF;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#FFD23F;
}

/*======================
CONTAINER
=======================*/

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*======================
BACKGROUND EFFECTS
=======================*/

body::before{
    content:"";
    position:fixed;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#0B5FFF55,transparent 70%);
    top:-250px;
    left:-250px;
    filter:blur(80px);
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#FFD23F22,transparent 70%);
    right:-200px;
    bottom:-200px;
    filter:blur(90px);
    z-index:-2;
}

/*======================
HEADER
=======================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(6,10,24,.75);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    font-size:30px;
    font-weight:800;
    letter-spacing:.5px;
    color:#fff;
}

.logo span{
    color:#0B5FFF;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#ddd;
    transition:.35s;
    font-weight:500;
}

nav ul li a:hover{
    color:#FFD23F;
}

/*======================
BUTTONS
=======================*/

.btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    background:#0B5FFF;
    color:#fff;
    text-decoration:none;
    transition:.35s;
    font-weight:600;
    box-shadow:0 10px 25px rgba(11,95,255,.35);
}

.btn:hover{
    transform:translateY(-4px);
    background:#FFD23F;
    color:#111;
}

.btn-outline{
    display:inline-block;
    margin-left:15px;
    padding:14px 32px;
    border-radius:50px;
    border:2px solid #0B5FFF;
    color:#fff;
    text-decoration:none;
    transition:.35s;
}

.btn-outline:hover{
    background:#0B5FFF;
}

/*======================
HERO
=======================*/

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:80px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-left h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-left h1 span{
    color:#FFD23F;
}

.hero-left p{
    color:#b8bfd4;
    font-size:18px;
    margin-bottom:40px;
}

/*======================
GLASS CARDS
=======================*/

.hero-right{
    display:grid;
    gap:25px;
}

.glass-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border-radius:24px;
    padding:35px;
    transition:.4s;
}

.glass-card:hover{
    transform:translateY(-10px);
    border-color:#0B5FFF;
    box-shadow:0 20px 40px rgba(11,95,255,.25);
}

.glass-card i{
    font-size:40px;
    color:#FFD23F;
    margin-bottom:20px;
}

.glass-card h3{
    margin-bottom:10px;
}

.glass-card p{
    color:#c8c8d4;
}

/*======================
SECTION
=======================*/

section{
    padding:120px 0;
}

section h2{
    text-align:center;
    font-size:46px;
    margin-bottom:20px;
    font-weight:700;
}

section> .container>p{
    text-align:center;
    max-width:720px;
    margin:0 auto 60px;
    color:#b8bfd4;
}

/*======================
ABOUT STATS
=======================*/

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stats div{
    background:#111827;
    padding:40px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
}

.stats div:hover{
    transform:translateY(-8px);
    border-color:#0B5FFF;
}

.stats h3{
    font-size:42px;
    color:#FFD23F;
}

.stats span{
    color:#bbb;
}

/*======================
SERVICES
=======================*/

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#111827;
    padding:40px;
    border-radius:22px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
}

.service-card:hover{
    transform:translateY(-12px);
    background:#0B5FFF;
}

.service-card i{
    font-size:50px;
    color:#FFD23F;
    margin-bottom:20px;
}

.service-card h3{
    font-size:22px;
}
/*=========================================================
  STRATIQLAB - STYLE.CSS
  PART 2
==========================================================*/


/*======================
PORTFOLIO
=======================*/

.portfolio{
    position:relative;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.project{
    height:280px;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    background:linear-gradient(135deg,#0B5FFF,#111827);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    transition:.45s;
}

.project::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

    transition:.4s;

}

.project:hover{

    transform:translateY(-12px) scale(1.03);

    box-shadow:0 30px 60px rgba(11,95,255,.35);

}

.project:hover::before{

    background:rgba(11,95,255,.15);

}


/*======================
CONTACT
=======================*/

.contact form{

    max-width:800px;

    margin:auto;

    display:grid;

    gap:20px;

}

.contact input,
.contact textarea{

    width:100%;

    padding:18px 22px;

    border:none;

    outline:none;

    border-radius:14px;

    background:#111827;

    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    font-size:16px;

}

.contact textarea{

    resize:none;

    min-height:180px;

}

.contact input:focus,
.contact textarea:focus{

    border-color:#0B5FFF;

    box-shadow:0 0 20px rgba(11,95,255,.25);

}

.contact button{

    border:none;

    cursor:pointer;

    width:220px;

}


/*======================
FOOTER
=======================*/

footer{

    background:#030510;

    padding:70px 0 30px;

    border-top:1px solid rgba(255,255,255,.05);

}

footer h3{

    text-align:center;

    font-size:34px;

    margin-bottom:15px;

}

footer p{

    text-align:center;

    color:#888;

}


/*======================
ANIMATED GRADIENT
=======================*/

.hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:linear-gradient(
        45deg,
        #0B5FFF,
        #00D4FF,
        #FFD23F
    );

    border-radius:50%;

    filter:blur(130px);

    opacity:.22;

    top:120px;

    right:-120px;

    animation:floatGlow 8s infinite alternate;

    z-index:-1;

}

@keyframes floatGlow{

    from{

        transform:translateY(0px);

    }

    to{

        transform:translateY(-40px);

    }

}


/*======================
FLOAT ANIMATION
=======================*/

.glass-card:nth-child(1){

    animation:float1 4s infinite ease-in-out;

}

.glass-card:nth-child(2){

    animation:float2 5s infinite ease-in-out;

}

.glass-card:nth-child(3){

    animation:float3 6s infinite ease-in-out;

}

@keyframes float1{

    50%{

        transform:translateY(-12px);

    }

}

@keyframes float2{

    50%{

        transform:translateY(10px);

    }

}

@keyframes float3{

    50%{

        transform:translateY(-18px);

    }

}


/*======================
HEADINGS
=======================*/

h1,h2,h3,h4{

    letter-spacing:.5px;

}

h2{

    position:relative;

}

h2::after{

    content:"";

    width:80px;

    height:4px;

    background:#FFD23F;

    display:block;

    margin:18px auto 0;

    border-radius:50px;

}


/*======================
UTILITY
=======================*/

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:20px;

}

.mt-2{

    margin-top:40px;

}

.mt-3{

    margin-top:60px;

}

.mb-1{

    margin-bottom:20px;

}

.mb-2{

    margin-bottom:40px;

}

.mb-3{

    margin-bottom:60px;

}


/*======================
SHADOWS
=======================*/

.shadow{

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.glow{

    box-shadow:0 0 30px rgba(11,95,255,.45);

}


/*======================
HOVER EFFECTS
=======================*/

.service-card,
.stats div,
.project,
.glass-card{

    transition:all .4s ease;

}

.service-card:hover{

    transform:translateY(-12px);

}

.stats div:hover{

    box-shadow:0 25px 45px rgba(11,95,255,.25);

}

.project:hover{

    filter:brightness(1.08);

}


/*======================
SELECTION
=======================*/

::selection{

    background:#FFD23F;

    color:#111;

}