﻿/* =========================================================
   OMNIFAST CATEGORY SECTION
   Navy Blue + Orange Theme
========================================================= */

.omnifast-explore {
    width: 100%;
    padding: 12px 0 35px;
    background: #ffffff;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.omni-category-wrapper {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e7ee;
    box-shadow: 0 5px 20px rgba(10, 42, 92, 0.08);
}


/* =========================================================
   HEADER
========================================================= */

.omni-category-header {
    position: relative;
    height: 58px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: linear-gradient( 100deg, #f86e02 0%, #ff8a2a 55%, #f86e02 100% );
    overflow: hidden;
}


    /* Heading */

    .omni-category-header h2 {
        position: relative;
        z-index: 5;
        margin: 0;
        color: #0a2a5c;
        font-size: 21px;
        font-weight: 800;
        line-height: 1;
    }

        .omni-category-header h2 span {
            color: #ffffff;
        }


/* =========================================================
   HEADER DECORATIVE SHAPES
========================================================= */

.omni-header-decoration {
    position: absolute;
    pointer-events: none;
}


/* Center Shape */

.omni-shape-one {
    width: 150px;
    height: 75px;
    right: 26%;
    top: -9px;
    background: rgba(255, 255, 255, 0.18);
    clip-path: polygon( 17% 0, 83% 0, 100% 50%, 83% 100%, 17% 100%, 0 50% );
}


/* Small Decorative Shape */

.omni-shape-two {
    width: 75px;
    height: 38px;
    right: 19%;
    top: 12px;
    background: rgba(255, 255, 255, 0.30);
    clip-path: polygon( 15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50% );
}


/* Star */

.omni-header-star {
    position: absolute;
    right: 20%;
    top: 7px;
    z-index: 2;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    transform: rotate(8deg);
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.omni-view-all {
    position: absolute;
    z-index: 10;
    right: 16px;
    top: 50%;
    width: 40px;
    height: 28px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a2a5c;
    color: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    transition: background .3s ease, transform .3s ease;
}

    .omni-view-all i {
        font-size: 17px;
        line-height: 1;
    }

    .omni-view-all:hover {
        background: #ffffff;
        color: #0a2a5c;
        transform: translateY(-50%) scale(1.08);
        text-decoration: none;
    }


/* =========================================================
   CATEGORY LIST
========================================================= */

.omni-category-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 8px 10px 12px;
    background: #ffffff;
}


/* =========================================================
   CATEGORY ITEM
========================================================= */

.omni-category-item {
    min-width: 0;
    display: block;
    padding: 0;
    text-decoration: none;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8ebef;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .omni-category-item:hover {
        text-decoration: none;
        border-color: #f86e02;
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(10, 42, 92, 0.15);
    }


/* =========================================================
   CATEGORY IMAGE
========================================================= */

.omni-category-image {
    position: relative;
    width: 100%;
    height: 185px;
    overflow: hidden;
    background: #f3f6fa;
    border-radius: 7px;
}

    .omni-category-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease;
    }


/* Image Hover */

.omni-category-item:hover
.omni-category-image img {
    transform: scale(1.07);
    filter: brightness(.94);
}


/* =========================================================
   IMAGE SHINE EFFECT
========================================================= */

.omni-category-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255,255,255,.35), transparent );
    transform: skewX(-20deg);
    transition: left .7s ease;
    pointer-events: none;
}

.omni-category-item:hover
.omni-category-image::after {
    left: 140%;
}


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.omni-category-info {
    padding: 10px 10px 10px;
}

    .omni-category-info h3 {
        margin: 0 0 3px;
        color: #0a2a5c;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color .3s ease;
    }

    .omni-category-info p {
        margin: 0;
        color: #111111;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


/* Hover text */

.omni-category-item:hover
.omni-category-info h3 {
    color: #f86e02;
}


/* =========================================================
   TOP BORDER ACCENT
========================================================= */

.omni-category-item::before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #f86e02;
    border-radius: 5px;
    transition: width .35s ease;
}

