/*
Theme Name: HiTech Utilities
Author: Jehangir Ahmad Jillani
Version: 1.0
*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial,Helvetica,sans-serif;
background:#f4f7fb;
color:#222;
line-height:1.7;

}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

a{

text-decoration:none;
color:#1464f4;

}

img{

max-width:100%;
display:block;

}

.site-header{

background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
padding:18px 0;

}

.topbar{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo{

font-size:32px;
font-weight:700;

}

.logo span{

color:#ff9800;

}

.hero{

background:linear-gradient(135deg,#0b4fd4,#1565ff);
color:#fff;
padding:120px 0;

}

.hero h1{

font-size:52px;
margin-bottom:20px;

}

.hero p{

font-size:20px;
max-width:700px;
margin-bottom:30px;

}

.btn{

background:#ff9800;
color:#fff;
padding:14px 28px;
border-radius:8px;
display:inline-block;

}

.section{

padding:80px 0;

}

.section-title{

font-size:38px;
margin-bottom:40px;

}

.grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.card{

background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.card-content{

padding:25px;

}

footer{

background:#0d1730;
color:#fff;
padding:70px 0;
margin-top:60px;

}

@media(max-width:900px){

.grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:36px;

}

}
.menu{
display:flex;
gap:28px;
list-style:none;
align-items:center;
}

.menu li{
list-style:none;
}

.menu a{
color:#222;
font-weight:600;
transition:.3s;
}

.menu a:hover{
color:#1565ff;
}

.header-search input{

padding:10px 15px;
border:1px solid #ddd;
border-radius:8px;
width:220px;

}

.site-header{

position:sticky;
top:0;
z-index:999;
background:#fff;

}