*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#050816;
color:white;
overflow-x:hidden;
}

.particles{
position:fixed;
width:100%;
height:100%;
background:
radial-gradient(circle at 10% 20%, rgba(0,255,255,0.15), transparent 20%),
radial-gradient(circle at 90% 10%, rgba(255,0,255,0.15), transparent 20%),
radial-gradient(circle at 50% 90%, rgba(0,140,255,0.15), transparent 25%);
animation:bg 10s infinite alternate;
z-index:-2;
}

@keyframes bg{
from{transform:scale(1) rotate(0deg);}
to{transform:scale(1.1) rotate(3deg);}
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
position:sticky;
top:0;
backdrop-filter:blur(10px);
background:rgba(255,255,255,0.05);
z-index:999;
}

.logo{
font-size:32px;
font-weight:800;
}

.logo span{
color:#00d2ff;
}

nav{
display:flex;
gap:25px;
}

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

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 8%;
gap:50px;
}

.hero-left{
flex:1;
}

.hero-left h1{
font-size:68px;
line-height:1.2;
margin-bottom:25px;
}

.hero-left span{
background:linear-gradient(45deg,#00d2ff,#ff00cc);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-left p{
font-size:18px;
line-height:1.8;
color:#ddd;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:20px;
}

.btn{
padding:14px 30px;
background:linear-gradient(45deg,#00d2ff,#8a2be2);
border-radius:40px;
text-decoration:none;
color:white;
font-weight:600;
transition:0.4s;
display:inline-block;
}

.outline{
background:transparent;
border:2px solid #00d2ff;
}

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

.hero-right{
flex:1;
position:relative;
height:500px;
display:flex;
align-items:center;
justify-content:center;
}

.orb{
position:absolute;
border-radius:50%;
filter:blur(10px);
animation:float 6s infinite ease-in-out;
}

.orb1{
width:220px;
height:220px;
background:#00d2ff;
opacity:0.4;
top:50px;
left:80px;
}

.orb2{
width:180px;
height:180px;
background:#ff00cc;
opacity:0.4;
bottom:80px;
right:100px;
animation-delay:2s;
}

.orb3{
width:120px;
height:120px;
background:#8a2be2;
opacity:0.5;
top:200px;
right:220px;
animation-delay:1s;
}

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

.ai-box{
position:relative;
padding:40px;
border-radius:30px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(15px);
text-align:center;
z-index:2;
}

.services,.about,.contact{
padding:120px 8%;
}

.title{
text-align:center;
margin-bottom:60px;
}

.title h2{
font-size:48px;
margin-bottom:15px;
}

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

.service-card{
position:relative;
padding:35px;
border-radius:28px;
background:rgba(255,255,255,0.08);
overflow:hidden;
transition:0.5s;
backdrop-filter:blur(12px);
}

.service-card:hover{
transform:translateY(-15px) rotate(1deg);
}

.glow{
position:absolute;
width:200px;
height:200px;
background:linear-gradient(45deg,#00d2ff,#ff00cc);
filter:blur(60px);
opacity:0.3;
top:-80px;
right:-80px;
}

.service-card h3{
font-size:28px;
margin-bottom:15px;
position:relative;
z-index:2;
}

.service-card p{
line-height:1.7;
color:#ddd;
margin-bottom:25px;
position:relative;
z-index:2;
}

.service-card button{
padding:12px 25px;
border:none;
border-radius:30px;
background:linear-gradient(45deg,#00d2ff,#8a2be2);
color:white;
font-weight:600;
cursor:pointer;
position:relative;
z-index:2;
}

.about-box{
max-width:900px;
margin:auto;
padding:50px;
background:rgba(255,255,255,0.08);
border-radius:30px;
text-align:center;
}

.about-box h2{
font-size:42px;
margin-bottom:20px;
}

.contact{
text-align:center;
}

.contact h2{
font-size:44px;
margin-bottom:35px;
}

.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

footer{
padding:30px;
text-align:center;
border-top:1px solid rgba(255,255,255,0.1);
}

@media(max-width:992px){
.hero{
flex-direction:column;
text-align:center;
}

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

.hero-buttons{
justify-content:center;
}

nav{
display:none;
}
}
