:root{
    --primary:#ffbe0b;
    --dark:#111111;
    --dark-2:#181818;
    --gray:#777777;
    --gray-light:#cfcfcf;
    --radius:18px;
}
*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:auto;
}

body{
    font-family:'Outfit',sans-serif;
    background:#fff;
    color:#111;
    overflow-x:hidden;
    width:100%;
}

img{
    max-width:100%;
}

.container{
    width:100%;
}
/* =========================================================
   NAVBAR
========================================================= */
ul{
    list-style: none;
}
.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:90%;
    max-width:1400px;
    height:78px;

    padding:0 32px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(18,18,18,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;

    box-shadow:
    0 20px 45px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.08);

    transition:top .4s,height .4s,background .4s,box-shadow .4s,transform .4s;

    z-index:9999;
}

.navbar.scrolled{
    top:12px;
    height:68px;
    background:rgba(18,18,18,.94);
}

.navbar.hide{
    transform:translate(-50%,-120px);
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.logo-icon{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--primary);
    font-size:26px;
    flex-shrink:0;
}

.logo h2{
    font-size:clamp(20px,2.2vw,28px);
    color:#fff;
    font-weight:800;
    letter-spacing:1px;
    white-space:nowrap;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-links a{
    color:#fff;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--primary);
}

.menu-btn{
    display:none;
    justify-content:center;
    align-items:center;
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,.12);
    outline:none;
    border-radius:16px;
    background:rgba(255,255,255,.06);
    color:#fff;
    cursor:pointer;
    transition:.35s cubic-bezier(.22,1,.36,1);
}

.menu-btn i{
    font-size:26px;
    transition:.35s;
}

.menu-btn:hover{
    background:rgba(255,190,11,.18);
}

.menu-btn.active{
    background:var(--primary);
    color:#111;
}
@media(max-width:991px){

    /* ---- Header / hamburger ---- */

    .navbar{
        width:92%;
        height:64px;
        top:15px;
        padding:0 18px;
        border-radius:16px;
    }

    .logo-icon{
        width:36px;
        height:36px;
        font-size:22px;
    }

    .logo h2{
        font-size:22px;
    }

    .menu-btn{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:calc(100% + 12px);
        left:0;
        right:0;
        width:100%;
        margin:auto;
        background:rgba(18,18,18,.96);
        backdrop-filter:blur(24px);
        border:1px solid rgba(255,255,255,.08);
        border-radius:18px;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        gap:8px;

        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transform:translateY(-14px) scale(.97);
        transition:opacity .4s ease,transform .4s cubic-bezier(.22,1,.36,1),visibility .4s;
        box-shadow:0 25px 60px rgba(0,0,0,.45);
    }

    .nav-links.active{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translateY(0) scale(1);
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:flex;
        justify-content:center;
        align-items:center;
        height:52px;
        border-radius:12px;
        background:rgba(255,255,255,.04);
        font-size:16px;
        font-weight:600;
        transition:.3s;
    }

    .nav-links a:hover,
    .nav-links a.active{
        background:rgba(255,190,11,.16);
        color:var(--primary);
    }

    /* ---- Hero ---- */

    .hero{
        padding:150px 0 90px;
    }

    .hero .container{
        flex-direction:column;
        text-align:center;
        gap:60px;
    }

    .breadcrumb,
    .hero-badge{
        justify-content:center;
        margin-left:auto;
        margin-right:auto;
    }

    .breadcrumb{
        justify-content:center;
    }

    .hero-text{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        width:100%;
        max-width:480px;
        margin:0 auto 60px;
    }

    .card-1{ top:-20px; left:-10px; }
    .card-2{ bottom:60px; right:-10px; }
    .card-3{ bottom:-24px; left:10px; }

    /* ---- Contact ---- */

    .contact-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-form{
        padding:36px;
    }

    /* ---- Why ---- */

    .why .container{
        flex-direction:column-reverse;
        text-align:center;
        gap:45px;
    }

    .why-item{
        text-align:left;
    }

    .why-right img{
        height:380px;
    }
}

@media(max-width:900px){

    .menu-btn{
        display:flex;
    }

    .navbar ul.nav-links{
        position:fixed;
        top:110px;
        left:50%;
        transform:translate(-50%, -20px);

        width:90%;
        max-width:420px;

        display:flex;
        flex-direction:column;
        align-items:center;
        gap:20px;

        background:rgba(18,18,18,.96);
        backdrop-filter:blur(18px);

        border:1px solid rgba(255,255,255,.1);
        border-radius:22px;

        padding:30px 20px;

        opacity:0;
        visibility:hidden;
        pointer-events:none;

        transition:
            opacity .35s ease,
            transform .35s ease,
            visibility .35s ease;

        z-index:9998;
    }

    .navbar ul.nav-links.open{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translate(-50%, 0);
    }

    .navbar ul.nav-links li{
        width:100%;
        text-align:center;
    }

    .navbar ul.nav-links li a{
        display:block;
        padding:10px;
        color:#fff;
    }

}
/* =========================================================
   NAVBAR ANIMATION
========================================================= */

