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

html{
    scroll-behavior:smooth;
}

body{
    background:#0f0f0f;
    color:#ffffff;
    line-height:1.7;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(10px);
    z-index:999;
}

.logo{
    color:#c9a24d;
    font-size:24px;
    font-weight:700;
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    transition:.3s;
    font-weight:500;
}

.nav-links a:hover{
    color:#c9a24d;
}

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../images/hero.jpg')
    center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:120px 20px;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:70px;
    color:#c9a24d;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    color:#ddd;
    margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    background:#c9a24d;
    color:#111;
    padding:15px 35px;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid #c9a24d;
    color:#c9a24d;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
}

.btn-outline:hover{
    background:#c9a24d;
    color:#111;
}

/* SECTION */

section{
    padding:100px 10%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:#c9a24d;
    font-size:42px;
}

/* ABOUT */

.about-preview{
    text-align:center;
}

.about-preview p{
    max-width:900px;
    margin:auto;
    color:#ccc;
    font-size:18px;
}

/* SERVICES */

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

.card{
    background:#1a1a1a;
    padding:35px;
    border-radius:15px;
    transition:.3s;
    border:1px solid rgba(201,162,77,.2);
}

.card:hover{
    transform:translateY(-10px);
    border-color:#c9a24d;
}

.card h3{
    color:#c9a24d;
    margin-bottom:15px;
}

.card p{
    color:#cfcfcf;
}

/* PROJECTS */

.projects{
    background:#131313;
}

/* FOOTER */

footer{
    background:#000;
    text-align:center;
    padding:60px 20px;
}

footer h3{
    color:#c9a24d;
    margin-bottom:15px;
}

footer p{
    margin:8px 0;
    color:#ccc;
}

.copyright{
    margin-top:25px;
    color:#777;
}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

}
.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
color:white;
font-size:30px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,.3);
z-index:9999;
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* PORTFOLIO */

.portfolio-gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:40px;
}

.portfolio-item{
background:#1a1a1a;
border-radius:15px;
overflow:hidden;
transition:.3s;
border:1px solid rgba(201,162,77,.2);
}

.portfolio-item:hover{
transform:translateY(-8px);
border-color:#c9a24d;
}

.portfolio-item img{
width:100%;
height:300px;
object-fit:cover;
display:block;
}

.portfolio-item h3{
padding:20px;
color:#c9a24d;
text-align:center;
}

/* STATS SECTION */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-card{
    background:#1a1a1a;
    padding:40px;
    border-radius:15px;
    text-align:center;
    border:1px solid rgba(201,162,77,.2);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:#c9a24d;
}

.stat-card h3{
    font-size:42px;
    color:#c9a24d;
    margin-bottom:10px;
}

.stat-card p{
    color:#ddd;
}

/* TESTIMONIALS */

.card h3{
    color:#c9a24d;
}

/* CONTACT CTA */

.contact{
    text-align:center;
    background:#131313;
}

.contact p{
    max-width:800px;
    margin:auto;
    color:#ddd;
    font-size:18px;
}