*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}
html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}
body{
    background:#000;
}

/* Navbar */

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

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:100px;

    height:100px;

    object-fit:contain;

}

.logo-text h2{

    color:white;

    font-size:30px;

    font-weight:700;

    letter-spacing:1px;

    line-height:1;

}

.logo-text span{

    color:#D4AF37;

    font-size:15px;

    letter-spacing:5px;

    font-weight:500;

}

.navbar ul{

    display:flex;

    list-style:none;

}
.menu-toggle{
    display:none;
}
.navbar ul li{

    margin-left:45px;

}

.navbar ul li a{

    color:white;

    text-decoration:none;

    font-size:18px;

    transition:.4s;

}

.navbar ul li a:hover{

    color:#D4AF37;

}


/* Hero */

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.60),
    rgba(0,0,0,.65)),

    url("../assets/images/background.webp");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

}

.overlay{

    width:100%;

    text-align:center;

    color:white;

}

.welcome{

    color:#D4AF37;

    letter-spacing:8px;

    font-size:18px;

    margin-bottom:20px;

}

.hero h1{

    font-size:80px;

    font-weight:800;

    line-height:90px;

}

.hero h3{

    margin-top:25px;

    color:#D4AF37;

    font-weight:500;

}

.description{

    width:700px;

    margin:auto;

    margin-top:25px;

    line-height:32px;

    color:#ddd;

}

.buttons{

    margin-top:50px;

}

.btn{

    text-decoration:none;

    color:white;

border:2px solid white;

    padding:18px 42px;

    border-radius:50px;

    margin-right:20px;

    font-weight:600;

}

.btn2{

    text-decoration:none;

    color:white;

    border:2px solid white;

    padding:18px 42px;

    border-radius:50px;

    transition:.4s;

}

.btn2:hover{

    background:white;

    color:black;

}

/* ================= ABOUT ================= */


/* Banner */

.page-banner{
    height:324px;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("../assets/images/banner.webp");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-sizing:border-box;
    padding-top:90px;
}

.banner-content h1{
       color:#fff;

    font-size:58px;
    margin-bottom:10px;
}

.banner-content p{
    color:#D4AF37;
    font-size:20px;
    letter-spacing:2px;
}

/* Company Section */

.company{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    padding:100px 8%;
    background:#111;
}

.company-image{
    flex:1;
}

.company-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.company-content{
    flex:1;
}

.company-content span{
    color:#D4AF37;
    font-weight:600;
    letter-spacing:4px;
}

.company-content h2{
    color:#fff;
    font-size:48px;
    margin:20px 0;
    line-height:60px;
}

.company-content p{
    color:#cfcfcf;
    line-height:32px;
    margin-bottom:20px;
    font-size:18px;
}

/* Mission & Vision */

.mission{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    padding:90px 8%;
    background:#181818;
}

.mission-box{
    background:#202020;
    padding:45px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
}

.mission-box:hover{
    transform:translateY(-8px);
    border:1px solid #D4AF37;
}

.mission-box i{
    font-size:45px;
    color:#D4AF37;
    margin-bottom:20px;
}

.mission-box h3{
    color:#fff;
    margin-bottom:15px;
    font-size:28px;
}

.mission-box p{
    color:#cfcfcf;
    line-height:30px;
}

/* Why Choose Us */

.why{
    padding:100px 8%;
    background:#111;
    text-align:center;
}

.why h2{
    color:#fff;
    font-size:48px;
    margin-bottom:60px;
}

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

.why-box{
    background:#1d1d1d;
    padding:40px 25px;
    border-radius:18px;
    transition:.4s;
}

.why-box:hover{
    transform:translateY(-10px);
    border:1px solid #D4AF37;
}

.why-box i{
    font-size:40px;
    color:#D4AF37;
    margin-bottom:20px;
}

.why-box h3{
    color:#fff;
    margin-bottom:15px;
}

.why-box p{
    color:#cfcfcf;
    line-height:28px;
}

/* Statistics */

.stats{
    background:#0d0d0d;
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.stats h2{
    color:#D4AF37;
    font-size:55px;
}

.stats p{
    color:#fff;
    margin-top:10px;
    letter-spacing:1px;
}

/* Footer */

footer{
    background:#000;
    color:#999;
    text-align:center;
    padding:25px;
    font-size:15px;
}

/* Active Menu */

.navbar ul li a.active{
    color:#D4AF37;
}

.navbar ul li a.active::after{
    width:100%;
}

/* ================= SERVICES ================= */

.services{

    background:#111;

    padding:100px 8%;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:#D4AF37;

    letter-spacing:5px;

    font-weight:600;

}

.section-heading h2{

    color:white;

    font-size:52px;

    margin:20px 0;

}

.section-heading p{

    color:#bdbdbd;

    width:700px;

    margin:auto;

    line-height:32px;

}

.service-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#1b1b1b;

    padding:40px;

    border-radius:20px;

    transition:.4s;

    border:1px solid #2c2c2c;

}

