*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
color:#1f2937;
background:#f9fafb;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

.navbar{
background:white;
border-bottom:1px solid #eee;
padding:18px 0;
position:sticky;
top:0;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-weight:700;
font-size:20px;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#374151;
font-weight:500;
}

.hero{
background:linear-gradient(135deg,#2563eb,#1e40af);
color:white;
padding:120px 0;
text-align:center;
}

.hero h1{
font-size:44px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
}

.btn-primary{
background:white;
color:#2563eb;
padding:12px 22px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.btn-secondary{
background:transparent;
border:2px solid white;
color:white;
padding:10px 22px;
border-radius:6px;
text-decoration:none;
}

.services{
padding:90px 0;
}

.services h2{
text-align:center;
margin-bottom:40px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.06);
}

.card h3{
margin-bottom:10px;
}

.technologies{
background:#eef2ff;
padding:90px 0;
text-align:center;
}

.tech-grid{
margin-top:30px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
gap:15px;
}

.tech-grid div{
background:white;
padding:12px;
border-radius:6px;
font-weight:500;
}

.about{
padding:90px 0;
text-align:center;
max-width:800px;
margin:auto;
}

.blogs-card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.06);
}

.blogs-card a{
display:inline-block;
margin-top:10px;
color:#2563eb;
font-weight:600;
}

.contact{
background:#111827;
color:white;
padding:90px 0;
text-align:center;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
}

.contact h2{
margin-bottom:15px;
}

.contact p{
margin-bottom:25px;
font-size:18px;
}

.contact .btn-primary{
background:white;
color:#2563eb;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

footer{
background:#f1f5f9;
text-align:center;
padding:20px;
font-size:14px;
}