body{
margin:0;
font-family:Poppins;
background:#0f0f0f;
color:white;
}

.navbar{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 80px;
background:rgba(0,0,0,0.8);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo{
font-weight:700;
font-size:20px;
}

nav a{
margin:0 15px;
text-decoration:none;
color:white;
font-weight:500;
}

.callbtn{
background:#ff2a2a;
padding:10px 25px;
border-radius:30px;
text-decoration:none;
color:white;
}

.hero{
height:100vh;
background:url('../images/hero.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-content{
background:rgba(0,0,0,0.6);
padding:60px;
border-radius:10px;
}

.hero h1{
font-size:60px;
}

.cta{
background:#ff2a2a;
padding:15px 40px;
border-radius:30px;
text-decoration:none;
color:white;
display:inline-block;
margin-top:20px;
}

.about{
padding:120px 80px;
}

.container{
display:flex;
gap:60px;
align-items:center;
}

.about-img img{
width:450px;
border-radius:10px;
}

.services{
padding:120px 80px;
text-align:center;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.service-card{
background:#1b1b1b;
border-radius:10px;
overflow:hidden;
}

.service-card img{
width:100%;
}

.beforeafter{
padding:120px;
text-align:center;
background:#111;
}

.beforeafter-container{
display:flex;
justify-content:center;
gap:40px;
}

.beforeafter img{
width:400px;
border-radius:10px;
}

.gallery{
padding:120px;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
border-radius:10px;
}

.cta-section{
padding:150px;
text-align:center;
background:#111;
}

.contact{
padding:120px;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

footer{
background:black;
padding:50px;
text-align:center;
}

.social a{
margin:10px;
color:white;
text-decoration:none;
}