/* =====================================================
   NUSA TIRTA TEKNOLOGI
   Corporate Website
   style.css
====================================================== */

@import url("variables.css");

/* ==========================================
    GOOGLE FONT
========================================== */

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

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

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

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{

    font-family:var(--font-primary);
    background:var(--background);
    color:var(--text-color);
    line-height:var(--line-height);
    overflow-x:hidden;
    font-size:16px;

}

img{

    display:block;
    max-width:100%;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;
    color:inherit;

}

button,
input,
textarea{

    outline:none;
    border:none;
    font-family:inherit;

}

section{

    padding:100px 0;

}

.container{

    width:100%;
    max-width:var(--container-width);
    margin:auto;
    padding-inline:var(--container-padding);

}

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

h1,
h2,
h3,
h4,
h5{

    color:var(--title-color);
    font-weight:700;
    line-height:1.25;

}

h1{

    font-size:64px;

}

h2{

    font-size:48px;

}

h3{

    font-size:34px;

}

h4{

    font-size:24px;

}

p{

    color:var(--text-color);
    margin-top:15px;

}

.text-center{

    text-align:center;

}

.text-primary{

    color:var(--primary);

}

.text-orange{

    color:var(--secondary);

}

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

.section-title{

    margin-bottom:60px;

}

.section-title span{

    display:inline-block;
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

}

.section-title h2{

    margin-top:15px;

}

.section-title p{

    width:700px;
    max-width:100%;
    margin:20px auto 0;

}

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

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:16px 34px;

    border-radius:999px;

    cursor:pointer;

    transition:.35s;

    font-weight:600;

}

.btn-primary{

    background:var(--gradient-primary);
    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-5px);

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

}

.btn-secondary{

    background:var(--gradient-orange);
    color:#fff;

}

.btn-secondary:hover{

    transform:translateY(-5px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

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

.grid{

    display:grid;

    gap:30px;

}

.grid-2{

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

}

.grid-3{

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

}

.grid-4{

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

}

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

.card{

    background:#fff;

    border-radius:20px;

    padding:35px;

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

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

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

}

.card img{

    margin-bottom:25px;

}

.card h3{

    font-size:24px;

}

.card p{

    margin-top:15px;

}

/* ==========================================
    BADGE
========================================== */

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    background:#EEF5FF;

    color:var(--primary);

    border-radius:999px;

    font-size:14px;

    font-weight:600;

}

/* ==========================================
    GLASS
========================================== */

.glass{

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

    backdrop-filter:blur(15px);

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

}

/* ==========================================
    SPACING
========================================== */

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:60px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:60px;}
/* =====================================================
    HEADER
====================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:

        background .35s ease,

        box-shadow .35s ease,

        backdrop-filter .35s ease;

}

.header.scrolled{

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

    backdrop-filter:blur(18px);

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

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

}

.navbar{

    height:var(--header-height);

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    min-width:0;

}

.logo img{

    width:52px;

    height:auto;

    flex-shrink:0;

}

.logo-text{

    display:flex;

    flex-direction:column;

    min-width:0;

}

.logo-text h3{

    font-size:20px;

    margin:0;

    color:var(--primary);

}

.logo-text span{

    font-size:12px;

    color:var(--gray-500);

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-menu a{

    position:relative;

    color:var(--gray-700);

    font-weight:600;

    transition:.3s;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:3px;

    border-radius:20px;

    background:var(--secondary);

    transition:.3s;

}

.nav-menu a:hover::after{

    width:100%;

}

/* ==========================================
    HAMBURGER
========================================== */

.menu-toggle{

    display:none;

    width:35px;
    height:35px;

    border-radius:4px;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

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

    font-size:22px;

}

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

.hero{

    position:relative;

    overflow:hidden;

    padding-top:180px;

    padding-bottom:120px;

    background:

    radial-gradient(circle at top right,
    rgba(30,79,159,.08),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(255,107,0,.10),
    transparent 40%),

    #ffffff;

}

