/*==================================================
            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;
    color:#222;
    background:#ffffff;
    overflow-x:hidden;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

button,
input,
textarea,
select{

    font-family:inherit;
    outline:none;

}


/*==================================================
            VARIABLES
==================================================*/

:root{

    --primary:#0A2F66;

    --secondary:#123F86;

    --accent:#C79A39;

    --white:#ffffff;

    --black:#222222;

    --gray:#666666;

    --light:#f7f8fb;

    --border:#e8e8e8;

    --shadow:0 20px 50px rgba(0,0,0,.08);

    --radius:16px;

    --transition:.35s ease;

}


/*==================================================
            GLOBAL
==================================================*/

.container{

    width:90%;
    max-width:1280px;

    margin:auto;

}

.section{

    padding:110px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--accent);

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    margin:15px 0;

    font-size:48px;

    color:var(--primary);

    line-height:1.2;

}

.section-title p{

    width:60%;

    margin:auto;

    color:var(--gray);

    line-height:1.8;

}


/*==================================================
            BUTTONS
==================================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 36px;

    background:var(--accent);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 12px 35px rgba(199,154,57,.35);

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:#b48626;

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border:2px solid var(--white);

    border-radius:50px;

    color:#fff;

    transition:.3s;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}


/*==================================================
            HEADER
==================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(14px);

}

.navbar{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:220px;

}


/*==================================================
            MENU
==================================================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:45px;

}

.nav-links a{

    color:#fff;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--accent);

}

.menu-toggle{

    display:none;

    color:#fff;

    font-size:30px;

    cursor:pointer;

}


/*==================================================
            HERO
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/hero-bg.png") center center/cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,

    rgba(4,18,42,.95),

    rgba(7,30,70,.75),

    rgba(6,33,75,.20));

}

.hero-wrapper{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-content{

    color:#fff;

}

.hero-subtitle{

    display:inline-block;

    padding:25px 20px;

    border-radius:30px;

    background:rgba(255,255,255,.08);

    margin-bottom:30px;

    font-size:14px;

    letter-spacing:2px;

    border:1px solid rgba(255,255,255,.15);

}

.hero h1{

    font-size:68px;

    line-height:1.15;

    margin-bottom:30px;

    font-weight:800;

}

.hero h1 span{

    color:var(--accent);

}

.hero p{

    font-size:18px;

    line-height:1.9;

    color:#d8d8d8;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:8px;

    color:#fff;

    font-weight:500;

}

.hero-features i{

    color:var(--accent);

}


/*==================================================
            HERO IMAGE
==================================================*/

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:30px;

    box-shadow:var(--shadow);

}


/*==================================================
        FLOATING CARDS
==================================================*/

.floating-card{

    position:absolute;

    background:#fff;

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

    border-radius:16px;

    box-shadow:var(--shadow);

    width:260px;

}

.floating-card i{

    width:60px;

    height:60px;

    border-radius:50%;

    display:grid;

    place-items:center;

    background:var(--primary);

    color:#fff;

    font-size:24px;

}

.floating-card h4{

    color:var(--primary);

    margin-bottom:5px;

}

.floating-card span{

    color:var(--gray);

    font-size:14px;

}

.card-1{

    top:50px;

    left:-70px;

}

.card-2{

    bottom:50px;

    right:-70px;

}


/*==================================================
            SCROLL
==================================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    color:#fff;

    gap:10px;

    z-index:3;

    animation:bounce 2s infinite;

}

.scroll-down span{

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-12px);

    }

    60%{

        transform:translate(-50%,-6px);

    }

}

/*==================================================
                FEATURE BAR
==================================================*/

.features-bar{

    background:#ffffff;

    padding:40px 0;

    position:relative;

    z-index:10;

    margin-top:-60px;

}

.features-bar .container{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:20px;

}

.feature-item{

    background:#fff;

    border-radius:18px;

    padding:25px 20px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    border:1px solid rgba(0,0,0,.05);

}

.feature-item:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(10,47,102,.15);

}

.feature-item i{

    width:70px;

    height:70px;

    border-radius:50%;

    display:grid;

    place-items:center;

    margin:auto auto 18px;

    background:rgba(10,47,102,.08);

    color:var(--primary);

    font-size:28px;

}

.feature-item h4{

    color:var(--primary);

    font-size:18px;

    margin-bottom:8px;

}

.feature-item p{

    color:var(--gray);

    font-size:14px;

}



/*==================================================
                PRODUCTS
==================================================*/

.products{

    background:var(--light);

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}



/*==================================================
            PRODUCT CARD
==================================================*/

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}



/*==================================================
            PRODUCT IMAGE
==================================================*/

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}



/*==================================================
            PRODUCT CONTENT
==================================================*/

.product-content{

    padding:30px;

}

