/*=========================================================
  SAFORA SOLUTIONS
  Premium Style.css
=========================================================*/

/*======================
Google Fonts
======================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*======================
Variables
======================*/
:root{

    --primary:#0A56C5;
    --secondary:#FF6A00;

    --dark:#050816;
    --dark-2:#0B1020;
    --card:#10182B;

    --white:#ffffff;
    --text:#D5D8E3;
    --gray:#98A2B3;

    --border:rgba(255,255,255,.08);

    --gradient:linear-gradient(135deg,#0A56C5,#FF6A00);

    --shadow:0 15px 45px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.4s ease;

    --container:1280px;

}

/*======================
Reset
======================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    cursor:pointer;

    border:none;

    background:none;

    font-family:inherit;

}

input,
textarea{

    outline:none;

    font-family:inherit;

}

section{

    padding:40px 0;

    position:relative;

}

/*======================
Container
======================*/

.container{

    width:100%;

    max-width:var(--container);

    margin:auto;

    padding:0 20px;

}









/*==========================================================
                LOADER
==========================================================*/

/*==========================================================
                    PAGE LOADER
==========================================================*/

.loader{

    position:fixed;

    inset:0;

    background:#070B17;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader-logo{

    display:flex;

    justify-content:center;

    align-items:center;

}

.loader-logo img{

    width:140px;

    height:auto;

}

/*==========================================================
                STICKY NAVBAR
==========================================================*/

.navbar.sticky{

    background:rgba(5,10,25,.92);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}








/*======================
Scrollbar
======================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07101d;

}

::-webkit-scrollbar-thumb{

    background:var(--gradient);

    border-radius:20px;

}

/*======================
Selection
======================*/

::selection{

    background:var(--secondary);

    color:#fff;

}

/*======================
Typography
======================*/

h1,h2,h3,h4{

    color:#fff;

    line-height:1.2;

    font-weight:700;

}

h1{

    font-size:40px;

}

h2{

    font-size:34px;

}

h3{

    font-size:28px;

}

p{

    color:var(--gray);

    font-size:16px;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title span{

    color:var(--secondary);

    text-transform:uppercase;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    margin:18px 0;

}

.section-title p{

    font-size:17px;

}


/*==========================================================
                    HEADER
==========================================================*/


/*==========================================================
                    NAVBAR
==========================================================*/

/*==========================================================
                    NAVBAR
==========================================================*/

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    padding:18px 0;

    background:transparent;

    transition:all .4s ease;

}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.navbar.sticky{

    background:rgba(5,8,22,.90);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

/*==========================================================
                    LOGO
==========================================================*/

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:170px;
    height:auto;
    transition:var(--transition);
}

.logo:hover img{
    transform:scale(1.05);
}

/*==========================================================
                    NAV LINKS
==========================================================*/

.nav-links{
    display:flex;
    align-items:center;
    gap:38px;
}

.nav-links li{
    position:relative;
}

.nav-links a{

    color:var(--white);

    font-size:16px;

    font-weight:500;

    position:relative;

    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--secondary);

}

.nav-links a.active{

    color:var(--secondary);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gradient);

    transition:var(--transition);

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

/*==========================================================
                    NAV BUTTON
==========================================================*/

.navbar .btn{

    margin-left:40px;

}

/*==========================================================
                MOBILE MENU BUTTON
==========================================================*/

.menu-btn{

    display:none;

    width:50px;

    height:50px;

    justify-content:center;

    align-items:center;

    border-radius:12px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:var(--white);

    font-size:26px;

    cursor:pointer;

    transition:var(--transition);

}

.menu-btn:hover{

    background:var(--gradient);

    transform:rotate(90deg);

}

/*==========================================================
                RESPONSIVE NAVBAR
==========================================================*/

@media(max-width:992px){

    .menu-btn{
        display:flex;
    }

    .navbar .btn{
        display:none;
    }

    .nav-links{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#08101d;

        display:none;

        flex-direction:column;

        align-items:flex-start;

        padding:30px;

        gap:22px;

        border-top:1px solid rgba(255,255,255,.05);

    }

    .nav-links.active{

        display:flex;

    }

}

@media(max-width:576px){

    .logo img{

        width:140px;

    }

}






.hero-wrapper{
    display: flex;
    flex-direction: column;
}

.hero-content{
    margin-top: 90px;
}



/*==========================================================
                    HERO SECTION
==========================================================*/

.hero{

    position:relative;

    min-height: 80vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding-top:40px;
    padding-bottom: 40px;

    background:
    radial-gradient(circle at top left,rgba(10,86,197,.18),transparent 45%),
    radial-gradient(circle at bottom right,rgba(255,106,0,.15),transparent 40%),
    var(--dark);

}

.hero{

    padding-top:160px;

}