.hero-wrapper{

    display:grid;

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

    align-items:flex-start;

    gap:70px;

}

.hero-content h1{

    font-size:64px;

    margin-top:0px;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    font-size:18px;

    margin-top:25px;

    max-width:620px;

}

.product-bottom .hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

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

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:620px;

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

}

/* =====================================================
    FLOATING SHAPES
====================================================== */

.shape{

    position:absolute;

    border-radius:50%;

    filter:blur(4px);

    animation:floatShape 8s linear infinite;

}

.shape-1{

    width:220px;
    height:220px;

    background:rgba(11,46,109,.08);

    top:-70px;
    right:-70px;

}

.shape-2{

    width:170px;
    height:170px;

    background:rgba(255,107,0,.10);

    bottom:40px;
    left:-50px;

}

.shape-3{

    width:70px;
    height:70px;

    background:rgba(30,79,159,.18);

    top:180px;
    right:120px;

}

/* =====================================================
    TRUST
====================================================== */

.hero-trust{

    display:flex;

    align-items:center;

    gap:35px;

    margin-top:20px;

    flex-wrap:wrap;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:12px;

}

.trust-icon{

    width:58px;

    height:58px;

    border-radius:18px;

    background:var(--gradient-primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

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

}

.trust-text h4{

    font-size:18px;

    margin:0;

}

.trust-text p{

    margin-top:5px;

    font-size:14px;

}

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

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    color:var(--primary);

    font-size:13px;

    font-weight:600;

}

.scroll-line{

    width:2px;

    height:45px;

    background:var(--gradient-primary);

    animation:scrollLine 1.8s infinite;

}/* =====================================================
    COMPANY STATISTICS
====================================================== */

.stats{

    margin-top:-60px;
    position:relative;
    z-index:20;

}

.stats-wrapper{

    background:#fff;

    border-radius:28px;

    padding:45px;

    display:grid;

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

    gap:30px;

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

}

.stat-item{

    text-align:center;

}

.stat-item h2{

    font-size:48px;

    color:var(--primary);

    margin-bottom:10px;

}

.stat-item span{

    display:block;

    font-weight:600;

    color:var(--gray-800);

}

.stat-item p{

    font-size:14px;

    margin-top:8px;

    color:var(--gray-500);

}

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

.about{

    position:relative;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:28px;

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

}

.experience-box{

    position:absolute;

    right:-20px;
    bottom:40px;

    width:190px;

    background:#fff;

    border-radius:20px;

    padding:25px;

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

}

.experience-box h2{

    color:var(--secondary);

    font-size:42px;

}

.experience-box span{

    display:block;

    font-weight:600;

    margin-top:5px;

}

.about-content ul{

    margin-top:30px;

}

.about-content li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

}

.about-icon{

    width:50px;
    height:50px;

    border-radius:16px;

    background:var(--gradient-primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.about-text h4{

    font-size:20px;

    margin-bottom:8px;

}

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

.services{

    background:var(--gray-50);

}

.services-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    transition:.35s;

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

    border:1px solid transparent;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:rgba(11,46,109,.15);

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

}

.service-icon{

    width:72px;
    height:72px;

    border-radius:20px;

    background:var(--gradient-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    margin-bottom:25px;

}

.service-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.service-card ul{

    margin-top:20px;

}

.service-card li{

    padding:10px 0;

    color:var(--gray-600);

    border-bottom:1px dashed var(--gray-200);

}

.service-card li:last-child{

    border-bottom:none;

}

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

.feature-strip{

    margin-top:70px;

    display:grid;

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

    gap:25px;

}

.feature-box{

    background:var(--gradient-primary);

    color:#fff;

    padding:30px;

    border-radius:24px;

    text-align:center;

}

.feature-box i{

    font-size:34px;

    margin-bottom:20px;

}

.feature-box h4{

    color:#fff;

    font-size:22px;

    margin-bottom:10px;

}

.feature-box p{

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

    margin:0;

}/* =====================================================
    PRODUCTS
====================================================== */

.products{

    position:relative;

    background:#fff;

    overflow:hidden;

}

.products::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:rgba(11,46,109,.04);

    border-radius:50%;

    top:-180px;
    right:-150px;

}

.products-grid{

    position:relative;

    display:grid;

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

    gap:30px;

}

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

.product-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

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

    transition:.35s;

    border:1px solid #eef2f7;

}