.omni-category-item:hover::before {
    width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-category-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .omni-category-image {
        height: 180px;
    }

    .omni-category-header h2 {
        font-size: 19px;
    }

    .omni-shape-one {
        right: 35%;
    }

    .omni-header-star {
        right: 28%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omnifast-explore {
        padding: 8px 0 25px;
    }

    .omni-category-wrapper {
        border-radius: 12px;
    }

    .omni-category-header {
        height: 52px;
        padding: 0 14px;
    }

        .omni-category-header h2 {
            font-size: 17px;
        }

    .omni-view-all {
        right: 11px;
        width: 35px;
        height: 25px;
    }

        .omni-view-all i {
            font-size: 14px;
        }

    .omni-category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        padding: 7px;
    }

    .omni-category-image {
        height: 145px;
    }

    .omni-category-info {
        padding: 7px 2px 5px;
    }

        .omni-category-info h3 {
            font-size: 13px;
        }

        .omni-category-info p {
            font-size: 11px;
        }

    .omni-shape-one {
        right: 25%;
        width: 100px;
    }

    .omni-shape-two,
    .omni-header-star {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .omni-category-image {
        height: 125px;
    }

    .omni-category-info h3 {
        font-size: 12px;
    }

    .omni-category-info p {
        font-size: 10px;
    }
}















* =========================================================
OMNIFAST SHOP BY CATEGORY
NAVY BLUE + ORANGE
========================================================= */

.omnifast-shop-category {
    width: 100%;
    padding: 15px 0 40px;
    background: #ffffff;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.omni-shop-category-wrapper {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e4e8ee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(10, 42, 92, 0.07);
}


/* =========================================================
   HEADER
========================================================= */

.omni-shop-category-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 22px;
    background: linear-gradient( 100deg, #0a2a5c 0%, #0d3b78 60%, #0a2a5c 100% );
    overflow: hidden;
}


    /* Orange decorative line */

    .omni-shop-category-header::after {
        content: "";
        position: absolute;
        right: -30px;
        top: -50px;
        width: 180px;
        height: 180px;
        background: rgba(248, 110, 2, 0.25);
        border-radius: 50%;
    }


/* =========================================================
   SECTION LABEL
========================================================= */

.omni-section-label {
    display: inline-block;
    margin-bottom: 5px;
    color: #f86e02;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* =========================================================
   HEADING
========================================================= */

.omni-shop-category-header h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

    .omni-shop-category-header h2 span {
        color: #f86e02;
    }


.omni-shop-category-header p {
    position: relative;
    z-index: 2;
    margin: 5px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}


/* =========================================================
   VIEW ALL
========================================================= */

.omni-category-view-all {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f86e02;
    color: #ffffff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

    .omni-category-view-all i {
        font-size: 12px;
    }

    .omni-category-view-all:hover {
        background: #ffffff;
        color: #0a2a5c;
        transform: translateX(3px);
        text-decoration: none;
    }


/* =========================================================
   CATEGORY GRID
========================================================= */

.omni-shop-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    padding: 15px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.omni-shop-cat-card {
    position: relative;
    display: block;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e8ebef;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}


    .omni-shop-cat-card:hover {
        transform: translateY(-5px);
        border-color: #f86e02;
        box-shadow: 0 10px 25px rgba(10, 42, 92, 0.12);
        text-decoration: none;
    }


/* =========================================================
   IMAGE
========================================================= */

.omni-shop-cat-image {
    position: relative;
    width: 100%;
    height: 125px;
    overflow: hidden;
    background: #f5f7fa;
}


    .omni-shop-cat-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .5s ease;
    }


.omni-shop-cat-card:hover
.omni-shop-cat-image img {
    transform: scale(1.08);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.omni-shop-cat-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    background: linear-gradient( transparent, rgba(10,42,92,.25) );
    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.omni-shop-cat-content {
    padding: 9px 9px 10px;
}


    .omni-shop-cat-content h3 {
        margin: 0 0 3px;
        color: #0a2a5c;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color .3s ease;
    }


    .omni-shop-cat-content span {
        display: block;
        color: #777f89;
        font-size: 11px;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


.omni-shop-cat-card:hover
.omni-shop-cat-content h3 {
    color: #f86e02;
}


/* =========================================================
   ORANGE TOP ACCENT
========================================================= */

.omni-shop-cat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #f86e02;
    transition: width .3s ease;
    z-index: 5;
}


.omni-shop-cat-card:hover::before {
    width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .omni-shop-category-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}


@media (max-width: 991px) {

    .omni-shop-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .omni-shop-cat-image {
        height: 135px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omnifast-shop-category {
        padding: 10px 0 25px;
    }

    .omni-shop-category-wrapper {
        border-radius: 12px;
    }

    .omni-shop-category-header {
        padding: 16px 14px;
        align-items: center;
    }

        .omni-shop-category-header h2 {
            font-size: 19px;
        }

        .omni-shop-category-header p {
            font-size: 11px;
        }

    .omni-category-view-all {
        padding: 8px 11px;
        font-size: 11px;
    }

    .omni-shop-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
    }

    .omni-shop-cat-image {
        height: 140px;
    }

    .omni-shop-cat-content {
        padding: 8px;
    }

        .omni-shop-cat-content h3 {
            font-size: 13px;
        }

        .omni-shop-cat-content span {
            font-size: 10px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .omni-shop-category-header {
        padding: 14px 12px;
    }

        .omni-shop-category-header h2 {
            font-size: 17px;
        }

        .omni-shop-category-header p {
            display: none;
        }

    .omni-category-view-all {
        padding: 7px 9px;
        font-size: 10px;
    }

    .omni-shop-cat-image {
        height: 120px;
    }

    .omni-shop-cat-content h3 {
        font-size: 12px;
    }
}

















/* =========================================================
   OMNIFAST AGRICULTURE SECTION
   NAVY BLUE + ORANGE
========================================================= */
.omnifast-agriculture {
    width: 100%;
    padding: 15px 0 40px;
    background: #ffffff;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.omni-agriculture-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f7fbf7;
    border: 1px solid #dce9df;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(10, 42, 92, 0.08);
}


/* =========================================================
   HEADER
========================================================= */

.omni-agriculture-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 15px 28px;
    background: linear-gradient( 100deg, #0a2a5c 0%, #0d3b78 65%, #0a2a5c 100% );
    overflow: hidden;
}


    /* Decorative Circle */

    .omni-agriculture-header::after {
        content: "";
        position: absolute;
        right: -50px;
        top: -80px;
        width: 230px;
        height: 230px;
        border-radius: 50%;
        background: rgba(248, 110, 2, 0.22);
    }


/* =========================================================
   HEADING
========================================================= */

.omni-agriculture-heading {
    position: relative;
    z-index: 2;
}

.omni-agri-label {
    display: inline-block;
    margin-bottom: 5px;
    color: #f86e02;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.omni-agriculture-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

    .omni-agriculture-heading h2 span {
        color: #f86e02;
    }

.omni-agriculture-heading p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}


/* =========================================================
   BUTTON
========================================================= */

.omni-agri-btn {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    background: #f86e02;
    color: #ffffff;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
}

    .omni-agri-btn i {
        font-size: 12px;
    }

    .omni-agri-btn:hover {
        background: #ffffff;
        color: #0a2a5c;
        transform: translateX(4px);
        text-decoration: none;
    }


/* =========================================================
   AGRICULTURE GRID
========================================================= */

.omni-agriculture-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}


/* =========================================================
   AGRICULTURE CARD
========================================================= */

.omni-agri-card {
    position: relative;
    display: block;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e2e9e3;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .omni-agri-card:hover {
        transform: translateY(-5px);
        border-color: #f86e02;
        box-shadow: 0 10px 22px rgba(10, 42, 92, 0.12);
        text-decoration: none;
    }


/* =========================================================
   IMAGE
========================================================= */

.omni-agri-image {
    position: relative;
    width: 100%;
    height: 135px;
    overflow: hidden;
    background: #eef5ef;
}

    .omni-agri-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .5s ease, filter .4s ease;
    }


/* Image Hover */

.omni-agri-card:hover
.omni-agri-image img {
    transform: scale(1.08);
    filter: brightness(.95);
}


/* Image Overlay */

.omni-agri-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    background: linear-gradient( transparent, rgba(10, 42, 92, .25) );
    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.omni-agri-content {
    padding: 10px 10px 12px;
}

    .omni-agri-content h3 {
        margin: 0 0 3px;
        color: #0a2a5c;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color .3s ease;
    }

    .omni-agri-content p {
        margin: 0;
        color: #727b84;
        font-size: 11px;
        font-weight: 500;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.omni-agri-card:hover
.omni-agri-content h3 {
    color: #f86e02;
}


/* =========================================================
   ORANGE TOP ACCENT
========================================================= */

.omni-agri-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background: #f86e02;
    transition: width .3s ease;
    z-index: 5;
}

.omni-agri-card:hover::before {
    width: 100%;
}


/* =========================================================
   BUY / SELL CARD
========================================================= */

.omni-agri-market {
    background: linear-gradient( 135deg, #fff8f2, #ffffff );
    border-color: #f6d7c0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-agriculture-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .omni-agri-image {
        height: 140px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omnifast-agriculture {
        padding: 10px 0 25px;
    }

    .omni-agriculture-header {
        padding: 20px 15px;
        gap: 15px;
        align-items: flex-end;
    }

    .omni-agriculture-heading h2 {
        font-size: 21px;
    }

    .omni-agriculture-heading p {
        font-size: 11px;
    }

    .omni-agri-btn {
        padding: 9px 11px;
        font-size: 11px;
    }

    .omni-agriculture-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
    }

    .omni-agri-image {
        height: 140px;
    }

    .omni-agri-content {
        padding: 8px;
    }

        .omni-agri-content h3 {
            font-size: 13px;
        }

        .omni-agri-content p {
            font-size: 10px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .omni-agriculture-header {
        display: block;
        padding: 18px 13px;
    }

    .omni-agriculture-heading h2 {
        font-size: 19px;
    }

    .omni-agriculture-heading p {
        margin-bottom: 12px;
    }

    .omni-agri-btn {
        display: inline-flex;
    }

    .omni-agriculture-grid {
        padding: 8px;
    }

    .omni-agri-image {
        height: 120px;
    }

    .omni-agri-content h3 {
        font-size: 12px;
    }
}





/* =========================================================
   OMNIFAST HEALTHCARE SECTION
   NAVY BLUE + ORANGE
========================================================= */

.omnifast-healthcare {
    width: 100%;
    padding: 15px 0 40px;
    background: #ffffff;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.omni-healthcare-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(10, 42, 92, 0.08);
}


/* =========================================================
   HEADER
========================================================= */

.omni-healthcare-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 15px 28px;
    background: linear-gradient( 100deg, #0a2a5c 0%, #0d3b78 65%, #0a2a5c 100% );
    overflow: hidden;
}


    /* Decorative Orange Shape */

    .omni-healthcare-header::after {
        content: "";
        position: absolute;
        right: -55px;
        top: -85px;
        width: 230px;
        height: 230px;
        border-radius: 50%;
        background: rgba(248, 110, 2, 0.22);
    }


/* =========================================================
   HEADING
========================================================= */

.omni-healthcare-heading {
    position: relative;
    z-index: 2;
}

.omni-healthcare-label {
    display: inline-block;
    margin-bottom: 5px;
    color: #f86e02;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.omni-healthcare-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

    .omni-healthcare-heading h2 span {
        color: #f86e02;
    }

.omni-healthcare-heading p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.omni-healthcare-btn {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    background: #f86e02;
    color: #ffffff;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

    .omni-healthcare-btn i {
        font-size: 12px;
    }

    .omni-healthcare-btn:hover {
        background: #ffffff;
        color: #0a2a5c;
        transform: translateX(4px);
        text-decoration: none;
    }


/* =========================================================
   HEALTHCARE GRID
========================================================= */

.omni-healthcare-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}


/* =========================================================
   HEALTHCARE CARD
========================================================= */

.omni-healthcare-card {
    position: relative;
    display: block;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e1e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .omni-healthcare-card:hover {
        transform: translateY(-5px);
        border-color: #f86e02;
        box-shadow: 0 10px 22px rgba(10, 42, 92, 0.13);
        text-decoration: none;
    }


/* =========================================================
   IMAGE
========================================================= */

.omni-healthcare-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #edf4fa;
}

    .omni-healthcare-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.5s ease, filter 0.4s ease;
    }


/* Image Hover */

.omni-healthcare-card:hover
.omni-healthcare-image img {
    transform: scale(1.08);
    filter: brightness(0.95);
}


/* Image Overlay */

.omni-healthcare-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    background: linear-gradient( transparent, rgba(10, 42, 92, 0.28) );
    pointer-events: none;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.omni-healthcare-content {
    padding: 10px 10px 12px;
}

    .omni-healthcare-content h3 {
        margin: 0 0 3px;
        color: #0a2a5c;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color 0.3s ease;
    }

    .omni-healthcare-content p {
        margin: 0;
        color: #727b84;
        font-size: 11px;
        font-weight: 500;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.omni-healthcare-card:hover
.omni-healthcare-content h3 {
    color: #f86e02;
}


/* =========================================================
   TOP ORANGE ACCENT
========================================================= */

.omni-healthcare-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background: #f86e02;
    transition: width 0.3s ease;
    z-index: 5;
}

.omni-healthcare-card:hover::before {
    width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-healthcare-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .omni-healthcare-image {
        height: 145px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omnifast-healthcare {
        padding: 10px 0 25px;
    }

    .omni-healthcare-header {
        padding: 20px 15px;
        gap: 15px;
        align-items: flex-end;
    }

    .omni-healthcare-heading h2 {
        font-size: 21px;
    }

    .omni-healthcare-heading p {
        font-size: 11px;
    }

    .omni-healthcare-btn {
        padding: 9px 11px;
        font-size: 11px;
    }

    .omni-healthcare-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
    }

    .omni-healthcare-image {
        height: 140px;
    }

    .omni-healthcare-content {
        padding: 8px;
    }

        .omni-healthcare-content h3 {
            font-size: 13px;
        }

        .omni-healthcare-content p {
            font-size: 10px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .omni-healthcare-header {
        display: block;
        padding: 18px 13px;
    }

    .omni-healthcare-heading h2 {
        font-size: 19px;
    }

    .omni-healthcare-heading p {
        margin-bottom: 12px;
    }

    .omni-healthcare-btn {
        display: inline-flex;
    }

    .omni-healthcare-grid {
        padding: 8px;
    }

    .omni-healthcare-image {
        height: 120px;
    }

    .omni-healthcare-content h3 {
        font-size: 12px;
    }
}












/* =========================================================
   OMNIFAST - SERVICES NEAR YOU
   DIFFERENT LOCATION BASED DESIGN
========================================================= */

.omnifast-near-services {
    width: 100%;
    padding: 20px 0 45px;
    background: #ffffff;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.omni-near-services-wrapper {
    display: grid;
    grid-template-columns: 32% 68%;
    min-height: 390px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(10, 42, 92, 0.08);
}


/* =========================================================
   LOCATION PANEL
========================================================= */

.omni-location-panel {
    position: relative;
    padding: 32px 30px;
    overflow: hidden;
    background: linear-gradient( 145deg, #0a2a5c 0%, #0d3b78 65%, #09244f 100% );
}


    /* Decorative Circle */

    .omni-location-panel::before {
        content: "";
        position: absolute;
        width: 230px;
        height: 230px;
        right: -110px;
        top: -90px;
        border-radius: 50%;
        border: 35px solid rgba(248, 110, 2, 0.18);
    }


    /* Bottom Shape */

    .omni-location-panel::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        left: -100px;
        bottom: -110px;
        border-radius: 50%;
        background: rgba(248, 110, 2, 0.12);
    }


/* =========================================================
   LOCATION ICON
========================================================= */

.omni-location-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    background: #f86e02;
    color: #ffffff;
    border-radius: 14px;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(248, 110, 2, 0.25);
}


/* =========================================================
   LABEL
========================================================= */

.omni-location-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 7px;
    color: #f86e02;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
}


/* =========================================================
   HEADING
========================================================= */

.omni-location-panel h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
}


    .omni-location-panel h2 span {
        color: #f86e02;
    }


.omni-location-panel > p {
    position: relative;
    z-index: 2;
    margin: 12px 0 20px;
    max-width: 390px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   LOCATION SELECT
========================================================= */

.omni-location-select {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 14px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0,0,0,.12);
}


    .omni-location-select > i:first-child {
        color: #f86e02;
        font-size: 17px;
    }


    .omni-location-select select {
        flex: 1;
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        color: #0a2a5c;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        appearance: none;
    }


    .omni-location-select > i:last-child {
        color: #7a838d;
        font-size: 11px;
    }


/* =========================================================
   DETECT LOCATION
========================================================= */

.omni-detect-location {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    padding: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}


    .omni-detect-location i {
        color: #f86e02;
    }


    .omni-detect-location:hover {
        color: #f86e02;
    }


/* =========================================================
   SERVICES AREA
========================================================= */

.omni-services-area {
    padding: 28px;
    background: #f8fafc;
}


/* =========================================================
   SERVICES TOP
========================================================= */

.omni-services-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}


    .omni-services-top span {
        color: #f86e02;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.3px;
    }


    .omni-services-top h3 {
        margin: 4px 0 0;
        color: #0a2a5c;
        font-size: 21px;
        font-weight: 800;
    }


    .omni-services-top > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #0a2a5c;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
    }


        .omni-services-top > a:hover {
            color: #f86e02;
        }