.product-content h3{

    font-size:26px;

    color:var(--primary);

    margin-bottom:18px;

}

.product-content p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:28px;

}



/*==================================================
            PRODUCT LINK
==================================================*/

.product-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--accent);

    font-weight:600;

    transition:.3s;

}

.product-content a:hover{

    gap:16px;

}



/*==================================================
            PRODUCTS BUTTON
==================================================*/

.products-button{

    margin-top:70px;

    text-align:center;

}



/*==================================================
            CARD OVERLAY
==================================================*/

.product-card{

    position:relative;

}

.product-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        transparent,

        rgba(10,47,102,.03)

    );

    opacity:0;

    transition:.4s;

    pointer-events:none;

}

.product-card:hover::before{

    opacity:1;

}



/*==================================================
            PRODUCT ICON BADGE
==================================================*/

.product-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:var(--accent);

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}



/*==================================================
            IMAGE ZOOM EFFECT
==================================================*/

.product-card{

    cursor:pointer;

}

.product-card img{

    display:block;

}



/*==================================================
            SECTION DECORATION
==================================================*/

.products{

    position:relative;

    overflow:hidden;

}

.products::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(10,47,102,.04);

    border-radius:50%;

    top:-220px;

    right:-180px;

}

.products::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    background:rgba(199,154,57,.06);

    border-radius:50%;

    left:-160px;

    bottom:-160px;

}



/*==================================================
            HOVER ICON
==================================================*/

.product-content a i{

    transition:.3s;

}

.product-content a:hover i{

    transform:translateX(6px);

}



/*==================================================
            FADE UP ANIMATION
==================================================*/

.product-card{

    animation:fadeProduct .8s ease;

}

@keyframes fadeProduct{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
                    ABOUT
==================================================*/

.about{

    background:#ffffff;
    position:relative;
    overflow:hidden;

}

.about::before{

    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(10,47,102,.04);
    top:-180px;
    left:-180px;

}

.about-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}


/*==================================================
                ABOUT IMAGE
==================================================*/

.about-image{

    position:relative;

}

.about-image img{

    border-radius:24px;
    box-shadow:var(--shadow);
    min-height:650px;
    object-fit:cover;

}


/*==================================================
            EXPERIENCE CARD
==================================================*/

.experience-card{

    position:absolute;

    bottom:35px;
    left:-45px;

    background:var(--primary);

    color:#fff;

    padding:28px;

    width:250px;

    border-radius:20px;

    box-shadow:0 25px 55px rgba(10,47,102,.35);

}

.experience-card h2{

    font-size:52px;

    color:var(--accent);

    margin-bottom:10px;

}

.experience-card p{

    line-height:1.7;

    font-size:15px;

}


/*==================================================
                ABOUT CONTENT
==================================================*/

.about-content span{

    color:var(--accent);

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.about-content h2{

    font-size:46px;

    color:var(--primary);

    margin:18px 0 28px;

    line-height:1.2;

}

.about-content p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:24px;

}


/*==================================================
                ABOUT FEATURES
==================================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin:40px 0;

}

.about-feature{

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

    color:var(--primary);

}

.about-feature i{

    width:42px;

    height:42px;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:rgba(199,154,57,.15);

    color:var(--accent);

}


/*==================================================
                STATISTICS
==================================================*/

.statistics{

    background:linear-gradient(135deg,
        var(--primary),
        #133c80);

    padding:90px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:20px;

    padding:40px 25px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.12);

}

.stat-card h2{

    color:#fff;

    font-size:54px;

    margin-bottom:12px;

}

.stat-card span{

    color:var(--accent);

}

.stat-card p{

    color:#d7d7d7;

    letter-spacing:.5px;

}


/*==================================================
            MANUFACTURING PROCESS
==================================================*/

.process{

    background:var(--light);

    position:relative;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

}


/*==================================================
                PROCESS CARD
==================================================*/

.process-card{

    background:#fff;

    text-align:center;

    padding:40px 25px;

    border-radius:20px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;

}

.process-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(10,47,102,.14);

}


/*==================================================
                PROCESS ICON
==================================================*/

.process-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:grid;

    place-items:center;

    background:rgba(10,47,102,.08);

    color:var(--primary);

    font-size:36px;

    margin-bottom:30px;

    transition:.35s;

}

.process-card:hover .process-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(8deg) scale(1.08);

}


/*==================================================
            PROCESS TEXT
==================================================*/

.process-card h3{

    color:var(--primary);

    margin-bottom:15px;

    font-size:24px;

}

.process-card p{

    color:var(--gray);

    line-height:1.8;

    font-size:15px;

}


/*==================================================
            PROCESS NUMBER
==================================================*/

.process-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:rgba(199,154,57,.06);

    border-radius:50%;

    top:-40px;

    right:-40px;

}


