/*==================================================
                GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
                RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button,
input,
textarea{
    font-family:'Poppins',sans-serif;
    outline:none;
    border:none;
}

section{
    padding:110px 0;
}

.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}


/*==================================================
                ROOT
==================================================*/

:root{

    --primary:#d4af37;
    --primary-dark:#b89020;
    --black:#0b0b0b;
    --black-light:#161616;
    --black-card:#1d1d1d;

    --white:#ffffff;
    --gray:#bdbdbd;
    --gray-light:#d7d7d7;

    --shadow:0 15px 45px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s ease;

}


/*==================================================
                COMMON
==================================================*/

.section-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}



.section-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title{

    font-size:40px;

    font-weight:700;

    margin-bottom:18px;

    line-height:1.2;

}

.section-description{
    max-width:700px;
    margin:0 auto;
    text-align:center;
}



.services .section-title{

    font-size:40px;

}

/*==================================================
                    BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 36px;

    background:var(--primary);

    color:#000;

    font-weight:600;

    border-radius:50px;

    transition:var(--transition);

}

.btn:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}


.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 36px;

    border:2px solid var(--primary);

    color:var(--white);

    border-radius:50px;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:#000;

}


/*==================================================
                SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#e0b83e;

}
/*==================================================
                    HEADER
==================================================*/

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(8,8,8,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:95px;

}

.logo img{

    width:130px;

    margin-top:1px;

    transition:.35s;

}

.logo:hover img{

    transform:scale(1.04);

}

/*====================
        MENU
====================*/

.navbar{

    display:flex;

    align-items:center;

    gap:42px;

    margin-top:12px;

}

.navbar a{

    color:#fff;

    font-size:20px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.navbar a:hover,

.navbar a.active{

    color:var(--primary);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.navbar a:hover::after,

.navbar a.active::after{

    width:100%;

}

/*====================
    RIGHT
====================*/

.header-right{

    display:flex;

    align-items:center;

    gap:18px;

}

.header-btn{

    padding:14px 30px;

    border-radius:50px;

    background:var(--primary);

    color:#000;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(212,175,55,.25);

}

.header-btn:hover{

    background:#fff;

    transform:translateY(-3px);

}

/*====================
        MOBILE
====================*/

.menu-toggle{

    display:none;

    width:48px;

    height:48px;

    border-radius:10px;

    background:var(--primary);

    color:#000;

    font-size:20px;

    cursor:pointer;

    transition:.35s;

}

.menu-toggle:hover{

    transform:rotate(90deg);

}
/*==================================================
                    HERO
==================================================*/

.hero{

    position:relative;

    min-height:85vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding-top:170px;

    background:
    radial-gradient(circle at top right,rgba(212,175,55,.12),transparent 35%),
    radial-gradient(circle at bottom left,rgba(212,175,55,.08),transparent 30%),
    #0b0b0b;

}

.hero-content{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-left{

    animation:fadeLeft 1s ease;

}

.hero-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:22px;

}

.hero-left h1{

    font-size:50px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:28px;

}

.hero-left h1 span{

    color:var(--primary);

}

.hero-left p{

    max-width:620px;

    color:var(--gray);

    font-size:18px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:60px;

}

.hero-stats{

    display:flex;

    gap:45px;

    flex-wrap:wrap;

}

.stat{

    padding-right:35px;

    border-right:1px solid rgba(255,255,255,.08);

}

.stat:last-child{

    border:none;

}

.stat h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:8px;

}

.stat span{

    color:var(--gray);

    font-size:15px;

}

/*======================
        HERO IMAGE
======================*/

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    animation:fadeRight 1s ease;

}

.hero-right::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    filter:blur(60px);

    z-index:0;

}

.hero-right img{

    position:relative;

    width:100%;

    max-width:1500px;

    z-index:2;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 30px 50px rgba(0,0,0,.5));

}

/*======================
        ANIMATIONS
======================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}
/*==================================================
                ABOUT
==================================================*/

.about{

    background:#111111;

}

.about-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:80%;

    margin:0 auto;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    transition:.4s;

}


.about-image img:hover{

    transform:scale(1.03);

}

.about-text h2{

    font-size:42px;

    line-height:1.2;

    margin-bottom:25px;

}

.about-text p{

    color:var(--gray);

    margin-bottom:20px;

    font-size:17px;

}

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin:45px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    background:var(--black-card);

    border-radius:15px;

    transition:.35s;

}