/* =========================================================
   SERVICE LIST
========================================================= */

.omni-services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.omni-service-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e3e8ee;
    border-radius: 10px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}


    .omni-service-item:hover {
        transform: translateY(-3px);
        border-color: #f86e02;
        box-shadow: 0 7px 18px rgba(10,42,92,.09);
        text-decoration: none;
    }


/* =========================================================
   SERVICE IMAGE
========================================================= */

.omni-service-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 8px;
    background: #edf2f7;
}


    .omni-service-icon img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .4s ease;
    }


.omni-service-item:hover
.omni-service-icon img {
    transform: scale(1.1);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.omni-service-item h4 {
    margin: 0 0 4px;
    color: #0a2a5c;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}


.omni-service-item p {
    margin: 0;
    color: #7a838d;
    font-size: 11px;
    line-height: 1.3;
}


/* =========================================================
   SERVICE ARROW
========================================================= */

.omni-service-arrow {
    margin-left: auto;
    color: #b5bdc7;
    font-size: 11px;
    transition: color .3s ease, transform .3s ease;
}


.omni-service-item:hover
.omni-service-arrow {
    color: #f86e02;
    transform: translateX(3px);
}


/* =========================================================
   ORANGE LEFT ACCENT
========================================================= */

.omni-service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #f86e02;
    transition: width .3s ease;
}


.omni-service-item:hover::before {
    width: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-near-services-wrapper {
        grid-template-columns: 38% 62%;
    }

    .omni-location-panel {
        padding: 25px 20px;
    }

        .omni-location-panel h2 {
            font-size: 22px;
        }

    .omni-services-area {
        padding: 22px 18px;
    }

    .omni-services-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omnifast-near-services {
        padding: 10px 0 30px;
    }

    .omni-near-services-wrapper {
        display: block;
        border-radius: 14px;
    }

    .omni-location-panel {
        padding: 23px 18px;
    }

    .omni-location-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 13px;
        font-size: 19px;
    }

    .omni-location-panel h2 {
        font-size: 21px;
    }

    .omni-location-panel > p {
        font-size: 12px;
        margin: 9px 0 15px;
    }

    .omni-location-select {
        height: 45px;
    }

    .omni-services-area {
        padding: 20px 12px;
    }

    .omni-services-top h3 {
        font-size: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .omni-services-top {
        align-items: flex-start;
    }

        .omni-services-top > a {
            font-size: 11px;
        }

        .omni-services-top h3 {
            font-size: 16px;
        }

    .omni-service-item {
        padding: 8px;
        gap: 9px;
    }

    .omni-service-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .omni-service-item h4 {
        font-size: 13px;
    }

    .omni-service-item p {
        font-size: 10px;
    }
}





/* =========================================================
   SERVICES NEAR YOU - LOCATION CONTENT
========================================================= */

.omni-location-panel {
    position: relative;
    padding: 35px 30px;
    overflow: hidden;
    background: linear-gradient( 145deg, #0a2a5c 0%, #0d3b78 65%, #09244f 100% );
}


    /* =========================================================
   DECORATIVE SHAPES
========================================================= */

    .omni-location-panel::before {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        right: -120px;
        top: -100px;
        border-radius: 50%;
        border: 35px solid rgba(248, 110, 2, 0.18);
        pointer-events: none;
    }

    .omni-location-panel::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        left: -110px;
        bottom: -120px;
        border-radius: 50%;
        background: rgba(248, 110, 2, 0.10);
        pointer-events: none;
    }


/* =========================================================
   LABEL
========================================================= */

.omni-location-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 8px;
    color: #f86e02;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
}


