/*======================================
            HERO SECTION
======================================*/

.hero{

    position:relative;

    padding:170px 0 120px;

    overflow:hidden;

    background:#ffffff;

}

.hero-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.hero-left{

    flex:1;

}

.hero-right{

    flex:1;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

/*======================================
            BACKGROUND CIRCLES
======================================*/

.hero-bg-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:0;

}

.circle-1{

    width:450px;

    height:450px;

    background:#dbeafe;

    top:-120px;

    left:-120px;

}

.circle-2{

    width:380px;

    height:380px;

    background:#e0f2fe;

    bottom:-120px;

    right:-100px;

}

/*======================================
            BADGE
======================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:#eff6ff;

    color:#2563eb;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

    border:1px solid rgba(37,99,235,.15);

}

/*======================================
            HEADING
======================================*/

.hero-left h1{

    font-size:62px;

    line-height:1.15;

    font-weight:800;

    color:#111827;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:#2563eb;

}

/*======================================
            PARAGRAPH
======================================*/

.hero-left p{

    font-size:18px;

    line-height:32px;

    color:#6b7280;

    max-width:620px;

    margin-bottom:40px;

}

/*======================================
            HERO BUTTONS
======================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:45px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    font-size:16px;

    font-weight:600;

    border-radius:14px;

    transition:.35s;

    box-shadow:0 20px 40px rgba(37,99,235,.25);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 45px rgba(37,99,235,.35);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:#ffffff;

    color:#2563eb;

    border:2px solid #2563eb;

    font-size:16px;

    font-weight:600;

    border-radius:14px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#2563eb;

    color:#ffffff;

}

/*======================================
            FEATURES
======================================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    color:#374151;

    font-size:15px;

    font-weight:600;

}

.feature-item i{

    color:#16a34a;

    font-size:18px;

}

/*======================================
            ROBOT
======================================*/

.robot-box{

    position:relative;

    width:520px;

    z-index:5;

    animation:floatRobot 5s ease-in-out infinite;

}

.robot-box img{

    width:100%;

}

/*======================================
            FLOAT ANIMATION
======================================*/

@keyframes floatRobot{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*======================================
        ROBOT GLOW
======================================*/

.robot-box::before{

    content:"";

    position:absolute;

    width:430px;

    height:430px;

    background:#dbeafe;

    border-radius:50%;

    filter:blur(70px);

    z-index:-1;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

}
/*======================================
            FLOATING CARDS
======================================*/

.floating-card{

    position:absolute;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.7);

    border-radius:18px;

    padding:18px 24px;

    box-shadow:0 20px 45px rgba(15,23,42,.10);

    animation:floatCard 4s ease-in-out infinite;

    z-index:20;

}

.floating-card span{

    display:block;

    font-size:13px;

    color:#6b7280;

    margin-bottom:8px;

    font-weight:500;

}

.floating-card h3{

    font-size:28px;

    color:#111827;

    font-weight:700;

}

@keyframes floatCard{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*======================================
            CARD POSITIONS
======================================*/

.card-profit{

    top:40px;

    left:-40px;

}

.card-users{

    bottom:90px;

    left:-70px;

}

.card-products{

    top:110px;

    right:-45px;

}

.card-secure{

    right:-30px;

    bottom:40px;

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#111827;

}

.card-secure i{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:#ffffff;

    background:linear-gradient(135deg,#16a34a,#22c55e);

}

/*======================================
        GLASS BORDER EFFECT
======================================*/

.floating-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:18px;

    padding:1px;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.9),
        rgba(37,99,235,.15)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;

}

/*======================================
        CARD HOVER
======================================*/

.floating-card:hover{

    transform:translateY(-8px);

    transition:.35s;

    box-shadow:0 30px 60px rgba(37,99,235,.18);

}

/*======================================
            HERO STATS
======================================*/

