/*==========================================================
STYLE.CSS
KOPERASI GLOBAL AKSES SEJAHTERA
VERSION 2.0
PART 01
FOUNDATION
==========================================================*/


/*==========================================================
ROOT
==========================================================*/

:root{

    --primary:#d90429;
    --primary-dark:#a1031f;
    --secondary:#ffb703;

    --bg:#070b13;
    --surface:#0d1320;
    --card:#121a29;
    --card-hover:#172235;

    --text:#ffffff;
    --text-muted:#b8c2d3;
    --text-soft:#7f8da3;

    --border:rgba(255,255,255,.08);

    --success:#16c784;
    --warning:#f59e0b;
    --danger:#ef4444;
    --info:#3b82f6;

    --shadow-sm:0 8px 25px rgba(0,0,0,.12);
    --shadow:0 20px 60px rgba(0,0,0,.25);
    --shadow-lg:0 40px 120px rgba(0,0,0,.45);

    --radius-xs:8px;
    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:24px;
    --radius-xl:36px;
    --radius-full:999px;

    --blur:18px;

    --container:1320px;

    --transition:.35s cubic-bezier(.4,0,.2,1);

}


/*==========================================================
LIGHT MODE
==========================================================*/

body.light{

    --bg:#f4f7fb;

    --surface:#ffffff;

    --card:#ffffff;

    --card-hover:#fafafa;

    --text:#121826;

    --text-muted:#4b5563;

    --text-soft:#6b7280;

    --border:#e6eaf0;

    --shadow-sm:0 10px 30px rgba(15,23,42,.05);

    --shadow:0 18px 50px rgba(15,23,42,.08);

    --shadow-lg:0 30px 90px rgba(15,23,42,.12);

}


/*==========================================================
RESET
==========================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

    scroll-padding-top:110px;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:'DM Sans',sans-serif;

    font-size:16px;

    line-height:1.7;

    overflow-x:hidden;

    transition:

        background .35s,

        color .35s;

}

img{

    max-width:100%;

    display:block;

}

svg{

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea,
select{

    font:inherit;

    outline:none;

}

ul{

    list-style:none;

}

section{

    position:relative;

    padding:120px 0;

}

::selection{

    background:var(--primary);

    color:#fff;

}


/*==========================================================
TYPOGRAPHY
==========================================================*/

h1,
h2,
h3,
h4,
h5{

    color:var(--text);

    line-height:1.15;

    font-weight:800;

}

h1{

    font-size:clamp(52px,6vw,84px);

}

h2{

    font-size:clamp(36px,4vw,56px);

}

h3{

    font-size:26px;

}

h4{

    font-size:20px;

}

p{

    color:var(--text-muted);

}

small{

    color:var(--text-soft);

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

}

.section-header.center{

    text-align:center;

}

.section-header h2{

    margin:18px 0 22px;

}

.section-header h2 span{

    color:var(--primary);

}

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:var(--radius-full);

    background:rgba(217,4,41,.10);

    color:var(--primary);

    font-weight:700;

    font-size:13px;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.section-badge::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

}


/*==========================================================
LAYOUT
==========================================================*/

.container{

    width:min(100% - 40px,var(--container));

    margin:auto;

}

.page-wrapper{

    position:relative;

    overflow:hidden;

}


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

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:16px 30px;

    border-radius:var(--radius-full);

    font-weight:700;

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.btn::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.25),
        transparent
    );

    opacity:0;

    transition:.35s;

}

.btn:hover::before{

    opacity:1;

}

.btn-primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    box-shadow:0 18px 45px rgba(217,4,41,.28);

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-outline{

    border:1px solid var(--border);

    background:transparent;

    color:var(--text);

}

.btn-outline:hover{

    border-color:var(--primary);

    color:var(--primary);

}

.btn-glass{

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

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

    backdrop-filter:blur(16px);

    color:#fff;

}

body.light .btn-glass{

    color:var(--text);

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

}


/*==========================================================
CARD
==========================================================*/

.glass-card{

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

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

    backdrop-filter:blur(var(--blur));

    border-radius:30px;

}

body.light .glass-card{

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

    border:1px solid rgba(0,0,0,.05);

}


/*==========================================================
PRELOADER
==========================================================*/

#preloader{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--bg);

    z-index:999999;

    transition:.5s;

}

#preloader.hide{

    opacity:0;

    visibility:hidden;

}

.loader{

    width:72px;

    height:72px;

    border-radius:50%;

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

    border-top-color:var(--primary);

    animation:spin 1s linear infinite;

}

