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

    :root{

        --primary:#f97316;
        --primary-dark:#ea580c;

        --dark:#111827;
        --gray:#6b7280;

        --bg:#f8fafc;
        --card:#ffffff;

        --border:#e5e7eb;

    }

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

    body{

        background:var(--bg);

        font-family:
        Inter,
        system-ui,
        sans-serif;

        color:var(--dark);
    }

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

    .section-space{
        padding:90px 0;
    }

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

    .contact-hero{

        background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937
        );

        border-radius:32px;

        padding:90px;

        overflow:hidden;

        position:relative;

        color:#fff;
    }

    .contact-hero::before{

        content:"";

        position:absolute;

        width:700px;
        height:700px;

        background:
        radial-gradient(
            rgba(249,115,22,.2),
            transparent 70%
        );

        right:-200px;
        top:-250px;
    }

    .hero-badge{

        display:inline-block;

        padding:
        10px 16px;

        border-radius:999px;

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

        margin-bottom:24px;

        font-size:14px;
        font-weight:700;
    }

    .hero-title{

        font-size:64px;
        font-weight:900;

        margin-bottom:24px;
    }

    .hero-title span{
        color:var(--primary);
    }

    .hero-desc{

        max-width:700px;

        line-height:1.9;

        color:#d1d5db;

        font-size:18px;
    }

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

    .contact-grid{

        display:grid;

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

        gap:24px;

        margin-top:-60px;

        position:relative;
        z-index:10;
    }

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

    .contact-card{

        background:#fff;

        border-radius:28px;

        padding:34px;

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

        transition:.35s ease;

        box-shadow:
        0 10px 30px rgba(0,0,0,.04);
    }

    .contact-card:hover{

        transform:
        translateY(-8px);

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

        border-color:
        rgba(249,115,22,.3);
    }

    .contact-icon{

        width:72px;
        height:72px;

        border-radius:22px;

        background:#fff7ed;

        display:flex;

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

        color:var(--primary);

        font-size:30px;

        margin-bottom:22px;
    }

    .contact-title{

        font-size:22px;
        font-weight:800;

        margin-bottom:10px;
    }

    .contact-text{

        color:var(--gray);

        line-height:1.8;
    }

    /* =====================================================
    FORM
    ===================================================== */

    .contact-form{

        background:#fff;

        border-radius:32px;

        padding:50px;

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

        box-shadow:
        0 10px 30px rgba(0,0,0,.04);
    }

    .section-title{

        font-size:35px;
        font-weight:900;

        margin-bottom:18px;
    }

    .section-subtitle{

        color:var(--gray);

        margin-bottom:40px;
    }

    /* =====================================================
    INPUT
    ===================================================== */

    .form-control{

        height:58px;

        border-radius:16px;

        border:1px solid #e5e7eb;

        background:#f9fafb;

        padding-left:18px;
    }

    textarea.form-control{

        height:180px;

        padding-top:18px;
    }

    .form-control:focus{

        border-color:var(--primary);

        box-shadow:
        0 0 0 4px rgba(249,115,22,.12);
    }

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

    .btn-main{

        height:58px;

        border:none;

        border-radius:16px;

        background:var(--primary);

        color:#fff;

        font-weight:700;

        padding:0 34px;

        transition:.25s ease;
    }

    .btn-main:hover{

        background:var(--primary-dark);
    }

    /* =====================================================
    MAP
    ===================================================== */

    .map-wrapper{

        overflow:hidden;

        border-radius:32px;

        height:100%;

        min-height:620px;

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

    .map-wrapper iframe{

        width:100%;
        height:100%;

        border:none;
    }

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

    .accordion-item{

        border:none;

        border-radius:20px !important;

        overflow:hidden;

        margin-bottom:16px;

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

    .accordion-button{

        padding:24px;

        font-weight:700;
    }

    .accordion-button:not(.collapsed){

        background:#fff7ed;

        color:var(--primary);
    }


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

    @media(max-width:992px){

        .contact-grid{

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

        .hero-title{
            font-size:44px;
        }

    }

    @media(max-width:768px){

        .contact-grid{
            grid-template-columns:1fr;
        }

        .contact-hero{

            padding:50px 32px;
        }

        .hero-title{
            font-size:34px;
        }

        .section-title{
            font-size:30px;
        }

        .contact-form{

            padding:30px;
        }

    }

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

    .why-section{

        padding:90px 0;

        background:#f8fafc;
    }

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

    .why-title{

        font-size:42px;
        font-weight:900;

        color:#111827;

        margin-bottom:16px;
    }

    .why-subtitle{

        font-size:16px;

        color:#6b7280;

        max-width:700px;

        margin:auto;

        line-height:1.8;
    }

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

    .why-grid{

        display:grid;

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

        gap:24px;
    }

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

    .why-card{

        background:#fff;

        border-radius:28px;

        padding:34px;

        text-align:center;

        border:1px solid #e5e7eb;

        transition:.35s ease;

        position:relative;

        overflow:hidden;
    }

    .why-card::before{

        content:"";

        position:absolute;

        width:180px;
        height:180px;

        background:
        radial-gradient(
            rgba(249,115,22,.06),
            transparent 70%
        );

        right:-80px;
        top:-80px;
    }

    .why-card:hover{

        transform:
        translateY(-8px);

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

        border-color:
        rgba(249,115,22,.3);
    }

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

    .why-icon{

        width:82px;
        height:82px;

        border-radius:24px;

        background:#fff7ed;

        color:#f97316;

        display:flex;

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

        font-size:34px;

        margin:
        0 auto 26px;
    }

    /* =====================================================
    TEXT
    ===================================================== */

    .why-card-title{

        font-size:22px;
        font-weight:800;

        color:#111827;

        margin-bottom:14px;
    }

    .why-card-desc{

        color:#6b7280;

        line-height:1.8;

        font-size:15px;
    }

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

    @media(max-width:992px){

        .why-grid{

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

    }

    @media(max-width:768px){

        .why-title{
            font-size:32px;
        }

        .why-grid{

            grid-template-columns:1fr;

            gap:18px;
        }

        .why-card{

            padding:28px;
        }

    }

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

    .about-company-section{

        padding:100px 0;

        background:#ffffff;
    }

    /* =====================================================
    WRAPPER
    ===================================================== */

    .about-company-wrapper{

        display:grid;

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

        gap:60px;

        align-items:center;
    }

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

    .about-badge{

        display:inline-flex;

        align-items:center;

        height:42px;

        padding:
        0 18px;

        border-radius:999px;

        background:#fff7ed;

        color:#f97316;

        font-size:13px;
        font-weight:800;

        letter-spacing:.5px;

        margin-bottom:24px;
    }

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

    .about-title{

        font-size:45px;
        font-weight:900;

        line-height:1.2;

        color:#111827;

        margin-bottom:30px;
    }

    /* =====================================================
    DESCRIPTION
    ===================================================== */

    .about-description{

        color:#6b7280;

        line-height:2;

        font-size:16px;

        margin-bottom:24px;
    }

    .about-description strong{

        color:#111827;
    }

    /* =====================================================
    FEATURES
    ===================================================== */

    .about-features{

        display:grid;

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

        gap:18px;

        margin-top:40px;
    }

    .about-feature-item{

        display:flex;

        align-items:center;

        gap:14px;

        background:#f8fafc;

        border-radius:18px;

        padding:18px 20px;

        border:1px solid #e5e7eb;
    }

    .about-feature-item i{

        color:#f97316;

        font-size:18px;
    }

    .about-feature-item span{

        font-weight:700;

        color:#111827;

        font-size:15px;
    }

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

    .about-company-image{

        position:relative;
    }

    .about-company-image img{

        width:100%;

        border-radius:36px;

        object-fit:cover;

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

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

    .about-company-image::before{

        content:"";

        position:absolute;

        width:300px;
        height:300px;

        background:
        radial-gradient(
            rgba(249,115,22,.18),
            transparent 70%
        );

        top:-80px;
        right:-80px;

        z-index:-1;
    }

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

    @media(max-width:992px){

        .about-company-wrapper{

            grid-template-columns:1fr;

            gap:40px;
        }

        .about-title{
            font-size:42px;
        }

    }

    @media(max-width:768px){

        .about-company-section{

            padding:70px 0;
        }

        .about-title{

            font-size:34px;
        }

        .about-features{

            grid-template-columns:1fr;
        }

        .about-description{

            line-height:1.9;
        }

    }

    /* =====================================================
    ORDER CHANNEL SECTION
    ===================================================== */

    .order-channel-section{

        padding:100px 0;

        background:#f8fafc;
    }

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

    .order-channel-grid{

        display:grid;

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

        gap:28px;
    }

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

    .order-channel-card{

        background:#fff;

        border-radius:32px;

        padding:40px;

        border:1px solid #e5e7eb;

        position:relative;

        overflow:hidden;

        transition:.35s ease;

        box-shadow:
        0 10px 30px rgba(0,0,0,.04);
    }

    .order-channel-card:hover{

        transform:
        translateY(-10px);

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

        border-color:
        rgba(249,115,22,.3);
    }

    /* =====================================================
    FEATURED
    ===================================================== */

    .order-channel-card.featured{

        border:
        2px solid #06c755;
    }

    .recommend-badge{

        position:absolute;

        top:24px;
        right:24px;

        background:#06c755;

        color:#fff;

        padding:
        8px 14px;

        border-radius:999px;

        font-size:13px;
        font-weight:800;
    }

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

    .order-channel-icon{

        width:84px;
        height:84px;

        border-radius:26px;

        background:#fff7ed;

        color:#f97316;

        display:flex;

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

        font-size:36px;

        margin-bottom:28px;
    }

    .order-channel-icon.line{

        background:
        rgba(6,199,85,.1);

        color:#06c755;
    }

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

    .order-channel-number{

        font-size:25px;
        font-weight:800;

        color:#f97316;

        margin-bottom:12px;
    }

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

    .order-channel-title{

        font-size:28px;
        font-weight:900;

        color:#111827;

        margin-bottom:18px;
    }

    /* =====================================================
    DESC
    ===================================================== */

    .order-channel-desc{

        color:#6b7280;

        line-height:1.9;

        margin-bottom:26px;
    }

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

    .order-channel-link{

        display:inline-flex;

        align-items:center;

        height:52px;

        padding:
        0 22px;

        border-radius:16px;

        background:#fff7ed;

        color:#f97316;

        font-weight:800;

        text-decoration:none;
    }

    /* =====================================================
    LINE ID
    ===================================================== */

    .line-id{

        display:inline-flex;

        align-items:center;

        justify-content:center;

        height:56px;

        padding:
        0 24px;

        border-radius:18px;

        background:#06c755;

        color:#fff;

        font-size:22px;
        font-weight:900;

        margin-bottom:28px;
    }

    /* =====================================================
    INFO BOX
    ===================================================== */

    .line-info-box{

        background:#f8fafc;

        border-radius:22px;

        padding:24px;

        border:1px solid #e5e7eb;
    }

    .line-info-title{

        font-size:16px;
        font-weight:800;

        margin-bottom:18px;
    }

    .line-info-list{

        margin:0;
        padding-left:18px;
    }

    .line-info-list li{

        margin-bottom:10px;

        color:#6b7280;

        line-height:1.8;

        display: list-item !important;
    }

    /* =====================================================
    ORDER CONFIRM
    ===================================================== */

    .order-confirm-section{

        padding-bottom:100px;
    }

    /* =====================================================
    WRAPPER
    ===================================================== */

    .order-confirm-wrapper{

        background:#111827;

        border-radius:40px;

        padding:70px;

        color:#fff;

        display:grid;

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

        gap:60px;

        position:relative;

        overflow:hidden;
    }

    .order-confirm-wrapper::before{

        content:"";

        position:absolute;

        width:600px;
        height:600px;

        background:
        radial-gradient(
            rgba(249,115,22,.18),
            transparent 70%
        );

        right:-180px;
        top:-220px;
    }

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

    .confirm-badge{

        display:inline-flex;

        align-items:center;

        height:42px;

        padding:
        0 18px;

        border-radius:999px;

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

        margin-bottom:26px;

        font-size:13px;
        font-weight:800;
    }

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

    .confirm-title{

        font-size:48px;
        font-weight:900;
        color:#d1d5db;
        line-height:1.2;

        margin-bottom:24px;
    }

    /* =====================================================
    DESC
    ===================================================== */

    .confirm-desc{

        color:#d1d5db;

        line-height:1.9;
    }

    /* =====================================================
    STEP ITEM
    ===================================================== */

    .confirm-step-item{

        display:flex;

        gap:24px;

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

        border-radius:26px;

        padding:28px;

        margin-bottom:24px;

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

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

    .confirm-step-number{

        width:72px;
        height:72px;

        border-radius:22px;

        background:#fff7ed;

        color:#f97316;

        display:flex;

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

        font-size:24px;
        font-weight:900;

        flex-shrink:0;
    }

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

    .confirm-step-title{

        font-size:24px;
        font-weight:800;
        color:#d1d5db;

        margin-bottom:14px;
    }

    /* =====================================================
    STEP DESC
    ===================================================== */

    .confirm-step-desc{

        color:#d1d5db;

        line-height:1.9;

        margin:0;
    }

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

    @media(max-width:992px){

        .order-channel-grid{

            grid-template-columns:1fr;
        }

        .order-confirm-wrapper{

            grid-template-columns:1fr;

            gap:40px;
        }

    }

    @media(max-width:768px){

        .order-channel-section{

            padding:70px 0;
        }

        .order-channel-card{

            padding:30px;
        }

        .confirm-title{

            font-size:34px;
        }

        .order-confirm-wrapper{

            padding:40px 28px;
        }

        .confirm-step-item{

            flex-direction:column;
        }

    }    

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

:root{

    --primary:#f97316;
    --primary-dark:#ea580c;

    --dark:#111827;

    --gray:#6b7280;

    --bg:#f8fafc;

    --border:#e5e7eb;
}

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

body{

    background:var(--bg);

    font-family:
    Inter,
    sans-serif;

    color:var(--dark);
}

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

.section-space{

    padding:100px 0;
}

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

.hero-section{

    background:
    linear-gradient(
        135deg,
        #111827,
        #1f2937
    );

    border-radius:36px;

    padding:90px;

    color:#fff;

    overflow:hidden;

    position:relative;
}

.hero-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(
        rgba(249,115,22,.18),
        transparent 70%
    );

    right:-200px;
    top:-250px;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    height:42px;

    padding:0 18px;

    border-radius:999px;

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

    margin-bottom:26px;

    font-size:13px;
    font-weight:800;
}

.hero-title{

    font-size:64px;
    font-weight:900;

    line-height:1.1;

    margin-bottom:24px;
}

.hero-title span{

    color:var(--primary);
}

.hero-desc{

    max-width:720px;

    line-height:1.9;

    color:#d1d5db;

    font-size:18px;
}

.btn-main{

    height:58px;

    border:none;

    border-radius:16px;

    background:var(--primary);

    color:#fff;

    font-weight:700;

    padding:0 34px;

    margin-top:32px;

    transition:.3s ease;
}

.btn-main:hover{

    background:var(--primary-dark);
}

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

.section-title{

    font-size:46px;
    font-weight:900;

    margin-bottom:18px;

    text-align:center;
}

.section-subtitle{

    max-width:760px;

    margin:auto auto 70px;

    text-align:center;

    color:var(--gray);

    line-height:1.9;
}

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

.payment-grid{

    display:grid;

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

    gap:28px;
}

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

.payment-card{

    background:#fff;

    border-radius:32px;

    padding:40px;

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

    transition:.35s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);
}

.payment-card:hover{

    transform:
    translateY(-10px);

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

    border-color:
    rgba(249,115,22,.3);
}

.payment-icon{

    width:82px;
    height:82px;

    border-radius:24px;

    background:#fff7ed;

    color:var(--primary);

    display:flex;

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

    font-size:34px;

    margin-bottom:28px;
}

.payment-title{

    font-size:28px;
    font-weight:900;

    margin-bottom:18px;
}

.payment-desc{

    color:var(--gray);

    line-height:1.9;
}

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

.bank-section{

    padding-bottom:100px;
}

.bank-wrapper{

    background:#111827;

    border-radius:40px;

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;
}

.bank-wrapper::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:
    radial-gradient(
        rgba(249,115,22,.18),
        transparent 70%
    );

    right:-180px;
    top:-220px;
}

.bank-badge{

    display:inline-flex;

    align-items:center;

    height:42px;

    padding:0 18px;

    border-radius:999px;

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

    margin-bottom:28px;

    font-size:13px;
    font-weight:800;
}

.bank-title{

    font-size:52px;
    font-weight:900;
	color:#d1d5db;
	
    line-height:1.2;

    margin-bottom:24px;
}

.bank-desc{

    color:#d1d5db;

    line-height:1.9;

    max-width:760px;
}

/* =====================================================
BANK ITEM
===================================================== */

.bank-list{

    margin-top:50px;
}

.bank-item{

    display:flex;

    align-items:center;

    gap:24px;

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

    border-radius:28px;

    padding:28px;

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

.bank-logo{

    width:90px;
    height:90px;

    border-radius:24px;

    background:#fff;

    color:#111827;

    display:flex;

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

    font-weight:900;

    font-size:26px;
}

.bank-name{

    font-size:24px;
    font-weight:800;

    margin-bottom:10px;
}

.bank-number{

    color:#d1d5db;

    font-size:18px;
}

/* =====================================================
TIMELINE
===================================================== */

.timeline{

    position:relative;
}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;
    bottom:0;

    width:4px;

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

    transform:translateX(-50%);
}

.step-item{

    position:relative;

    margin-bottom:80px;
}

.step-card{

    background:#fff;

    border-radius:32px;

    padding:40px;

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

    transition:.35s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);
}

.step-card:hover{

    transform:
    translateY(-10px);

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

    border-color:
    rgba(249,115,22,.3);
}

.step-number{

    width:82px;
    height:82px;

    border-radius:24px;

    background:#fff7ed;

    color:var(--primary);

    display:flex;

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

    font-size:28px;
    font-weight:900;

    margin-bottom:26px;
}

.step-title{

    font-size:28px;
    font-weight:900;

    margin-bottom:18px;
}

.step-desc{

    color:var(--gray);

    line-height:1.9;
}

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

.invoice-grid{

    display:grid;

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

    gap:28px;
}

.invoice-card{

    background:#fff;

    border-radius:32px;

    padding:40px;

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

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);

    transition:.35s ease;
}

.invoice-card:hover{

    transform:
    translateY(-10px);

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

.invoice-icon{

    width:82px;
    height:82px;

    border-radius:24px;

    background:#fff7ed;

    color:var(--primary);

    display:flex;

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

    font-size:34px;

    margin-bottom:28px;
}

.invoice-title{

    font-size:28px;
    font-weight:900;

    margin-bottom:24px;
}

.invoice-list{

    margin:0;
    padding-left:20px;
}

.invoice-list li{

    margin-bottom:14px;

    color:var(--gray);

    line-height:1.8;

    display: list-item !important;
}

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

.accordion-item{

    border:none;

    border-radius:24px !important;

    overflow:hidden;

    margin-bottom:18px;

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

.accordion-button{

    padding:26px;

    font-weight:700;
}

.accordion-button:not(.collapsed){

    background:#fff7ed;

    color:var(--primary);
}

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

@media(max-width:992px){

    .payment-grid{

        grid-template-columns:1fr;
    }

    .invoice-grid{

        grid-template-columns:1fr;
    }

    .timeline::before{

        left:40px;
    }

}

@media(max-width:768px){

    .hero-section{

        padding:50px 32px;
    }

    .hero-title{

        font-size:36px;
    }

    .section-title{

        font-size:32px;
    }

    .bank-title{

        font-size:36px;
    }

    .bank-wrapper{

        padding:40px 28px;
    }

    .timeline::before{

        display:none;
    }

    .step-item{

        margin-bottom:30px;
    }

}    

    /* ========================================
    COUNTER SECTION - TH SOLUTION STYLE
    ======================================== */

    .counter-section{
        padding:100px 0;
        background:#f5f5f5;
        position:relative;
        overflow:hidden;
    }

    /* background decoration */
    .counter-section::before{
        content:'';
        position:absolute;
        top:-120px;
        right:-120px;
        width:300px;
        height:300px;
        background:rgba(255,140,0,0.08);
        border-radius:50%;
    }

    .counter-section::after{
        content:'';
        position:absolute;
        bottom:-150px;
        left:-150px;
        width:350px;
        height:350px;
        background:rgba(80,80,80,0.08);
        border-radius:50%;
    }

    .counter-box{
        background:#ffffff;
        border-radius:20px;
        padding:40px 25px;
        text-align:center;
        position:relative;
        overflow:hidden;
        height:100%;
        border:1px solid #e5e5e5;
        transition:all 0.35s ease;
        box-shadow:0 5px 20px rgba(0,0,0,0.04);
    }

    /* top border accent */
    .counter-box::before{
        content:'';
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:5px;
        background:linear-gradient(90deg,#f15a25,#ff9900);
    }

    .counter-box:hover{
        transform:translateY(-8px);
        box-shadow:0 15px 40px rgba(0,0,0,0.08);
        border-color:#ffb067;
    }

    .counter-icon{
        width:85px;
        height:85px;
        margin:auto;
        border-radius:50%;
        background:linear-gradient(135deg,#ff7a00,#ff9900);
        display:flex;
        align-items:center;
        justify-content:center;
        margin-bottom:25px;
        position:relative;
    }

    .counter-icon::after{
        content:'';
        position:absolute;
        inset:8px;
        border-radius:50%;
        border:1px dashed rgba(255,255,255,0.4);
    }

    .counter-icon i{
        font-size:34px;
        color:#ffffff;
        position:relative;
        z-index:2;
    }

    .counter-box h2{
        font-size:54px;
        font-weight:800;
        color:#333333;
        margin-bottom:10px;
        line-height:1;
    }

    .counter-box h2 span{
        color:#ff7a00;
    }

    .counter-box p{
        color:#666666;
        font-size:16px;
        margin:0;
        font-weight:500;
        letter-spacing:0.3px;
    }

    /* hover effect */
    .counter-box:hover h2 span{
        color:#ff5500;
    }

    /* responsive */
    @media(max-width:991px){

        .counter-section{
            padding:80px 0;
        }

        .counter-box{
            padding:35px 20px;
        }

    }

    @media(max-width:768px){

        .counter-box h2{
            font-size:42px;
        }

        .counter-icon{
            width:75px;
            height:75px;
        }

        .counter-icon i{
            font-size:28px;
        }

    }
    .why-thsolution{
        background:#f8fafc;
        padding:100px 0;
        overflow:hidden;
    }

    .section-header .sub-title{
        color:#ef4444;
        font-size:14px;
        font-weight:600;
        letter-spacing:2px;
        display:block;
        margin-bottom:10px;
    }

    .section-header h1,
    .section-header h2{
        font-size:42px;
        font-weight:700;
        color:#0f172a;
        margin-bottom:20px;
    }

    .section-header p{
        max-width:750px;
        margin:auto;
        color:#64748b;
        line-height:1.8;
    }

    .why-card{
        background:#fff;
        border-radius:20px;
        padding:35px 25px;
        text-align:center;
        transition:0.3s;
        height:100%;
        box-shadow:0 5px 25px rgba(0,0,0,0.05);
    }

    .why-card:hover{
        transform:translateY(-10px);
        box-shadow:0 10px 40px rgba(0,0,0,0.1);
    }

    .why-card .icon{
        width:80px;
        height:80px;
        margin:auto;
        background:#eff6ff;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        margin-bottom:20px;
    }

    .why-card .icon i{
        font-size:32px;
        color:#2563eb;
    }

    .why-card h3{
        font-size:22px;
        font-weight:600;
        margin-bottom:15px;
        color:#0f172a;
    }

    .why-card p{
        color:#64748b;
        line-height:1.8;
    }

    .why-image img{
        border-radius:25px;
        width:100%;
        object-fit:cover;
        box-shadow:0 10px 40px rgba(0,0,0,0.1);
    }

    .why-content .mini-title{
        color:#ef4444;
        font-weight:600;
        letter-spacing:2px;
        display:block;
        margin-bottom:10px;
    }

    .why-content h2{
        font-size:40px;
        font-weight:700;
        margin-bottom:20px;
        color:#0f172a;
        line-height:1.4;
    }

    .why-content p{
        color:#64748b;
        line-height:1.9;
        margin-bottom:25px;
    }

    .why-list{
        padding:0;
        margin:0 0 30px;
        list-style:none;
    }

    .why-list li{
        margin-bottom:15px;
        color:#334155;
        font-weight:500;
    }

    .why-list li i{
        color:#10b981;
        margin-right:10px;
    }

    .btn-main{
        display:inline-block;
        background:#f17b25;
        color:#fff;
        padding:14px 35px;
        border-radius:12px;
        text-decoration:none;
        transition:0.3s;
        font-weight:600;
    }

    .btn-main:hover{
        background:#f15a25;
        color:#fff;
    }

    .process-section{
        margin-top:80px;
    }

    .process-wrapper{
        display:flex;
        justify-content:space-between;
        gap:20px;
        flex-wrap:wrap;
    }

    .process-item{
        flex:1;
        min-width:180px;
        background:#fff;
        border-radius:20px;
        padding:30px 20px;
        text-align:center;
        position:relative;
        box-shadow:0 5px 25px rgba(0,0,0,0.05);
    }

    .process-item .number{
        width:60px;
        height:60px;
        margin:auto;
        background:#f15a25;
        color:#fff;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:24px;
        font-weight:700;
        margin-bottom:20px;
    }

    .process-item h4{
        font-size:18px;
        font-weight:600;
        color:#0f172a;
    }

    @media(max-width:991px){

        .section-header h1,
        .section-header h2{
            font-size:32px;
        }

        .why-content h2{
            font-size:30px;
        }

    }

    @media(max-width:768px){

        .why-thsolution{
            padding:70px 0;
        }

        .process-wrapper{
            flex-direction:column;
        }

    }

.hero-th{
    background:
    linear-gradient(135deg,#2d2d2d 0%,#3c3c3c 100%);
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.hero-th::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size:40px 40px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    background:rgba(255,122,0,0.12);
    color:#ff9a3c;
    padding:10px 18px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:25px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:64px;
    font-weight:800;
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    color:#ddd;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-search{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:30px;
    max-width:650px;
}

.hero-search form{
    display:flex;
}

.hero-search input{
    width:100%;
    height:65px;
    border:none;
    padding:0 25px;
    font-size:16px;
}

.hero-search button{
    width:70px;
    border:none;
    background:#ff7a00;
    color:#fff;
    font-size:20px;
}

.hero-btn-group{
    display:flex;
    gap:15px;
    margin-bottom:50px;
}

.btn-orange{
    background:#ff7a00;
    color:#fff;
    padding:16px 35px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
}

.btn-outline{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    padding:16px 35px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
}

.hero-counter{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.hero-counter .item h3{
    color:#ff7a00;
    font-size:36px;
    font-weight:800;
    margin-bottom:5px;
}

.hero-counter .item span{
    color:#ccc;
}

.hero-image{
    position:relative;
    text-align:center;
}

.hero-image img{
    max-width:100%;
    position:relative;
    z-index:2;
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:15px 20px;
    border-radius:14px;
    box-shadow:0 10px 40px rgba(0,0,0,0.15);
    font-weight:600;
    color:#333;
    z-index:3;
}

.floating-card i{
    color:#ff7a00;
    margin-right:10px;
}

.card-1{
    top:10%;
    left:0;
}

.card-2{
    top:45%;
    right:0;
}

.card-3{
    bottom:10%;
    left:10%;
}
/* =========================================
   HERO IMAGE LAYOUT
========================================= */

.hero-image-wrapper{

    position:relative;

    min-height:620px;

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

/* MAIN IMAGE */
.hero-main-image{

    position:relative;

    width:78%;

    z-index:2;
}

.hero-main-image img{

    width:100%;

    border-radius:30px;

    object-fit:cover;

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

    border:4px solid rgba(255,255,255,0.08);
}

/* SMALL IMAGES */
.hero-small-image{

    position:absolute;

    z-index:3;

    overflow:hidden;

    border-radius:24px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);

    border:4px solid rgba(255,255,255,0.08);

    transition:0.4s ease;
}

.hero-small-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.4s ease;
}

.hero-small-image:hover{

    transform:translateY(-8px) scale(1.03);
}

/* TOP IMAGE */
.image-top{

    width:240px;
    height:180px;

    top:20px;
    right:0;
}

/* BOTTOM IMAGE */
.image-bottom{

    width:260px;
    height:190px;

    bottom:20px;
    left:0;
}

/* FLOATING CARDS */
.floating-card{

    position:absolute;

    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(10px);

    padding:14px 22px;

    border-radius:16px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

    font-weight:600;

    color:#333;

    z-index:5;

    display:flex;
    align-items:center;

    gap:10px;

    transition:0.3s ease;
}

.floating-card:hover{

    transform:translateY(-5px);
}

.floating-card i{

    color:#ff7a00;

    font-size:18px;
}

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

.card-1{

    top:70px;
    left:-20px;

    animation:floatCard1 5s ease-in-out infinite;
}

.card-2{

    top:220px;
    right:-10px;

    animation:floatCard2 6s ease-in-out infinite;
}

.card-3{

    bottom:50px;
    left:10px;

    animation:floatCard3 7s ease-in-out infinite;
}

.card-4{

    top:-10px;
    right:120px;

    animation:floatCard4 5.5s ease-in-out infinite;
}

.card-5{

    bottom:140px;
    right:40px;

    animation:floatCard5 6.5s ease-in-out infinite;
}

/* FLOAT ANIMATION */
.image-top{
    animation:floatTop 5s ease-in-out infinite;
}

.image-bottom{
    animation:floatBottom 6s ease-in-out infinite;
}

@keyframes floatTop{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes floatBottom{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* MOBILE */
@media(max-width:991px){

    .hero-image-wrapper{

        min-height:auto;

        margin-top:60px;
    }

    .hero-main-image{

        width:100%;
    }

    .image-top{

        width:180px;
        height:140px;

        top:-20px;
        right:-10px;
    }

    .image-bottom{

        width:180px;
        height:140px;

        left:-10px;
        bottom:-20px;
    }

    .floating-card{

        transform:scale(0.9);
    }

    .card-1{
        top:70px;
        left:10px;
    }

    .card-2{
        right:0;
        bottom:110px;
    }

    .card-3{
        right:90px;
        bottom:10px;
    }

}

@media(max-width:768px){

    .hero-small-image{
        display:none;
    }

    .floating-card{
        display:none;
    }

}

/* =========================================
   AUTO SIZE FLOATING PRODUCT CARD
========================================= */

.floating-product-card{

    position:absolute;

    z-index:10;

    display:inline-flex;
    align-items:center;
    gap:12px;

    width:auto;
    max-width:260px;

    background:
    rgba(255,255,255,0.95);

    backdrop-filter:blur(10px);

    border-radius:18px;

    padding:12px 16px;

    text-decoration:none;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

    border:
    1px solid rgba(255,255,255,0.35);

    overflow:hidden;

    transition:0.35s ease;

    white-space:nowrap;
}

/* TOP LINE */
.floating-product-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:
    linear-gradient(90deg,#ff7a00,#ffb347);
}

/* HOVER */
.floating-product-card:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 16px 35px rgba(0,0,0,0.18);

    text-decoration:none;
}

/* ICON */
.fp-icon{

    width:48px;
    height:48px;

    min-width:48px;

    border-radius:14px;

    background:
    linear-gradient(135deg,#ff7a00,#ff9d2f);

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

    position:relative;
}

.fp-icon::before{

    content:'';

    position:absolute;

    inset:5px;

    border-radius:10px;

    border:1px dashed rgba(255,255,255,0.3);
}

.fp-icon i{

    color:#fff;

    font-size:18px;

    position:relative;

    z-index:2;
}

/* CONTENT */
.fp-content{

    flex:1;
}

.fp-label{

    display:block;

    font-size:10px;

    color:#ff7a00;

    font-weight:700;

    letter-spacing:0.5px;

    margin-bottom:2px;

    text-transform:uppercase;

    line-height:1.2;
}

.fp-content h4{

    font-size:15px;

    font-weight:700;

    color:#2d2d2d;

    margin-bottom:1px;

    line-height:1.2;
}

.fp-content p{

    margin:0;

    color:#777;

    font-size:11px;

    line-height:1.2;
}

/* ARROW */
.fp-arrow{

    width:30px;
    height:30px;

    min-width:30px;

    border-radius:50%;

    background:#f3f3f3;

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

    transition:0.3s ease;
}

.fp-arrow i{

    color:#ff7a00;

    font-size:12px;
}

.floating-product-card:hover .fp-arrow{

    background:#ff7a00;
}

.floating-product-card:hover .fp-arrow i{

    color:#fff;
}

/* POSITION */
.card-1{

    top:90px;
    left:-10px;
}

.card-2{

    top:250px;
    right:-10px;
}

.card-3{

    bottom:40px;
    left:30px;
}

/* MOBILE */
@media(max-width:768px){

    .floating-product-card{
        display:none;
    }

}

/* =========================================
   HERO MAIN SLIDER
========================================= */

.hero-main-slider{

    position:relative;

    width:78%;

    height:560px;

    border-radius:32px;

    overflow:hidden;

    z-index:2;

    box-shadow:
    0 25px 70px rgba(0,0,0,0.3);

    border:
    4px solid rgba(255,255,255,0.08);
}

/* SLIDE */
.hero-slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:
    opacity 1s ease,
    transform 1.2s ease;

    transform:scale(1.08);
}

.hero-slide.active{

    opacity:1;

    visibility:visible;

    transform:scale(1);
}

/* IMAGE */
.hero-slide img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* DARK OVERLAY */
.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05));

    z-index:2;
}

/* DOTS */
.hero-slider-dots{

    position:absolute;

    left:50%;
    bottom:25px;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

    z-index:3;
}

.hero-slider-dots .dot{

    width:12px;
    height:12px;

    border-radius:50%;

    background:
    rgba(255,255,255,0.4);

    cursor:pointer;

    transition:0.3s;
}

.hero-slider-dots .dot.active{

    width:32px;

    border-radius:20px;

    background:#ff7a00;
}

/* RESPONSIVE */
@media(max-width:991px){

    .hero-main-slider{

        width:100%;

        height:480px;
    }

}

@media(max-width:768px){

    .hero-main-slider{

        height:360px;

        border-radius:24px;
    }

}    

/* =========================================
   FEATURED INDUSTRIAL PRODUCTS
========================================= */


/* VIEW ALL */
.view-all-btn{

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

    background:#fff;

    padding:14px 24px;

    border-radius:14px;

    color:#2d2d2d;

    text-decoration:none;

    font-weight:600;

    border:1px solid #eee;

    transition:0.3s ease;
}

.view-all-btn:hover{

    background:#ff7a00;

    color:#fff;

    text-decoration:none;
}

/* PRODUCT CARD */
.industrial-product-card{

    display:block;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    text-decoration:none;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.05);

    transition:0.35s ease;

    height:100%;
}

.industrial-product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.12);

    text-decoration:none;
}

/* IMAGE */
.product-image{

    position:relative;

    height:250px;

    overflow:hidden;

    background:#fff;
}

.product-image img{

    width:100%;
    height:100%;

    object-fit:contain;

    transition:0.4s ease;

    padding:25px;
}

.industrial-product-card:hover .product-image img{

    transform:scale(1.06);
}

/* BADGE */
.product-badge{

    position:absolute;

    top:18px;
    left:18px;

    background:#ff7a00;

    color:#fff;

    padding:8px 14px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

    letter-spacing:0.5px;
}

/* CONTENT */
.product-content{

    padding:28px;
}

.product-category{

    display:inline-block;

    color:#ff7a00;

    font-size:13px;

    font-weight:700;

    letter-spacing:0.5px;

    margin-bottom:12px;

    text-transform:uppercase;
}

.product-content h3{

    font-size:24px;

    font-weight:700;

    color:#2d2d2d;

    margin-bottom:10px;
}

.product-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:25px;
}