/*============================*/

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

/*============================*/

.hero-content{

    position:relative;

    z-index:2;

}

/*============================*/


.hero-tag{

    display:inline-block;

    padding:3px 7px;

    border-radius:40px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:var(--secondary);

    font-weight:600;

    margin-bottom:28px;

    backdrop-filter:blur(12px);
    font-size: 15px;

}

/*============================*/

.hero-content h1{

    font-size:40px;

    font-weight:800;

    line-height:1.15;

    color:#fff;

    margin-bottom:28px;

}

.hero-content h1 span{

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*============================*/

.hero-content p{

    max-width:620px;

    font-size:18px;

    color:var(--gray);

    margin-bottom:40px;

}

/*============================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:55px;

    flex-wrap:wrap;

}

/*============================*/

.hero-stats{

    display:flex;

    gap:45px;

}

.hero-stats div{

    position:relative;

}

.hero-stats div::after{

    content:"";

    position:absolute;

    right:-22px;

    top:10px;

    width:1px;

    height:45px;

    background:rgba(255,255,255,.08);

}

.hero-stats div:last-child::after{

    display:none;

}

.hero-stats h3{

    color:#fff;

    font-size:28px;

    margin-bottom:6px;

}

.hero-stats p{

    font-size:15px;

    color:var(--gray);

}

/*============================*/

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    z-index:2;

}

.hero-image img{

    width:115%;

    max-width:700px;

    animation:floatImage 5s ease-in-out infinite;

    filter:drop-shadow(0 25px 45px rgba(10,86,197,.35));

}

/*============================*/

.hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:1;

}

.hero-glow-1{

    width:320px;

    height:320px;

    background:#0A56C5;

    top:120px;

    left:-120px;

    opacity:.22;

}

.hero-glow-2{

    width:300px;

    height:300px;

    background:#FF6A00;

    right:-100px;

    bottom:80px;

    opacity:.20;

}

/*============================*/

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*============================*/

@media(max-width:992px){

.hero{

    text-align:center;

}

.hero-wrapper{

    grid-template-columns:1fr;

}

.hero-content p{

    margin:auto auto 40px;

}

.hero-buttons{

    justify-content:center;

}

.hero-stats{

    justify-content:center;

    flex-wrap:wrap;

}

.hero-content h1{

    font-size:40px;

}

.hero-image{

    margin-top:0px;

}

}