/* =========================================================
   HEADING
========================================================= */

.omni-location-panel h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 400px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

    .omni-location-panel h2 span {
        color: #f86e02;
    }


/* =========================================================
   DESCRIPTION
========================================================= */

.omni-location-panel > p {
    position: relative;
    z-index: 2;
    margin: 13px 0 24px;
    max-width: 400px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.omni-location-highlights {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 5px;
}


/* =========================================================
   HIGHLIGHT ITEM
========================================================= */

.omni-location-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}


    /* Icon */

    .omni-location-highlight > i {
        flex: 0 0 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(248, 110, 2, 0.14);
        border: 1px solid rgba(248, 110, 2, 0.30);
        border-radius: 9px;
        color: #f86e02;
        font-size: 15px;
    }


    /* Text */

    .omni-location-highlight div {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .omni-location-highlight strong {
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
    }

    .omni-location-highlight span {
        color: rgba(255, 255, 255, 0.60);
        font-size: 10px;
    }


/* =========================================================
   BOTTOM TEXT
========================================================= */

.omni-location-bottom-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 600;
}

    .omni-location-bottom-text i {
        color: #f86e02;
        font-size: 14px;
    }


/* =========================================================
   HOVER EFFECT
========================================================= */

.omni-location-highlight {
    transition: transform .3s ease;
}

    .omni-location-highlight:hover {
        transform: translateX(4px);
    }

        .omni-location-highlight:hover > i {
            background: #f86e02;
            color: #ffffff;
        }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-location-panel {
        padding: 28px 22px;
    }

        .omni-location-panel h2 {
            font-size: 23px;
        }

        .omni-location-panel > p {
            font-size: 12px;
        }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omni-location-panel {
        padding: 25px 18px;
    }

        .omni-location-panel h2 {
            font-size: 22px;
        }

        .omni-location-panel > p {
            margin-bottom: 20px;
        }

    .omni-location-highlights {
        gap: 11px;
    }

    .omni-location-highlight > i {
        flex-basis: 35px;
        width: 35px;
        height: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .omni-location-panel {
        padding: 22px 15px;
    }

        .omni-location-panel h2 {
            font-size: 20px;
        }

    .omni-location-label {
        font-size: 10px;
    }

    .omni-location-highlight strong {
        font-size: 12px;
    }

    .omni-location-highlight span {
        font-size: 9px;
    }
}