body.light .loader{

    border:4px solid rgba(0,0,0,.08);

    border-top-color:var(--primary);

}


/*==========================================================
CURSOR
==========================================================*/

.cursor-dot{

    position:fixed;

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

    pointer-events:none;

    z-index:99999;

}

.cursor-outline{

    position:fixed;

    width:40px;

    height:40px;

    border-radius:50%;

    border:1px solid rgba(217,4,41,.35);

    pointer-events:none;

    transition:transform .12s;

    z-index:99998;

}


/*==========================================================
SCROLL BAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--bg);

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(

        var(--primary),

        var(--primary-dark)

    );

    border-radius:999px;

}


/*==========================================================
SCROLL PROGRESS
==========================================================*/

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    z-index:999999;

}


/*==========================================================
NOISE
==========================================================*/

.noise{

    position:fixed;

    inset:0;

    pointer-events:none;

    opacity:.03;

    background-image:
    radial-gradient(circle at 20% 20%,#fff 1px,transparent 1px),
    radial-gradient(circle at 70% 80%,#fff 1px,transparent 1px);

    background-size:120px 120px;

    z-index:1;

}


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

@keyframes spin{

    from{

        transform:rotate(0);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:992px){

    section{

        padding:100px 0;

    }

}

@media(max-width:768px){

    .container{

        width:min(100% - 30px,var(--container));

    }

    .btn{

        padding:15px 24px;

    }

    .cursor-dot,
    .cursor-outline{

        display:none;

    }

}

@media(max-width:576px){

    h1{

        font-size:46px;

    }

    h2{

        font-size:34px;

    }

}
/*==========================================================
PART 02
HEADER
==========================================================*/


/*==========================================================
SITE HEADER
==========================================================*/

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:all .35s ease;

    background:transparent;

}

.site-header.scrolled{

    background:rgba(7,11,19,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

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

}

body.light .site-header.scrolled{

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

    border-bottom:1px solid rgba(0,0,0,.06);

}


/*==========================================================
HEADER CONTAINER
==========================================================*/

.header-container{

    width:min(100% - 40px,var(--container));

    margin:auto;

    height:88px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}


/*==========================================================
LOGO
==========================================================*/

.brand{

    display:flex;

    align-items:center;

    gap:16px;

    flex-shrink:0;

}

.brand-logo{

    width:56px;

    height:56px;

    border-radius:18px;

    overflow:hidden;

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

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

    display:flex;

    align-items:center;

    justify-content:center;

    transition:var(--transition);

}

.brand:hover .brand-logo{

    transform:rotate(-5deg) scale(1.05);

}

.brand-logo img{

    width:42px;

}

.brand-content{

    display:flex;

    flex-direction:column;

    line-height:1.1;

}

.brand-title{

    font-size:18px;

    font-weight:800;

    color:var(--text);

    letter-spacing:.04em;

}

.brand-content small{

    margin-top:5px;

    color:var(--text-soft);

    font-size:12px;

    letter-spacing:.12em;

}


/*==========================================================
NAVBAR
==========================================================*/

.navbar{

    margin-left:auto;

}

.navbar ul{

    display:flex;

    align-items:center;

    gap:12px;

}

.navbar a{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:12px 18px;

    border-radius:999px;

    color:var(--text-muted);

    font-weight:600;

    transition:var(--transition);

}

.navbar a:hover{

    color:var(--text);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:18px;

    right:18px;

    bottom:8px;

    height:2px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:center;

    transition:.35s;

}

.navbar a:hover::after,

.navbar a.active::after{

    transform:scaleX(1);

}

.navbar a.active{

    color:var(--primary);

}


/*==========================================================
RIGHT
==========================================================*/

.header-right{

    display:flex;

    align-items:center;

    gap:14px;

}


/*==========================================================
THEME BUTTON
==========================================================*/

.theme-toggle{

    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    cursor: pointer;

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

    color: #ffffff;

    transition: all .35s ease;

}
.theme-toggle .moon-icon{
    color:#ffffff;
}

.theme-toggle .sun-icon{
    color:#D90429;
}

body.light .theme-toggle .moon-icon{
    opacity:0;
    transform:rotate(180deg);
}

body.light .theme-toggle .sun-icon{
    opacity:1;
    transform:rotate(0);
}

body:not(.light) .theme-toggle .sun-icon{
    opacity:0;
    transform:rotate(-180deg);
}
/*==========================================================
REGISTER BUTTON
==========================================================*/

.header-right .btn{

    height:52px;

    padding-inline:28px;

}


/*==========================================================
MOBILE BUTTON
==========================================================*/

.mobile-toggle{

    width:52px;

    height:52px;

    display:none;

    align-items:center;

    justify-content:center;

    border-radius:18px;

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

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

    color:var(--text);

    transition:var(--transition);

}

body.light .mobile-toggle{

    background:#fff;

    border:1px solid rgba(0,0,0,.06);

}

.mobile-toggle:hover{

    background:var(--primary);

    color:#fff;

}


/*==========================================================
MOBILE MENU
==========================================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:340px;

    max-width:100%;

    height:100vh;

    background:var(--surface);

    z-index:1200;

    transition:.4s ease;

    display:flex;

    flex-direction:column;

    border-left:1px solid var(--border);

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

}

.mobile-menu.show{

    right:0;

}

.mobile-menu-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:26px;

    border-bottom:1px solid var(--border);

}

.mobile-menu-header img{

    width:54px;

}

.mobile-menu-header button{

    width:46px;

    height:46px;

    border-radius:14px;

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

    color:var(--text);

    transition:var(--transition);

}

.mobile-menu-header button:hover{

    background:var(--primary);

    color:#fff;

}

.mobile-menu nav{

    display:flex;

    flex-direction:column;

    padding:22px;

}

.mobile-menu nav a{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 20px;

    border-radius:16px;

    color:var(--text-muted);

    transition:var(--transition);

}

.mobile-menu nav a:hover{

    color:#fff;

    background:var(--primary);

    transform:translateX(8px);

}

.mobile-action{

    margin-top:auto;

    padding:24px;

    display:grid;

    gap:14px;

}


/*==========================================================
MENU OVERLAY
==========================================================*/

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(4px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:1190;

}

.menu-overlay.show{

    opacity:1;

    visibility:visible;

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .navbar{

        display:none;

    }

    .header-right{

        display:none;

    }

    .mobile-toggle{

        display:flex;

    }

}

@media(max-width:768px){

    .header-container{

        width:min(100% - 30px,var(--container));

        height:78px;

    }

    .brand-logo{

        width:50px;

        height:50px;

    }

    .brand-logo img{

        width:36px;

    }

    .brand-title{

        font-size:16px;

    }

}

@media(max-width:480px){

    .mobile-menu{

        width:100%;

    }

}
/*==========================================================
PART 03
HERO SECTION
==========================================================*/


/*==========================================================
HERO
==========================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:140px 0 80px;

    isolation:isolate;

}


/*==========================================================
VIDEO
==========================================================*/

.hero-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:-5;

}


/*==========================================================
OVERLAY
==========================================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(7,11,19,.55),
        rgba(7,11,19,.92)
    );

    z-index:-4;

}

body.light .hero-overlay{

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.40),
        rgba(244,247,251,.92)
    );

}


/*==========================================================
GRADIENT
==========================================================*/

.hero-gradient{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 15% 20%,rgba(217,4,41,.18),transparent 30%),

    radial-gradient(circle at 80% 25%,rgba(255,183,3,.10),transparent 30%),

    radial-gradient(circle at 50% 90%,rgba(217,4,41,.10),transparent 35%);

    z-index:-3;

}


/*==========================================================
NOISE
==========================================================*/

.hero-noise{

    position:absolute;

    inset:0;

    opacity:.04;

    background-image:

    radial-gradient(circle,#fff 1px,transparent 1px);

    background-size:18px 18px;

    z-index:-2;

}


/*==========================================================
LIGHT EFFECT
==========================================================*/

.hero-light{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.35;

    z-index:-1;

}

.hero-light-1{

    width:340px;

    height:340px;

    background:rgba(217,4,41,.28);

    top:80px;

    left:-120px;

}

.hero-light-2{

    width:260px;

    height:260px;

    background:rgba(255,183,3,.18);

    bottom:50px;

    right:-80px;

}


/*==========================================================
CONTAINER
==========================================================*/

.hero-container{

    width:min(100% - 40px,var(--container));

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}


/*==========================================================
LEFT
==========================================================*/

.hero-left{

    position:relative;

    z-index:10;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 22px;

    margin-bottom:28px;

    border-radius:999px;

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

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

    backdrop-filter:blur(14px);

    font-size:13px;

    font-weight:700;

    letter-spacing:.08em;

}

body.light .hero-badge{

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

}

.badge-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:var(--primary);

    animation:pulse 1.8s infinite;

}

.hero-left h1{

    max-width:760px;

    margin-bottom:24px;

    font-weight:900;

    letter-spacing:-2px;

}

.hero-left h1 span{

    display:block;

    color:var(--primary);

}

.hero-left p{

    max-width:640px;

    font-size:19px;

    line-height:1.9;

    margin-bottom:40px;

}


/*==========================================================
ACTION
==========================================================*/

.hero-action{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:70px;

}

.btn-lg{

    min-width:220px;

    height:62px;

    font-size:16px;

}


/*==========================================================
STAT
==========================================================*/

.hero-stat{

    display:grid;

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

    gap:20px;

}

.stat-box{

    padding:28px;

    border-radius:26px;

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

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

    backdrop-filter:blur(16px);

    transition:var(--transition);

}

body.light .stat-box{

    background:#fff;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h2{

    font-size:38px;

    margin-bottom:10px;

}

.stat-box small{

    font-size:15px;

}


/*==========================================================
RIGHT
==========================================================*/

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.glass-card{

    width:100%;

    max-width:470px;

    padding:36px;

    box-shadow:var(--shadow-lg);

    animation:floatCard 6s ease-in-out infinite;

}


/*==========================================================
HEADER
==========================================================*/

.glass-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.glass-header h2{

    margin-top:8px;

    font-size:36px;

}

.wallet-icon{

    width:74px;

    height:74px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-size:30px;

}


/*==========================================================
BODY
==========================================================*/

.glass-body{

    display:grid;

    gap:18px;

}

.glass-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    border-radius:18px;

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

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

}

