*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
scroll-behavior:smooth;
}

body{
background:#050816;
color:white;
overflow-x:hidden;
}

/* Animated Background */

.bg-animation{
position:fixed;
width:100%;
height:100%;
z-index:-1;
overflow:hidden;
}

.blob{
position:absolute;
border-radius:50%;
filter:blur(80px);
opacity:.3;
animation:float 12s infinite ease-in-out;
}

.blob1{
width:400px;
height:400px;
background:#2563eb;
top:-100px;
left:-100px;
}

.blob2{
width:350px;
height:350px;
background:#8b5cf6;
right:-100px;
top:100px;
animation-delay:3s;
}

.blob3{
width:300px;
height:300px;
background:#06b6d4;
bottom:-100px;
left:40%;
animation-delay:6s;
}

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(50px);}
100%{transform:translateY(0px);}
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:sticky;
top:0;
background:rgba(5,8,22,.8);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,.08);
z-index:999;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:28px;
font-weight:900;
}

.logo span{
color:#60a5fa;
}

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
font-weight:600;
}

.hero{
padding:120px 0;
text-align:center;
}

.hero h1{
font-size:clamp(3rem,8vw,6rem);
line-height:1.1;
}

.gradient{
background:linear-gradient(90deg,#60a5fa,#22d3ee,#8b5cf6);
-webkit-background-clip:text;
color:transparent;
}

.hero p{
max-width:800px;
margin:25px auto;
color:#cbd5e1;
font-size:20px;
}

.btn{
padding:15px 30px;
border-radius:14px;
text-decoration:none;
font-weight:700;
display:inline-block;
transition:.3s;
}

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

.primary-btn{
background:#2563eb;
color:white;
box-shadow:0 0 30px rgba(37,99,235,.4);
}

.secondary-btn{
border:1px solid #60a5fa;
color:white;
}

.floating-btn{
animation:bounce 2s infinite;
}

@keyframes bounce{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-10px);
}
}

section{
padding:90px 0;
}

.section-title{
font-size:42px;
text-align:center;
margin-bottom:15px;
}

.section-subtitle{
text-align:center;
color:#94a3b8;
margin-bottom:50px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:rgba(255,255,255,.05);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.08);
padding:30px;
border-radius:20px;
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 0 30px rgba(96,165,250,.2);
}

.contact-form{
max-width:800px;
margin:auto;
background:rgba(255,255,255,.05);
padding:35px;
border-radius:25px;
}

input,
textarea,
select{
width:100%;
padding:15px;
margin-bottom:15px;
border:none;
border-radius:12px;
background:#10172a;
color:white;
}

button{
width:100%;
padding:15px;
border:none;
border-radius:12px;
background:#2563eb;
color:white;
font-weight:700;
cursor:pointer;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
padding:15px 20px;
border-radius:999px;
color:white;
text-decoration:none;
font-weight:800;
animation:bounce 2s infinite;
}

footer{
text-align:center;
padding:40px;
color:#94a3b8;
}
.hero::after{
content:'';
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle,#60a5fa33,transparent);
top:-150px;
right:-150px;
pointer-events:none;
}

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

.card p{
color:#cbd5e1;
}

.card ul{
padding-left:20px;
}

.card li{
margin-bottom:10px;
}

.grid .card:hover{
transform:translateY(-10px) scale(1.02);
}
.floating-demo-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: linear-gradient(90deg, #00f5ff, #7c4dff);
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(124,77,255,0.6);
  z-index: 9999;
  transition: 0.3s;
}

.floating-demo-btn:hover {
  transform: scale(1.05);
}