@keyframes navDown{

    0%{

        opacity:0;

        transform:translate(-50%,-80px);
    }

    100%{

        opacity:1;

        transform:translate(-50%,0);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

    .navbar,
    .menu-btn,
    .menu-btn i,
    .nav-links{

        animation:none !important;

        transition:none !important;
    }

}
a{
    text-decoration:none;
    color:#fff;
}

img{
    display:block;
    max-width:100%;
}

/*=====================================
            HERO
======================================*/

.hero{

    position:relative;
    overflow:hidden;

    padding:170px 8% 0;

    background:
    linear-gradient(180deg,#fdfdfd 0%,#f7f6f3 100%);

}

.hero-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:90px;

    align-items:center;

}

/* Background */

.hero-pattern{

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(0,0,0,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,0,0,.03) 1px,transparent 1px);

    background-size:70px 70px;

    opacity:.45;

}

.hero-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    z-index:0;

}

.circle-1{

    width:420px;
    height:420px;

    background:#c8912e25;

    left:-120px;
    top:-120px;

}

.circle-2{

    width:520px;
    height:520px;

    background:#ffbe0b10;

    right:-150px;
    bottom:-180px;

}

/* Content */

.hero-content{

    position:relative;

    z-index:5;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:50px;

    background:#fff;

    border:1px solid rgba(0,0,0,.07);

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    margin-bottom:28px;

}

.hero-badge i{

    color:#c8912e;

    font-size:22px;

}

.hero-badge span{

    color:#555;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

}

.hero h1{

    font-size:clamp(58px,6vw,82px);

    line-height:1.05;

    font-weight:800;

    color:#111;

    margin-bottom:28px;

}

.hero h1 span{

    color:#c8912e;

}

.hero p{

    font-size:19px;

    color:#666;

    line-height:1.9;

    max-width:620px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    margin:45px 0;

}

.btn-primary{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 34px;

    background:#c8912e;

    color:#fff;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(200,145,46,.35);

}

.btn-secondary{

    padding:18px 34px;

    border-radius:60px;

    border:2px solid #111;

    color:#111;

    font-weight:700;

    text-align:center;

    transition:.35s;

}

.btn-secondary:hover{

    background:#111;

    color:#fff;

}

/* Stats */

.hero-stats{

    display:flex;

    gap:26px;

    flex-wrap:wrap;

}

.stat-box{

    background:#fff;

    padding:28px;

    border-radius:22px;

    min-width:170px;

    flex:1 1 170px;

    box-shadow:0 18px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h2{

    font-size:42px;

    color:#111;

    margin-bottom:8px;

}

.stat-box span{

    color:#777;

}

/* Image */

.hero-image{

    position:relative;

    z-index:3;

}

.hero-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:40px;

    box-shadow:0 40px 90px rgba(0,0,0,.12);

}

/* Floating Cards */

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:16px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    padding:18px 22px;

    border-radius:22px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    max-width:calc(100% - 20px);

}

.floating-card i{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#c8912e;

    color:#fff;

    font-size:26px;

    flex-shrink:0;

}

.card-1{

    left:-40px;

    top:70px;

}

.card-2{

    right:-30px;

    bottom:80px;

}

.card-3{

    left:60px;

    bottom:-35px;

}

.floating-card h3{

    color:#111;

    font-size:18px;

    margin-bottom:4px;

}

.floating-card span{

    color:#777;

    font-size:14px;

}

/* Bottom */

.hero-bottom{

    max-width:1350px;

    margin:90px auto 0;

    background:#fff;

    border-radius:30px 30px 0 0;

    box-shadow:0 -5px 40px rgba(0,0,0,.05);

    display:grid;

    grid-template-columns:repeat(4,1fr);

}

.hero-service{

    padding:35px;

    text-align:center;

    font-weight:700;

    color:#333;

}

.hero-service i{

    color:#c8912e;

    margin-right:8px;

}

/* Responsive */

@media(max-width:1100px){

.hero-container{

grid-template-columns:1fr;

}

.hero-content{

text-align:center;

}

.hero p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

flex-wrap:wrap;

}