.feature:hover{

    transform:translateY(-6px);

    background:#242424;

}

.feature i{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.15);

    color:var(--primary);

    font-size:18px;

}

.feature span{

    font-weight:500;

    color:#fff;

}

.about .btn{

    margin-top:10px;

}
/*==================================================
                SERVICES
==================================================*/

.services{

    background:#0b0b0b;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:var(--black-card);

    padding:45px 35px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.service-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

}

.service-icon i{

    color:var(--primary);

    font-size:34px;

}

.service-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    color:var(--gray);

    font-size:16px;

}
/*==================================================
                    GALLERY
==================================================*/

.gallery{

    background:#111111;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    background:#1d1d1d;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:.4s;

}

.gallery-item img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.6s;

}



.gallery-item:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.45);

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item:hover::after{

    opacity:1;

    transform:translate(-50%,-50%) scale(1);

}

.gallery-item{

    border:2px solid transparent;

}

.gallery-item:hover{

    border-color:var(--primary);

}
/*==================================================
                    WHY US
==================================================*/

.why-us{

    background:#0b0b0b;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:var(--black-card);

    padding:40px 35px;

    border-radius:20px;

    transition:.35s;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

}

.why-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

}

.why-icon i{

    font-size:34px;

    color:var(--primary);

}

.why-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.why-card p{

    color:var(--gray);

    font-size:16px;

}
/*==================================================
                PROCESS
==================================================*/

.process{

    background:#111111;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-card{

    position:relative;

    background:var(--black-card);

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    overflow:hidden;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

}

.process-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:42px;

    font-weight:800;

    color:rgba(212,175,55,.10);

}

.process-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

}

.process-icon i{

    font-size:34px;

    color:var(--primary);

}

.process-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.process-card p{

    color:var(--gray);

}
/*==================================================
                    FAQ
==================================================*/

.faq{

    background:#0b0b0b;

}

.faq-container{

    max-width:950px;

    margin:auto;

}

.faq-item{

    background:var(--black-card);

    padding:30px;

    margin-bottom:22px;

    border-radius:18px;

    border-left:4px solid var(--primary);

    transition:.35s;

}

.faq-item:hover{

    transform:translateX(8px);

}

.faq-item h3{

    font-size:22px;

    margin-bottom:15px;

    color:#fff;

}

.faq-item p{

    color:var(--gray);

    line-height:1.8;

}
/*==================================================
                    CTA
==================================================*/