@media(max-width:576px){

.hero{

    padding-top:60px;

}

.hero-content h1{

    font-size:40px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons .btn,
.hero-buttons .btn-outline{

    width:100%;

}

.hero-stats{

    gap:30px;

}

.hero-stats h3{

    font-size:28px;

}

}

/*==========================================================
                    TRUSTED SECTION
==========================================================*/

.trusted{

    position:relative;

    background:linear-gradient(180deg,#050816 0%,#0B1020 100%);

    overflow:hidden;
    

}

.trusted .section-title{

    margin-bottom:70px;
    

}

/*==========================================================
                    BRAND SLIDER
==========================================================*/

.brand-slider{

    width:100%;

    overflow:hidden;

    position:relative;

    padding:20px 0;

}

.brand-slider::before,
.brand-slider::after{

    content:"";

    position:absolute;

    top:0;

    width:120px;

    height:100%;

    z-index:5;

}

.brand-slider::before{

    left:0;

    background:linear-gradient(to right,#050816,transparent);

}

.brand-slider::after{

    right:0;

    background:linear-gradient(to left,#050816,transparent);

}

/*==========================================================
                    BRAND TRACK
==========================================================*/

.brand-track{

    display:flex;

    align-items:center;

    gap:35px;

    width:max-content;

    animation:brandScroll 28s linear infinite;

}

.brand-slider:hover .brand-track{

    animation-play-state:paused;

}

/*==========================================================
                    BRAND ITEM
==========================================================*/

.brand-item{

    min-width:220px;

    height:110px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    backdrop-filter:blur(15px);

    transition:.4s ease;

}

.brand-item:hover{

    transform:translateY(-10px);

    border-color:rgba(10,86,197,.40);

    box-shadow:
    0 15px 35px rgba(10,86,197,.18),
    0 0 25px rgba(255,106,0,.10);

}

.brand-item img{

    max-width:180px;

    max-height:95px;

    opacity:.75;

    filter:grayscale(100%);

    transition:.4s ease;

}

.brand-item:hover img{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}

/*==========================================================
                    ANIMATION
==========================================================*/

@keyframes brandScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*==========================================================
                    RESPONSIVE
==========================================================*/

@media(max-width:992px){

    .brand-item{

        min-width:180px;

        height:95px;

    }

    .brand-item img{

        max-width:120px;

    }

}

@media(max-width:576px){

    .brand-track{

        gap:20px;

    }

    .brand-item{

        min-width:150px;

        height:80px;

    }

    .brand-item img{

        max-width:95px;

    }

}

/*==========================================================
                    ABOUT PREVIEW
==========================================================*/

.about-preview{

    position:relative;

    padding:60px 0;

    background:var(--dark);

    overflow:hidden;

}

/*==========================================================
                    GRID
==========================================================*/

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

/*==========================================================
                    ABOUT IMAGE
==========================================================*/

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

    transition:.5s;

}

.about-image:hover img{

    transform:translateY(-10px) scale(1.02);

}

/*==========================================================
                EXPERIENCE CARD
==========================================================*/

.experience-card{

    position:absolute;

    right:-25px;

    bottom:40px;

    width:180px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    text-align:center;

    padding:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.30);

}

.experience-card h3{

    font-size:28px;

    color:var(--secondary);

    margin-bottom:8px;

}

.experience-card span{

    color:#fff;

    font-size:15px;

}

/*==========================================================
                    CONTENT
==========================================================*/

.about-content{

    position:relative;

}

.section-tag{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:40px;

    color:var(--secondary);

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.about-content h2{

    font-size:34px;

    line-height:1.2;

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:20px;

    font-size:17px;

}

/*==========================================================
                    FEATURES
==========================================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.feature-box{

    display:flex;

    align-items:center;

    gap:14px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    padding:18px;

    border-radius:16px;

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-6px);

    border-color:rgba(10,86,197,.45);

    box-shadow:0 15px 30px rgba(10,86,197,.15);

}

.feature-box i{

    font-size:24px;

    color:var(--secondary);

}

.feature-box span{

    color:#fff;

    font-weight:500;

}

/*==========================================================
                    BUTTONS
==========================================================*/

.about-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================================================
                RESPONSIVE
==========================================================*/

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

.about-buttons{

justify-content:center;

}

.experience-card{

right:20px;

bottom:20px;

}

}

@media(max-width:576px){

.about-content h2{

font-size:34px;

}

.experience-card{

position:relative;

right:0;

bottom:0;

margin:20px auto 0;

width:160px;

}

.about-buttons .btn,
.about-buttons .btn-outline{

width:100%;

}

}

/*==========================================================
                    SERVICES SECTION
==========================================================*/

.services{

    position:relative;

    background:linear-gradient(180deg,#0B1020 0%,#050816 100%);

    overflow:hidden;

}

/*==========================================================
                    GRID
==========================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

/*==========================================================
                    SERVICE CARD
==========================================================*/

.service-card{

    position:relative;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    backdrop-filter:blur(18px);

    transition:all .45s ease;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transition:.8s;

}

.service-card:hover::before{

    left:100%;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:rgba(10,86,197,.45);

    box-shadow:
        0 18px 45px rgba(10,86,197,.18),
        0 0 25px rgba(255,106,0,.12);

}

/*==========================================================
                    ICON
==========================================================*/

.service-icon{

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:var(--gradient);

    color:#fff;

    font-size:34px;

    margin-bottom:28px;

    transition:.45s;

}

.service-card:hover .service-icon{

    transform:rotate(8deg) scale(1.12);

}

/*==========================================================
                    TITLE
==========================================================*/

.service-card h3{

    font-size:28px;

    color:#fff;

    margin-bottom:18px;

    transition:.3s;

}

.service-card:hover h3{

    color:var(--secondary);

}

/*==========================================================
                    DESCRIPTION
==========================================================*/

.service-card p{

    color:var(--gray);

    font-size:16px;

    margin-bottom:25px;

    line-height:1.8;

}

/*==========================================================
                SERVICE LIST
==========================================================*/

.service-card ul{

    margin:25px 0 30px;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.service-card ul li{

    display:flex;

    align-items:center;

    color:var(--text);

    font-size:15px;

    position:relative;

    padding-left:28px;

}

.service-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    width:18px;

    height:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--gradient);

    color:#fff;

    border-radius:50%;

    font-size:11px;

    font-weight:700;

}

/*==========================================================
                SERVICE LINK
==========================================================*/

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--secondary);

    font-weight:600;

    font-size:16px;

    transition:all .35s ease;

}

.service-link i{

    transition:.35s;

}

.service-card:hover .service-link{

    color:#fff;

}

.service-card:hover .service-link i{

    transform:translateX(8px);

}

/*==========================================================
            TOP GLOW BORDER
==========================================================*/

.service-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--gradient);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.service-card:hover::after{

    transform:scaleX(1);

}

/*==========================================================
            RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid{

grid-template-columns:1fr;

}

.service-card{

padding:28px;

}

.service-card h3{

font-size:28px;

}

.service-icon{

width:68px;

height:68px;

font-size:28px;

}

}

@media(max-width:576px){

.service-card{

padding:24px;

border-radius:20px;

}

.service-link{

font-size:15px;

}

.service-card ul li{

font-size:14px;

}

}

/*==========================================================
                    WHY CHOOSE US
==========================================================*/