.service-card:hover{

    transform:translateY(-10px);

    border:1px solid #D4AF37;

    box-shadow:0 20px 40px rgba(212,175,55,.15);

}

.service-icon{

    width:80px;

    height:80px;

    background:#D4AF37;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#111;

    margin-bottom:30px;

    transition:.4s;

}

.service-card:hover .service-icon{

    transform:rotate(10deg) scale(1.1);

}

.service-card h3{

    color:white;

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    color:#cfcfcf;

    line-height:30px;

    font-size:17px;

}

/*==========================
      PROJECTS PAGE
===========================*/

/* Banner */

.projects-banner{
    height:324px;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("../assets/images/banner.webp");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-sizing:border-box;
    padding-top:90px;
}
.banner-content h1{
        color:#fff;

    font-size:54px;
    margin-bottom:10px;
}

.banner-content p{
    color:#D4AF37;
    font-size:20px;
    letter-spacing:2px;
}

/* Projects Section */

.projects-page{
    padding:100px 8%;
    background:#111;
}

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

.projects-title span{
    color:#D4AF37;
    letter-spacing:5px;
    font-weight:600;
}

.projects-title h2{
    color:#fff;
    font-size:48px;
    margin:20px 0;
}

.projects-title p{
    color:#bbb;
    max-width:700px;
    margin:auto;
    line-height:30px;
}

/* Grid */

.project-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.project-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.6s;
}

.project-card:hover img{
    transform:scale(1.1);
}

/* Overlay */

.project-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.95)
    );

    transform:translateY(100%);
    transition:.5s;
}

.project-card:hover .project-overlay{
    transform:translateY(0);
}

.project-overlay h3{
    color:#fff;
    margin-bottom:10px;
    font-size:28px;
}

.project-overlay p{
    color:#ddd;
    line-height:28px;
    margin-bottom:20px;
}

.project-overlay a{
    display:inline-block;
    text-decoration:none;
    background:#D4AF37;
    color:#111;
    padding:12px 30px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.project-overlay a:hover{
    background:#fff;
}

/* Statistics */

.project-stats{
    margin-top:100px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.project-stat{
    background:#1c1c1c;
    padding:40px;
    border-radius:15px;
}

.project-stat h2{
    color:#D4AF37;
    font-size:48px;
}

.project-stat p{
    color:#fff;
    margin-top:10px;
}

/* Call to Action */

.project-cta{
    margin-top:100px;
    text-align:center;
    padding:80px 40px;
    background:#181818;
    border-radius:20px;
}

.project-cta h2{
    color:#fff;
    font-size:42px;
}

.project-cta p{
    color:#bbb;
    margin:20px 0 40px;
    line-height:30px;
}

.project-cta .btn{
    display:inline-block;
    text-decoration:none;
    background:#D4AF37;
    color:#111;
    padding:15px 40px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.project-cta .btn:hover{
    background:#fff;
}

/* Responsive */

@media(max-width:992px){

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

    .project-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .banner-content h1{
        font-size:45px;
    }

    .projects-title h2{
        font-size:36px;
    }

    .project-stats{
        grid-template-columns:1fr;
    }

}

/*==============================
        CONTACT PAGE
==============================*/

/* Banner */

.contact-banner{
    height:324px;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("../assets/images/banner.webp");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding-top:100px;
    box-sizing:border-box;
}

.banner-content h1{

    color:#fff;

    font-size:58px;
    margin-bottom:10px;

}

.banner-content p{

    color:#D4AF37;

    font-size:20px;

    letter-spacing:2px;

}

/* Contact Section */

.contact-section{

    background:#111;

    padding:100px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:flex-start;

}

/* Left Side */

.contact-info h2{

    color:#fff;

    font-size:50px;

    margin-bottom:20px;

}

.contact-info>p{

    color:#cfcfcf;

    line-height:32px;

    margin-bottom:40px;

    max-width:500px;

}

.info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info p{

    color:#fff;

    font-size:18px;

}

.info i{

    color:#D4AF37;

    width:35px;

    font-size:20px;

}

/* Form */

.contact-form{

    background:#1b1b1b;

    padding:40px;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,

.contact-form select,

.contact-form textarea{

    width:100%;

    padding:18px;

    background:#2b2b2b;

    border:1px solid transparent;

    border-radius:12px;

    color:#fff;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,

.contact-form select:focus,

.contact-form textarea:focus{

    border:1px solid #D4AF37;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    background:#D4AF37;

    color:#111;

    padding:18px;

    border:none;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.4s;

}

.contact-form button:hover{

    background:#fff;

    transform:translateY(-3px);

}

/* Footer */

footer{

    background:#000;

    color:#999;

    text-align:center;

    padding:25px;

}