.product-card:hover{

    transform:translateY(-12px);

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

}

.product-header{

    position:relative;

    height:150px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.product-header img{

    width:75%;

    max-width:180px;

    height:auto;

    object-fit:contain;

}
.product-header::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

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

    top:-90px;
    right:-40px;

}

.product-body{

    padding:30px;

}

.product-category{

    display:inline-flex;

    padding:8px 16px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:18px;

    background:#EEF5FF;

    color:var(--primary);

}

.product-body h3{

    font-size:24px;

    margin-bottom:15px;

}

.product-body p{

    min-height:70px;

    color:var(--gray-600);

}

.product-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:30px;

}

.learn-more{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:var(--primary);

    transition:.3s;

}

.learn-more:hover{

    gap:18px;

    color:var(--secondary);

}

/* =====================================================
    PRODUCT COLORS
====================================================== */

.medicine{

    background:linear-gradient(135deg,#00AEEF,#0087D9);

}

.medisafe{

    background:linear-gradient(135deg,#0B2E6D,#1E4F9F);

}

.koravo{

    background:linear-gradient(135deg,#673AB7,#9C27B0);

}

.kasirhub{

    background:linear-gradient(135deg,#00C853,#009624);

}

.query{

    background:linear-gradient(135deg,#FB8C00,#FFB300);

}

.dealmart{

    background:linear-gradient(135deg,#FF7043,#E64A19);

}

.joinner{

    background:linear-gradient(135deg,#283593,#3949AB);

}

.medilab{

    background:linear-gradient(135deg,#E53935,#D81B60);

}

.fusion{

    background:linear-gradient(135deg,#8E24AA,#5E35B1);

}

.nusahub{

    background:linear-gradient(135deg,#009688,#00796B);

}

.mechakit{

    background:linear-gradient(135deg,#37474F,#263238);

}

.locabase{

    background:linear-gradient(135deg,#00897B,#00695C);

}

.agritech{

    background:linear-gradient(135deg,#43A047,#2E7D32);

}

.elecount{

    background:linear-gradient(135deg,#C62828,#B71C1C);

}

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

.product-feature{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;

}

.product-feature span{

    padding:8px 14px;

    border-radius:999px;

    background:var(--gray-100);

    font-size:13px;

    color:var(--gray-700);

    font-weight:500;

}

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

.product-bottom{

    margin-top:70px;

    text-align:center;

}

.product-bottom h3{

    font-size:34px;

    margin-bottom:20px;

}

.product-bottom p{

    max-width:760px;

    margin:auto;

}

.product-bottom .btn{

    margin-top:35px;

}/* =====================================================
    SECURITY
====================================================== */

.security{

    position:relative;

    overflow:hidden;

    background:var(--gradient-dark);

    color:#fff;

}

.security::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

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

    right:-250px;
    top:-250px;

}

.security .section-title h2,
.security .section-title p{

    color:#fff;

}

.security-grid{

    position:relative;

    display:grid;

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

    gap:28px;

}

.security-card{

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

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

    backdrop-filter:blur(18px);

    border-radius:24px;

    padding:35px;

    transition:.35s;

}

.security-card:hover{

    transform:translateY(-12px);

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

}

.security-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--secondary),
        #ff9800
    );

    margin-bottom:25px;

}

.security-card h3{

    color:#fff;

    font-size:22px;

    margin-bottom:15px;

}

.security-card p{

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

    margin:0;

}

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

.security-list{

    margin-top:70px;

    display:grid;

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

    gap:25px;

}

.security-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.security-item i{

    width:48px;

    height:48px;

    border-radius:14px;

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

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:20px;

    flex-shrink:0;

}

.security-item h4{

    color:#fff;

    margin-bottom:6px;

}

.security-item p{

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

}

/* ==========================================
    SECURITY BADGES
========================================== */

.security-badge{

    margin-top:70px;

    display:grid;

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

    gap:20px;

}

.badge-security{

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

    border-radius:20px;

    text-align:center;

    padding:30px 20px;

}

.badge-security h2{

    color:var(--secondary);

    font-size:38px;

    margin-bottom:10px;

}

.badge-security span{

    color:#fff;

    font-weight:600;

}

.badge-security p{

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

    font-size:14px;

    margin-top:8px;

}

/* ==========================================
    TECHNOLOGY MARQUEE
========================================== */

.tech-stack{

    margin-top:80px;

    overflow:hidden;

}

.tech-track{

    display:flex;

    gap:25px;

    width:max-content;

    animation:marquee 25s linear infinite;

}

.tech-item{

    background:#fff;

    color:var(--primary);

    padding:14px 28px;

    border-radius:999px;

    font-weight:600;

    white-space:nowrap;

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

}

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

.security-footer{

    margin-top:80px;

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

    border-radius:30px;

    padding:45px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

}

.security-footer h3{

    color:#fff;

    font-size:34px;

}

.security-footer p{

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

    max-width:650px;

}

.security-footer .btn{

    flex-shrink:0;

}/* =====================================================
    IMPLEMENTATION
====================================================== */

.implementation{

    position:relative;

    background:#fff;

    overflow:hidden;

}

.implementation::before{

    content:"";

    position:absolute;

    left:-180px;
    top:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(11,46,109,.04);

}

.timeline{

    position:relative;

    margin-top:80px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    transform:translateX(-50%);

    background:linear-gradient(
        to bottom,
        var(--primary),
        var(--secondary)
    );

}

.timeline-item{

    position:relative;

    width:50%;

    padding:30px 60px;

}

.timeline-item:nth-child(odd){

    left:0;

    text-align:right;

}

.timeline-item:nth-child(even){

    left:50%;

}

.timeline-dot{

    position:absolute;

    top:40px;

    width:26px;

    height:26px;

    border-radius:50%;

    background:var(--secondary);

    border:6px solid #fff;

    box-shadow:0 0 0 6px rgba(255,107,0,.18);

}

.timeline-item:nth-child(odd) .timeline-dot{

    right:-15px;

}

.timeline-item:nth-child(even) .timeline-dot{

    left:-15px;

}

.timeline-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

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

    transition:.35s;

}

.timeline-card:hover{

    transform:translateY(-10px);

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

}

.timeline-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    background:var(--gradient-primary);

    margin-bottom:25px;

}

.timeline-card h3{

    font-size:26px;

    margin-bottom:12px;

}

.timeline-card p{

    margin:0;

    color:var(--gray-600);

}/* ==========================================
    NAV ACTION
========================================== */

.nav-action{

    display:flex;
    align-items:center;
    gap:15px;

}

.menu-toggle{

    display:none;
}
/* ==========================
    LOADER
========================== */

#loader{

    position:fixed;

    inset:0;

    background:#fff;

    z-index:999999;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.5s;

}

.loader-wrapper{

    text-align:center;

}

.loader-wrapper img{

    width:95px;

    margin:auto;
    margin-bottom:25px;

}

#loader.hidden{

    opacity:0;

    visibility:hidden;

}
.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    z-index:999;

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

}

.floating-whatsapp:hover{

    transform:scale(1.1);

}.btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    animation:ripple .6s linear;

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

    pointer-events:none;

}body.menu-open{

    overflow:hidden;

}

.header{

    transition:
    transform .35s ease,
    background .35s ease;

}

.nav-menu a.active{

    color:var(--primary);

}

.nav-menu a.active::after{

    width:100%;

}.slider{

    position:relative;

    overflow:hidden;

}

.slider-track{

    display:flex;

    transition:transform .45s ease;

}

.slider-prev,
.slider-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:52px;

    height:52px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

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

    z-index:20;

}

.slider-prev{

    left:10px;

}

.slider-next{

    right:10px;

}

.slider-dots{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:30px;

}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#ddd;

    cursor:pointer;

}

.dot.active{

    background:var(--secondary);

}/* ==========================================
    PARTICLES
========================================== */

#particles{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    pointer-events:none;

    z-index:1;

}

.hero>*{

    position:relative;

    z-index:2;

}/* ==========================================
    HERO FLOATING CARD
========================================== */

.hero-image{

    position:relative;

}

.hero-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:18px 22px;

    display:flex;

    align-items:center;

    gap:15px;

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

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

}