body.light .glass-item{

    background:#f8fafc;

}

.glass-item>div{

    display:flex;

    align-items:center;

    gap:14px;

}

.glass-item i{

    color:var(--primary);

}

.glass-item strong{

    font-size:17px;

}

.success{

    color:var(--success);

}


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

.glass-footer{

    margin-top:28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:24px;

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

}

.glass-footer span{

    color:var(--success);

    font-weight:700;

}


/*==========================================================
FLOATING CARD
==========================================================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 22px;

    border-radius:22px;

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

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

    backdrop-filter:blur(18px);

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

}

body.light .floating-card{

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

}

.floating-card i{

    width:54px;

    height:54px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:#fff;

}

.card-one{

    top:190px;

    right:80px;

}

.card-two{

    bottom:170px;

    left:80px;

}


/*==========================================================
SCROLL
==========================================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

    width:42px;

    height:72px;

    border-radius:999px;

    border:2px solid rgba(255,255,255,.20);

    display:flex;

    justify-content:center;

    padding-top:10px;

}

.scroll-down span{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#fff;

    animation:scrollMove 2s infinite;

}


/*==========================================================
KEYFRAMES
==========================================================*/

@keyframes pulse{

    0%,100%{

        transform:scale(1);

        opacity:1;

    }

    50%{

        transform:scale(1.5);

        opacity:.5;

    }

}

