/* =========================
   BENYAN MUSANDAM
   STYLE.CSS
========================= */

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

body{
font-family:'Poppins',sans-serif;
color:#222;
line-height:1.7;
background:#fff;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* TOP BAR */

.top-bar{
background:#0f172a;
color:#fff;
padding:10px 0;
font-size:14px;
}

.top-info{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.top-info i{
color:#f97316;
margin-right:8px;
}

/* HEADER */

header{
background:#fff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo img{
height:80px;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:#111;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#f97316;
}

.quote-btn{
background:#f97316;
color:#fff;
padding:14px 28px;
border-radius:5px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.quote-btn:hover{
background:#e35f00;
}

/* HERO */

.hero{
height:100vh;
background:url('../images/hero.jpg') center center/cover;
position:relative;
display:flex;
align-items:center;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(255,255,255,.65);
}

.hero-content{
position:relative;
z-index:2;
max-width:650px;
}

.hero h4{
color:#f97316;
font-size:18px;
margin-bottom:15px;
font-weight:700;
}

.hero h1{
font-size:70px;
line-height:1.1;
font-weight:800;
margin-bottom:20px;
color:#111;
}

.hero p{
font-size:18px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.btn-primary{
background:#f97316;
color:#fff;
padding:15px 35px;
text-decoration:none;
border-radius:5px;
font-weight:600;
}

.btn-secondary{
border:2px solid #111;
color:#111;
padding:15px 35px;
text-decoration:none;
border-radius:5px;
font-weight:600;
}

/* ABOUT */

.about{
padding:100px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:10px;
}

.about-content span{
color:#f97316;
font-weight:700;
}

.about-content h2{
font-size:42px;
margin:15px 0;
}

.features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-top:35px;
}

.feature{
text-align:center;
}

.feature i{
font-size:35px;
color:#f97316;
margin-bottom:10px;
}

/* SERVICES */

.services{
padding:100px 0;
background:#f8fafc;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#f97316;
font-weight:700;
}

.section-title h2{
font-size:42px;
margin-top:10px;
}

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

.service-card{
background:#fff;
padding:40px 25px;
text-align:center;
border-radius:10px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:45px;
color:#f97316;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:15px;
}

/* STATS */

.stats{
background:#0f172a;
color:#fff;
padding:70px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
gap:30px;
}

.stat h2{
font-size:50px;
color:#f97316;
margin-bottom:10px;
}

/* QUALITY */

.quality{
padding:100px 0;
}

.quality-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.quality-image img{
width:100%;
border-radius:10px;
}

.quality span{
color:#f97316;
font-weight:700;
}

.quality h2{
font-size:42px;
margin:15px 0;
}

.quality ul{
margin-top:20px;
}

.quality ul li{
margin-bottom:10px;
}

/* PROJECTS */

.projects{
padding:100px 0;
background:#f8fafc;
}

.project-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.project-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
transition:.4s;
cursor:pointer;
}

.project-grid img:hover{
transform:scale(1.05);
}

/* CONTACT */

.contact{
padding:100px 0;
background:#0f172a;
color:#fff;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

.contact h2{
margin-bottom:25px;
font-size:40px;
}

.contact p{
margin-bottom:15px;
}

form{
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:15px;
border:none;
border-radius:5px;
font-family:inherit;
}

textarea{
height:150px;
resize:none;
}

button{
background:#f97316;
color:#fff;
border:none;
padding:15px;
cursor:pointer;
font-weight:600;
border-radius:5px;
}

/* FOOTER */

footer{
background:#000;
color:#fff;
text-align:center;
padding:25px;
font-size:14px;
}

/* MOBILE */

@media(max-width:992px){

.hero h1{
font-size:50px;
}

.about-grid,
.quality-grid,
.contact-grid{
grid-template-columns:1fr;
}

.project-grid{
grid-template-columns:repeat(2,1fr);
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

nav{
display:none;
}

}

@media(max-width:768px){

.hero h1{
font-size:40px;
}

.project-grid{
grid-template-columns:1fr;
}

.stats-grid{
grid-template-columns:1fr;
}

.top-info{
gap:15px;
font-size:12px;
}

.logo img{
height:60px;
}

}