
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#0e0e0e;
    color:white;
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1800&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    padding:30px 8%;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:2.4rem;
    font-weight:900;
    color:#ffb400;
}

.call-btn{
    background:linear-gradient(45deg,#ff4d00,#ffcc00);
    color:white;
    padding:14px 24px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
}

.hero-content{
    margin-top:140px;
    max-width:750px;
}

.hero-content h1{
    font-size:4.5rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.4rem;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,.secondary-btn{
    padding:16px 28px;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
}

.primary-btn{
    background:linear-gradient(45deg,#ff4d00,#ffcc00);
    color:white;
}

.secondary-btn{
    border:2px solid white;
    color:white;
}

.services,
.gallery,
.contact{
    padding:90px 8%;
}

.services h2,
.gallery h2,
.contact h2{
    text-align:center;
    font-size:3rem;
    margin-bottom:50px;
    color:#ffcc00;
}

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

.card{
    background:#1c1c1c;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    padding:20px 20px 10px;
    color:#ff7b00;
}

.card p{
    padding:0 20px 25px;
}

.why-us{
    background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1800&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    padding:100px 8%;
    text-align:center;
}

.overlay h2{
    font-size:3rem;
    margin-bottom:20px;
    color:#ffcc00;
}

.overlay p{
    font-size:1.2rem;
    margin-bottom:40px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.features div{
    background:rgba(255,255,255,.08);
    padding:20px;
    border-radius:15px;
    font-weight:bold;
}

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

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
}

form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

input,textarea{
    padding:16px;
    border:none;
    border-radius:10px;
    background:#1d1d1d;
    color:white;
}

textarea{
    min-height:160px;
}

button{
    background:linear-gradient(45deg,#ff4d00,#ffcc00);
    color:white;
    border:none;
    padding:18px;
    border-radius:50px;
    font-weight:bold;
    cursor:pointer;
}

footer{
    background:#050505;
    text-align:center;
    padding:40px 20px;
}

@media(max-width:768px){

.hero-content h1{
    font-size:3rem;
}

nav{
    flex-direction:column;
    gap:20px;
}

}