.hero-card i{

    width:52px;

    height:52px;

    border-radius:14px;

    background:var(--gradient-primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.hero-card strong{

    display:block;

    color:var(--primary);

}

.hero-card span{

    display:block;

    font-size:13px;

    color:var(--gray-500);

}

.card-1{

    top:40px;

    left:-50px;

}

.card-2{

    top:220px;

    right:-60px;

    animation-delay:1s;

}

.card-3{

    bottom:50px;

    left:-40px;

    animation-delay:2s;

}/* ==========================================
    STAT ITEM
========================================== */

.stat-item{

    position:relative;

    transition:.35s;

}

.stat-item:hover{

    transform:translateY(-8px);

}

.stat-item::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-15px;

    width:0;

    height:4px;

    background:var(--secondary);

    border-radius:999px;

    transform:translateX(-50%);

    transition:.35s;

}

.stat-item:hover::after{

    width:55px;

}

.stat-item h2{

    font-weight:800;

    letter-spacing:-1px;

}/* ==========================================
VALUES
========================================== */

.values{

    background:var(--gray-50);

}

.grid-5{

    display:grid;

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

    gap:30px;

}

.value-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    text-align:center;

    transition:.35s;

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

}

.value-card:hover{

    transform:translateY(-10px);

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

}

.value-icon{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:25px;

    border-radius:20px;

    background:var(--gradient-primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

}

.value-card h3{

    margin-bottom:15px;

}/* ==========================================
PRODUCT IMAGE
========================================== */

.product-header{

    overflow:hidden;

}

.product-header img{

    transition:.45s;

}

.product-card:hover .product-header img{

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

}

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

.product-feature span{

    transition:.3s;

}

.product-feature span:hover{

    background:var(--primary);

    color:#fff;

}

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

.product-card h3{

    transition:.3s;

}

.product-card:hover h3{

    color:var(--primary);

}/* ==========================================
WHY US
========================================== */

.why-us{

    background:#fff;

}

.why-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

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

    transition:.35s;

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

}