.why-choose{

    position:relative;

    background:linear-gradient(180deg,#050816 0%,#0B1020 100%);

    overflow:hidden;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

/*==========================================================
                    WHY CARD
==========================================================*/

.why-card{

    position:relative;

    padding:35px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:all .45s ease;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(10,86,197,.08),
        rgba(255,106,0,.05)
    );

    opacity:0;

    transition:.4s;

}

.why-card:hover::before{

    opacity:1;

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:rgba(10,86,197,.45);

    box-shadow:
        0 18px 40px rgba(10,86,197,.18),
        0 0 25px rgba(255,106,0,.10);

}

/*==========================================================
                    ICON
==========================================================*/

.why-icon{

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:var(--gradient);

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

    transition:.45s;

    position:relative;

    z-index:2;

}

.why-card:hover .why-icon{

    transform:rotate(8deg) scale(1.12);

}

/*==========================================================
                    CONTENT
==========================================================*/

.why-card h3{

    position:relative;

    z-index:2;

    font-size:28px;

    color:#fff;

    margin-bottom:18px;

    transition:.35s;

}

.why-card:hover h3{

    color:var(--secondary);

}

.why-card p{

    position:relative;

    z-index:2;

    color:var(--gray);

    line-height:1.8;

    font-size:16px;

}

/*==========================================================
                    TOP BORDER
==========================================================*/

.why-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--gradient);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.why-card:hover::after{

    transform:scaleX(1);

}

/*==========================================================
                    RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

.why-card{

padding:28px;

}

.why-icon{

width:68px;

height:68px;

font-size:28px;

}

.why-card h3{

font-size:28px;

}

}

@media(max-width:576px){

.why-card{

padding:24px;

border-radius:20px;

}

.why-card p{

font-size:15px;

}

}

/*==========================================================
                    COMPANY STATS
==========================================================*/

.stats{

    position:relative;

    background:linear-gradient(180deg,#0B1020 0%,#050816 100%);

    overflow:hidden;

    padding:110px 0;

}

/*==========================================================
                    STATS GRID
==========================================================*/

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==========================================================
                    STAT BOX
==========================================================*/

.stat-box{

    position:relative;

    padding:45px 25px;

    text-align:center;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    overflow:hidden;

    transition:all .45s ease;

}

.stat-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(10,86,197,.10),
        rgba(255,106,0,.08)
    );

    opacity:0;

    transition:.4s;

}

.stat-box:hover::before{

    opacity:1;

}

.stat-box:hover{

    transform:translateY(-12px);

    border-color:rgba(10,86,197,.45);

    box-shadow:
        0 20px 45px rgba(10,86,197,.20),
        0 0 25px rgba(255,106,0,.10);

}

/*==========================================================
                    NUMBER
==========================================================*/

.stat-box h2{

    position:relative;

    z-index:2;

    font-size:34px;

    font-weight:800;

    margin-bottom:15px;

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*==========================================================
                    TEXT
==========================================================*/

.stat-box p{

    position:relative;

    z-index:2;

    color:var(--gray);

    font-size:17px;

    font-weight:500;

}

/*==========================================================
                    TOP BORDER
==========================================================*/

.stat-box::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--gradient);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.stat-box:hover::after{

    transform:scaleX(1);

}

/*==========================================================
                    RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr;

}

.stat-box{

padding:35px 20px;

}

.stat-box h2{

font-size:34px;

}

}

@media(max-width:576px){

.stat-box{

border-radius:20px;

padding:30px 18px;

}

.stat-box h2{

font-size:34px;

}

.stat-box p{

font-size:15px;

}

}

/*==========================================================
                    OUR PROCESS
==========================================================*/

.process{

    position:relative;

    background:linear-gradient(180deg,#050816 0%,#0B1020 100%);

    overflow:hidden;

}

/*==========================================================
                    PROCESS GRID
==========================================================*/

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

/*==========================================================
                    PROCESS CARD
==========================================================*/

.process-card{

    position:relative;

    padding:40px 30px;

    text-align:center;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    backdrop-filter:blur(18px);

    overflow:hidden;

    transition:all .45s ease;

}

.process-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(10,86,197,.08),
        rgba(255,106,0,.05)
    );

    opacity:0;

    transition:.4s;

}

.process-card:hover::before{

    opacity:1;

}

.process-card:hover{

    transform:translateY(-12px);

    border-color:rgba(10,86,197,.45);

    box-shadow:
        0 20px 45px rgba(10,86,197,.18),
        0 0 25px rgba(255,106,0,.12);

}