@keyframes floatCard{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

@keyframes scrollMove{

    0%{

        transform:translateY(0);

        opacity:1;

    }

    100%{

        transform:translateY(28px);

        opacity:0;

    }

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .hero-container{

        grid-template-columns:1fr;

    }

    .hero-right{

        margin-top:60px;

    }

}

@media(max-width:768px){

    .hero{

        text-align:center;

    }

    .hero-container{

        width:min(100% - 30px,var(--container));

    }

    .hero-action{

        justify-content:center;

    }

    .hero-stat{

        grid-template-columns:1fr;

    }

    .floating-card{

        display:none;

    }

}

@media(max-width:576px){

    .glass-card{

        padding:26px;

    }

    .hero-left p{

        font-size:17px;

    }

    .btn-lg{

        width:100%;

    }

}
/*==========================================================
PART 04
STATS SECTION
==========================================================*/


/*==========================================================
STATS SECTION
==========================================================*/

.stats-section{

    position:relative;

    padding:120px 0;

    background:var(--surface);

    overflow:hidden;

}

.stats-section::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(217,4,41,.05);

    top:-240px;

    left:-180px;

    filter:blur(80px);

}

.stats-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,183,3,.05);

    right:-160px;

    bottom:-220px;

    filter:blur(80px);

}


/*==========================================================
GRID
==========================================================*/

.stats-grid{

    position:relative;

    display:grid;

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

    gap:30px;

    z-index:2;

}


/*==========================================================
CARD
==========================================================*/

.stats-card{

    position:relative;

    padding:45px 30px;

    border-radius:30px;

    background:var(--card);

    border:1px solid var(--border);

    transition:var(--transition);

    overflow:hidden;

}

.stats-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.stats-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow);

}

.stats-card:hover::before{

    transform:scaleX(1);

}


/*==========================================================
ICON
==========================================================*/

