<style>

html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f4f4f4;
}

/* HEADER */

header{
background:black;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 60px;
position:sticky;
top:0;
}

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

.logo{
width:50px;
}

.brand h1{
margin:0;
font-size:24px;
}

.brand p{
margin:0;
font-size:12px;
color:#ff2d2d;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-size:15px;
}

/* HERO */

.hero{
height:600px;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0");
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.hero h2{
font-size:55px;
margin:0;
}

.hero p{
font-size:22px;
margin-top:10px;
}

/* SECTION */

.section{
padding:80px 20px;
text-align:center;
}

/* SERVICES */

.services{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.service-box{
background:white;
padding:30px;
width:260px;
border-radius:6px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.service-box:hover{
transform:translateY(-8px);
}

.service-box i{
font-size:36px;
color:#ff2d2d;
margin-bottom:10px;
}

/* PORTFOLIO */

.portfolio{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.portfolio img{
width:300px;
border-radius:6px;
transition:0.3s;
}

.portfolio img:hover{
transform:scale(1.05);
}

/* ABOUT */

.about{
background:#000;
color:white;
}

.about-text{
max-width:800px;
margin:20px auto 40px;
color:#ccc;
line-height:1.6;
}

/* CONTACT */

.contact form{
max-width:500px;
margin:auto;
}

.contact input,
.contact textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:4px;
}

.contact textarea{
height:120px;
}

.contact button{
width:100%;
background:#ff2d2d;
color:white;
border:none;
padding:12px;
font-size:16px;
cursor:pointer;
}

/* QUOTE BANNER */

.quote-banner{
background:#ff2d2d;
padding:60px 20px;
}

.quote-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.quote-container h2{
color:black;
font-size:36px;
margin:0;
}

.quote-btn{
background:black;
color:white;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

/* FOOTER */

.footer{
background:#0b1325;
color:white;
padding:60px 40px 20px;
}

.footer-container{
display:flex;
flex-wrap:wrap;
gap:40px;
justify-content:space-between;
max-width:1200px;
margin:auto;
}

.footer-col{
flex:1;
min-width:220px;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#ccc;
text-decoration:none;
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid #222;
padding-top:15px;
color:#aaa;
}

</style>