body{
margin:0;
font-family:Arial,sans-serif;
background:#fafafa;
color:#333;
}

.slider{
height:100vh;
position:relative;
overflow:hidden;
}

.slides{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
animation:zoom 10s infinite alternate;
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
top:30%;
}

.logo{
width:180px;
}

.hero-buttons{
margin-top:20px;
}

.btn,
.btn-outline{
padding:14px 28px;
border-radius:30px;
text-decoration:none;
display:inline-block;
margin:10px;
}

.btn{
background:#8B0000;
color:white;
border:none;
}

.btn-outline{
border:2px solid white;
color:white;
}

nav{
background:white;
padding:20px;
text-align:center;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

nav a{
margin:0 15px;
text-decoration:none;
color:#8B0000;
font-weight:bold;
}

section{
padding:70px 20px;
max-width:1100px;
margin:auto;
}

h2{
text-align:center;
color:#8B0000;
}

.services{
display:flex;
justify-content:space-around;
flex-wrap:wrap;
gap:15px;
}

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

.gallery img{
width:100%;
border-radius:15px;
}

form{
display:flex;
flex-direction:column;
max-width:500px;
margin:auto;
}

form input,
form textarea{
margin-bottom:15px;
padding:12px;
border-radius:8px;
border:1px solid #ddd;
}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:30px;
text-decoration:none;
}

@keyframes zoom{
0%{transform:scale(1);}
100%{transform:scale(1.1);}
}
