*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
margin:0;
padding:0;
font-family:Arial, sans-serif;
color:white;

background: linear-gradient(

#4e8ec2,
#d84c76
);

}

section{
scroll-margin-top:80px;
}
header{
position:fixed;
top:0;
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 60px;
background:#1e293b;
backdrop-filter:blur(6px);
box-shadow:0 5px 20px rgba(0,0,0,0.3);
z-index:1000;
overflow:hidden;
}

.brand-name{
font-size:20px;
font-weight:700;
letter-spacing:0.5px;
color:#fbbf24;
}

.nav-center a::after{
content:'';
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:#fbbf24;
transition:0.3s;
}

.nav-center a:hover::after{
width:100%;
}

.nav-left{
display:flex;
align-items:center;
gap:10px;
}



.nav-center{
display:flex;
gap:12px;
justify-content:flex-end;
flex:1;
flex-wrap:nowrap;
}


.logo{

width:auto;
object-fit:contain;
height:42px;
border-radius:6px;

padding:3px;
background:rgba(255,255,255,0.05);
}

.logo-area{
display:flex;
align-items:center;
gap:12px;
font-weight:600;
color:white;
}

nav a{
color:white;
margin-left:10px;
font-size:14px;
text-decoration:none;
font-weight:500;
position:relative;
white-space:nowrap;
}

nav a::after{
content:'';
width:0%;
height:2px;
background:#f59e0b;
position:absolute;
left:0;
bottom:-5px;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

.hero-icons{
display:flex;
gap:20px;
margin-top:50px;
flex-wrap:wrap;
justify-content:center;
}

.icon-box{
text-align:center;
font-size:30px;
background:#1e293b;
color:white;    
padding:20px;
border-radius:10px;
transition:0.3s;
}

.icon-box p{
font-size:14px;
margin-top:10px;
}

.icon-box:hover{
transform:translateY(-10px);
background:#334155;
}

.hero h1{
font-size:55px;
margin-bottom:15px;
}

#typing{
font-family:'Orbitron', monospace;
font-size:52px;
font-weight:700;
color:#00f2ff;

text-shadow:
0 0 20px #ff0000,
0 0 10px #ff0000,
0 0 20px #ff0000,
0 0 40px #ff0000;

letter-spacing:2px;
}

#typing::after{
content:'|';
margin-left:5px;
animation:blink 1s infinite;
color:#7624fb;
}

@keyframes blink{
0%{opacity:1;}
50%{opacity:0;}
100%{opacity:1;}
}

.hero{
min-height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background: transparent;
position:relative;
overflow:hidden;
position:relative;
padding-top:120px;

}

.stats{
display:flex;
justify-content:center;
gap:40px;
margin-top:60px;
flex-wrap:wrap;
}

.stat{
text-align:center;
}

.stat h2{
font-size:36px;
color:#f59e0b;
}

.stat p{
font-size:14px;
opacity:0.8;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:url("https://www.transparenttextures.com/patterns/cubes.png");
opacity:0.08;
pointer-events:none;
}

.hero h1{
font-size:40px;
margin-bottom:10px;
}

.buttons{
margin-top:20px;
}

.btn{
padding:12px 24px;
background:#f59e0b;
color:#000;
text-decoration:none;
border-radius:6px;
margin:5px;
font-weight:600;
position:relative;
transition:0.3s;
box-shadow:0 0 10px rgba(245,158,11,0.6);
}

.btn:hover{
box-shadow:0 0 20px rgba(245,158,11,0.9),
            0 0 40px rgba(245,158,11,0.6);
transform:translateY(-3px);
}

.whatsapp{
background:#25d366;
color:white;
box-shadow:0 0 10px rgba(37,211,102,0.6);
}

.whatsapp:hover{
box-shadow:0 0 20px rgba(37,211,102,0.9),
            0 0 40px rgba(37,211,102,0.6);
}

.services{
padding:80px 10%;
text-align:center;

}


.services-wrapper:hover .card{
filter:blur(3px);
opacity:0.5;
transform:scale(0.9);
transition:0.3s;
}

.services-wrapper .card:hover{
filter:blur(0);
opacity:1;
transform:scale(1.15);
z-index:10;
box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
max-width:1000px;
margin-left:auto;
margin-right:auto;
}
.card{
background: #0f172a;
color: white;
padding:30px;
border-radius:12px;
transition:0.4s;
position:relative;
overflow:hidden;
cursor:pointer;
padding:35px;

transition:all 0.3s ease;
position:relative;
}

.card .more{
opacity:0;
max-height:0;
transition:0.4s;
font-size:14px;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.4);
}
.card::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.2),
transparent
);
transition:0.5s;
}

.card:hover::before{
left:100%;
}
.card:hover .more{
opacity:1;
max-height:100px;
margin-top:10px;
}
.card h3{
font-size:18px;
}

.card i, .card img{
font-size:28px;
margin-bottom:10px;
}
.process{
padding:80px 10%;
text-align:center;
}

.steps{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
margin-top:30px;
}

.step{
background:#1e293b;
padding:20px;
border-radius:10px;

color: white;
}

.map iframe{
width:100%;
height:400px;
border:none;
}

.contact{
padding:80px 10%;
text-align:center;
}

form{
display:flex;
flex-direction:column;
max-width:400px;
margin:auto;
}

input,textarea{
margin:10px 0;
padding:10px;
border:none;
border-radius:5px;
}

button{
padding:10px;
background:#f59e0b;
border:none;
border-radius:5px;
}

.floating-whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25d366;
color:white;
font-size:26px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
box-shadow:0 0 15px rgba(37,211,102,0.7);
z-index:999;
transition:0.3s;
}

.floating-whatsapp:hover{
transform:scale(1.1);
box-shadow:0 0 25px rgba(37,211,102,1);
}


.contact-container{
display:flex;
justify-content:center;
align-items:flex-start;
gap:60px;
margin-top:40px;
flex-wrap:wrap;
}

.contact-info{
max-width:300px;
font-size:16px;
line-height:1.6;
}

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
width:300px;
}

.contact-form input,
.contact-form textarea{
padding:10px;
border-radius:6px;
border:none;
}

.contact-form button{
background:#f59e0b;
border:none;
padding:10px;
border-radius:6px;
cursor:pointer;
}


footer{
text-align:center;
padding:20px;
background:#020617;

}


@media (max-width:600px){

header{
padding:10px 15px;
}

.brand-name{
font-size:14px;
}

.logo{
height:30px;
}

.nav-center{
gap:8px;
}

nav a{
font-size:12px;
margin-left:6px;
}
.stats{
flex-direction:column;
gap:20px;
}

.stat h2{
font-size:28px;
}

.stat p{
font-size:13px;
}
}