.stats-icon{

    width:78px;

    height:78px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-dark)

    );

    color:#fff;

    font-size:30px;

    box-shadow:

        0 18px 40px rgba(217,4,41,.25);

}


/*==========================================================
NUMBER
==========================================================*/

.stats-card h3{

    font-size:46px;

    font-weight:800;

    margin-bottom:10px;

}

.stats-card p{

    font-size:17px;

    color:var(--text-muted);

}


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

.about-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

}

.about-grid{

    display:grid;

    grid-template-columns:520px 1fr;

    gap:90px;

    align-items:center;

}


/*==========================================================
IMAGE
==========================================================*/

.about-image{

    position:relative;

}

.image-card{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    background:var(--card);

    border:1px solid var(--border);

    box-shadow:var(--shadow-lg);

}

.image-card img{

    width:100%;

    transition:1s;

}

.image-card:hover img{

    transform:scale(1.08);

}


/*==========================================================
EXPERIENCE
==========================================================*/

.experience-card{

    position:absolute;

    right:-35px;

    bottom:35px;

    padding:28px 34px;

    border-radius:28px;

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

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

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

}

body.light .experience-card{

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

}

.experience-card h2{

    font-size:54px;

    color:var(--primary);

    margin-bottom:8px;

}

.experience-card span{

    color:var(--text-muted);

}


/*==========================================================
CONTENT
==========================================================*/

.about-content h2{

    margin:18px 0 25px;

}

.about-content h2 span{

    color:var(--primary);

}

.about-content p{

    font-size:18px;

    margin-bottom:22px;

    line-height:1.9;

}


/*==========================================================
FEATURE
==========================================================*/

.about-feature{

    display:grid;

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

    gap:18px;

    margin:45px 0;

}

.about-feature div{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 22px;

    border-radius:20px;

    background:var(--card);

    border:1px solid var(--border);

    transition:var(--transition);

}

.about-feature div:hover{

    transform:translateX(8px);

    border-color:rgba(217,4,41,.25);

}

.about-feature i{

    color:var(--success);

    font-size:18px;

}


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

.about-button{

    margin-top:20px;

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .stats-grid{

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

    }

    .about-grid{

        grid-template-columns:1fr;

    }

    .about-image{

        max-width:650px;

        margin:auto;

    }

}

@media(max-width:768px){

    .stats-grid{

        grid-template-columns:1fr;

    }

    .about-feature{

        grid-template-columns:1fr;

    }

    .experience-card{

        position:relative;

        right:auto;

        bottom:auto;

        margin-top:25px;

    }

}

@media(max-width:576px){

    .stats-card{

        text-align:center;

    }

    .stats-icon{

        margin:0 auto 24px;

    }

    .about-content{

        text-align:center;

    }

}
/*==========================================================
PART 05
SERVICES SECTION
==========================================================*/


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

.service-section{

    position:relative;

    padding:140px 0;

    background:var(--surface);

    overflow:hidden;

}

.service-section::before{

    content:"";

    position:absolute;

    width:620px;

    height:620px;

    border-radius:50%;

    background:rgba(217,4,41,.05);

    left:-260px;

    top:-260px;

    filter:blur(100px);

}

.service-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,183,3,.05);

    right:-180px;

    bottom:-200px;

    filter:blur(90px);

}


/*==========================================================
GRID
==========================================================*/

.service-grid{

    position:relative;

    display:grid;

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

    gap:32px;

    z-index:2;

}


/*==========================================================
CARD
==========================================================*/

.service-card{

    position:relative;

    padding:42px;

    border-radius:30px;

    background:var(--card);

    border:1px solid var(--border);

    overflow:hidden;

    transition:all .4s ease;

}

.service-card:hover{

    transform:translateY(-14px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(217,4,41,.20);

}


/*==========================================================
TOP LINE
==========================================================*/

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}


/*==========================================================
ICON
==========================================================*/

.service-icon{

    width:86px;

    height:86px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-dark)

    );

    color:#fff;

    font-size:34px;

    margin-bottom:32px;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

}


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

.service-card h3{

    margin-bottom:18px;

    font-size:28px;

}

.service-card p{

    margin-bottom:30px;

    line-height:1.9;

}


/*==========================================================
LINK
==========================================================*/

.service-link{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:var(--primary);

    font-weight:700;

    transition:.3s;

}

.service-link i{

    transition:.3s;

}

.service-link:hover{

    gap:18px;

}

.service-link:hover i{

    transform:translateX(6px);

}


/*==========================================================
WHY SECTION
==========================================================*/

.why-section{

    position:relative;

    padding:140px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 560px;

    gap:90px;

    align-items:center;

}


/*==========================================================
LEFT
==========================================================*/