.hero-bottom{

grid-template-columns:repeat(2,1fr);

}

.hero-image{

margin-top:60px;

}

.card-1,
.card-2,
.card-3{

display:none;

}

}

@media(max-width:768px){

.hero{

padding:130px 5% 0;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.hero-bottom{

grid-template-columns:1fr;

}

.hero-image img{

height:400px;

border-radius:28px;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:16px;

}

.stat-box{

min-width:130px;

padding:20px;

}

.stat-box h2{

font-size:32px;

}

.hero-service{

padding:24px 20px;

font-size:15px;

}

}

@media(max-width:480px){

.hero{

padding:120px 5% 0;

}

.hero h1{

font-size:32px;

}

.hero-badge span{

font-size:12px;

}

.hero-stats{

gap:14px;

}

.stat-box{

flex:1 1 100%;

min-width:0;

}

.btn-primary,
.btn-secondary{

padding:16px 24px;

font-size:15px;

}

}
/*================ COMPANY ABOUT ================*/

.company-about{

    padding:120px 8%;
    background:#fff;
    overflow:hidden;

}

.company-about-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;

}

.company-about-image{

    position:relative;

}

.company-image{

    width:100%;
    height:700px;
    object-fit:cover;
    display:block;

    border-radius:35px;

    box-shadow:
    0 35px 70px rgba(0,0,0,.10);

}

.company-card{

    position:absolute;

    background:#fff;

    padding:24px 32px;

    border-radius:22px;

    border:1px solid #ececec;

    box-shadow:
    0 25px 50px rgba(0,0,0,.08);

    transition:.35s;

    max-width:calc(50% - 10px);

}

.company-card:hover{

    transform:translateY(-8px);

}

.company-card h3{

    font-size:42px;
    color:#c8912e;
    margin-bottom:6px;

}

.company-card span{

    color:#666;
    font-weight:600;
    font-size:15px;

}

.company-card-top{

    left:-40px;
    top:70px;

}

.company-card-bottom{

    right:-40px;
    bottom:70px;

}

.company-subtitle{

    display:inline-block;

    color:#c8912e;

    font-size:14px;
    font-weight:700;

    letter-spacing:3px;

    margin-bottom:20px;

}

.company-about-content h2{

    font-size:58px;
    line-height:1.15;
    color:#111;

    margin-bottom:25px;

}

.company-about-content h2 span{

    color:#c8912e;

}

.company-about-content p{

    color:#666;

    font-size:18px;

    line-height:2;

    margin-bottom:45px;

}

.company-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:45px;

}

.company-feature{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 20px;

    border-radius:18px;

    background:#fafafa;

    border:1px solid #ececec;

    transition:.35s;

}

.company-feature:hover{

    transform:translateY(-6px);

    border-color:#c8912e;

    box-shadow:
    0 18px 35px rgba(0,0,0,.06);

}

.company-feature i{

    font-size:28px;
    color:#c8912e;

}

.company-feature span{

    color:#222;
    font-weight:600;

}

.company-btn{

    display:inline-flex;

    justify-content:center;
    align-items:center;

    padding:18px 42px;

    background:#c8912e;

    color:#fff;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.company-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(200,145,46,.30);

}

/*============== Responsive ==============*/

@media(max-width:1100px){

.company-about{

padding:100px 6%;

}

.company-about-container{

grid-template-columns:1fr;

gap:70px;

}

.company-about-content{

text-align:center;

}

.company-about-content p{

margin:auto auto 40px;
max-width:700px;

}

.company-features{

max-width:650px;

margin:0 auto 45px;

}

.company-card-top{

left:20px;

}

.company-card-bottom{

right:20px;

}

}

@media(max-width:768px){

.company-about{

padding:80px 5%;

}

.company-image{

height:380px;

}

.company-about-content h2{

font-size:36px;

}

.company-about-content p{

font-size:16px;

}

.company-features{

grid-template-columns:1fr;

}

.company-card{

padding:16px 20px;

max-width:calc(50% - 8px);

}

.company-card h3{

font-size:26px;

}

.company-card span{

font-size:13px;

}

.company-card-top{

top:15px;
left:15px;

}

.company-card-bottom{

bottom:15px;
right:15px;

}

.company-btn{

width:100%;

}

}

@media(max-width:480px){

.company-about-content h2{

font-size:28px;

}

.company-card{

position:static;

max-width:100%;

margin-top:16px;

display:inline-block;

}

.company-card-top{

margin-right:8px;

}

}
/*================ SERVICES ================*/

.services{

padding:10px 8%;
background:#fafafa;

}

