/* =========================
   BODY
========================= */

.zi-body {
    margin: 0;
    padding-top: 120px;
}


/* =========================
   CONTAINERS
========================= */

.zi-container-fluid {
    width: 100%;
    margin: 0 auto;
    padding-inline: 20px;
    box-sizing: border-box;
}

.zi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 20px;
    width: 100%;
    box-sizing: border-box;
}


/* =========================
   TOPBAR
========================= */
.zi-topbar {
    background: #021a2b;
    color: #ccc;
    font-size: 11px;
    padding: 10px 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: 0.3s;
}

.zi-topbar-marquee {
    white-space: nowrap;
    line-height: 16px;
}


/* =========================
   HEADER
========================= */

.zi-header {
    position: fixed;
    top: 32px;
    left: 0;
    height: 90px;
    background: linear-gradient(90deg,#022b44,#005f8f,#009fcf);
    display: flex;
    align-items: center;
    z-index: 9998;
}

.zi-header-inner {
    display: flex;
    align-items: center;
    justify-content:space-between;
    width: 100%;
}


/* =========================
   LOGO
========================= */

.zi-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}


/* =========================
   MENU
========================= */

.zi-menu {
    list-style: none;
    display: flex;

    align-items: center;
    margin: 0;
    padding: 0;
}

    .zi-menu li {
        position: relative;
        padding-block: 30px;
    }

    .zi-menu a {
        color:aqua;
        text-decoration: none;
        font-weight: 500;
        font-size: 17px;
        padding-inline: 1rem;
        transition:all 0.2s;
    }
    .zi-menu a:hover {
        color: white;        
    }


/* =========================
   DROPDOWN (DESKTOP)
========================= */

.zi-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -80px;
    background: #0f83b1;
    padding: 10px;
    width: 450px;
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    box-sizing: border-box;
}


.zi-dropdown:hover .zi-dropdown-menu {
    display: flex;
}


/* =========================
   SERVICE BLOCK
========================= */

.zi-service-block {
    flex: 0 0 calc(50% - 5px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 8px;
    cursor: pointer;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
}

    .zi-service-block img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 4px;
        flex-shrink: 0;
    }



    .zi-service-block:hover {
        background: #f3f7fb;
    }

 /*   .zi-service-block span {
        line-height: 1.25;
        font-size: 15px;
        font-weight: 500;
        color: white;
        display: block;
    }*/
/*
    .zi-service-block span {
        max-width: 150px;
    }*/

    .zi-service-block span a {
        color: white;
        font-size: 14px;
        text-align: left;
        padding-left:0;
        padding-inline: 0rem;
    }
        .zi-service-block:hover span a{
            color: black;
        }



.zi-hp-products {
    background-size: cover;
    background-position: center;
    background-image: url('../../images/bg1.webp');
    background-attachment:fixed
    /*background-color:azure*/
}
/* =========================
   MOBILE MENU BUTTON
========================= */
.zi-mobile-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    margin-left: auto;
}



/* SECTION */

.zi-products-carousel-section {
    padding: 80px 0;
}

.zi-products-title, .zi-solutions-title {
    text-align: center;
    margin-bottom: 40px;
}


/* CAROUSEL */

.zi-products-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.zi-products-section {

}
/* TRACK */
.zi-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;

}

.zi-carousel-track {
    display: flex;
    transition: transform .4s ease;
}


/* CARD */

.zi-product-card,
.zi-solution-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zi-product-card {
    flex: 0 0 25%;
    padding: 0px;
    box-sizing: border-box;
    text-align: center;
    background: white;
    border-radius: 6px;
    margin: 10px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .zi-product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.18);
    }

    .zi-product-card img {
        width: 100%;
/*        height: 160px;*/
        object-fit: contain;
        margin-bottom: 10px;
    }

    .zi-product-card h3 {
        margin: 10px 0;
        font-size: 18px;
    }


    .zi-product-card p,
    .zi-solution-card p {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
        padding-inline: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align:center
    }

  


/* ARROWS */

.zi-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0f83b1;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    opacity: .85;
    transition: .2s;
}
    .zi-carousel-btn:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.05);
    }

.zi-carousel-prev {
    left:-10px;
}

.zi-carousel-next {
    right: -10px;
}

/* =========================
   SOLUTIONS SECTION
========================= */
.zi-solutions-carousel {
    position: relative;
    padding: 0 25px;
}

.zi-solutions-carousel-section {
    padding: 80px 0;
    /*background: #f7fafc;*/
/*    background-image: url('../../images/bg2.webp');*/
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}