.why-content h2{

    margin:18px 0 25px;

}

.why-content h2 span{

    color:var(--primary);

}

.why-content p{

    margin-bottom:28px;

    font-size:18px;

}


/*==========================================================
LIST
==========================================================*/

.why-list{

    display:grid;

    gap:22px;

    margin-top:45px;

}

.why-item{

    display:flex;

    gap:22px;

    align-items:flex-start;

    padding:24px;

    border-radius:24px;

    background:var(--card);

    border:1px solid var(--border);

    transition:.35s;

}

.why-item:hover{

    transform:translateX(10px);

    border-color:rgba(217,4,41,.20);

}

.why-item i{

    width:64px;

    height:64px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-dark)

    );

    color:#fff;

    font-size:24px;

    flex-shrink:0;

}

.why-item h4{

    margin-bottom:10px;

}


/*==========================================================
RIGHT DASHBOARD
==========================================================*/

.dashboard-card{

    position:relative;

    padding:36px;

    border-radius:34px;

    background:var(--card);

    border:1px solid var(--border);

    box-shadow:var(--shadow-lg);

}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.dashboard-header h3{

    font-size:30px;

}

.dashboard-header span{

    color:var(--success);

    font-weight:700;

}


/*==========================================================
CHART
==========================================================*/

.dashboard-chart{

    height:220px;

    border-radius:24px;

    background:linear-gradient(

        180deg,

        rgba(217,4,41,.12),

        transparent

    );

    border:1px dashed rgba(217,4,41,.18);

    margin-bottom:30px;

}


/*==========================================================
PROGRESS
==========================================================*/

.progress-item{

    margin-bottom:22px;

}

.progress-item:last-child{

    margin-bottom:0;

}

.progress-item .top{

    display:flex;

    justify-content:space-between;

    margin-bottom:12px;

    font-weight:700;

}

.progress{

    width:100%;

    height:10px;

    border-radius:999px;

    overflow:hidden;

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

}

body.light .progress{

    background:#eef2f7;

}

.progress span{

    display:block;

    height:100%;

    border-radius:999px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .services-grid{

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

    }

    .why-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        padding:34px;

    }

}

@media(max-width:576px){

    .service-card{

        text-align:center;

    }

    .service-icon{

        margin:0 auto 28px;

    }

    .why-item{

        flex-direction:column;

        text-align:center;

        align-items:center;

    }

}
/*==========================================================
PART 06
VIDEO SECTION
NEWS SECTION
CTA SECTION
==========================================================*/


/*==========================================================
VIDEO SECTION
==========================================================*/

.video-section{

    position:relative;

    padding:140px 0;

    background:var(--surface);

    overflow:hidden;

}

.video-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:36px;

    min-height:620px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-lg);

}

.video-wrapper img{

    width:100%;

    height:620px;

    object-fit:cover;

    transition:1.2s;

}

.video-wrapper:hover img{

    transform:scale(1.08);

}

.video-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.20),

        rgba(0,0,0,.55)

    );

}

.play-button{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:110px;

    height:110px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

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

    transition:.35s;

}

.play-button::before{

    content:"";

    position:absolute;

    inset:-14px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.35);

    animation:ripple 2s infinite;

}

.play-button:hover{

    transform:translate(-50%,-50%) scale(1.08);

    background:var(--primary);

    color:#fff;

}


/*==========================================================
NEWS SECTION
==========================================================*/

.news-section{

    position:relative;

    padding:140px 0;

}

.news-grid{

    display:grid;

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

    gap:34px;

}

.news-card{

    overflow:hidden;

    border-radius:30px;

    background:var(--card);

    border:1px solid var(--border);

    transition:.4s;

}

.news-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.news-image{

    position:relative;

    overflow:hidden;

}

.news-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:1s;

}

.news-card:hover .news-image img{

    transform:scale(1.1);

}

.news-date{

    position:absolute;

    top:20px;

    left:20px;

    padding:10px 18px;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-size:13px;

    font-weight:700;

}

.news-body{

    padding:34px;

}

.news-category{

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.news-body h3{

    margin:18px 0;

    line-height:1.35;

    transition:.3s;

}

.news-card:hover h3{

    color:var(--primary);

}

.news-body p{

    margin-bottom:28px;

}

.news-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:22px;

    border-top:1px solid var(--border);

}

.news-author{

    display:flex;

    align-items:center;

    gap:14px;

}

.news-author img{

    width:48px;

    height:48px;

    border-radius:50%;

    object-fit:cover;

}

.news-link{

    color:var(--primary);

    font-size:22px;

    transition:.3s;

}

