body{
margin:0;
font-family:Poppins;
background:#f8faff;
color:#222;
}

header{
position:sticky;
top:0;
backdrop-filter:blur(10px);
background:rgba(255,255,255,0.7);
box-shadow:0 5px 25px rgba(0,0,0,0.05);
z-index:1000;
}

.nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
}

.logo{
font-weight:700;
font-size:22px;
color:#2a5cff;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

.cta{
background:#2a5cff;
color:white;
padding:8px 16px;
border-radius:6px;
}

.hero{
height:500px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(135deg,#eef3ff,#ffffff);
}


.hero h1{
font-size:52px;
font-weight:700;
background:linear-gradient(90deg,#2a5cff,#6a8dff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.button{
background:#2a5cff;
color:white;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
display:inline-block;
margin-top:20px;
}

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

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

#zone{
background:#eef2ff;
text-align:center;
}

.cities{
font-weight:500;
margin-top:15px;
}

#contact{
text-align:center;
}

.phone{
font-size:22px;
font-weight:600;
}

form{
max-width:400px;
margin:30px auto;
display:flex;
flex-direction:column;
gap:12px;
}

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

button{
background:#2a5cff;
color:white;
border:none;
padding:12px;
border-radius:8px;
cursor:pointer;
}


footer{
margin-top:80px;
padding:50px 20px;
background:linear-gradient(135deg,#4f46e5,#22c55e);
color:white;
}
footer a{
color:white;
text-decoration:none;
}

footer a:hover{
text-decoration:underline;
}

.call-btn{
position:fixed;
bottom:20px;
right:20px;
background:#2a5cff;
color:white;
font-size:22px;
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
.icon{
font-size:32px;
color:#2a5cff;
margin-bottom:15px;
}
.seo{
max-width:900px;
margin:auto;
padding:60px 20px;
color:#555;
font-size:15px;
line-height:1.7;
border-bottom:1px solid #eee;
padding-bottom:60px;
}
.footer{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
gap:30px;
flex-wrap:wrap;
}

.logo {
max-width: auto;
height: auto;
margin-bottom: 25px;
margin-top: 20px;
display: block;
margin-left: auto;
margin-right: auto;
}

@media (max-width: 768px) {

h1 {
font-size: 32px;
line-height: 1.2;
padding: 0 15px;
}

p {
font-size: 16px;
padding: 0 20px;
}

.logo {
max-width: 80px;
margin-bottom: 5px;
font-size: 20px;
}

.hero {
padding: 40px 15px;
}

.btn {
padding: 12px 20px;
font-size: 16px;
}
.nav {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

.nav nav {
display: flex;
gap: 15px;
}

}