*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#030712;
background-image:
radial-gradient(circle at 20% 20%,rgba(69,255,157,.08),transparent 30%),
radial-gradient(circle at 80% 40%,rgba(0,132,255,.12),transparent 30%),
radial-gradient(circle at 50% 90%,rgba(255,255,255,.05),transparent 25%);
color:#fff;
overflow-x:hidden;
}

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

.navbar{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
width:95%;
max-width:1300px;

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

padding:18px 30px;

background:rgba(255,255,255,.05);
backdrop-filter:blur(20px);

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

border-radius:18px;

z-index:9999;

transition:.4s;
}

.logo-wrap{
display:flex;
align-items:center;
gap:12px;
font-weight:700;
font-size:18px;
}

.logo-wrap img{
width:45px;
height:45px;
object-fit:contain;
}

.nav-links{
display:flex;
align-items:center;
gap:25px;
}

.nav-links a{
color:#fff;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:#45ff9d;
}

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

.hero{
position:relative;
min-height:100vh;

display:flex;
align-items:center;

padding-top:140px;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;

width:700px;
height:700px;

background:rgba(69,255,157,.08);

border-radius:50%;

right:-250px;
top:-200px;

filter:blur(70px);
}

.hero::after{
content:'';
position:absolute;

width:500px;
height:500px;

background:rgba(0,132,255,.10);

border-radius:50%;

left:-150px;
bottom:-150px;

filter:blur(70px);
}

.container{
max-width:1200px;
margin:auto;
padding:20px;
position:relative;
z-index:2;
}

.hero-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
align-items:center;
}

.badge{
display:inline-flex;
align-items:center;
gap:10px;

padding:12px 20px;

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

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

border-radius:999px;

margin-bottom:25px;
}

.hero h1{
font-size:78px;
line-height:1.05;
font-weight:800;

letter-spacing:-2px;

margin-bottom:25px;
}

.hero span{
color:#45ff9d;
}

.hero p{
font-size:20px;
line-height:1.9;
opacity:.9;
max-width:650px;
margin-bottom:35px;
}

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

.btn{
display:inline-block;

padding:16px 35px;

border-radius:999px;

font-weight:700;

text-decoration:none;

background:linear-gradient(
135deg,
#45ff9d,
#18d8ff
);

color:#04142b;

transition:.4s;
}

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

box-shadow:
0 15px 35px rgba(69,255,157,.35);
}

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

.hero-card{
position:relative;

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

backdrop-filter:blur(25px);

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

padding:40px;

border-radius:30px;

text-align:center;

box-shadow:
0 20px 60px rgba(0,0,0,.35);

overflow:hidden;

animation:float 4s ease-in-out infinite;
}

.hero-card::before{
content:'';

position:absolute;
inset:0;

background:
linear-gradient(
135deg,
transparent,
rgba(255,255,255,.05),
transparent
);
}

.hero-card img{
max-width:220px;
margin-bottom:20px;
}

.hero-card h3{
margin-bottom:10px;
font-size:26px;
}

.hero-card p{
font-size:16px;
margin:0;
}

/* ======================
   SECTION
====================== */

.section{
padding:100px 20px;
max-width:1200px;
margin:auto;
}

.section h2{
font-size:50px;
text-align:center;
margin-bottom:25px;
}

.section > p{
text-align:center;
opacity:.85;
max-width:900px;
margin:auto auto 50px;
line-height:1.9;
}

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

.cards{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;
}

.card{
background:#0b1220;

padding:35px;

border-radius:24px;

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

transition:.4s;

position:relative;

overflow:hidden;
}

.card::before{
content:'';

position:absolute;

top:0;
left:0;

width:100%;
height:4px;

background:
linear-gradient(
90deg,
#45ff9d,
#18d8ff
);
}

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

border-color:#45ff9d;

box-shadow:
0 20px 45px rgba(69,255,157,.15);
}

.card h3{
font-size:22px;
margin-bottom:15px;
}

.card p{
opacity:.85;
line-height:1.8;
}

/* ======================
   FAQ
====================== */

.faq-item{
margin-bottom:20px;

border-radius:20px;

overflow:hidden;

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

.faq-btn{
width:100%;

padding:24px;

background:#0b1220;

color:#fff;

font-size:18px;

font-weight:600;

border:none;

cursor:pointer;

text-align:left;

transition:.3s;
}

.faq-btn:hover{
background:#121c31;
}

.faq-content{
display:none;

padding:25px;

background:#101827;

line-height:1.9;

color:#d8d8d8;
}

/* ======================
   CONTACT
====================== */

.center{
text-align:center;
}

/* ======================
   WHATSAPP
====================== */

.whatsapp{
position:fixed;

right:25px;
bottom:25px;

width:65px;
height:65px;

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

font-size:28px;

background:#25D366;

border-radius:50%;

text-decoration:none;

box-shadow:
0 15px 35px rgba(37,211,102,.4);

z-index:999;
}

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

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

}

/* ======================
   MOBILE
====================== */

@media(max-width:991px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero p{
margin-left:auto;
margin-right:auto;
}

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

.hero-card{
max-width:450px;
margin:auto;
}

}

@media(max-width:768px){

.navbar{
padding:15px 20px;
}

.nav-links{
display:none;
}

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

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

.section h2{
font-size:36px;
}

.cards{
grid-template-columns:1fr;
}

.whatsapp{
width:60px;
height:60px;
}

}