*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background-color: #f5f7fa !important;
}
color:#333;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:50px;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#007BFF;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 10%;
background:white;
}

.hero-text{
max-width:500px;
}

.hero-text h1{
font-size:36px;
margin-bottom:20px;
}

.hero-text p{
margin-bottom:20px;
}

.btn{
display:inline-block;
padding:12px 25px;
background:#007BFF;
color:white;
text-decoration:none;
border-radius:5px;
}

.btn:hover{
background:#0056b3;
}

.hero-image img{
width:400px;
border-radius:10px;
}

#about{
padding:80px 10%;
text-align:center;
}

#services{
padding:80px 10%;
text-align:center;
background:white;
}

.services-grid{
margin-top:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.card{
background:#f9f9f9;
padding:30px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.card h3{
margin-bottom:10px;
}

.card p{
margin-bottom:15px;
}

.btn-small{
padding:8px 18px;
background:#007BFF;
color:white;
text-decoration:none;
border-radius:4px;
font-size:14px;
}

#contact{
padding:80px 10%;
text-align:center;
}

form{
margin-top:30px;
display:flex;
flex-direction:column;
max-width:400px;
margin-left:auto;
margin-right:auto;
}

input,textarea{
margin-bottom:15px;
padding:12px;
border:1px solid #ccc;
border-radius:5px;
}

button{
padding:12px;
border:none;
background:#007BFF;
color:white;
border-radius:5px;
cursor:pointer;
}

footer{
text-align:center;
padding:20px;
background:#111;
color:white;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:30px;
text-decoration:none;
}
