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

body{
    background:#111;
    color:#fff;
    line-height:1.6;
}

header{
    background:#000;
    padding:20px;
    position:sticky;
    top:0;
}

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

nav a{
    color:#d4af37;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
}

.hero{
    text-align:center;
    padding:100px 20px;
    background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7));
}

.hero h2{
    font-size:48px;
    color:#d4af37;
}

.hero p{
    margin:20px 0;
    font-size:20px;
}

.hero a{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:12px 24px;
    margin:10px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
}

section{
    padding:60px 20px;
    max-width:1200px;
    margin:auto;
}

section h2{
    color:#d4af37;
    margin-bottom:20px;
}

footer{
    background:#000;
    color:#aaa;
    text-align:center;
    padding:20px;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,.2);
    transition:0.3s;
}

.gallery img:hover{
    transform:scale(1.05);
}
.logo{
    width:220px;
    height:auto;
    }
.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
}
.card{
    background:#222;
    color:#fff;
    padding:20px;
    margin:10px 0;
    border-left:4px solid gold;
    border-radius:8px;
}
.hero-banner{
    width:100%;
    max-height:500px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:30px;
    box-shadow:0 8px 25px rgba(0,0,0,0.4);
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.card{
    background:#222;
    color:#fff;
    padding:25px;
    border-radius:10px;
    border-left:5px solid #d4af37;
    text-align:center;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
}

.card:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-5px);
}
#why-us,
#reviews{
    margin-top:60px;
}

#reviews .card{
    margin-bottom:20px;
    line-height:1.8;
    }
.btn{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:12px 24px;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
    margin-top:10px;
}

.btn:hover{
    background:#f1c75b;
    }
.project-card{
    background:#222;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    padding:15px;
    color:#fff;
    transition:0.3s;
}

.project-card:hover{
    transform:translateY(-5px);
}

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

.project-card h3{
    color:#d4af37;
    margin:15px 0 8px;
}

.project-card p{
    color:#ccc;
    font-size:15px;
    }
.menu-toggle{
    display:none;
    font-size:30px;
    color:#d4af37;
    cursor:pointer;
}

.navbar{
    display:flex;
    gap:20px;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        display:none;
        flex-direction:column;
        position:absolute;
        top:80px;
        right:20px;
        background:#111;
        padding:15px;
        border-radius:10px;
        width:200px;
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        margin:10px 0;
    }
    }
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 4px 12px rgba(0,0,0,.4);
    z-index:9999;
    transition:.3s;
}

.whatsapp-float img{
    width:30px;
    height:30px;
    display:block;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    }
.contact-form{
    max-width:600px;
    margin:30px auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    border-radius:8px;
    background:#222;
    color:#fff;
    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:2px solid #d4af37;
}

.contact-form button{
    width:100%;
    padding:15px;
    background:#d4af37;
    color:#000;
    border:none;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    margin-top:10px;
}
.hero-slider{
width:100%;
overflow:hidden;
position:relative;
}

.slides{
display:none;
}

.slides img{
width:100%;
height:auto;
display:block;
}

.fade{
animation:fade 1s;
}

@keyframes fade{
from{opacity:.4;}
to{opacity:1;}
    }
.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;
padding:40px 20px;
background:#111;
text-align:center;
}

.stat-box{
background:#1b1b1b;
padding:25px;
border-radius:12px;
box-shadow:0 0 10px rgba(212,175,55,.25);
}

.stat-box h2{
color:#d4af37;
font-size:38px;
margin:0;
}

.stat-box p{
color:#fff;
margin-top:10px;
font-size:16px;
}