.hero-stats{

    position:relative;

    padding:40px 0 90px;

    background:#ffffff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    position:relative;

    background:#ffffff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    overflow:hidden;

    transition:.35s;

    border:1px solid rgba(37,99,235,.08);

    box-shadow:0 18px 40px rgba(15,23,42,.06);

}

.stat-box::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563eb,#60a5fa);

}

.stat-box:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(37,99,235,.15);

}

.stat-box h2{

    font-size:48px;

    font-weight:800;

    color:#2563eb;

    margin-bottom:12px;

    line-height:1;

}

.stat-box p{

    color:#6b7280;

    font-size:16px;

    font-weight:600;

}

/*======================================
            RESPONSIVE
======================================*/

@media(max-width:1200px){

.hero-left h1{

    font-size:54px;

}

.robot-box{

    width:450px;

}

}

@media(max-width:992px){

.hero{

    padding:150px 0 80px;

}

.hero-wrapper{

    flex-direction:column;

    text-align:center;

}

.hero-left{

    order:2;

}

.hero-right{

    order:1;

    margin-bottom:60px;

}

.hero-left p{

    max-width:100%;

}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    justify-content:center;

}

.robot-box{

    width:400px;

}

.stats-grid{

    grid-template-columns:repeat(2,1fr);

}

.card-profit{

    left:-20px;

}

.card-users{

    left:-20px;

}

.card-products{

    right:-20px;

}

.card-secure{

    right:-20px;

}

}

@media(max-width:768px){

.hero{

    padding-top:130px;

}

.hero-left h1{

    font-size:42px;

}

.hero-left p{

    font-size:16px;

    line-height:30px;

}

.hero-buttons{

    flex-direction:column;

    width:100%;

}

.btn-primary,

.btn-secondary{

    width:100%;

}

.hero-features{

    flex-direction:column;

    gap:18px;

}

.robot-box{

    width:320px;

}

.floating-card{

    transform:scale(.9);

}

.stats-grid{

    grid-template-columns:1fr;

}

.stat-box{

    padding:30px 20px;

}

.stat-box h2{

    font-size:40px;

}

}

@media(max-width:480px){

.hero-left h1{

    font-size:34px;

}

.hero-badge{

    font-size:13px;

}

.robot-box{

    width:260px;

}

.floating-card{

    padding:14px 18px;

}

.floating-card h3{

    font-size:20px;

}

.card-profit{

    top:0;

    left:0;

}

.card-users{

    left:0;

    bottom:40px;

}

.card-products{

    right:0;

    top:70px;

}

.card-secure{

    right:0;

    bottom:0;

}

}

/*===============================
        JS EFFECTS
===============================*/

.hero{

    opacity:0;

    transform:translateY(40px);

    transition:1s ease;

}