.section-title{

text-align:center;
max-width:760px;
margin:auto auto 70px;

}

.section-title span{

display:inline-block;
color:#c8912e;
font-size:14px;
font-weight:700;
letter-spacing:3px;
margin-bottom:15px;

}

.section-title h2{

font-size:54px;
color:#111;
margin-bottom:20px;

}

.section-title p{

font-size:18px;
color:#666;
line-height:1.9;

}

.services-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;

}

.service-card{

position:relative;
padding:45px;
background:#fff;
border-radius:28px;
overflow:hidden;
transition:.45s;
border:1px solid #ececec;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:
0 30px 60px rgba(0,0,0,.08);

}

.service-number{

position:absolute;
right:30px;
top:20px;
font-size:90px;
font-weight:800;
color:#f3f3f3;
line-height:1;
pointer-events:none;

}

.service-icon{

width:82px;
height:82px;

display:flex;
justify-content:center;
align-items:center;

border-radius:20px;

background:#c8912e;

color:#fff;
font-size:38px;

margin-bottom:30px;

transition:.4s;

}

.service-card:hover .service-icon{

transform:rotate(-10deg) scale(1.08);

}

.service-card h3{

font-size:30px;
margin-bottom:18px;
color:#111;

}

.service-card p{

font-size:17px;
line-height:1.9;
color:#666;
margin-bottom:35px;

}

.service-card a{

display:inline-flex;
align-items:center;
gap:8px;

text-decoration:none;

font-weight:700;

color:#111;

transition:.3s;

}

.service-card:hover a{

color:#c8912e;

}

.service-card a i{

font-size:22px;
transition:.3s;

}

.service-card:hover a i{

transform:translateX(8px);

}

@media(max-width:1000px){

.services-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:40px;

}

}

@media(max-width:768px){

.services{

padding:90px 5%;

}

.service-card{

padding:35px;

}

.service-number{

font-size:70px;

}

.service-icon{

width:70px;
height:70px;
font-size:32px;

}

.service-card h3{

font-size:25px;

}

.section-title p{

font-size:16px;

}

}

@media(max-width:480px){

.services{

padding:70px 5%;

}

.section-title h2{

font-size:30px;

}

.service-card{

padding:26px;

}

.service-number{

font-size:54px;
right:20px;

}

.service-card h3{

font-size:22px;

}

.service-card p{

font-size:15px;

}

}
/*==============================
WHY SECTION
==============================*/


.why-section{

    padding:120px 8%;
    background:#080808;
    color:white;

}



.why-container{

    max-width:1400px;
    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 390px 1fr;

    gap:55px;

    align-items:center;

}



/* LEFT */

.why-tag{

    color:#ffc400;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}



.why-text h2{

    margin:18px 0 25px;

    font-size:60px;

    line-height:1.08;

    font-weight:800;

    letter-spacing:-2px;

}



.why-text p{

    color:#bcbcbc;

    font-size:17px;

    line-height:2;

    max-width:450px;

}



.project-btn{

    display:inline-block;

    margin-top:30px;

    color:white;

    text-decoration:none;

    font-weight:600;

}



/* IMAGE */


.why-image img{

    width:100%;

    height:550px;

    object-fit:cover;

    border-radius:28px;

    display:block;

}



/* ACCORDION */


.why-accordion{

    display:flex;

    flex-direction:column;

    gap:18px;

}



.accordion{

    background:#151515;

    border:1px solid #262626;

    border-radius:24px;

    padding:28px 25px;

    transition:.3s;

    cursor:pointer;

}



.accordion.active{

    background:#0d0d0d;

}



.acc-head{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

}



.acc-head h3{

    font-size:22px;

    margin:0;

}



.acc-head span{

    width:48px;

    height:48px;

    background:white;

    color:#111;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:25px;

    flex-shrink:0;

}



.accordion.active .acc-head span{

    background:#151515;

    color:white;

}



.accordion p{

    color:#bbb;

    line-height:1.8;

    margin-top:25px;

}
@media(max-width:1100px){

.why-container{

grid-template-columns:1fr;

}


.why-text{

text-align:center;

}

.why-text p{

margin:0 auto;

}


.why-text h2{

font-size:45px;

}


.why-image img{

height:420px;

}


}

@media(max-width:768px){

.why-section{

padding:80px 5%;

}

.why-text h2{

font-size:34px;
letter-spacing:-1px;

}

.why-text p{

font-size:15px;

}

.why-image img{

height:280px;

}

.accordion{

padding:22px 18px;

}

.acc-head h3{

font-size:18px;

}

.acc-head span{

width:38px;
height:38px;
font-size:20px;

}

}
/* ================= CTA SECTION ================= */

.cta-section{
    padding:120px 8%;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85),
        rgba(0,0,0,.5)
    ),
    url("https://benews.co.uk/wp-content/uploads/2023/07/shutterstock_617032220.jpg");
    background-size:cover;
    background-position:center;
    position:relative;
}

