*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:#0A0A0A;
    color:#fff;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:80px 0;
}

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

.section-title h2{
    font-size:40px;
    color:#B08B57;
}

.header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background:rgba(0,0,0,0.9);
    padding:15px 0;
}

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

.logo img{
    width:80px;
}

.nav{
    display:flex;
    gap:25px;
}

.nav a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.nav a:hover{
    color:#B08B57;
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.hero{
    height:100vh;
    background:url('banner1.webp') center/cover;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.7);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.hero-logo{
    width:140px;
    margin:auto auto 20px;
}

.hero h1{
    font-size:50px;
    margin-bottom:20px;
}

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

.btn{
    display:inline-block;
    padding:14px 30px;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.gold-btn{
    background:linear-gradient(to right,#B08B57,#d4af75);
    color:#000;
    font-weight:bold;
}

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

.outline-btn{
    border:1px solid #B08B57;
    color:#fff;
    margin-left:10px;
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

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

.dark-section{
    background:#111;
}

.card-grid,
.product-grid,
.counter-grid,
.industries-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature-card,
.icon-card,
.testimonial-card,
.counter-box{
    background:#1b1b1b;
    padding:30px;
    border-radius:10px;
    text-align:center;
    transition:0.3s;
}

.feature-card:hover,
.icon-card:hover,
.product-card:hover,
.testimonial-card:hover{
    transform:translateY(-8px);
}

.feature-card i,
.icon-card i{
    font-size:40px;
    color:#B08B57;
    margin-bottom:15px;
}

.product-card{
    background:#1b1b1b;
    border-radius:10px;
    overflow:hidden;
}

.product-content{
    padding:20px;
}

.industries-grid div{
    background:#1b1b1b;
    padding:30px;
    text-align:center;
    border-radius:10px;
}

.industries-grid i{
    font-size:35px;
    color:#B08B57;
    margin-bottom:15px;
}

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

.gallery-grid img{
    height:250px;
    object-fit:cover;
    border-radius:10px;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

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

.footer{
    text-align:center;
    padding:30px 0;
    background:#000;
}

.social-icons{
    margin-bottom:15px;
}

.social-icons a{
    color:#B08B57;
    margin:0 10px;
    font-size:20px;
}

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    z-index:999;
}

#topBtn{
    position:fixed;
    right:20px;
    bottom:90px;
    background:#B08B57;
    border:none;
    width:50px;
    height:50px;
    border-radius:50%;
    cursor:pointer;
    display:none;
}

.map-placeholder{
    background:#222;
    height:250px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:20px;
}

@media(max-width:768px){

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

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

    .nav{
        position:absolute;
        top:70px;
        right:0;
        background:#111;
        flex-direction:column;
        width:220px;
        padding:20px;
        display:none;
    }

    .nav.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }
}