*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',Arial,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#fff;
color:#222;
}


/* HEADER */

header{

background:#111;
display:flex;
justify-content:space-between;
align-items:center;

padding:20px 8%;

position:sticky;
top:0;
z-index:999;

}


.logo{

font-size:30px;
font-weight:800;
color:#ffc107;

}


.logo span{

display:block;
font-size:12px;
color:#fff;
margin-top:5px;
letter-spacing:1px;

}


nav a{

color:white;
text-decoration:none;
margin-left:22px;
font-weight:600;

}


nav a:hover{

color:#ffc107;

}




/* HERO */

.hero{

min-height:90vh;

display:flex;
align-items:center;

padding:60px 8%;

background:

linear-gradient(
rgba(0,0,0,.70),
rgba(0,0,0,.70)
),

url("images/electrician.jpg");


background-size:cover;
background-position:center;

color:white;

}


.hero-content{

max-width:700px;

}


.hero h1{

font-size:60px;
line-height:1.1;

}


.hero h1 span{

color:#ffc107;

}



.hero p{

font-size:20px;
margin:25px 0;

}




.buttons a{

display:inline-block;

padding:15px 30px;

margin-right:15px;

border-radius:30px;

background:#ffc107;

color:#111;

text-decoration:none;

font-weight:bold;

}



.buttons a:last-child{

background:#25D366;

color:white;

}




.stats{

display:flex;

gap:20px;

margin-top:40px;

flex-wrap:wrap;

}


.stats div{

background:white;

color:#111;

padding:15px 25px;

border-radius:15px;

text-align:center;

}



.stats h2{

color:#ffb000;

margin:0;

}





/* SECTIONS */


section{

padding:70px 8%;

text-align:center;

}



section h2{

font-size:38px;

margin-bottom:35px;

}





/* SERVICES */

.service-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}



.service-card{

background:white;

padding:35px 20px;

border-radius:15px;

font-size:35px;

box-shadow:
0 10px 30px rgba(0,0,0,.12);

transition:.3s;

}


.service-card:hover{

transform:translateY(-10px);

}


.service-card h3{

font-size:22px;

margin:15px 0;

}


.service-card p{

font-size:16px;

}




/* ABOUT */

#about{

background:#f5f5f5;

}



.features{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

margin-top:30px;

}


.features div{

background:#111;

color:white;

padding:15px 25px;

border-radius:30px;

}




/* GALLERY */


.gallery{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:20px;

}



.gallery img{

width:100%;

height:220px;

object-fit:cover;

border-radius:15px;

}





/* LOCATION */


#location{

background:#f7f7f7;

}



.areas{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

margin:30px 0;

}



.areas div{

background:#111;

color:white;

padding:15px 25px;

border-radius:30px;

}



.map{

max-width:900px;

margin:auto;

border-radius:15px;

overflow:hidden;

}





/* EMERGENCY */

.emergency{

background:#111;

color:white;

}



.emergency h2{

color:#ffc107;

}



.emergency a{

display:inline-block;

margin-top:20px;

background:#ffc107;

padding:18px 40px;

border-radius:30px;

color:#111;

font-size:25px;

font-weight:bold;

text-decoration:none;

}




/* REVIEWS */

.reviews{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}


.reviews div{

padding:30px;

background:white;

border-radius:15px;

box-shadow:
0 10px 25px #ddd;

}





/* FORM */


.contact-form{

max-width:500px;

margin:auto;

display:flex;

flex-direction:column;

gap:15px;

}


.contact-form input,
.contact-form select,
.contact-form textarea{

padding:15px;

border-radius:10px;

border:1px solid #ddd;

font-size:16px;

}



.contact-form textarea{

height:120px;

}



.contact-form button{

padding:15px;

background:#111;

color:white;

border:none;

border-radius:30px;

font-size:18px;

cursor:pointer;

}



.contact-form button:hover{

background:#ffc107;

color:#111;

}



.contact-btn{

display:inline-block;

margin-top:20px;

padding:15px 35px;

background:#ffc107;

color:#111;

border-radius:30px;

text-decoration:none;

font-weight:bold;

}




/* FOOTER */


footer{

background:#111;

color:white;

text-align:center;

padding:20px;

}





/* WHATSAPP */

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

color:white;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

text-decoration:none;

}





/* MOBILE */


@media(max-width:768px){

header{

flex-direction:column;

gap:15px;

}


nav a{

margin:8px;

}


.hero h1{

font-size:40px;

}


.buttons a{

margin-bottom:15px;

}

}