.cta-content{
    max-width:800px;
    color:white;
}

.cta-content span{
    color:#d89b2b;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.cta-content h2{
    font-size:55px;
    line-height:1.15;
    margin:20px 0;
}

.cta-content p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

.cta-buttons{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:40px;
    flex-wrap:wrap;
}

.cta-primary{
    background:#d89b2b;
    color:#111;
    padding:18px 35px;
    text-decoration:none;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.3s;
}

.cta-primary:hover{
    background:white;
}

.cta-phone{
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
}

.cta-phone i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#d89b2b;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

@media(max-width:700px){

    .cta-section{
        padding:80px 5%;
    }

    .cta-content h2{
        font-size:32px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .cta-primary{
        width:100%;
    }

}
/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:var(--dark);
    color:#fff;
    padding:80px 8% 0;
}

.footer-container{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-logo .logo-icon{
    width:44px;
    height:44px;
    background:var(--primary);
    color:#111;
    border-radius:50%;
}

.footer-logo h2{
    font-size:28px;
    color:#fff;
}

.footer-about p{
    color:#aaa;
    line-height:1.8;
    margin:22px 0;
    font-size:14px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#222;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--primary);
    color:#111;
}

.footer h3{
    font-size:19px;
    margin-bottom:24px;
    color:#fff;
}

.footer-links a{
    display:block;
    color:#aaa;
    margin-bottom:14px;
    font-size:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--primary);
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    color:#aaa;
    margin-bottom:16px;
    font-size:14px;
}

.footer-contact i{
    color:var(--primary);
    font-size:20px;
}

.footer-bottom{
    margin-top:55px;
    padding:25px 0;
    border-top:1px solid #2a2a2a;
    display:flex;
    justify-content:space-between;
    color:#888;
    font-size:13px;
}

.footer-bottom div a{
    color:#888;
    margin-left:20px;
    transition:.3s;
}

.footer-bottom div a:hover{
    color:var(--primary);
}



@media(max-width:480px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-contact p{
        justify-content:center;
    }
}

/*====================================
        GLOBAL ENTRY ANIMATION
====================================*/


@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-70px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}


@keyframes fadeRight{

    from{
        opacity:0;
        transform:translateX(70px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}


/* NAVBAR */

.navbar{

    animation:
    navDown .9s cubic-bezier(.16,.84,.44,1),
    fadeIn .8s ease;

}


@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

@keyframes navDown{

    from{
        transform:translate(-50%,-120px);
        opacity:0;
    }

    to{
        transform:translate(-50%,0);
        opacity:1;
    }

}



/* HERO */

.hero-content{

    animation:
    fadeLeft 1s ease forwards;

}


.hero-image{

    opacity:0;

    animation:
    fadeRight 1s ease .25s forwards;

}


.hero-badge{

    animation:
    fadeUp .8s ease .2s both;

}


.hero-buttons{

    animation:
    fadeUp .8s ease .5s both;

}


.hero-stats{

    animation:
    fadeUp .8s ease .7s both;

}


.floating-card{

    animation:
    fadeUp .8s ease .8s both;

}


/* ABOUT */

.company-about-image{

    animation:
    fadeLeft 1s ease both;

}


.company-about-content{

    animation:
    fadeRight 1s ease .2s both;

}


.company-card{

    animation:
    fadeUp .8s ease .5s both;

}



/* SERVICES */


.section-title{

    animation:
    fadeUp .9s ease both;

}


.service-card{

    opacity:0;

    animation:
    fadeUp .8s ease forwards;

}


.service-card:nth-child(1){

    animation-delay:.15s;

}

.service-card:nth-child(2){

    animation-delay:.3s;

}

.service-card:nth-child(3){

    animation-delay:.45s;

}

.service-card:nth-child(4){

    animation-delay:.6s;

}



/* WHY SECTION */


.why-text{

    animation:
    fadeLeft 1s ease both;

}


.why-image{

    animation:
    fadeUp 1s ease .2s both;

}


.why-accordion{

    animation:
    fadeRight 1s ease .3s both;

}



/* CTA */


.cta-content{

    animation:
    fadeUp 1s ease both;

}



/* FOOTER */


.footer-container{

    animation:
    fadeUp 1s ease both;

}




