*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:sans-serif;
background:#050816;
color:#fff;
overflow-x:hidden;
}

/* GLOW */

.bg-glow{
position:fixed;
width:700px;
height:700px;
background:radial-gradient(circle,#2563eb33,transparent 70%);
top:-200px;
right:-200px;
filter:blur(40px);
z-index:-1;
}

/* NAVBAR */

.navbar{
position:sticky;
top:0;
z-index:999;
background:rgba(5,8,22,.8);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,.05);
}

.navbar a{
transition:.3s;
}

.navbar a:hover{
color:#38bdf8;
}

.logo{
font-size:28px;
font-weight:800;
color:#fff;
text-decoration:none;
}

/* HERO */

.hero-title{
font-size:38px;
line-height:1.2;
}

@media(min-width:768px){

.hero-title{
font-size:72px;
}

}

/* BUTTON */

.blue-btn{
display:inline-block;
padding:14px 28px;
border-radius:12px;
background:linear-gradient(45deg,#2563eb,#38bdf8);
color:#fff;
font-weight:700;
text-decoration:none;
border:none;
cursor:pointer;
transition:.3s;
}

.blue-btn:hover{
transform:translateY(-3px);
box-shadow:0 0 30px rgba(37,99,235,.4);
}

.outline-btn{
display:inline-block;
padding:14px 28px;
border-radius:12px;
border:1px solid #2563eb;
color:#fff;
text-decoration:none;
transition:.3s;
}

.outline-btn:hover{
background:#2563eb;
}

/* CARD */

.card{
background:rgba(255,255,255,.03);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.05);
border-radius:24px;
overflow:hidden;
transition:.4s;
}

.card:hover{
transform:translateY(-8px);
border-color:#2563eb;
box-shadow:0 0 25px rgba(37,99,235,.25);
}

/* TEXT */

.gradient-text{
background:linear-gradient(
45deg,
#38bdf8,
#2563eb,
#60a5fa
);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* SERVICE ICON */

.service-icon{
width:70px;
height:70px;
margin:auto;
margin-bottom:20px;
border-radius:18px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
background:linear-gradient(
45deg,
#2563eb,
#38bdf8
);
}

/* PORTFOLIO */

.website-preview{
height:420px;
overflow:hidden;
background:#000;
position:relative;
}

.website-preview img{
width:100%;
transition:transform 10s linear;
}

.website-preview:hover img{
transform:translateY(calc(-100% + 420px));
}

.graphic-thumb{
width:100%;
height:320px;
object-fit:cover;
display:block;
}

/* FORM */

.input-field{
width:100%;
padding:16px;
background:#0f172a;
border:1px solid rgba(255,255,255,.08);
border-radius:12px;
color:#fff;
outline:none;
}

.input-field:focus{
border-color:#2563eb;
}

/* TYPING CURSOR */

#typing-text::after{
content:"|";
animation:blink 1s infinite;
}

@keyframes blink{

0%{
opacity:1;
}

50%{
opacity:0;
}

100%{
opacity:1;
}

}

/* SCROLLBAR */

::-webkit-scrollbar{
width:8px;
}

::-webkit-scrollbar-thumb{
background:#2563eb;
border-radius:50px;
}

/* MOBILE */

@media(max-width:768px){

.website-preview{
height:280px;
}

.website-preview:hover img{
transform:translateY(calc(-100% + 280px));
}

.graphic-thumb{
height:240px;
}

.hero-title{
font-size:42px;
}

}

/* WHATSAPP FLOATING BUTTON */

.whatsapp-float{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#fff;
text-decoration:none;
z-index:9999;
box-shadow:0 0 25px rgba(37,211,102,.5);
transition:.3s;
animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
transform:scale(1.1);
color:#fff;
box-shadow:0 0 35px rgba(37,211,102,.8);
}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.7);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

@media(max-width:768px){

.whatsapp-float{
width:58px;
height:58px;
font-size:30px;
right:18px;
bottom:18px;
}

}


.logo-wrap{
display:flex;
align-items:center;
text-decoration:none;
}

.site-logo{
height:45px;
width:auto;
display:block;
transition:.3s;
}

.site-logo:hover{
transform:scale(1.05);
}