/*==========================================================
                    STEP NUMBER
==========================================================*/

.process-number{

    width:82px;

    height:82px;

    margin:0 auto 30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    font-weight:700;

    color:#fff;

    background:var(--gradient);

    box-shadow:0 10px 30px rgba(10,86,197,.30);

    transition:.45s;

    position:relative;

    z-index:2;

}

.process-card:hover .process-number{

    transform:scale(1.12) rotate(10deg);

}

/*==========================================================
                    CONTENT
==========================================================*/

.process-card h3{

    position:relative;

    z-index:2;

    font-size:26px;

    color:#fff;

    margin-bottom:18px;

    transition:.3s;

}

.process-card:hover h3{

    color:var(--secondary);

}

.process-card p{

    position:relative;

    z-index:2;

    color:var(--gray);

    line-height:1.8;

    font-size:16px;

}

/*==========================================================
                TOP BORDER EFFECT
==========================================================*/

.process-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--gradient);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.process-card:hover::after{

    transform:scaleX(1);

}

/*==========================================================
                    RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

.process-card{

padding:30px 25px;

}

.process-number{

width:70px;

height:70px;

font-size:26px;

}

.process-card h3{

font-size:26px;

}

}

@media(max-width:576px){

.process-card{

padding:25px 20px;

border-radius:20px;

}

.process-card p{

font-size:15px;

}

}

/*==========================================================
                    PORTFOLIO SECTION
==========================================================*/

.portfolio{

    position:relative;

    background:linear-gradient(180deg,#0B1020 0%,#050816 100%);

    overflow:hidden;

}

/*==========================================================
                    PORTFOLIO GRID
==========================================================*/

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

/*==========================================================
                    PORTFOLIO CARD
==========================================================*/

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:all .45s ease;

}

.portfolio-card:hover{

    transform:translateY(-12px);

    border-color:rgba(10,86,197,.45);

    box-shadow:
        0 20px 45px rgba(10,86,197,.18),
        0 0 25px rgba(255,106,0,.12);

}

/*==========================================================
                    IMAGE
==========================================================*/

.portfolio-image{

    position:relative;

    overflow:hidden;

    height:250px;

}

.portfolio-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.portfolio-card:hover .portfolio-image img{

    transform:scale(1.12);

}

/*==========================================================
                IMAGE OVERLAY
==========================================================*/

.portfolio-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(5,8,22,.75),
        transparent
    );

    opacity:0;

    transition:.4s;

    z-index:1;

}

.portfolio-card:hover .portfolio-image::before{

    opacity:1;

}

/*==========================================================
                CONTENT
==========================================================*/

.portfolio-content{

    padding:28px;

}

.portfolio-content span{

    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:var(--secondary);

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.portfolio-content h3{

    font-size:24px;

    color:#fff;

    margin-bottom:15px;

    transition:.3s;

}

.portfolio-card:hover h3{

    color:var(--secondary);

}

.portfolio-content p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:25px;

    font-size:16px;

}

/*==========================================================
                PORTFOLIO LINK
==========================================================*/

.portfolio-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--secondary);

    font-weight:600;

    font-size:16px;

    transition:all .35s ease;

}

.portfolio-content a i{

    transition:.35s ease;

}

.portfolio-card:hover .portfolio-content a{

    color:#fff;

}

.portfolio-card:hover .portfolio-content a i{

    transform:translateX(8px);

}

/*==========================================================
                SHINE EFFECT
==========================================================*/

.portfolio-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );

    transform:skewX(-25deg);

    transition:1s;

    z-index:3;

}

.portfolio-card:hover::before{

    left:160%;

}

/*==========================================================
                TOP BORDER
==========================================================*/

.portfolio-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--gradient);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.portfolio-card:hover::after{

    transform:scaleX(1);

}

/*==========================================================
            VIEW ALL BUTTON
==========================================================*/

.portfolio-button{

    margin-top:70px;

    text-align:center;

}

/*==========================================================
                RESPONSIVE
==========================================================*/

@media(max-width:1100px){

    .portfolio-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .portfolio-grid{

        grid-template-columns:1fr;

    }

    .portfolio-image{

        height:220px;

    }

    .portfolio-content{

        padding:24px;

    }

    .portfolio-content h3{

        font-size:24px;

    }

}

@media(max-width:576px){

    .portfolio-card{

        border-radius:20px;

    }

    .portfolio-image{

        height:200px;

    }

    .portfolio-content{

        padding:20px;

    }

    .portfolio-content h3{

        font-size:24px;

    }

    .portfolio-content p{

        font-size:15px;

    }

    .portfolio-content a{

        font-size:15px;

    }

}

/*==========================================================
                    TESTIMONIALS SECTION
==========================================================*/