/*==================================================
            CONNECTOR LINE
==================================================*/

.process-card::after{

    content:"";

    position:absolute;

    top:50%;

    right:-28px;

    width:56px;

    height:2px;

    background:rgba(10,47,102,.15);

}

.process-card:last-child::after{

    display:none;

}


/*==================================================
            HOVER BORDER
==================================================*/

.process-card{

    border:1px solid transparent;

}

.process-card:hover{

    border-color:rgba(199,154,57,.35);

}


/*==================================================
            SECTION SPACING
==================================================*/

.about .btn-primary{

    margin-top:15px;

}

.process .section-title{

    margin-bottom:80px;

}

/*==================================================
                PROJECTS
==================================================*/

.projects{

    background:#ffffff;
    position:relative;
    overflow:hidden;

}

.project-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.project-card{

    position:relative;
    overflow:hidden;
    border-radius:22px;
    cursor:pointer;
    box-shadow:var(--shadow);
    transition:.4s;

}

.project-card img{

    width:100%;
    height:360px;
    object-fit:cover;
    transition:.6s;

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-card:hover img{

    transform:scale(1.08);

}


/*==================================================
            PROJECT OVERLAY
==================================================*/

.project-overlay{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:30px;

    color:#fff;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

    opacity:0;
    transition:.35s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay h3{

    font-size:28px;
    margin-bottom:8px;

}

.project-overlay span{

    color:var(--accent);
    font-size:15px;

}



/*==================================================
                WHY US
==================================================*/

.why-us{

    background:var(--light);

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.why-card{

    background:#fff;

    padding:45px 35px;

    border-radius:22px;

    transition:.35s;

    text-align:center;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(10,47,102,.14);

}

.why-card i{

    width:85px;
    height:85px;

    display:grid;
    place-items:center;

    margin:auto auto 25px;

    border-radius:50%;

    background:rgba(10,47,102,.08);

    color:var(--primary);

    font-size:34px;

    transition:.35s;

}

.why-card:hover i{

    background:var(--primary);
    color:#fff;
    transform:rotate(10deg);

}

.why-card h3{

    color:var(--primary);

    margin-bottom:18px;

    font-size:24px;

}

.why-card p{

    color:var(--gray);

    line-height:1.8;

}



/*==================================================
            TESTIMONIALS
==================================================*/

.testimonials{

    background:#fff;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:#f6b400;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:30px;

}

.client{

    display:flex;

    align-items:center;

    gap:18px;

}

.client img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.client h4{

    color:var(--primary);

    margin-bottom:5px;

}

.client span{

    color:var(--gray);

    font-size:14px;

}



/*==================================================
                CTA
==================================================*/

.cta{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        var(--primary),
        #163d82
    );

    position:relative;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-180px;
    top:-180px;

}

.cta::after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(199,154,57,.08);

    left:-120px;
    bottom:-120px;

}

.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

}

.cta-content h2{

    font-size:54px;

    margin-bottom:20px;

}

.cta-content p{

    width:60%;

    margin:auto;

    line-height:1.9;

    color:#e6e6e6;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

}

.cta .btn-outline{

    border-color:#fff;

}



/*==================================================
        SMALL ANIMATIONS
==================================================*/

.project-card,
.why-card,
.testimonial-card{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}



/*==================================================
        IMAGE RADIUS FIX
==================================================*/

.project-card img,
.client img{

    display:block;

}



/*==================================================
        HOVER SHADOWS
==================================================*/

.project-card:hover,
.why-card:hover,
.testimonial-card:hover{

    box-shadow:0 28px 65px rgba(0,0,0,.14);

}

/*==================================================
                CONTACT SECTION
==================================================*/

.contact{

    background:#ffffff;
    position:relative;
    overflow:hidden;

}

.contact::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(10,47,102,.04);

    right:-180px;
    top:-180px;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:flex-start;

    position:relative;

    z-index:2;

}


/*==================================================
            CONTACT INFO
==================================================*/

.contact-info{

    background:var(--primary);

    color:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(10,47,102,.20);

}

.contact-info h3{

    font-size:32px;

    margin-bottom:18px;

}

.contact-info>p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:40px;

}


/*==================================================
            INFO ITEM
==================================================*/

.info-item{

    display:flex;

    gap:18px;

    margin-bottom:28px;

    align-items:flex-start;

}

.info-item:last-child{

    margin-bottom:0;

}

.info-item i{

    width:60px;
    height:60px;

    border-radius:50%;

    display:grid;

    place-items:center;

    background:rgba(255,255,255,.12);

    color:var(--accent);

    font-size:22px;

    flex-shrink:0;

}

.info-item h4{

    margin-bottom:6px;

    font-size:18px;

}