.why-card:hover{

    transform:translateY(-10px);

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

}

.why-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:var(--gradient-primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

}

.why-bottom{

    margin-top:70px;

    background:var(--gradient-primary);

    border-radius:30px;

    padding:50px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

}

.why-bottom h2{

    color:#fff;

}

.why-bottom p{

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

    max-width:700px;

}

.why-bottom .btn{

    background:#fff;

    color:var(--primary);

}/* ==========================================
PORTFOLIO
========================================== */

.portfolio{

    background:var(--gray-50);

}

.portfolio-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.portfolio-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

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

    transition:.35s;

}

.portfolio-card:hover{

    transform:translateY(-12px);

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

}

.portfolio-image{

    position:relative;

    overflow:hidden;

}

.portfolio-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:var(--primary);

    color:#fff;

    padding:8px 18px;

    border-radius:999px;

    font-size:13px;

}

.portfolio-body{

    padding:30px;

}

.portfolio-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:25px;

}

.portfolio-tags span{

    background:var(--gray-100);

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

}

.portfolio-bottom{

    margin-top:80px;

    text-align:center;

}/*=========================================
TECHNOLOGY
=========================================*/

.technology{

    background:#fff;

}

.tech-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.tech-card{

    background:#fff;

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

    border-radius:25px;

    padding:35px;

    transition:.35s;

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

}

