*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#0a192f;
color:white;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#0d1f3c;
padding:20px 0;
position:sticky;
top:0;
z-index:100;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
margin-left:25px;
color:white;
text-decoration:none;
}

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
overflow:hidden;
background:linear-gradient(270deg,#0f2a4d,#1e4b85,#2b8cff,#1e4b85);
background-size:800% 800%;
animation:gradientMove 15s ease infinite;
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
opacity:.8;
margin-bottom:30px;
}

.hero-buttons a{
margin:10px;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

.btn-primary{
background:#2b8cff;
color:white;
}

.btn-secondary{
border:2px solid #2b8cff;
color:white;
}

.section{
padding:80px 10%;
text-align:center;
}

.dark{
background:#081426;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#11294b;
padding:30px;
border-radius:12px;
}

.stats{
display:flex;
justify-content:center;
gap:80px;
margin-top:40px;
}

.stats h3{
font-size:40px;
color:#2b8cff;
}

form{
display:flex;
flex-direction:column;
max-width:500px;
margin:auto;
gap:15px;
}

input,textarea{
padding:12px;
border:none;
border-radius:6px;
}

button{
padding:12px;
background:#2b8cff;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

footer{
text-align:center;
padding:30px;
background:#050f1e;
}

#particles{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
}

/* SCROLL REVEAL ANIMATION */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* SERVICE CARDS */

.service-card{
background:#0c1f3f;
padding:35px;
border-radius:10px;
transition:all 0.3s ease;
border:1px solid rgba(255,255,255,0.08);
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
border:1px solid #2b8cff;
}

/* CTA SECTION */

.cta{
text-align:center;
padding:100px 20px;
background:linear-gradient(135deg,#0f2a4d,#1e4b85);
}

.cta h2{
font-size:36px;
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
opacity:0.9;
}

/* PREMIUM BUTTON */

.btn-primary{
display:inline-block;
padding:14px 28px;
border-radius:30px;
background:linear-gradient(135deg,#2b8cff,#4fb3ff);
color:white;
text-decoration:none;
font-weight:600;
transition:all 0.3s ease;
box-shadow:0 8px 20px rgba(43,140,255,0.4);
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(43,140,255,0.6);
}

/* GLASS NAVBAR */

header{
position:sticky;
top:0;
backdrop-filter:blur(10px);
background:rgba(15,42,77,0.8);
border-bottom:1px solid rgba(255,255,255,0.08);
}

/* SCROLL PROGRESS BAR */

#progress-bar{
position:fixed;
top:0;
left:0;
height:4px;
background:#2b8cff;
width:0%;
z-index:9999;
}

/* BACKGROUND GRID */

body{
background-color:#0b1c36;
background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size:40px 40px;
}

.btn-secondary{
display:inline-block;
padding:14px 28px;
border-radius:30px;
border:2px solid #2b8cff;
color:#2b8cff;
text-decoration:none;
margin-left:15px;
transition:all 0.3s ease;
}

.btn-secondary:hover{
background:#2b8cff;
color:white;
}

.hero-content h1{
font-size:56px;
margin-bottom:20px;
}

.hero-content p{
font-size:20px;
margin-bottom:30px;
opacity:0.9;
}

.hero-buttons{
margin-bottom:40px;
}

/* POPUP */

.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.popup-box{
background:#0f2a4d;
padding:40px;
border-radius:10px;
width:350px;
text-align:center;
position:relative;
}

.popup-box h2{
margin-bottom:10px;
}

.popup-box input{
width:100%;
padding:10px;
margin-top:10px;
border:none;
border-radius:5px;
}

.close-btn{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}

/* STICKY CTA */

.sticky-cta{
position:fixed;
bottom:25px;
right:25px;
background:linear-gradient(135deg,#2b8cff,#4fb3ff);
color:white;
padding:15px 25px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
box-shadow:0 8px 20px rgba(43,140,255,0.4);
transition:all 0.3s ease;
z-index:9999;
}

.sticky-cta:hover{
transform:scale(1.05);
}

@keyframes gradientMove{

0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}

}

.calculator{
margin-top:30px;
}

.calculator input{
padding:12px;
border:none;
border-radius:6px;
margin-right:10px;
}

.calculator button{
padding:12px 20px;
background:#2b8cff;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

/* DASHBOARD */

.dashboard{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
margin-top:40px;
}

.dash-card{
background:#0c1f3f;
padding:30px;
border-radius:12px;
text-align:center;
border:1px solid rgba(255,255,255,0.08);
transition:all 0.3s ease;
}

.dash-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.4);
}

.dash-card h3{
margin-bottom:10px;
font-size:18px;
}

.dash-card p{
font-size:28px;
font-weight:bold;
color:#2b8cff;
}

/* GRADIENT BLOBS */

.blob{
position:absolute;
width:400px;
height:400px;
background:radial-gradient(circle,#2b8cff,#1e4b85);
border-radius:50%;
filter:blur(120px);
opacity:0.5;
animation:blobMove 20s infinite alternate;
}

.blob1{
top:-100px;
left:-100px;
}

.blob2{
bottom:-120px;
right:-120px;
animation-delay:5s;
}

@keyframes blobMove{

0%{transform:translate(0,0) scale(1);}
50%{transform:translate(80px,60px) scale(1.2);}
100%{transform:translate(-60px,-40px) scale(1);}

}

/* ================= */
/* MOBILE RESPONSIVE */
/* ================= */

@media (max-width:1024px){

/* GENERAL */

.section{
padding:80px 30px;
}

/* HERO */

.hero h1{
font-size:40px;
}

.hero p{
font-size:18px;
}

}


/* ================= */
/* MOBILE (PHONES) */
/* ================= */

@media (max-width:768px){

/* NAVBAR */

nav{
flex-direction:column;
gap:15px;
align-items:center;
}

nav ul{
flex-direction:column;
gap:10px;
padding:0;
margin:0;
}

nav a{
margin:5px 0;
}

/* HERO */

.hero{
height:auto;
padding:80px 20px;
text-align:center;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

/* BUTTONS */

.btn-primary{
padding:12px 22px;
font-size:14px;
}

/* GRID / SECTIONS */

.grid{
grid-template-columns:1fr;
gap:20px;
}

/* GENERAL SECTIONS */

.section{
padding:60px 20px;
text-align:center;
}

}


/* ================= */
/* SMALL PHONES */
/* ================= */

@media (max-width:480px){

.hero h1{
font-size:24px;
}

.hero p{
font-size:14px;
}

.btn-primary{
width:100%;
text-align:center;
}

}