/*==============================
Google Font
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
Variables
==============================*/
:root{

    --primary:#FFD400;
    --secondary:#111111;
    --white:#ffffff;
    --text:#666666;
    --light:#f7f7f7;
    --border:#ececec;

    --radius:18px;

    --shadow:0 12px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

}

/*==============================
Reset
==============================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:var(--secondary);

    background:#fff;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,90%);

    margin:auto;

}

.section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:#111;

    margin-bottom:15px;

}

.section-title p{

    color:#777;

    max-width:700px;

    margin:auto;

}

/*==============================
Buttons
==============================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.primary-btn{

    background:var(--primary);

    color:#111;

    margin-right:15px;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(255,212,0,.4);

}

.secondary-btn{

    border:2px solid #fff;

    color:#fff;

}

.secondary-btn:hover{

    background:#fff;

    color:#111;

}

/*==============================
Header
==============================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:#111;

    transition:.3s;

}

.header.sticky{

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.nav-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:85px;

}

.logo h2{

    color:#FFD400;

    font-size:30px;

    line-height:1;

}

.logo span{

    color:#fff;

    font-size:13px;

    letter-spacing:1px;

}

.navbar ul{

    display:flex;

    gap:35px;

}

.navbar a{

    color:#fff;

    font-weight:500;

    transition:.3s;

}

.navbar a:hover{

    color:var(--primary);

}

.call-btn{

    background:#FFD400;

    color:#111;

    padding:12px 24px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.call-btn:hover{

    transform:translateY(-3px);

}

.call-btn i{

    margin-right:8px;

}

.menu-btn{

    display:none;

    color:#fff;

    font-size:30px;

    cursor:pointer;

}

/*==============================
Hero
==============================*/

.hero{

    background:linear-gradient(135deg,#111,#202020);

    color:#fff;

    padding:170px 0 100px;

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.tag{

    display:inline-block;

    background:#FFD400;

    color:#111;

    padding:10px 25px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:20px;

}

.hero h1{

    font-size:62px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

}

.hero h1 span{

    color:#FFD400;

}

.hero p{

    font-size:18px;

    color:#ddd;

    margin-bottom:35px;

    max-width:560px;

}

.hero-btns{

    margin-bottom:40px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

    animation:float 4s ease-in-out infinite;

}

/*==============================
Hero Features
==============================*/

.hero-feature{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.hero-feature div{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    padding:15px 20px;

    border-radius:15px;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.3s;

}

.hero-feature div:hover{

    transform:translateY(-5px);

    background:rgba(255,212,0,.15);

}

.hero-feature i{

    color:#FFD400;

}

/*==============================
Animation
==============================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}
/*====================================
ABOUT SECTION
====================================*/

.about{
    background:#f9f9f9;
}

.about-grid{

    display:grid;

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

    gap:30px;

}

.about-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    border:1px solid #eee;

}

.about-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-card i{

    width:90px;

    height:90px;

    line-height:90px;

    background:#FFD400;

    color:#111;

    border-radius:50%;

    font-size:34px;

    margin-bottom:25px;

}

.about-card h3{

    margin-bottom:15px;

    font-size:24px;

    font-weight:700;

}

.about-card p{

    color:#666;

}


/*====================================
PRODUCT SECTION
====================================*/

.products{

    background:#fff;

}

.product-grid{

    display:grid;

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

    gap:30px;

}

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-12px);

}