.testimonials{

    position:relative;

    background:linear-gradient(180deg,#050816 0%,#0B1020 100%);

    overflow:hidden;

}

/*==========================================================
                    GRID
==========================================================*/

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

/*==========================================================
                    TESTIMONIAL CARD
==========================================================*/

.testimonial-card{

    position:relative;

    padding:35px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.45s ease;

    overflow:hidden;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(10,86,197,.08),
        rgba(255,106,0,.05)
    );

    opacity:0;

    transition:.4s;

}

.testimonial-card:hover::before{

    opacity:1;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    border-color:rgba(10,86,197,.45);

    box-shadow:
        0 20px 45px rgba(10,86,197,.18),
        0 0 25px rgba(255,106,0,.12);

}

/*==========================================================
                    QUOTE ICON
==========================================================*/

.quote-icon{

    position:relative;

    z-index:2;

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:var(--gradient);

    color:#fff;

    font-size:30px;

    margin-bottom:25px;

    transition:.4s;

}

.testimonial-card:hover .quote-icon{

    transform:rotate(10deg) scale(1.1);

}

/*==========================================================
                    CONTENT
==========================================================*/

.testimonial-card p{

    position:relative;

    z-index:2;

    color:var(--gray);

    line-height:1.9;

    margin-bottom:25px;

}

/*==========================================================
                    RATING
==========================================================*/

.rating{

    display:flex;

    gap:6px;

    margin-bottom:25px;

    position:relative;

    z-index:2;

}

.rating i{

    color:#FFD43B;

    font-size:18px;

}

/*==========================================================
                    CLIENT INFO
==========================================================*/

.client{

    display:flex;

    align-items:center;

    gap:16px;

    position:relative;

    z-index:2;

}

.client img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid rgba(255,255,255,.12);

    transition:.4s ease;

}

.testimonial-card:hover .client img{

    transform:scale(1.08);

    border-color:var(--secondary);

}

.client h3{

    font-size:18px;

    color:#fff;

    margin-bottom:5px;

    transition:.3s;

}

.testimonial-card:hover .client h3{

    color:var(--secondary);

}

.client span{

    color:var(--gray);

    font-size:14px;

}

/*==========================================================
                TOP BORDER EFFECT
==========================================================*/

.testimonial-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--gradient);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.testimonial-card:hover::after{

    transform:scaleX(1);

}

/*==========================================================
                REVIEW SUMMARY
==========================================================*/

.review-summary{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:80px;

}

.summary-box{

    padding:35px 25px;

    text-align:center;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.4s ease;

}

.summary-box:hover{

    transform:translateY(-10px);

    border-color:rgba(10,86,197,.45);

    box-shadow:
    0 18px 40px rgba(10,86,197,.18),
    0 0 25px rgba(255,106,0,.10);

}