.zi-products-intro, .zi-solutions-intro {
    text-align: justify;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.6;
}

    .zi-solutions-intro a, .zi-products-intro a {
        display: block;
        margin-top: 10px;
        font-weight: 600;
        color: #0f83b1;
        font-size:18px
    }

/* =========================
   SOLUTIONS CAROUSEL ARROWS FIX
========================= */

.zi-solutions-prev {
    left: -10px;
}

.zi-solutions-next {
    right: -10px;
}
/* =========================
   SOLUTION CARD
========================= */

.zi-solution-card {
    flex: 0 0 25%;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    background: white;
    border-radius: 6px;
    margin: 10px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}




    .zi-solution-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.18);
    }

    .zi-solution-card img {
        width: 100%;
        object-fit: cover;
    }

    .zi-solution-card h3 {
        margin: 10px 0;
        font-size: 18px;
    }

    .zi-solution-card p {
        font-size: 14px;
        color: #555;
        padding-inline: 15px;
    }

    .zi-solution-card a, .zi-product-card a {
        display: block;
        padding: 12px;
        background: #0f83b1;
        color: white;
        text-decoration: none;
        margin-top: 10px;
    }

/* =========================
   ALL SOLUTIONS PAGE
========================= */

.zi-all-solutions-section {
    padding: 40px 0;
    background: #f7fafc;
}

.zi-all-solutions-title {
    text-align: center;
    margin-bottom: 20px;
}

.zi-all-solutions-intro {
    text-align: justify;
    margin: auto;
    margin-bottom: 80px;
    line-height: 1.6;
}


/* GRID */

.zi-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}


/* CARD */

.zi-solution-item {
    background: white;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 0 0 00px 0;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between
}

    .zi-solution-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    }

    .zi-solution-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 15px;
    }

    .zi-solution-item h3 {
        margin-bottom: 10px;
        font-size:20px
    }

    .zi-solution-item p {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
        margin-inline:30px
    }
.zi-solutions-industries {
    padding: 70px 0;
    background: white;
}

.zi-industries-list {
    margin-top: 20px;
    columns: 2;
    margin-left:0
}

    .zi-industries-list li {
        margin-bottom: 15px;
        list-style:none;
        background-color:#eee;
        padding:10px
    }

.zi-solutions-cta {
    
    background-color:#eee;
    padding-block:50px
}
/* BUTTON */
.zi-solution-item a {
    display: inline-block;
    background: #0f83b1;
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s;
}

        .zi-solution-item a:hover {
            background: #98cb00;
            color: white;
        }


.zi-home-blog-section {
    padding: 80px 0;
    background: #f7fafc;
    background-image: url('../../images/bg2.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.zi-home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.zi-blog-card {
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: .25s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

    .zi-blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .zi-blog-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .zi-blog-card p {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;        
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .zi-blog-card h3 {
        font-size: 20px;
        color: #000;
        margin-block: 15px;
    }

.zi-blog-page {
    padding: 80px 0;
    background: #ffffff;
}

.zi-blog-banner {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    margin: 25px 0;
    border-radius: 6px;
}

.zi-blog-page h1 {
    margin-bottom: 20px;
}

.zi-blog-page h2 {
    margin-top: 30px;
}

.zi-blog-page p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}
.zi-blog-nav {
    background: #f4f8fb;
    padding: 18px 22px;
    border-radius: 6px;
    margin: 20px 0 30px 0;
}

    .zi-blog-nav h4 {
        margin-bottom: 10px;
    }

    .zi-blog-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .zi-blog-nav li a {
        text-decoration: none;
        color: #0f83b1;
        font-weight: 600;
    }


.zi-blog-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e2e2e2;
    gap: 20px;
    flex-wrap: wrap;
}

    .zi-blog-pagination a {
        text-decoration: none;
        color: #0f83b1;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        max-width: 45%;
    }

    .zi-blog-pagination span {
        font-weight: 400;
        color: #555;
        margin-top: 5px;
    }

.zi-blog-prev {
    text-align: left;
}

.zi-blog-next {
    text-align: right;
    margin-left: auto;
}

.zi-blog-toc {
    background: #f4f8fb;
    padding: 18px 22px;
    border-radius: 6px;
    margin: 20px 0 30px 0;
}

    .zi-blog-toc h4 {
        margin-bottom: 10px;
    }

    .zi-blog-toc ul {
        margin: 0;
        padding-left: 18px;
    }

    .zi-blog-toc li {
        margin-bottom: 6px;
    }

    .zi-blog-toc a {
        text-decoration: none;
        color: #0f83b1;
    }

/* FOOTER */

.zi-footer {
    background: #0c0f13;
    color: #cfd6dc;
    padding: 70px 0 30px;
    font-size: 14px;
}


.zi-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}


/* LOGO */