.product-card img{

    height:270px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card h3{

    font-size:20px;

    padding:25px 25px 15px;

}

.product-card p{

    padding:0 25px;

    color:#666;

}

.product-card a{

    display:inline-block;

    margin:25px;
    margin-top: 0;
    background:#111;

    color:#fff;

    padding:10px 20px;

    border-radius:40px;

    transition:.3s;

}

.product-card a:hover{

    background:#FFD400;

    color:#111;

}


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

.services{

    background:#111;

}

.services .section-title h2{

    color:#fff;

}

.services .section-title p{

    color:#ddd;

}

.service-grid{

    display:grid;

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

    gap:35px;

}

.service-card{

    position:relative;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    padding:45px 35px;

    border-radius:20px;

    color:#fff;

    transition:.4s;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    top:0;

    left:0;

    background:#FFD400;

    transition:.4s;

    z-index:-1;

}

.service-card:hover::before{

    width:100%;

}

.service-card:hover{

    color:#111;

    transform:translateY(-12px);

}

.service-card i{

    font-size:55px;

    margin-bottom:25px;

    color:#FFD400;

    transition:.3s;

}

.service-card:hover i{

    color:#111;

}

.service-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.service-card p{

    line-height:1.8;

}


/*====================================
SECTION BACKGROUND
====================================*/

.products{

    position:relative;

}




/*====================================
HOVER ANIMATION
====================================*/

.about-card,
.product-card,
.service-card{

    cursor:pointer;

}

.about-card:hover i{

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

    transition:.35s;

}


/*====================================
COMMON TITLE
====================================*/

.section-title span{

    display:inline-block;

    color:#FFD400;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:15px;

}


/*====================================
SMOOTH IMAGE SHADOW
====================================*/

.product-card img{

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

/*====================================
WORKING PROCESS
====================================*/

.process{
    background:#f8f8f8;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.step{
    position:relative;
    background:#fff;
    padding:45px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.step:hover{
    transform:translateY(-12px);
}

.step span{

    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;
    margin-bottom:25px;

    background:#FFD400;
    color:#111;

    border-radius:50%;

    font-size:28px;
    font-weight:700;

}

.step h3{

    font-size:24px;
    margin-bottom:15px;

}

.step p{

    color:#666;

}

.step:not(:last-child)::after{

    content:"➜";

    position:absolute;

    right:-28px;
    top:50%;

    transform:translateY(-50%);

    color:#FFD400;

    font-size:40px;

    font-weight:bold;

}


/*====================================
GALLERY
====================================*/

.gallery{

    background:#fff;

}

.gallery-grid{

    display:grid;

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

    gap:25px;

}

.gallery-grid img{

    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:18px;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-grid img:hover{

    transform:scale(1.06);

}


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

.contact{

    background:#111;

    color:#fff;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.contact-info h2{

    font-size:42px;

    margin-bottom:30px;

}

.contact-info p{

    margin-bottom:18px;

    color:#ddd;

    line-height:1.9;

}

.contact-info i{

    color:#FFD400;

    margin-right:12px;

}


/*====================================
CONTACT FORM
====================================*/

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:.3s;

}

.contact-form textarea{

    resize:none;

    height:180px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#FFD400;

}

.contact-form button{

    width:100%;

    background:#FFD400;

    color:#111;

    border:none;

    padding:18px;

    border-radius:50px;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    background:#111;

    color:#fff;

}


/*====================================
FOOTER
====================================*/

footer{

    background:#000;

    color:#fff;

    text-align:center;

    padding:60px 20px;

}

footer h3{

    color:#FFD400;

    font-size:34px;

    margin-bottom:12px;

}

footer p{

    color:#ccc;

    margin-bottom:20px;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:30px 0;

}

.footer-social a{

    width:50px;
    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#222;

    color:#fff;

    transition:.35s;

    font-size:18px;

}

.footer-social a:hover{

    background:#FFD400;

    color:#111;

    transform:translateY(-6px);

}


/*====================================
WHATSAPP BUTTON
====================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    box-shadow:0 12px 30px rgba(0,0,0,.2);

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.1);

}


/*====================================
BACK TO TOP
====================================*/

.top-btn{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#FFD400;

    color:#111;

    font-size:22px;

    cursor:pointer;

    display:none;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    z-index:999;

    transition:.35s;

}

.top-btn:hover{

    transform:translateY(-5px);

}

.top-btn.show{

    display:flex;

    align-items:center;

    justify-content:center;

}


/*====================================
SMALL FADE ANIMATION
====================================*/

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.about-card,
.product-card,
.service-card,
.step{

    animation:fadeUp .8s ease;

}