.summary-box h3{

    font-size:42px;

    margin-bottom:12px;

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.summary-box p{

    color:var(--gray);

    font-size:15px;

}

/*==========================================================
                    BUTTON
==========================================================*/

.testimonial-button{

    margin-top:70px;

    text-align:center;

}

/*==========================================================
                    RESPONSIVE
==========================================================*/

@media(max-width:1100px){

    .testimonial-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .review-summary{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .testimonial-grid{

        grid-template-columns:1fr;

    }

    .review-summary{

        grid-template-columns:1fr;

    }

    .testimonial-card{

        padding:28px;

    }

}

@media(max-width:576px){

    .testimonial-card{

        padding:24px;

        border-radius:20px;

    }

    .quote-icon{

        width:60px;

        height:60px;

        font-size:26px;

    }

    .client img{

        width:55px;

        height:55px;

    }

    .summary-box{

        padding:28px 18px;

    }

    .summary-box h3{

        font-size:34px;

    }

}

/*==========================================================
                    FAQ SECTION
==========================================================*/

.faq{

    position:relative;

    background:linear-gradient(180deg,#0B1020 0%,#050816 100%);

    overflow:hidden;

}

/*==========================================================
                    FAQ CONTAINER
==========================================================*/

.faq-container{

    max-width:900px;

    margin:70px auto 0;

}

/*==========================================================
                    FAQ ITEM
==========================================================*/

.faq-item{

    position:relative;

    margin-bottom:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    overflow:hidden;

    backdrop-filter:blur(18px);

    transition:.4s;

}

.faq-item:hover{

    transform:translateY(-5px);

    border-color:rgba(10,86,197,.45);

    box-shadow:

    0 18px 35px rgba(10,86,197,.18),

    0 0 25px rgba(255,106,0,.08);

}

/*==========================================================
                    QUESTION
==========================================================*/

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 30px;

    background:transparent;

    border:none;

    cursor:pointer;

    color:#fff;

    font-size:18px;

    font-weight:600;

    text-align:left;

}

.faq-question span{

    flex:1;

    padding-right:20px;

}

.faq-question i{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    font-size:22px;

    transition:.4s;

}

.faq-item:hover .faq-question i{

    transform:rotate(90deg);

}

/*==========================================================
                    ANSWER
==========================================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 30px 28px;

    color:var(--gray);

    line-height:1.9;

    font-size:16px;

}

.faq-answer a{

    color:var(--secondary);

    font-weight:600;

}

.faq-answer a:hover{

    text-decoration:underline;

}

/*==========================================================
                    FAQ ACTIVE STATE
==========================================================*/

.faq-item.active{

    border-color:rgba(10,86,197,.55);

    box-shadow:
        0 20px 45px rgba(10,86,197,.20),
        0 0 25px rgba(255,106,0,.12);

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    background:var(--secondary);

    color:#fff;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

/*==========================================================
                TOP GRADIENT BORDER
==========================================================*/

.faq-item::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--gradient);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.faq-item:hover::before,

.faq-item.active::before{

    transform:scaleX(1);

}

/*==========================================================
                    SMOOTH EFFECT
==========================================================*/

.faq-question{

    transition:.35s ease;

}

.faq-item:hover .faq-question{

    color:var(--secondary);

}

.faq-answer{

    transition:
        max-height .45s ease,
        opacity .35s ease;

    opacity:0;

}

.faq-item.active .faq-answer{

    opacity:1;

}

/*==========================================================
                    RESPONSIVE
==========================================================*/

@media(max-width:768px){

    .faq-container{

        margin-top:50px;

    }

    .faq-question{

        padding:22px 20px;

        font-size:17px;

    }

    .faq-question i{

        width:42px;

        height:42px;

        font-size:20px;

    }

    .faq-answer p{

        padding:0 20px 24px;

        font-size:15px;

    }

}

@media(max-width:576px){

    .faq-item{

        border-radius:16px;

    }

    .faq-question{

        font-size:16px;

        gap:15px;

    }

    .faq-question span{

        padding-right:10px;

    }

    .faq-question i{

        width:38px;

        height:38px;

        font-size:18px;

        flex-shrink:0;

    }

}

/*==========================================================
                    CALL TO ACTION
==========================================================*/

.cta{

    position:relative;

    background:linear-gradient(180deg,#050816 0%,#0B1020 100%);

    overflow:hidden;

    padding:120px 0;

}

/*==========================================================
                    CTA BOX
==========================================================*/

.cta-box{

    position:relative;

    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:80px 60px;

    border-radius:35px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    overflow:hidden;

    z-index:1;

}

/*==========================================================
                BACKGROUND GLOW
==========================================================*/

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(10,86,197,.20);

    filter:blur(120px);

    top:-180px;

    left:-120px;

    border-radius:50%;

    z-index:-1;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(255,106,0,.18);

    filter:blur(120px);

    bottom:-200px;

    right:-120px;

    border-radius:50%;

    z-index:-1;

}

/*==========================================================
                    CONTENT
==========================================================*/

.cta-box span{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.cta-box h2{

    font-size:34px;

    line-height:1.25;

    color:#fff;

    margin-bottom:25px;

}

.cta-box p{

    max-width:720px;

    margin:0 auto 40px;

    color:var(--gray);

    font-size:18px;

    line-height:1.9;

}

/*==========================================================
                    CTA BUTTONS
==========================================================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================================================
                CTA BOX HOVER
==========================================================*/

.cta-box{

    transition:all .45s ease;

}

.cta-box:hover{

    transform:translateY(-8px);

    border-color:rgba(10,86,197,.45);

    box-shadow:
        0 25px 60px rgba(10,86,197,.20),
        0 0 35px rgba(255,106,0,.12);

}

/*==========================================================
                FLOATING ANIMATION
==========================================================*/

@keyframes floatingCTA{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

.cta-box{

    animation:floatingCTA 6s ease-in-out infinite;

}

/*==========================================================
                    RESPONSIVE
==========================================================*/

@media(max-width:992px){

    .cta-box{

        padding:60px 40px;

    }

    .cta-box h2{

        font-size:34px;

    }

}

@media(max-width:768px){

    .cta{

        padding:90px 0;

    }

    .cta-box{

        padding:50px 30px;

        border-radius:28px;

    }

    .cta-box h2{

        font-size:34px;

    }

    .cta-box p{

        font-size:16px;

    }

    .cta-buttons{

        flex-direction:column;

        gap:16px;

    }

    .cta-buttons .btn,

    .cta-buttons .btn-outline{

        width:100%;

        max-width:320px;

        text-align:center;

    }

}

@media(max-width:576px){

    .cta-box{

        padding:40px 20px;

        border-radius:22px;

    }

    .cta-box span{

        font-size:12px;

        padding:8px 18px;

    }

    .cta-box h2{

        font-size:34px;

        line-height:1.35;

    }

    .cta-box p{

        font-size:15px;

        line-height:1.8;

    }

}

/*==========================================================
                        FOOTER
==========================================================*/

.footer{

    position:relative;

    background:#050816;

    padding:100px 0 70px;

    overflow:hidden;

}

/*==========================================================
                    GRID
==========================================================*/

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:50px;

}

/*==========================================================
                COMPANY COLUMN
==========================================================*/

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

.footer-column p{

    color:var(--gray);

    line-height:1.9;

    font-size:16px;

}

/*==========================================================
                    HEADING
==========================================================*/

.footer-column h3{

    color:#fff;

    font-size:22px;

    margin-bottom:25px;

    position:relative;

}

.footer-column h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:60px;

    height:3px;

    background:var(--gradient);

    border-radius:20px;

}

/*==========================================================
                    LINKS
==========================================================*/

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-column ul li{

    list-style:none;

}

.footer-column ul li a{

    color:var(--gray);

    transition:.35s;

}

.footer-column ul li a:hover{

    color:var(--secondary);

    padding-left:8px;

}

/*==========================================================
                    CONTACT INFO
==========================================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:var(--gray);

    line-height:1.7;

}

.footer-contact li i{

    color:var(--secondary);

    font-size:20px;

    margin-top:2px;

    flex-shrink:0;

}

/*==========================================================
                    SOCIAL ICONS
==========================================================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:20px;

    transition:all .35s ease;

}

.footer-social a:hover{

    background:var(--gradient);

    transform:translateY(-6px) rotate(8deg);

    border-color:transparent;

    box-shadow:0 12px 25px rgba(10,86,197,.25);

}

/*==========================================================
                    FOOTER BOTTOM
==========================================================*/

.footer-bottom{

    background:#03050f;

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 0;

}

.footer-bottom .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:var(--gray);

    font-size:15px;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.footer-bottom-links a{

    color:var(--gray);

    font-size:15px;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:var(--secondary);

}

/*==========================================================
                BACK TO TOP BUTTON
==========================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    font-size:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(10,86,197,.30);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 45px rgba(10,86,197,.35),
        0 0 30px rgba(255,106,0,.15);

}

/*==========================================================
                WHATSAPP BUTTON
==========================================================*/

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    z-index:999;

    transition:all .35s ease;

    animation:whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

    transform:translateY(-8px) scale(1.08);

}

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.45);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

