/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

html{
    scroll-behavior:smooth;
}

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#ffffff;
}

/* Hide mobile menu on desktop */
.menu-toggle,
.close-menu{
    display: none;
}

/* =========================
   Top Bar
========================= */

.top-bar{
    background:#111;
    color:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 8%;

    font-size:14px;
}

.top-bar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: #111;
    color: white;

    z-index: 1001;
}

.contact-info{
    display:flex;
    gap:30px;
}

.contact-info a{
    color: white;
    text-decoration: none;
}
.social-icons{
    display:flex;
    gap:20px;
}

.social-icons a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    color:#c59d5f;
}

/*Navbar */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding:25px 8%;
    background: #ffffff;

    position: fixed;
    width: 100%;
    top:40px;
    left: 0;

    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

    z-index: 1000;
}


.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.logo span{
    font-size:28px;
    font-weight:700;
}



.nav-links{
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover{
    color: #c59d5f;
}

.btn{
    background: #c59d5f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover{
    background: #a67c42;
}


/* =========================
   Hero Section
========================= */

.hero{
    height:100vh;
    background-image:url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
     margin-top:120px;

    position:relative;

    display:flex;
    align-items:center;

    padding:0 8%;
}

.overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.55);
}

.hero-subtitle{
    color:#c59d5f;
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
    display:block;
    margin-bottom:20px;
}
.hero-content{
    position:relative;
    color:#fff;
    max-width:650px;
      margin-top:70px;
}

.hero-content h1{
    font-size:65px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}
.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    padding:18px 35px;
}
.primary-btn,
.secondary-btn{

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.primary-btn{

    background:#c59d5f;
    color:white;
    border:none;

}

.primary-btn:hover{

    background:#a67c42;
    transform:translateY(-3px);

}

.secondary-btn{

    background:transparent;
    color:white;
    border:2px solid white;

}

.secondary-btn:hover{

    background:white;
    color:#222;

}

/* .primary-btn,
.secondary-btn{

    padding:15px 30px;
    border:none;
    border-radius:6px;

    font-size:16px;
    cursor:pointer;

    transition:.3s;
}

.primary-btn{
    background:#c59d5f;
    color:white;
} */






/* =========================
   About Section
========================= */

.about{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;

    padding:100px 8%;

    background:#fff;
}

.about-image{
    flex:1;
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:10px;
}

.small-img{
    position:absolute;
    width:45% !important;

    right:-30px;
    bottom:-30px;

    border:8px solid white;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.about-content{
    flex:1;
}

.about-content span{
    color:#c59d5f;
    font-weight:600;
    letter-spacing:2px;
}

.about-content h2{
    font-size:42px;
    margin:20px 0;
    color:#222;
}

.about-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:35px;
}

.feature{
    font-weight:600;
}

/* .about-btn{
    background:#c59d5f;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
}

.about-btn:hover{
    background:#a67c42;
} */


/* =========================
   Services Section
========================= */

.services{
    padding:100px 8%;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#c59d5f;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin-top:15px;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:10px;
    text-align:center;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-10px);
}

.icon{
    font-size:45px;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

/* =========================
   Why Choose Us
========================= */

.why-us{
    padding:100px 8%;
    background:#fff;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-card{
    background:#f8f8f8;
    padding:35px;
    border-radius:10px;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.why-card h3{
    margin-bottom:15px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

/* =========================
   Projects Section
========================= */

.projects{
    padding:100px 8%;
    background:#f8f8f8;
}


.project-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:30px;
    margin-top:50px;
}

.project-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-8px);
}

.project-image{
    width:100%;
    height:260px;
    overflow:hidden;
}


.project-image{
    
    background:#d9d9d9;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;
    color:#555;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.project-card:hover img{
    transform:scale(1.05);
}
.project-info{
    padding:22px;
}

.project-info h3{
    font-size:28px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.project-info p{
    font-size:17px;
    color:#777;
    margin:0;
}


.view-btn{
    text-align:center;
    margin-top:40px;
}

.btn{
    display:inline-block;
    background:#c59d5f;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:8px;
    transition:.3s;
}

.btn:hover{
    background:#a67c42;
}









/*=========================
        Statistics
==========================*/

.stats{
    background:#1c1c1c;
    color:#fff;

    padding:35px 8%;

    display:flex;
    justify-content:space-around;
    align-items:center;
    flex-wrap:wrap;

    text-align:center;
}

.stat-box h2{
    font-size:30px;
    color:#c59d5f;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
}

/* =========================
   Testimonials
========================= */

.testimonials{
    padding:100px 8%;
    background:#f8f8f8;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h3{
    color:#c59d5f;
    margin-bottom:15px;
}

.testimonial-card h4{
    color:#222;
}
/* =========================
   Contact Section
========================= */

/* CONTACT SECTION */

.contact{
    padding:80px 10%;
    background:#f8f8f8;
}

.contact-title{
    text-align:center;
    margin-bottom:50px;
}

.contact-title h2{
    font-size:40px;
    color:#222;
    margin-bottom:15px;
}

.contact-title p{
    color:#666;
    font-size:18px;
}

.contact-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.contact-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#c89b52;
}

.contact-card p{
    font-size:17px;
    color:#555;
}

.contact-card a{
    text-decoration:none;
    color:#222;
    font-weight:600;
}

.contact-card a:hover{
    color:#c89b52;
}

.map{
    margin-top:50px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* =========================
   Footer
========================= */

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:40px 8%;

}

.footer-content h2{

    margin-bottom:15px;

}

.footer-content p{

    margin-bottom:10px;

    color:#ccc;

}
/* =========================
   WhatsApp Button
========================= */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    z-index:1000;

    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

.whatsapp img{
    width:30px;
    filter:invert(1);
}

/* =========================
   Back To Top
========================= */

#topBtn{

    position:fixed;

    bottom:100px;

    right:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#c59d5f;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    display:none;

    z-index:1000;
}

#topBtn:hover{

    background:#a67c42;

}