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

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#222;
}

/* Header */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#111;
    position:sticky;
    top:0;
    z-index:1000;
}

header h2{
    color:#D4AF37;
    font-size:30px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    transition:.3s;
    font-weight:500;
}

nav a:hover{
    color:#D4AF37;
}

/* Hero */

.hero{
    height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/hero.jpg");
    background-size:cover;
    background-position:center;
    padding:20px;
}

.hero-content h3{
    color:#D4AF37;
    font-size:26px;
}

.hero-content h1{
    font-size:70px;
    margin:20px 0;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
}

.buttons{
    margin-top:35px;
}

.btn1,
.btn2{

    display:inline-block;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    margin:10px;
    transition:.3s;
    font-weight:bold;

}

.btn1{
    background:#D4AF37;
    color:#111;
}

.btn2{
    border:2px solid white;
    color:white;
}

.btn1:hover,
.btn2:hover{
    transform:translateY(-5px);
}

/* About */

.about{
    padding:100px 10%;
}

.about h2{
    font-size:45px;
    margin-bottom:25px;
    color:#111;
}

.about p{
    font-size:19px;
    color:#555;
    line-height:1.9;
    max-width:900px;
} /* Services */

.services{
    padding:100px 8%;
    background:#f8f8f8;
}

.services h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
}

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

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;
}

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

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

.card p{
    color:#555;
    line-height:1.7;
}/* Gallery */

.gallery{
    padding:100px 8%;
    background:#fff;
}

.gallery h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
}

.gallery-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;

}

.gallery-container img{

    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
    cursor:pointer;

}

.gallery-container img:hover{

    transform:scale(1.05);

}/* Why Choose Us */

.why{
    padding:100px 8%;
    background:#f8f8f8;
}

.why h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
    color:#111;
}

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

.why-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

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

.why-card p{
    color:#555;
    line-height:1.7;
}/* Contact */

.contact{
    padding:100px 8%;
    background:#111;
    color:white;
}

.contact h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
    color:#D4AF37;
}

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

.contact-box{
    background:#222;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.contact-box h3{
    margin-bottom:15px;
    color:#D4AF37;
}

.contact-box p,
.contact-box a{
    color:white;
    text-decoration:none;
    font-size:18px;
}

.contact-box a:hover{
    color:#D4AF37;
}/* Floating WhatsApp */

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

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

.reviews{
    padding:100px 8%;
    background:#f8f8f8;
}

.reviews h2{
    text-align:center;
    font-size:45px;
    margin-bottom:50px;
}

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

.review-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    text-align:center;
}

.review-card p{
    margin:20px 0;
    color:#555;
    line-height:1.7;
}

.review-card h4{
    color:#D4AF37;
}/* Footer */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:60px 8%;
}

footer h2{
    color:#D4AF37;
    margin-bottom:15px;
    font-size:35px;
}

footer p{
    color:#ccc;
    margin:10px 0;
    line-height:1.7;
}

.footer-links{
    margin:30px 0;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    transition:.3s;
}

.footer-links a:hover{
    color:#D4AF37;
}

.copyright{
    margin-top:25px;
    font-size:15px;
    color:#888;
}/* Mobile Navbar */

.menu-btn{
    display:none;
    font-size:30px;
    color:#D4AF37;
    cursor:pointer;
}

@media (max-width:768px){

    header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-wrap:wrap;
        padding:15px 5%;
        position:relative;
    }

    header h2{
        font-size:22px;
    }

    .menu-btn{
        display:block;
        margin-left:auto;
    }

    nav{
        display:none;
        flex-direction:column;
        width:100%;
        text-align:center;
        background:#111;
        position:absolute;
        top:70px;
        left:0;
        padding:20px 0;
        z-index:999;
    }

    nav.active{
        display:flex;
    }

    nav a{
        margin:15px 0;
    }

    .hero{
        height:auto;
        padding:80px 20px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content h3{
        font-size:18px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .buttons{
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .btn1,
    .btn2{
        display:block;
        width:100%;
        text-align:center;
        margin:10px 0;
    }

    .gallery-container,
    .service-container,
    .why-container,
    .review-container,
    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:50px 5%;
    }

    .contact-form h2{
        font-size:30px;
    }

    iframe{
        height:300px;
    }
}

/* Lightbox */

.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}/* Google Map */

.map{
    width:100%;
    margin:0;
    padding:0;
}

.map iframe{
    width:100%;
    height:450px;
    border:none;
    display:block;
}/* Contact Form */

.contact-form{
    padding:80px 8%;
    background:#f8f8f8;
    text-align:center;
}

.contact-form h2{
    font-size:40px;
    margin-bottom:30px;
    color:#111;
}

.contact-form form{
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    background:#D4AF37;
    color:#111;
    border:none;
    padding:15px 40px;
    border-radius:30px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
}/* Scroll To Top */

#topBtn{
    display:none;
    position:fixed;
    bottom:100px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#D4AF37;
    color:#111;
    font-size:24px;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

#topBtn:hover{
    transform:scale(1.1);
}