/* =========================================================
   OMNIFAST - FINAL CTA
   WHITE BACKGROUND
========================================================= */

.omnifast-final-cta {
    width: 100%;
    padding: 0px 0 0px;
    background: #ffffff;
}


/* =========================================================
   CTA WRAPPER
========================================================= */

.omni-final-cta-wrapper {
    position: relative;
    width: 100%;
    padding: 60px 25px;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(10, 42, 92, 0.08);
}


    /* =========================================================
   DECORATIVE ELEMENTS
========================================================= */

    .omni-final-cta-wrapper::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        left: -120px;
        top: -130px;
        border-radius: 50%;
        border: 45px solid rgba(248, 110, 2, 0.08);
        pointer-events: none;
    }


    .omni-final-cta-wrapper::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        right: -110px;
        bottom: -120px;
        border-radius: 50%;
        background: rgba(10, 42, 92, 0.045);
        pointer-events: none;
    }


/* =========================================================
   CONTENT
========================================================= */

.omni-final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}


/* =========================================================
   LABEL
========================================================= */

.omni-final-cta-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #f86e02;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   HEADING
========================================================= */

.omni-final-cta-content h2 {
    margin: 0;
    color: #0a2a5c;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}


    .omni-final-cta-content h2 span {
        color: #f86e02;
    }


/* =========================================================
   DESCRIPTION
========================================================= */

.omni-final-cta-content p {
    max-width: 650px;
    margin: 15px auto 28px;
    color: #6d7680;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   BUTTON WRAPPER
========================================================= */

.omni-final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.omni-cta-shopping,
.omni-cta-services {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 175px;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}


/* =========================================================
   START SHOPPING
========================================================= */

.omni-cta-shopping {
    background: #f86e02;
    color: #ffffff;
    border: 1px solid #f86e02;
    box-shadow: 0 7px 18px rgba(248, 110, 2, 0.20);
}


    .omni-cta-shopping:hover {
        background: #0a2a5c;
        border-color: #0a2a5c;
        color: #ffffff;
        transform: translateY(-3px);
        text-decoration: none;
    }


/* =========================================================
   EXPLORE SERVICES
========================================================= */

.omni-cta-services {
    background: #0a2a5c;
    color: #ffffff;
    border: 1px solid #0a2a5c;
}


    .omni-cta-services:hover {
        background: #ffffff;
        color: #0a2a5c;
        transform: translateY(-3px);
        text-decoration: none;
        box-shadow: 0 7px 18px rgba(10, 42, 92, 0.12);
    }


    /* =========================================================
   BUTTON ARROW
========================================================= */

    .omni-cta-shopping i:last-child,
    .omni-cta-services i:last-child {
        font-size: 11px;
        transition: transform .3s ease;
    }


    .omni-cta-shopping:hover i:last-child,
    .omni-cta-services:hover i:last-child {
        transform: translateX(4px);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-final-cta-wrapper {
        padding: 50px 20px;
    }

    .omni-final-cta-content h2 {
        font-size: 34px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omnifast-final-cta {
        padding: 15px 0 35px;
    }

    .omni-final-cta-wrapper {
        padding: 40px 16px;
        border-radius: 16px;
    }

    .omni-final-cta-content h2 {
        font-size: 27px;
    }

    .omni-final-cta-content p {
        font-size: 12px;
        margin-top: 12px;
        margin-bottom: 22px;
    }

    .omni-cta-shopping,
    .omni-cta-services {
        min-width: 160px;
        padding: 11px 15px;
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .omni-final-cta-wrapper {
        padding: 35px 14px;
    }

    .omni-final-cta-label {
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .omni-final-cta-content h2 {
        font-size: 23px;
    }

    .omni-final-cta-content p {
        font-size: 11px;
    }

    .omni-final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .omni-cta-shopping,
    .omni-cta-services {
        width: 100%;
        max-width: 260px;
    }
}









/* =========================================================
   OMNIFAST CATEGORY CONTINUOUS SLIDER
========================================================= */

.omni-category-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}


/* =========================================================
   TRACK
========================================================= */

.omni-category-track {
    display: flex;
    align-items: flex-start;
    width: max-content;
    gap: 20px;
    animation: omniCategoryInfinite 25s linear infinite;
    will-change: transform;
}


/* =========================================================
   CATEGORY ITEM
========================================================= */

.omni-category-slide {
    flex: 0 0 120px;
    width: 120px;
    text-align: center;
}


    .omni-category-slide a {
        display: block;
        text-decoration: none;
        color: #0a2a5c;
    }


    /* =========================================================
   IMAGE
========================================================= */

    .omni-category-slide .category-image {
        display: block;
        width: 100px;
        height: 100px;
        margin: 0 auto 8px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #f86e02;
        padding: 3px;
        background: #ffffff;
        transition: all .3s ease;
    }


    .omni-category-slide:hover .category-image {
        transform: scale(1.08);
        border-color: #0a2a5c;
        box-shadow: 0 7px 18px rgba(10, 42, 92, .15);
    }


    /* =========================================================
   CATEGORY NAME
========================================================= */

    .omni-category-slide .prod-name {
        color: #0a2a5c;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .omni-category-slide:hover .prod-name {
        color: #f86e02;
    }


/* =========================================================
   SEAMLESS INFINITE LOOP
========================================================= */

@keyframes omniCategoryInfinite {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX( calc(-50% - 10px) );
    }
}


/* =========================================================
   PAUSE ON HOVER
========================================================= */

.omni-category-slider:hover
.omni-category-track {
    animation-play-state: paused;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-category-track {
        gap: 16px;
        animation-duration: 22s;
    }

    .omni-category-slide {
        flex-basis: 110px;
        width: 110px;
    }

        .omni-category-slide .category-image {
            width: 90px;
            height: 90px;
        }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omni-category-slider {
        padding: 10px 0;
    }

    .omni-category-track {
        gap: 12px;
        animation-duration: 19s;
    }

    .omni-category-slide {
        flex-basis: 95px;
        width: 95px;
    }

        .omni-category-slide .category-image {
            width: 75px;
            height: 75px;
        }

        .omni-category-slide .prod-name {
            font-size: 11px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .omni-category-track {
        gap: 10px;
        animation-duration: 17s;
    }

    .omni-category-slide {
        flex-basis: 85px;
        width: 85px;
    }

        .omni-category-slide .category-image {
            width: 68px;
            height: 68px;
        }

        .omni-category-slide .prod-name {
            font-size: 10px;
        }
}




/* =========================================
   OMNIFAST CATEGORY SECTION
   NAVY BLUE + ORANGE
========================================= */

.omni-category-section {
    padding: 25px 0 45px;
    background: #f7f9fc;
}

.omni-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Main Card */
.omni-category-card {
    position: relative;
    display: block;
    text-decoration: none !important;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 16px;
    overflow: hidden;
    padding: 10px;
    transition: all 0.35s ease;
    box-shadow: 0 5px 18px rgba(7, 29, 58, 0.07);
}

    /* Card Hover */
    .omni-category-card:hover {
        transform: translateY(-8px);
        border-color: #ff6b00;
        box-shadow: 0 14px 32px rgba(7, 29, 58, 0.16);
    }

/* Image Container */
.omni-category-image-box {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-radius: 12px;
    background: #eef2f7;
    /*border: 1px solid #071d3a;*/
}

/* Image */
.omni-category-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

/* Image Zoom */
.omni-category-card:hover .omni-category-img {
    transform: scale(1.09);
}

/* Overlay */
.omni-category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(7, 29, 58, 0.78);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.35s ease;
}

.omni-category-card:hover .omni-category-overlay {
    opacity: 1;
    transform: translateY(0);
}

.omni-category-overlay i {
    color: #ff6b00;
    transition: transform 0.3s ease;
}

.omni-category-card:hover .omni-category-overlay i {
    transform: translateX(5px);
}

/* Category Name */
.omni-category-name {
    position: relative;
    padding: 14px 8px 8px;
    text-align: center;
}

    /* Orange top line */
    .omni-category-name::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: #ff6b00;
        border-radius: 10px;
        transform: translateX(-50%);
        transition: width 0.35s ease;
    }

.omni-category-card:hover .omni-category-name::before {
    width: 55px;
}

.omni-category-name h3 {
    margin: 0;
    color: #071d3a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.omni-category-card:hover .omni-category-name h3 {
    color: #ff6b00;
}

/* No Data */
.omni-no-category {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: #071d3a;
}

    .omni-no-category i {
        font-size: 38px;
        color: #ff6b00;
        margin-bottom: 12px;
    }

    .omni-no-category p {
        margin: 0;
        font-size: 15px;
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .omni-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .omni-category-image-box {
        height: 175px;
    }

    .omni-category-name h3 {
        font-size: 16px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .omni-category-section {
        padding: 18px 0 35px;
    }

    .omni-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .omni-category-card {
        padding: 7px;
        border-radius: 12px;
    }

    .omni-category-image-box {
        height: 135px;
        border-radius: 9px;
    }

    .omni-category-name {
        padding: 11px 5px 6px;
    }

        .omni-category-name h3 {
            font-size: 14px;
        }

    /* Keep animation but lighter on mobile */
    .omni-category-card:hover {
        transform: translateY(-4px);
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .omni-category-grid {
        gap: 10px;
    }

    .omni-category-image-box {
        height: 120px;
    }

    .omni-category-name h3 {
        font-size: 13px;
    }

    .omni-category-card {
        padding: 6px;
    }
}











/* =========================================================
   OMNIFAST COMMON SERVICE SECTION
   Navy Blue + Orange Theme
========================================================= */

/* SERVICE GRID */

.omni-service-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.omni-service-card {
    display: block;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e7ed;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}


    .omni-service-card:hover {
        border-color: #f86e02;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(10, 42, 92, .11);
        text-decoration: none;
    }


/* =========================================================
   SERVICE IMAGE
========================================================= */

.omni-service-image {
    position: relative;
    width: 100%;
    height: 145px;
    overflow: hidden;
    background: #edf3f7;
}


    .omni-service-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }


.omni-service-card:hover
.omni-service-image img {
    transform: scale(1.08);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.omni-service-content {
    padding: 12px 13px 14px;
}


    .omni-service-content h3 {
        margin: 0 0 5px;
        color: #0a2a5c;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.35;
        transition: color .3s ease;
    }


.omni-service-card:hover
.omni-service-content h3 {
    color: #f86e02;
}


/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.omni-service-content p {
    margin: 0 0 12px;
    color: #7b838c;
    font-size: 12px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.omni-service-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 12px;
    background: #0a2a5c;
    border: 1px solid #0a2a5c;
    border-radius: 5px;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .3s ease;
}


    .omni-service-explore i {
        font-size: 9px;
        transition: transform .3s ease;
    }


    .omni-service-explore:hover {
        background: #f86e02;
        border-color: #f86e02;
        color: #ffffff !important;
    }


        .omni-service-explore:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   EMPTY SERVICE
========================================================= */

.omni-service-empty {
    grid-column: 1 / -1;
    padding: 45px 20px;
    text-align: center;
    background: #fafbfd;
    border: 1px dashed #ccd5df;
    border-radius: 10px;
}


    .omni-service-empty i {
        margin-bottom: 10px;
        color: #f86e02;
        font-size: 30px;
    }


    .omni-service-empty h3 {
        margin: 0 0 5px;
        color: #0a2a5c;
        font-size: 17px;
    }


    .omni-service-empty p {
        margin: 0;
        color: #7b838c;
        font-size: 12px;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .omni-service-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }


    .omni-service-image {
        height: 160px;
    }


    .omni-service-content h3 {
        font-size: 13px;
    }


    .omni-service-content p {
        font-size: 10px;
    }
}












/* =========================================================
   OMNIFAST COMMON CATEGORY SECTION
   NAVY BLUE + ORANGE
========================================================= */

.omni-category-section {
    width: 100%;
    padding: 45px 0;
    background: #ffffff;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.omni-category-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 22px;
}


    .omni-category-heading span {
        display: block;
        margin-bottom: 4px;
        color: #f86e02;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }


    .omni-category-heading h2 {
        margin: 0;
        color: #0a2a5c;
        font-size: 27px;
        font-weight: 800;
        line-height: 1.25;
    }


    .omni-category-heading > a {
        color: #0a2a5c;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        transition: color .3s ease;
    }


        .omni-category-heading > a:hover {
            color: #f86e02;
            text-decoration: none;
        }


/* =========================================================
   CATEGORY GRID
========================================================= */

.omni-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.omni-category-card {
    display: block;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e7ed;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}


    .omni-category-card:hover {
        border-color: #f86e02;
        transform: translateY(-5px);
        box-shadow: 0 10px 24px rgba(10, 42, 92, .10);
        text-decoration: none;
    }


/* =========================================================
   CATEGORY IMAGE
========================================================= */

.omni-category-image {
    position: relative;
    width: 100%;
    height: 145px;
    overflow: hidden;
    background: #edf3f7;
}


    .omni-category-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }


.omni-category-card:hover
.omni-category-image img {
    transform: scale(1.08);
}


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.omni-category-content {
    padding: 11px 12px 13px;
}


    .omni-category-content h3 {
        margin: 0;
        color: #0a2a5c;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.35;
        transition: color .3s ease;
    }


.omni-category-card:hover
.omni-category-content h3 {
    color: #f86e02;
}


/* OPTIONAL DESCRIPTION */

.omni-category-content p {
    margin: 4px 0 0;
    color: #7b838c;
    font-size: 11px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.omni-category-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
    padding: 7px 11px;
    background: #0a2a5c;
    color: #ffffff !important;
    border: 1px solid #0a2a5c;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .3s ease;
}


    .omni-category-explore i {
        font-size: 8px;
        transition: transform .3s ease;
    }


    .omni-category-explore:hover {
        background: #f86e02;
        border-color: #f86e02;
        color: #ffffff !important;
    }


        .omni-category-explore:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   NO DATA
========================================================= */

.omni-category-empty {
    grid-column: 1 / -1;
    padding: 45px 20px;
    text-align: center;
    background: #fafbfd;
    border: 1px dashed #ccd5df;
    border-radius: 10px;
}


    .omni-category-empty i {
        display: block;
        margin-bottom: 10px;
        color: #f86e02;
        font-size: 30px;
    }


    .omni-category-empty h3 {
        margin: 0 0 5px;
        color: #0a2a5c;
        font-size: 17px;
    }


    .omni-category-empty p {
        margin: 0;
        color: #7b838c;
        font-size: 12px;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omni-category-section {
        padding: 30px 0;
    }


    .omni-category-heading {
        align-items: flex-start;
        margin-bottom: 16px;
    }


        .omni-category-heading h2 {
            font-size: 22px;
        }


    .omni-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }


    .omni-category-image {
        height: 130px;
    }


    .omni-category-content {
        padding: 10px;
    }


        .omni-category-content h3 {
            font-size: 12px;
        }


        .omni-category-content p {
            font-size: 10px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .omni-category-image {
        height: 115px;
    }


    .omni-category-content h3 {
        font-size: 12px;
    }
}









/* =========================================================
   OMNIFAST DETAIL PAGE
========================================================= */

.omni-detail-page {
    padding: 50px 0 60px;
    background: #ffffff;
}


/* MAIN GRID */

.omni-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(350px, .8fr);
    gap: 35px;
    align-items: start;
}


/* LEFT */

.omni-detail-content {
    padding: 0;
}


.omni-detail-image {
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 14px;
    background: #edf3f7;
    margin-bottom: 25px;
}


    .omni-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.omni-detail-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #f86e02;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}


.omni-detail-content h1 {
    margin: 0 0 15px;
    color: #0a2a5c;
    font-size: 32px;
    font-weight: 800;
}


.omni-detail-description {
    color: #626b75;
    font-size: 13px;
    line-height: 1.8;
}


    .omni-detail-description p {
        margin-bottom: 12px;
    }


    .omni-detail-description ul {
        padding-left: 20px;
    }


/* =========================================================
   ENQUIRY BOX
========================================================= */

.omni-enquiry-box {
    position: sticky;
    top: 100px;
    padding: 27px;
    border: 1px solid #e1e6ec;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(10,42,92,.08);
}


    .omni-enquiry-box > span {
        color: #f86e02;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }


    .omni-enquiry-box h2 {
        margin: 7px 0 8px;
        color: #0a2a5c;
        font-size: 21px;
        font-weight: 800;
    }


    .omni-enquiry-box > p {
        margin: 0 0 20px;
        color: #7b838c;
        font-size: 13px;
        line-height: 1.6;
    }


/* FORM */

.omni-form-group {
    margin-bottom: 13px;
}


    .omni-form-group label {
        display: block;
        margin-bottom: 5px;
        color: #0a2a5c;
        font-size: 13px;
        font-weight: 700;
    }


    .omni-form-group input,
    .omni-form-group textarea {
        width: 100%;
        padding: 11px 12px;
        border: 1px solid #dfe5eb;
        border-radius: 7px;
        outline: none;
        background: #ffffff;
        color: #0a2a5c;
        font-size: 14px;
        transition: all .3s ease;
    }


        .omni-form-group input:focus,
        .omni-form-group textarea:focus {
            border-color: #f86e02;
            box-shadow: 0 0 0 3px rgba(248,110,2,.08);
        }


    .omni-form-group textarea {
        resize: vertical;
        min-height: 90px;
    }


/* BUTTON */

.omni-enquiry-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 0;
    border-radius: 7px;
    background: #f86e02;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}


    .omni-enquiry-btn:hover {
        background: #0a2a5c;
        transform: translateY(-2px);
    }


/* EMPTY */

.omni-detail-empty {
    padding: 70px 20px;
    text-align: center;
    border: 1px dashed #dfe5eb;
    border-radius: 14px;
}


    .omni-detail-empty i {
        margin-bottom: 12px;
        color: #f86e02;
        font-size: 35px;
    }


    .omni-detail-empty h3 {
        margin: 0 0 5px;
        color: #0a2a5c;
        font-size: 18px;
    }


    .omni-detail-empty p {
        margin: 0;
        color: #7b838c;
        font-size: 12px;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .omni-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .omni-enquiry-box {
        position: relative;
        top: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .omni-detail-page {
        padding: 30px 0 40px;
    }

    .omni-detail-image {
        height: 230px;
        margin-bottom: 20px;
    }

    .omni-detail-content h1 {
        font-size: 25px;
    }

    .omni-detail-description {
        font-size: 12px;
    }

    .omni-enquiry-box {
        padding: 20px;
    }
}