*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#3f2121;
color:white;
overflow-x:hidden;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
position:fixed;
width:100%;
background:rgba(240, 224, 224, 0.6);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo{
font-size:22px;
font-weight:700;
color:#ffcc00;
}

nav a{
margin-left:20px;
text-decoration:none;
color:white;
font-weight:500;
}

.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero h1{
font-size:55px;
background:linear-gradient(45deg,#ffcc00,#ff0066);
-webkit-background-clip:text;
color:transparent;
animation: glow 3s infinite alternate;
}

.hero p{
margin-top:15px;
font-size:18px;
opacity:0.8;
}

.hero-buttons{
margin-top:30px;
}

.btn{
padding:12px 30px;
border-radius:30px;
background:#ffcc00;
color:black;
text-decoration:none;
font-weight:600;
margin:10px;
transition:.3s;
}

.btn:hover{
transform:scale(1.1);
}

.whatsapp{
background:#25D366;
color:white;
}

#services{
padding:120px 10%;
text-align:center;
}

#services h2{
font-size:40px;
margin-bottom:50px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-card{
background:rgba(255,255,255,0.05);
padding:30px;
border-radius:15px;
transition:.4s;
backdrop-filter:blur(10px);
}

.service-card:hover{
transform:translateY(-15px) scale(1.05);
background:linear-gradient(45deg,#ffcc00,#ff0066);
color:black;
}

.contact{
text-align:center;
padding:100px 20px;
background:#111;
}

footer{
text-align:center;
padding:20px;
background:black;
}

.floating-whatsapp{
position:fixed;
bottom:20px;
right:20px;
font-size:30px;
/* background:#25D366; */
color:white;
padding:15px;
border-radius:50%;
text-decoration:none;
}

.bg-animation{
position:fixed;
width:100%;
height:100%;
background:radial-gradient(circle at 20% 20%, #ff0066, transparent),
radial-gradient(circle at 80% 80%, #ffcc00, transparent);
opacity:0.15;
z-index:-1;
animation:movebg 10s infinite alternate;
}

@keyframes movebg{
0%{transform:translate(0,0)}
100%{transform:translate(50px,50px)}
}

@keyframes glow{
0%{filter:drop-shadow(0 0 5px #ff0066)}
100%{filter:drop-shadow(0 0 20px #ffcc00)}
}