.cta{

    background:linear-gradient(135deg,#1a1a1a,#0b0b0b);

}

.cta-wrapper{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:var(--black-card);

    padding:80px 60px;

    border-radius:30px;

    border:1px solid rgba(212,175,55,.15);

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.cta-wrapper h2{

    font-size:48px;

    margin:20px 0;

}

.cta-wrapper p{

    color:var(--gray);

    font-size:18px;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}
/*==================================================
                CONTACT
==================================================*/

.contact{

    background:#111111;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;

    align-items:flex-start;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-card{

    display:flex;

    align-items:center;

    gap:20px;

    background:var(--black-card);

    padding:25px;

    border-radius:18px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.contact-card i{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:24px;

    flex-shrink:0;

}

.contact-card h3{

    margin-bottom:8px;

    font-size:22px;

}

.contact-card p,
.contact-card a{

    color:var(--gray);

    transition:.3s;

}

.contact-card a:hover{

    color:var(--primary);

}

/*=========================
        FORM
=========================*/

.contact-form{

    background:var(--black-card);

    padding:45px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.05);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    background:#111;

    color:#fff;

    padding:18px 20px;

    border:1px solid #2d2d2d;

    border-radius:12px;

    margin-bottom:20px;

    transition:.35s;

    resize:none;

    font-size:16px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--primary);

}

.contact-form button{

    cursor:pointer;

}
/*==================================================
                FOOTER
==================================================*/

.footer{

    background:#080808;

    border-top:1px solid rgba(255,255,255,.05);

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-item p{

    color:var(--gray);

    margin-bottom:30px;

}

.footer-item h3{

    margin-bottom:25px;

    font-size:24px;

}

.footer-item ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-item ul li{

    color:var(--gray);

}

.footer-item ul li a{

    transition:.3s;

}

.footer-item ul li a:hover{

    color:var(--primary);

    padding-left:8px;

}

/*=========================
        SOCIAL
=========================*/

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#181818;

    border-radius:50%;

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    color:#000;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

    text-align:center;

}

.footer-bottom p{

    color:#9f9f9f;

    font-size:15px;

}
/*==================================================
                RESPONSIVE
==================================================*/

/*************** 1200px ***************/

@media(max-width:1200px){

    .hero-content,
    .about-content{

        gap:50px;

    }

    .hero-left h1{

        font-size:56px;

    }

}


/*************** 992px ***************/

@media(max-width:992px){

    section{

        padding:90px 0;

    }

    .section-title{

        font-size:36px;

    }

    .hero-content,
    .about-content,
    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .hero{

        text-align:center;

    }

    .hero-left p{

        margin:0 auto 40px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        justify-content:center;

    }

    .hero-right{

        margin-top:50px;

    }

    .about-text{

        text-align:center;

    }

    .about-features{

        margin:40px auto;

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


/*************** 768px ***************/

@media(max-width:768px){

    .header-wrapper{

        height:85px;

    }

    .navbar{

        position:fixed;

        top:85px;

        left:-100%;

        width:280px;

        height:calc(100vh - 85px);

        background:#111;

        flex-direction:column;

        align-items:flex-start;

        padding:40px;

        gap:30px;

        transition:.4s;

        margin-top:0;

    }

    .navbar.active{

        left:0;

    }

    .menu-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .header-btn{

        display:none;

    }

    .hero{

        padding-top:140px;

    }

    .hero-left h1{

        font-size:44px;

    }

    .hero-right img{

        max-width:400px;

    }

    .services-grid,
.why-grid,
.process-grid,
.footer-grid{

    grid-template-columns:1fr;



.gallery-grid{

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .cta-wrapper{

        padding:50px 30px;

    }

    .cta-wrapper h2{

        font-size:34px;

    }

    .contact-form{

        padding:30px;

    }

}


/*************** 576px ***************/

@media(max-width:576px){

    .container{

        width:92%;

    }

    .section-title{

        font-size:30px;

    }

    .hero-left h1{

        font-size:36px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn,
    .btn-outline{

        width:100%;

    }

    .hero-stats{

        flex-direction:column;

        gap:25px;

    }

    .stat{

        border:none;

        padding:0;

    }

    .gallery-item img{

        height:260px;

    }

    .footer{

        text-align:center;

    }

    .footer-social{

        justify-content:center;

    }

}
/*=====================================
        SCROLL TOP
=====================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    background:var(--primary);

    color:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

    font-size:20px;

}

.scroll-top.show{

    opacity:1;

    visibility:visible;

}

.scroll-top:hover{

    transform:translateY(-6px);

}


/*=====================================
        LIGHTBOX
=====================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.lightbox img{

    width:90%;

    max-width:900px;

    border-radius:15px;

}

.close-lightbox{

    position:absolute;

    top:30px;

    right:40px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

}
/*=========================
    STICKY HEADER
=========================*/

header.sticky{

    background:rgba(8,8,8,.98);

    box-shadow:0 10px 35px rgba(0,0,0,.35);

}


/*=========================
    FADE EFFECT
=========================*/

.hidden{

    opacity:0;

    transform:translateY(50px);

    transition:.8s ease;

}

.hidden.show{

    opacity:1;

    transform:translateY(0);

}


/*=========================
    LIGHTBOX
=========================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    animation:fade .3s;

}

.lightbox img{

    width:90%;

    max-width:900px;

    max-height:90vh;

    object-fit:contain;

    border-radius:15px;

}

.lightbox-close{

    position:absolute;

    top:25px;

    right:35px;

    color:#fff;

    font-size:50px;

    cursor:pointer;

}

@keyframes fade{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}
/*=====================================
        WHATSAPP BUTTON
=====================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:95px;

    width:60px;

    height:60px;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:32px;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

    transition:.35s;

    z-index:999;

}

.whatsapp-float:hover{

    transform:translateY(-6px) scale(1.08);

    background:#20ba5a;

}
.contact-form input[type="file"]{
    width:100%;
    background:#111;
    color:#fff;
    padding:15px;
    border:1px solid #2d2d2d;
    border-radius:12px;
    margin-bottom:20px;
    cursor:pointer;
}

.contact-form input[type="file"]::file-selector-button{
    background:#d4af37;
    color:#000;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    margin-right:15px;
}
.about-text{
    text-align:center;
}

.about .section-subtitle{
    display:block;
}

.about-features{
    justify-content:center;
}

.about .btn{
    display:inline-flex;
    margin:30px auto 0;
}