/* FOOTER */
.product-footer{

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* STOCK */
.product-stock{

    display:flex;
    align-items:center;

    gap:8px;

    color:#555;

    font-size:14px;

    font-weight:500;
}

.product-stock span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#22c55e;
}

/* ARROW */
.product-arrow{

    width:44px;
    height:44px;

    border-radius:50%;

    background:#f5f5f5;

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

    transition:0.3s ease;
}

.product-arrow i{

    color:#ff7a00;
}

.industrial-product-card:hover .product-arrow{

    background:#ff7a00;
}

.industrial-product-card:hover .product-arrow i{

    color:#fff;
}

/* RESPONSIVE */
@media(max-width:991px){

    .section-header{

        flex-direction:column;
        align-items:flex-start;
    }

}

@media(max-width:768px){

    .featured-industrial-products{

        padding:70px 0;
    }

    .section-header h2{

        font-size:32px;
    }

    .product-image{

        height:220px;
    }

    .product-content{

        padding:22px;
    }

    .product-content h3{

        font-size:20px;
    }

}

    /* INDUSTRIAL SOLUTION SECTION */

    .industrial-solution-section{

        padding:100px 0;

        background:
        linear-gradient(180deg,#ffffff 0%,#f7f7f7 100%);
    }

    /* HEADER */
    .solution-header{

        max-width:850px;

        margin:auto auto 70px;
    }

    .solution-badge{

        display:inline-block;

        background:
        rgba(255,122,0,0.1);

        color:#ff7a00;

        padding:10px 18px;

        border-radius:50px;

        font-size:13px;

        font-weight:700;

        letter-spacing:1px;

        margin-bottom:20px;
    }

    .solution-header h2{

        font-size:48px;

        font-weight:800;

        color:#2d2d2d;

        margin-bottom:20px;
    }

    .solution-header p{

        color:#666;

        line-height:1.9;

        font-size:17px;
    }

    /* CARD */
    .solution-card{

        position:relative;

        display:block;

        border-radius:28px;

        overflow:hidden;

        height:420px;

        text-decoration:none;

        background:#222;

        box-shadow:
        0 15px 45px rgba(0,0,0,0.08);

        transition:0.4s ease;
    }

    .large-card{

        height:500px;
    }

    .solution-card:hover{

        transform:translateY(-10px);

        box-shadow:
        0 25px 55px rgba(0,0,0,0.18);

        text-decoration:none;
    }

    /* IMAGE */
    .solution-image{

        position:absolute;

        inset:0;
    }

    .solution-image img{

        width:100%;
        height:100%;

        object-fit:cover;

        transition:0.5s ease;
    }

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

        transform:scale(1.06);
    }

    /* OVERLAY */
    .solution-overlay{

        position:absolute;

        inset:0;

        background:
        linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.15));
    }

    /* CONTENT */
    .solution-content{

        position:absolute;

        left:0;
        bottom:0;

        width:100%;

        padding:35px;

        z-index:3;
    }

    /* ICON */
    .solution-icon{

        width:70px;
        height:70px;

        border-radius:20px;

        background:
        linear-gradient(135deg,#ff7a00,#ffb347);

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

        margin-bottom:22px;

        box-shadow:
        0 10px 30px rgba(255,122,0,0.3);
    }

    .solution-icon i{

        color:#fff;

        font-size:28px;
    }

    /* CATEGORY */
    .solution-category{

        display:inline-block;

        color:#ffb347;

        font-size:13px;

        font-weight:700;

        letter-spacing:1px;

        margin-bottom:12px;

        text-transform:uppercase;
    }

    /* TITLE */
    .solution-content h3{

        color:#fff;

        font-size:32px;

        font-weight:800;

        margin-bottom:15px;
    }

    /* TEXT */
    .solution-content p{

        color:rgba(255,255,255,0.82);

        line-height:1.8;

        margin-bottom:28px;
    }

    /* ARROW */
    .solution-arrow{

        width:50px;
        height:50px;

        border-radius:50%;

        background:
        rgba(255,255,255,0.12);

        backdrop-filter:blur(10px);

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

        transition:0.3s ease;
    }

    .solution-arrow i{

        color:#fff;

        font-size:16px;
    }

    .solution-card:hover .solution-arrow{

        background:#ff7a00;
    }

    /* RESPONSIVE */
    @media(max-width:991px){

        .solution-header h2{

            font-size:38px;
        }

        .solution-card{

            height:380px;
        }

        .large-card{

            height:420px;
        }

    }

    @media(max-width:768px){

        .industrial-solution-section{

            padding:70px 0;
        }

        .solution-header h2{

            font-size:32px;
        }

        .solution-content{

            padding:25px;
        }

        .solution-content h3{

            font-size:24px;
        }

        .solution-icon{

            width:60px;
            height:60px;
        }

    }