.hero-left,
.hero-right,
.stat-box{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.show{

    opacity:1 !important;

    transform:translateY(0px) !important;

}

.btn-primary,
.btn-secondary{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    background:rgba(255,255,255,.5);

    animation:ripple .6s linear;

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

/*==========================================
        WHY CHOOSE US
==========================================*/

.why-section{

    padding:120px 0;

    background:#f8fbff;

    position:relative;

}

.section-heading{

    text-align:center;

    max-width:750px;

    margin:auto auto 70px;

}

.section-heading span{

    color:#2563eb;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}

.section-heading h2{

    margin-top:18px;

    font-size:48px;

    font-weight:800;

    color:#111827;

}

.section-heading h2 span{

    color:#2563eb;

}

.section-heading p{

    margin-top:20px;

    color:#6b7280;

    line-height:30px;

    font-size:17px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.why-card{

    position:relative;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.7);

    border-radius:24px;

    padding:40px 35px;

    transition:.4s;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(15,23,42,.06);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(37,99,235,.15);

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563eb,#60a5fa);

}

.why-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#ffffff;

    margin-bottom:30px;

}

.blue{

    background:linear-gradient(135deg,#2563eb,#3b82f6);

}

.green{

    background:linear-gradient(135deg,#16a34a,#22c55e);

}

.purple{

    background:linear-gradient(135deg,#7c3aed,#9333ea);

}

.orange{

    background:linear-gradient(135deg,#ea580c,#fb923c);

}

.red{

    background:linear-gradient(135deg,#dc2626,#ef4444);

}

.cyan{

    background:linear-gradient(135deg,#0891b2,#06b6d4);

}

.why-card h3{

    font-size:24px;

    color:#111827;

    margin-bottom:18px;

    font-weight:700;

}

.why-card p{

    color:#6b7280;

    line-height:30px;

    font-size:16px;

}

/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:1100px){

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.section-heading h2{

    font-size:36px;

}

.why-grid{

    grid-template-columns:1fr;

}

.why-card{

    padding:35px 25px;

}

}

/*==========================================
        PRODUCTS SECTION
==========================================*/

.products-section{

    padding:120px 0;

    background:#ffffff;

    position:relative;

}

.product-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:60px;

}

.filter-btn{

    padding:12px 28px;

    border:none;

    border-radius:50px;

    background:#eef4ff;

    color:#2563eb;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    font-size:15px;

}

.filter-btn:hover{

    background:#2563eb;

    color:#ffffff;

}

.filter-btn.active{

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#ffffff;

    box-shadow:0 12px 30px rgba(37,99,235,.20);

}

/*==========================================
        PRODUCTS GRID
==========================================*/

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==========================================
        PRODUCT CARD
==========================================*/

.product-card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.8);

    border-radius:24px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

    position:relative;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(37,99,235,.16);

}

/*==========================================
        PRODUCT IMAGE
==========================================*/

.product-image{

    height:240px;

    position:relative;

    overflow:hidden;

    background:#f8fbff;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

/*==========================================
        PRODUCT BADGE
==========================================*/

.product-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#ffffff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

/*==========================================
        PRODUCT CONTENT
==========================================*/

.product-content{

    padding:28px;

}

.product-content h3{

    font-size:24px;

    color:#111827;

    margin-bottom:15px;

    font-weight:700;

}

.product-content p{

    color:#6b7280;

    line-height:28px;

    font-size:15px;

    margin-bottom:25px;

}

/*==========================================
        PRODUCT BOTTOM
==========================================*/

.product-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.price{

    color:#16a34a;

    font-size:26px;

    font-weight:700;

}

.view-btn{

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#ffffff;

    padding:12px 22px;

    border-radius:12px;

    font-size:14px;

    font-weight:600;

    transition:.35s;

}

.view-btn:hover{

    transform:translateY(-3px);

}

/*==========================================
        VIEW ALL BUTTON
==========================================*/

.products-button{

    text-align:center;

    margin-top:70px;

}

/*==========================================
        PRODUCT CARD EFFECT
==========================================*/

.product-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:24px;

    padding:1px;

    background:linear-gradient(

        135deg,

        rgba(255,255,255,.9),

        rgba(37,99,235,.12)

    );

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;

}

.product-card::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:#dbeafe;

    border-radius:50%;

    top:-130px;

    right:-120px;

    filter:blur(80px);

    opacity:0;

    transition:.5s;

}

.product-card:hover::after{

    opacity:1;

}

/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:1200px){

.products-grid{

    grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.products-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.products-grid{

    grid-template-columns:1fr;

}

.product-filter{

    gap:10px;

}

.filter-btn{

    width:100%;

}

.product-image{

    height:220px;

}

}

/*==========================================
        PRODUCT JS EFFECTS
==========================================*/

.product-card{

    opacity:0;

    transform:translateY(50px);

    transition:
        opacity .6s ease,
        transform .6s ease,
        background .25s ease,
        box-shadow .35s ease;

}

.product-show{

    opacity:1 !important;

    transform:translateY(0) !important;

}

.product-card img{

    transition:
        transform .45s ease;

}

.filter-btn{

    transition:
        all .35s ease;

}

.view-btn{

    transition:
        all .35s ease;

}

.view-btn i{

    margin-left:8px;

    font-size:12px;

}