.tech-card:hover{

    transform:translateY(-10px);

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

}

.tech-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:var(--gradient-primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:25px;

}

.tech-list{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;

}

.tech-list span{

    background:var(--gray-100);

    padding:8px 15px;

    border-radius:50px;

    font-size:13px;

    transition:.3s;

}

.tech-list span:hover{

    background:var(--primary);

    color:#fff;

}/*=========================================
FAQ
=========================================*/

.faq{

    background:var(--gray-50);

}

.faq-wrapper{

    max-width:950px;

    margin:auto;

    margin-top:60px;

}

.faq-item{

    background:#fff;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

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

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

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active i{

    transform:rotate(45deg);

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

.cta{

    padding:120px 0;

    background:linear-gradient(
    135deg,
    #0B2E6D,
    #17479E,
    #0B2E6D);

    position:relative;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

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

    top:-200px;

    right:-150px;

}

.cta::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    border-radius:50%;

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

    left:-120px;

    bottom:-180px;

}

.cta-wrapper{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.5fr 1fr;

    gap:80px;

    align-items:center;

}

.cta *{

    color:#fff;

}

.cta-badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:999px;

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

    margin-bottom:25px;

    letter-spacing:2px;

}

.cta-box{

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

    backdrop-filter:blur(18px);

    border-radius:30px;

    padding:50px;

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

}

.cta-buttons{

    display:flex;

    gap:15px;

    margin:35px 0;

    flex-wrap:wrap;

}

.btn-light{

    background:#fff;

    color:var(--primary);

}

.btn-outline-light{

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

    color:#fff;

}

.cta-stat{

    display:flex;

    justify-content:space-between;

    text-align:center;

    margin-top:35px;

}

.cta-stat h2{

    color:#fff;

    font-size:34px;

}

.cta-item{

    display:flex;

    gap:18px;

    margin-top:25px;

}

.cta-item i{

    font-size:26px;

    color:#FF8A00;

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

.footer{

    background:#071C43;

    color:#fff;

    padding:90px 0 0;

}

.footer-grid{

    display:grid;

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

    gap:50px;

}

.footer-logo{

    width:70px;

    margin-bottom:20px;

}

.footer h3,
.footer h4{

    color:#fff;

    margin-bottom:20px;

}

.footer p{

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

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

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

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:8px;

}

.footer-contact{

    list-style:none;

    padding:0;

}

.footer-contact li{

    display:flex;

    gap:15px;

    margin-bottom:20px;

}

.footer-contact i{

    color:#FF8A00;

}

.footer-badge{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-top:25px;

}

.footer-badge span{

    padding:8px 16px;

    border-radius:30px;

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

    font-size:13px;

}

.footer-bottom{

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

    margin-top:60px;

    padding:30px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

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

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

/* ==========================================
SUPPORT
========================================== */

.support{

    margin-top:80px;

}

.support-wrapper{

    display:grid;

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

    gap:25px;

}

.support-card{

    background:#fff;

    border:1px solid #eef2f7;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

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

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

}

.support-card:hover{

    transform:translateY(-8px);

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

}

.support-card i{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#fff;

    background:var(--gradient-primary);

    border-radius:20px;

    margin-bottom:20px;

}

.support-card h4{

    font-size:20px;

    margin-bottom:12px;

    min-height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.support-card p{

    color:var(--gray-600);

    line-height:1.7;

    margin:0;

}

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

.back-top{

    position:fixed;

    right:25px;

    bottom:105px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    font-size:22px;

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

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:9999;

}

.back-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-top:hover{

    background:var(--secondary);

}
@media(max-width:768px){

.header.scrolled{

    backdrop-filter:none;

    background:#ffffffee;

}

}