.news-link:hover{

    transform:translateX(6px);

}


/*==========================================================
CTA
==========================================================*/

.cta-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

}

.cta-box{

    position:relative;

    overflow:hidden;

    border-radius:36px;

    padding:90px;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-dark)

    );

    color:#fff;

    box-shadow:var(--shadow-lg);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

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

    right:-160px;

    top:-160px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

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

    left:-100px;

    bottom:-100px;

}

.cta-content{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

}

.cta-content h2{

    color:#fff;

    max-width:700px;

    margin-bottom:20px;

}

.cta-content p{

    color:rgba(255,255,255,.85);

    max-width:620px;

}

.cta-action{

    display:flex;

    gap:18px;

    flex-shrink:0;

}

.cta-action .btn{

    min-width:190px;

}

.cta-action .btn-outline{

    color:#fff;

    border-color:rgba(255,255,255,.35);

}

.cta-action .btn-outline:hover{

    background:#fff;

    color:var(--primary);

}


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

@keyframes ripple{

    from{

        transform:scale(1);

        opacity:.9;

    }

    to{

        transform:scale(1.6);

        opacity:0;

    }

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .news-grid{

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

    }

    .cta-content{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media(max-width:768px){

    .news-grid{

        grid-template-columns:1fr;

    }

    .video-wrapper{

        min-height:420px;

    }

    .video-wrapper img{

        height:420px;

    }

    .cta-box{

        padding:60px 35px;

        text-align:center;

    }

    .cta-content{

        align-items:center;

    }

    .cta-action{

        flex-direction:column;

        width:100%;

    }

    .cta-action .btn{

        width:100%;

    }

}

@media(max-width:576px){

    .play-button{

        width:90px;

        height:90px;

        font-size:28px;

    }

    .news-body{

        padding:28px;

    }

}
/*==========================================================
PART 07
FOOTER
BACK TO TOP
DARK MODE
UTILITY
==========================================================*/


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

.footer-section{

    position:relative;

    padding:120px 0 40px;

    background:#050810;

    overflow:hidden;

}

body.light .footer-section{

    background:#eef3f8;

}

.footer-section::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(217,4,41,.06);

    left:-220px;

    top:-220px;

    filter:blur(90px);

}

.footer-container{

    position:relative;

    display:grid;

    grid-template-columns:1.3fr 1fr 1fr 1fr;

    gap:60px;

    z-index:2;

}


/*==========================================================
BRAND
==========================================================*/

.footer-brand{

    max-width:420px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:28px;

}

.footer-logo img{

    width:68px;

}

.footer-logo h3{

    font-size:24px;

}

.footer-brand p{

    margin-bottom:30px;

    line-height:1.9;

}


/*==========================================================
SOCIAL
==========================================================*/

.footer-social{

    display:flex;

    gap:14px;

}

.footer-social a{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

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

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

    color:var(--text);

    transition:.35s;

}

body.light .footer-social a{

    background:#fff;

    border:1px solid rgba(0,0,0,.06);

}

.footer-social a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-6px);

}


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

.footer-title{

    font-size:22px;

    margin-bottom:30px;

}


/*==========================================================
LINK
==========================================================*/

.footer-links{

    display:grid;

    gap:16px;

}

.footer-links a{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--text-muted);

    transition:.3s;

}

.footer-links a i{

    color:var(--primary);

    font-size:14px;

}

.footer-links a:hover{

    color:var(--primary);

    transform:translateX(8px);

}


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

.footer-contact{

    display:grid;

    gap:20px;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:16px;

}

.footer-contact i{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:rgba(217,4,41,.12);

    color:var(--primary);

}

.footer-contact span{

    color:var(--text-muted);

}


/*==========================================================
NEWSLETTER
==========================================================*/

.footer-newsletter{

    margin-top:30px;

}

.footer-newsletter form{

    display:flex;

    margin-top:18px;

    border-radius:999px;

    overflow:hidden;

    border:1px solid var(--border);

}

.footer-newsletter input{

    flex:1;

    height:58px;

    padding:0 24px;

    background:transparent;

    color:var(--text);

}

.footer-newsletter button{

    width:64px;

    background:var(--primary);

    color:#fff;

}


/*==========================================================
BOTTOM
==========================================================*/

.footer-bottom{

    margin-top:80px;

    padding-top:30px;

    border-top:1px solid var(--border);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.footer-bottom p{

    margin:0;

}

.footer-bottom-links{

    display:flex;

    gap:30px;

}

.footer-bottom-links a{

    color:var(--text-muted);

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:var(--primary);

}


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

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-dark)

    );

    color:#fff;

    box-shadow:0 20px 50px rgba(217,4,41,.28);

    opacity:0;

    visibility:hidden;

    transform:translateY(30px);

    transition:.35s;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    transform:translateY(-8px);

}


