body{
margin:0;
font-family:Inter;
background:linear-gradient(120deg,#0f172a,#1e293b);
color:white;
overflow-x:hidden;
}

#particles{
position:fixed;
width:100%;
height:100%;
z-index:-1;
}

.navbar{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
background:rgba(15,23,42,0.85);
padding:8px 30px;
border-radius:30px;
backdrop-filter:blur(10px);
z-index:10;
display:flex;
align-items:center;
justify-content:space-between;
width:90%;
max-width:1200px;
}

.nav-links{
display:flex;
gap:25px;
list-style:none;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:500;
}

.logo img{
height:20px;
}

.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
padding:40px;
}

.hero-container{
display:flex;
gap:80px;
max-width:1100px;
flex-wrap:wrap;
}

.hero-text h1{
font-size:54px;
}

.hero-text span{
color:#3b82f6;
}

.hero-buttons{
margin-top:20px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-primary{
background:#3b82f6;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
color:white;
box-shadow:0 10px 40px rgba(59,130,246,0.4);
transition:0.3s;
}

.btn-primary:hover{
transform:scale(1.05);
}

.btn-secondary{
border:1px solid #3b82f6;
padding:14px 28px;
border-radius:8px;
color:#3b82f6;
text-decoration:none;
transition:0.3s;
}

.btn-secondary:hover{
background:#3b82f6;
color:white;
transform:scale(1.05);
}

.scrollable-dashboard, .scrollable-portfolio{
display:flex;
gap:30px;
overflow-x:auto;
padding:20px 0;
scroll-behavior:smooth;
}

.scrollable-dashboard::-webkit-scrollbar,
.scrollable-portfolio::-webkit-scrollbar{
height:8px;
}

.scrollable-dashboard::-webkit-scrollbar-thumb,
.scrollable-portfolio::-webkit-scrollbar-thumb{
background:#3b82f6;
border-radius:4px;
}

.dashboard-card, .portfolio-card{
flex:0 0 auto;
width:320px;
border-radius:16px;
overflow:hidden;
box-shadow:0 30px 80px rgba(0,0,0,0.6);
position:relative;
transition:transform 0.3s ease, box-shadow 0.3s ease;
background:rgba(0,0,0,0.3);
}

.dashboard-card:hover, .portfolio-card:hover{
transform:scale(1.05);
box-shadow:0 40px 100px rgba(0,0,0,0.7);
}

.dashboard-card img, .portfolio-card img{
width:100%;
display:block;
border-bottom:1px solid rgba(255,255,255,0.1);
}

.dashboard-caption{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:12px 16px;
background:rgba(0,0,0,0.5);
backdrop-filter:blur(5px);
color:white;
border-top-left-radius:12px;
border-top-right-radius:12px;
text-align:left;
}

.section{
padding:100px 20px;
text-align:center;
}

.dark{
background:#020617;
}

.services-grid,
.process-grid,
.case-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.card, .testimonial, .case-card{
background:rgba(255,255,255,0.07);
padding:30px;
border-radius:16px;
border:1px solid rgba(255,255,255,0.1);
backdrop-filter:blur(15px);
transition:0.3s;
text-align:left;
}

.card:hover, .testimonial:hover, .case-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.metrics{
display:flex;
justify-content:center;
gap:80px;
flex-wrap:wrap;
margin-top:40px;
}

.metric h3{
font-size:56px;
color:#22c55e;
}

.metric p{
font-size:14px;
color:#94a3b8;
letter-spacing:1px;
text-transform:uppercase;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.reveal{
opacity:0;
transform:translateY(30px);
transition:0.6s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.contact-methods{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:20px;
}

footer{
text-align:center;
padding:40px;
color:#94a3b8;
}

/* MOBILE RESPONSIVENESS */
@media (max-width:768px){
.hero-container{
flex-direction:column;
align-items:center;
}
.hero-text h1{
font-size:36px;
}
.navbar{
padding:12px 20px;
}
.logo img{
height:50px;
}
.scrollable-dashboard, .scrollable-portfolio{
padding:10px 0;
gap:20px;
}
}