.zi-footer-logo {
    max-width: 200px!important;
    margin-bottom: 15px;
}


/* COLUMN */

.zi-footer-col h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
}


/* LINKS */

.zi-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zi-footer-col li {
    margin-bottom: 8px;
}

.zi-footer-col a {
    color: #9fb3c8;
    text-decoration: none;
}

    .zi-footer-col a:hover {
        color: #ffffff;
    }


/* BUTTON */

.zi-footer-btn {
    display: inline-block;
    margin-top: 10px;
    background: #0f83b1;
    padding: 10px 16px;
    color: white;
    border-radius: 4px;
    text-decoration: none;
}


/* BOTTOM */

.zi-footer-bottom {
    border-top: 1px solid #1e2328;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}


.zi-footer-links a {
    margin-left: 15px;
    color: #9fb3c8;
    text-decoration: none;
}

    .zi-footer-links a:hover {
        color: white;
    }
.zi-pages-header h1 {
    font-size: 3rem;
    margin-block: 1rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #00cbdf, rgba(255,255,255,0.1)) 1;
    padding-bottom:1rem
}
.zi-pages-header h2 {
    font-size: 1.5rem;
    margin-block: 1rem
}


.zi-breadcrum {
    background:#f9f9f9;
    padding:10px 10px;
    border-radius:8px;
    display:flex;
    gap:10px;
    font-weight:450;
    margin-bottom:30px
}
    .zi-breadcrum a {
        
    }

/* ABOUT SECTION */

.zi-about-section {
    padding: 80px 20px;
    background: #f7f9fb;
}

.zi-about-heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 600;
}


/* TABS */

.zi-about-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-block: 40px;
}

.zi-about-tab {
    padding: 10px 18px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    border-radius: 25px;
    font-size: 15px;
    transition: 0.3s;
}

    .zi-about-tab:hover {
        background: #0a5ea8;
        color: white;
        border-color: #0a5ea8;
    }

    .zi-about-tab.zi-active {
        background: #0a5ea8;
        color: white;
        border-color: #0a5ea8;
    }


/* CONTENT */

.zi-about-content {
    display: none;
}

    .zi-about-content.zi-active {
        display: block;
    }


/* FLEX LAYOUT */

.zi-about-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}


.zi-about-image {
    flex: 1;
}

    .zi-about-image img {
        width: 100%;
        height: auto;
        border-radius: 6px;
    }


.zi-about-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}
.zi-about-text h3 {
    margin-top:0
}

.zi-card-image {
    overflow: hidden;
    border-radius: 6px;
}

    .zi-card-image img {
        width: 100%;
        height: auto;
        transition: transform 0.4s ease;
        display: block;
    }

.zi-product-card:hover .zi-card-image img {
    transform: scale(1.03);
}




/* MOBILE */

@media(max-width:900px) {

    .zi-about-flex {
        flex-direction: column;
    }
}
    /* =======================================================================================================
   MOBILE RESPONSIVE
========================================================================================================== */
    @media(max-width:900px) {
        .zi-header-inner {
        gap: 2px;
        justify-content: space-between;
    }

    /* show hamburger */

    .zi-mobile-toggle {
        display: flex;
        justify-self: end
    }

    /* hide desktop menu */

    .zi-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        background: #023c5e;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

        /* open mobile menu */

        .zi-menu.zi-menu-open {
            display: flex;
        }

        /* menu items */

        .zi-menu li {
            text-align: left;
            padding: 10px 0;
            width: 100%;
        }

    /* services link */

    .zi-dropdown > a {
        display: block;
    }

    /* dropdown stacked */

    .zi-dropdown-menu {
        position: relative;
        display: none;
        flex-direction: column;
        width: 100%;
        background: none;
        left: 0;
        top: 10px;
        box-shadow: none;
    }

    .zi-service-block img {
        display: none
    }

    .zi-service-block {
        background: none
    }
    /* open dropdown */
    .zi-dropdown.zi-dropdown-open .zi-dropdown-menu {
        display: flex;
    }

    /* service stacked */

    .zi-service-block {
        width: 100%;
        justify-content: left;
        padding: 0;
    }

    .zi-product-card {
        flex: 0 0 50%;
    }

    .zi-solution-card {
        flex: 0 0 50%;
    }
    .zi-solutions-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .zi-footer-top {
        grid-template-columns: 1fr 1fr;
    }

}



@media(max-width:600px) {

    .zi-product-card {
        flex: 0 0 100%;
    }
    .zi-solution-card {
        flex: 0 0 100%;
    }

    .zi-solutions-grid {
        grid-template-columns: 1fr;
    }
    .zi-footer-top {
        grid-template-columns: 1fr;
    }
}
