/* GENERAL */

body{
margin:0;
font-family:'Poppins',sans-serif;
background:white;
color:#222;
line-height:1.6;
}

section{
padding:60px 20px;
}

h1,h2,h3{
margin-bottom:10px;
text-align:center;
}

/* HERO */

.hero{
background:#f5f5f5;
min-height:40vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-content{
max-width:600px;
margin:auto;
}

.logo{
width:80px;
margin-bottom:15px;
}

.trust{
font-size:14px;
color:#777;
margin:10px 0;
}

.btn{
display:inline-block;
background:#ff4d4d;
color:white;
padding:10px 20px;
border-radius:20px;
text-decoration:none;
margin-top:10px;
transition:0.3s;
}

.btn:hover{
background:#e63b3b;
}

/* ABOUT */

.about-container{
display:flex;
align-items:center;
gap:40px;
max-width:1000px;
margin:auto;
}

.about img{
width:300px;
border-radius:10px;
}

/* SERVICES */

.services{
text-align:center;
}

.service-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
max-width:260px;
}

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

.price-range{
font-weight:600;
color:#ff4d4d;
}

/* PORTFOLIO */

.portfolio{
text-align:center;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
max-width:900px;
margin:auto;
}

.portfolio-grid img,
.portfolio-grid video{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
}

/* CONTACT */

.contact{
text-align:center;
}

.form-container{
max-width:900px;
margin:auto;
margin-top:30px;
}

iframe{
border:none;
width:100%;
}

/* TESTIMONIALS */

.testimonials{
background:#f5f5f5;
text-align:center;
}

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

.testimonial{
max-width:250px;
}

.testimonial img{
width:60px;
border-radius:50%;
margin-bottom:10px;
}

/* MOBILE */

@media(max-width:768px){

.about-container{
flex-direction:column;
text-align:center;
}

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

.service-grid{
flex-direction:column;
align-items:center;
}

.hero{
min-height:50vh;
}

}