/*==========================================================
DARK MODE ICON
==========================================================*/

.theme-toggle{

    position:relative;

    overflow:hidden;

}

.theme-toggle i{

    position:absolute;

    transition:.35s;

}

.theme-toggle .fa-sun{

    opacity:0;

    transform:rotate(-180deg);

}

body.light .theme-toggle .fa-moon{

    opacity:0;

    transform:rotate(180deg);

}

body.light .theme-toggle .fa-sun{

    opacity:1;

    transform:rotate(0);

}

/*==========================================================
PART 08
FOOTER
==========================================================*/

.footer-section{

    position:relative;
    background:#050914;
    color:#fff;
    padding:90px 0 30px;
    overflow:hidden;

}

.footer-section::before{

    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top left,rgba(217,4,41,.10),transparent 40%),
        radial-gradient(circle at bottom right,rgba(255,183,3,.06),transparent 35%);
    pointer-events:none;

}

.footer-grid{

    position:relative;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:60px;
    z-index:2;

}

.footer-column{

    display:flex;
    flex-direction:column;

}

.footer-column h4{

    font-size:22px;
    color:#fff;
    margin-bottom:25px;

}

.footer-column p{

    margin:25px 0;
    line-height:1.9;
    color:rgba(255,255,255,.75);

}

.footer-column ul{

    display:flex;
    flex-direction:column;
    gap:16px;
    list-style:none;

}

.footer-column ul li{

    display:flex;
    align-items:flex-start;
    gap:14px;

}

.footer-column ul li a{

    color:rgba(255,255,255,.75);
    transition:.35s;

}

.footer-column ul li a:hover{

    color:var(--secondary);
    padding-left:6px;

}

.footer-logo{

    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;

}

.footer-logo img{

    width:70px;
    height:70px;
    object-fit:contain;

}

.footer-logo h3{

    font-size:22px;
    color:#fff;
    margin-bottom:4px;

}

.footer-logo span{

    font-size:13px;
    color:rgba(255,255,255,.60);
    letter-spacing:1px;

}

.footer-social{

    display:flex;
    align-items:center;
    gap:14px;
    margin-top:15px;

}

.footer-social a{

    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);
    border-color:var(--primary);
    transform:translateY(-5px);

}

.footer-contact li{

    align-items:flex-start;

}

.footer-contact i{

    width:22px;
    color:var(--primary);
    margin-top:4px;

}

.footer-contact span{

    color:rgba(255,255,255,.75);
    line-height:1.8;

}

.footer-bottom{

    margin-top:70px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    color:rgba(255,255,255,.60);
    font-size:15px;

}

.footer-bottom i{

    color:var(--primary);

}

body.light .footer-section{

    background:#0d1320;

}

body.light .footer-column h4,
body.light .footer-logo h3{

    color:#fff;

}

body.light .footer-column p,
body.light .footer-column a,
body.light .footer-contact span,
body.light .footer-bottom,
body.light .footer-logo span{

    color:rgba(255,255,255,.75);

}

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);
        gap:45px;

    }

}

@media(max-width:768px){

    .footer-section{

        padding:70px 0 25px;

    }

    .footer-grid{

        grid-template-columns:1fr;
        gap:40px;

    }

    .footer-logo{

        justify-content:center;
        text-align:center;
        flex-direction:column;

    }

    .footer-column{

        text-align:center;

    }

    .footer-column ul li{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-contact li{

        justify-content:center;
        text-align:left;

    }

    .footer-bottom{

        flex-direction:column;
        text-align:center;

    }

}


/*==========================================================
UTILITY
==========================================================*/

.text-primary{

    color:var(--primary)!important;

}

.bg-primary{

    background:var(--primary)!important;

}

.rounded-xl{

    border-radius:32px;

}

.shadow-xl{

    box-shadow:var(--shadow-lg);

}

.border{

    border:1px solid var(--border);

}

.glass{

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

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

    backdrop-filter:blur(18px);

}

body.light .glass{

    background:#fff;

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .footer-container{

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

    }

}

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;

        gap:50px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        flex-wrap:wrap;

        justify-content:center;

    }

    .back-to-top{

        right:20px;

        bottom:20px;

    }

}

@media(max-width:576px){

    .footer-newsletter form{

        border-radius:20px;

    }

    .footer-newsletter button{

        width:58px;

    }

}
