/* ===========================
   GOOGLE FONT
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#07111f;
color:#fff;
overflow-x:hidden;
line-height:1.7;

}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* ===========================
BACKGROUND
=========================== */

body::before{

content:"";
position:fixed;
top:-250px;
left:-250px;
width:700px;
height:700px;
background:#0057ff;
filter:blur(220px);
opacity:.22;
z-index:-2;

}

body::after{

content:"";
position:fixed;
bottom:-250px;
right:-250px;
width:700px;
height:700px;
background:#00bfff;
filter:blur(220px);
opacity:.18;
z-index:-2;

}

/* ===========================
HEADER
=========================== */

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(8,16,30,.82);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,.08);

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;
height:80px;

}

.logo{

font-size:32px;
font-weight:800;
letter-spacing:2px;
color:#fff;

}

.logo span{

color:#2e9bff;

}

nav ul{

display:flex;
gap:35px;

}

nav ul li a{

color:#fff;
font-weight:500;
transition:.35s;

}

nav ul li a:hover{

color:#2e9bff;

}

.header-btn{

padding:13px 28px;
border-radius:50px;
background:#2e9bff;
color:#fff;
font-weight:600;
transition:.35s;

}

.header-btn:hover{

transform:translateY(-3px);
box-shadow:0 12px 35px rgba(0,140,255,.45);

}

/* ===========================
HERO
=========================== */

.hero{

padding-top:150px;
padding-bottom:120px;

}

.hero-grid{

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;

}

.hero h1{

font-size:62px;
line-height:1.15;
font-weight:800;
margin-bottom:22px;

}

.hero p{

font-size:19px;
color:#bfc8d6;
margin-bottom:35px;
max-width:560px;

}

.hero-btns{

display:flex;
gap:18px;
margin-bottom:50px;

}

.btn{

display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 34px;
border-radius:60px;
background:#2e9bff;
color:#fff;
font-weight:600;
transition:.35s;

}

.btn:hover{

transform:translateY(-4px);
box-shadow:0 15px 35px rgba(0,132,255,.40);

}

.btn-outline{

display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 34px;
border-radius:60px;
border:2px solid #2e9bff;
color:#fff;
transition:.35s;

}

.btn-outline:hover{

background:#2e9bff;

}

/* ===========================
STATS
=========================== */

.stats{

display:flex;
gap:25px;
flex-wrap:wrap;

}

.stats div{

background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(18px);
padding:28px;
border-radius:18px;
min-width:155px;

}

.stats h2{

font-size:36px;
color:#2e9bff;

}

.stats span{

color:#d7d7d7;

}

/* ===========================
HERO IMAGE
=========================== */

.hero-image{

display:flex;
justify-content:center;

}

.hero-image img{

width:100%;
max-width:560px;
animation:float 5s ease-in-out infinite;
filter:drop-shadow(0 25px 50px rgba(0,140,255,.30));

}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0);
}

}

/* ===========================
SECTION TITLE
=========================== */

section{

padding:90px 0;

}

section h2{

font-size:42px;
text-align:center;
margin-bottom:18px;

}

.section-text{

text-align:center;
color:#bfc8d6;
max-width:700px;
margin:auto auto 60px;

}

/* ===========================
COMMON CARD
=========================== */

.card{

background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(15px);
border-radius:20px;
padding:35px;
transition:.35s;

}

.card:hover{

transform:translateY(-10px);
border-color:#2e9bff;
box-shadow:0 20px 50px rgba(0,140,255,.18);

}