.info-item p{

    color:#dcdcdc;

    line-height:1.7;

    font-size:15px;

}


/*==================================================
            CONTACT FORM
==================================================*/

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:0 18px 50px rgba(0,0,0,.06);

}


/*==================================================
            FORM GRID
==================================================*/

.contact-form form{

    display:grid;

    gap:22px;

}


/*==================================================
            INPUTS
==================================================*/

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid var(--border);

    border-radius:14px;

    font-size:16px;

    background:#fafafa;

    transition:.35s;

    resize:none;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    border-color:var(--accent);

    background:#fff;

    box-shadow:0 0 0 4px rgba(199,154,57,.12);

}


/*==================================================
            PLACEHOLDER
==================================================*/

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#999;

}


/*==================================================
            SELECT
==================================================*/

.contact-form select{

    cursor:pointer;

    color:#555;

}


/*==================================================
            SUBMIT BUTTON
==================================================*/

.contact-form button{

    width:230px;

    border:none;

    cursor:pointer;

    margin-top:10px;

}


/*==================================================
            FORM HOVER
==================================================*/

.contact-form{

    transition:.35s;

}

.contact-form:hover{

    box-shadow:0 25px 70px rgba(10,47,102,.10);

}


/*==================================================
            GOOGLE MAP
==================================================*/

.map{

    width:100%;

    height:520px;

    overflow:hidden;

}

.map iframe{

    width:100%;

    height:100%;

    border:0;

    display:block;

    filter:grayscale(.15);

}


/*==================================================
            SECTION SPACING
==================================================*/

.contact .section-title{

    margin-bottom:70px;

}

.contact .btn-primary{

    justify-content:center;

}


/*==================================================
            SMALL ANIMATION
==================================================*/

.contact-info,
.contact-form{

    animation:fadeContact .8s ease;

}

@keyframes fadeContact{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*==================================================
                    FOOTER
==================================================*/

.footer{

    background:#071B3D;
    color:#fff;
    padding:90px 0 0;
    position:relative;
    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    top:-180px;
    right:-180px;

}


/*==================================================
                FOOTER GRID
==================================================*/

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:50px;

    position:relative;

    z-index:2;

}

.footer-logo{

    width:220px;
    margin-bottom:25px;

}

.footer-column p{

    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:25px;

}

.footer-column h4{

    font-size:22px;
    margin-bottom:25px;
    color:#fff;
    position:relative;

}

.footer-column h4::after{

    content:"";

    width:55px;
    height:3px;

    background:var(--accent);

    display:block;

    margin-top:10px;

}


/*==================================================
                FOOTER LINKS
==================================================*/

.footer-column ul{

    display:flex;
    flex-direction:column;
    gap:14px;

}

.footer-column ul li a{

    color:#d6d6d6;
    transition:.3s;

}

.footer-column ul li a:hover{

    color:var(--accent);
    padding-left:8px;

}


/*==================================================
            SOCIAL LINKS
==================================================*/

.social-links{

    display:flex;
    gap:15px;
    margin-top:10px;

}

.social-links a{

    width:48px;
    height:48px;

    border-radius:50%;

    display:grid;
    place-items:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.social-links a:hover{

    background:var(--accent);

    transform:translateY(-6px);

}


/*==================================================
            NEWSLETTER
==================================================*/

.newsletter{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.newsletter input{

    width:100%;
    padding:16px 20px;

    border:none;
    border-radius:50px;

    background:rgba(255,255,255,.10);

    color:#fff;

}

.newsletter input::placeholder{

    color:#d8d8d8;

}

.newsletter button{

    border:none;
    cursor:pointer;

    padding:16px 20px;

    border-radius:50px;

    background:var(--accent);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.newsletter button:hover{

    background:#b88622;

    transform:translateY(-3px);

}


/*==================================================
            FOOTER BOTTOM
==================================================*/

.footer-bottom{

    margin-top:70px;

    padding:28px 0;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#bdbdbd;

    font-size:15px;

}


/*==================================================
            WHATSAPP BUTTON
==================================================*/

.whatsapp{

    position:fixed;

    right:30px;
    bottom:30px;

    width:62px;
    height:62px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:grid;
    place-items:center;

    font-size:30px;

    z-index:999;

    box-shadow:0 18px 40px rgba(37,211,102,.35);

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.12);

}


/*==================================================
            BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    right:30px;
    bottom:110px;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    font-size:18px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    background:var(--accent);

    transform:translateY(-6px);

}


/*==================================================
            SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--accent);

}


/*==================================================
            SELECTION
==================================================*/

::selection{

    background:var(--accent);

    color:#fff;

}


/*==================================================
            FOOTER FADE
==================================================*/

.footer{

    animation:footerFade .8s ease;

}

@keyframes footerFade{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}