/*==========================================================
                RESPONSIVE FOOTER
==========================================================*/

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:45px;

    }

}

@media(max-width:768px){

    .footer{

        padding:80px 0 50px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .footer-bottom .container{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        justify-content:center;

    }

}

@media(max-width:576px){

    .footer-logo{

        width:180px;

    }

    .footer-column h3{

        font-size:20px;

    }

    .footer-column p,

    .footer-column ul li a,

    .footer-contact li{

        font-size:15px;

    }

    .footer-social a{

        width:44px;

        height:44px;

        font-size:18px;

    }

    .back-to-top{

        width:50px;

        height:50px;

        right:18px;

        bottom:18px;

        font-size:20px;

    }

    .whatsapp-float{

        width:55px;

        height:55px;

        left:18px;

        bottom:18px;

        font-size:28px;

    }

}

/*==========================================================
                MOBILE NAVIGATION
==========================================================*/

.menu-btn{

    display:none;

    cursor:pointer;

    font-size:32px;

    color:#fff;

}

@media(max-width:992px){

    .menu-btn{

        display:block;

    }

    .nav-links{

        position:fixed;

        top:80px;

        left:-100%;

        width:280px;

        height:calc(100vh - 80px);

        background:#070B17;

        display:flex;

        flex-direction:column;

        align-items:flex-start;

        padding:40px 30px;

        gap:25px;

        transition:.4s;

        z-index:999;

    }

    .nav-links.active{

        left:0;

    }

    .navbar .btn{

        display:none;

    }

}


/*==========================================================
                MOBILE MENU
==========================================================*/

.menu-btn{

    display:none;

    font-size:30px;

    color:#fff;

    cursor:pointer;

    z-index:10001;

}

@media(max-width:992px){

    .menu-btn{

        display:block;

    }

    .nav-links{

        position:fixed;

        top:84px;

        left:-100%;

        width:280px;

        height:calc(100vh - 84px);

        background:#070B17;

        flex-direction:column;

        align-items:flex-start;

        padding:40px 30px;

        gap:24px;

        transition:.4s ease;

        z-index:10000;

        border-right:1px solid rgba(255,255,255,.08);

    }

    .nav-links.active{

        left:0;

    }

    .navbar .btn{

        display:none;

    }

}