@import url('https://fonts.googleapis.com/css2?family=Anton&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

p {
    font-size: 16px;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:active,
a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Anton", sans-serif;
    color: #252525;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #545454;
    font-size: 16px;
    /* background-color: #222; */
    padding: 0 !important;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    user-select: none;
    /* Disable text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}



.padding-top-60 {
    padding-top: 60px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.heading-wrap .heading-title {
    font-size: 46px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

    .heading-wrap .heading-title.small-heading {
        font-size: 32px;
    }

    .heading-wrap .heading-title.white {
        color: white;
        margin-bottom: 0;
    }

    .heading-wrap .heading-title span {
        color: #3b82f6;
    }

.heading-small-text {
    max-width: 700px;
    margin: 32px auto;
}

    .heading-small-text p {
        font-weight: 500;
    }

.learn-more-link {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #252525;
    font-weight: 500;
}

    .learn-more-link img {
        width: 20px;
    }

.bold-phara {
    font-size: 18px;
    font-weight: 500;
}

.inside-banner {
    background: linear-gradient(116deg, #0f172a 51%, #041938 50%);
    padding: 130px 0 60px;
    margin-bottom: 60px;
    position: relative;
}

/* home banner */
.home-banner {
    background: linear-gradient(116deg, #0f172a 51%, #041938 50%);
    padding: 130px 0 60px;
    margin-bottom: 60px;
    position: relative;
}

.home-banner-list {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: end;
    height: 475px;
}

.navbar {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    padding: 20px 48px 20px 0px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #f96b33 !important
}

.home-carousel .owl-dots {
    position: absolute;
    bottom: -103px;
    left: 0;
    right: 0;
}

.home-banner .owl-theme .owl-dots .owl-dot.active span,
.home-banner .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #f96b33;
    position: relative;
}

    .home-banner .owl-theme .owl-dots .owl-dot.active span::after {
        position: absolute;
        left: 50%;
        top: 50%;
        content: '';
        border-radius: 50%;
        border: 1px solid #f96b33;
        width: 15px;
        height: 15px;
        transform: translate(-50%, -50%);
    }

.banner-title {
    font-size: 64px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 30px;
    position: absolute;
    left: 0;
    top: 0;
}

    .banner-title span {
        color: #3b82f6;
    }

.inside-banner-title {
    font-size: 52px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

    .inside-banner-title span {
        color: #3b82f6;
    }

.banner-phara {
    color: #f1f1f1;
    margin-bottom: 30px;
}

.image-area {
    background-color: #3b82f6;
    width: 60%;
    height: 315px;
    display: flex;
    align-items: end;
}

.banner-video-img {
    border-top: 5px solid #0f172a;
    border-right: 5px solid #0f172a;
    width: 180px;
    height: 180px;
    position: relative;
}

    .banner-video-img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    cursor: pointer;
}

.text-area {
    width: 40%;
    height: 100%;
    justify-content: end;
    /* flex-wrap: wrap; */
    padding-top: 280px;
}

.product-img {
    position: absolute;
    right: 0;
    top: -135px;
    width: 500px;
}

/* Hide elements initially */
.home-banner-list .banner-title,
.home-banner-list .banner-phara,
.home-banner-list .view-details-btn,
.home-banner-list .image-area {
    opacity: 0;
}

/* When slide becomes active */
.home-banner .owl-item.active .banner-title {
    opacity: 1;
    animation: fadeInUp 1s ease forwards;
}

.home-banner .owl-item.active .banner-phara {
    opacity: 1;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.home-banner .owl-item.active .view-details-btn {
    opacity: 1;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.home-banner .owl-item.active .image-area {
    opacity: 1;
    animation: fadeInRight 1s ease 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* home products */
.product-list-wrap {
    background-color: #EBEBEB;
    margin-right: 45px;
}

.product-image {
    padding: 30px 20px;
    position: relative;
    margin-top: 35px;
    height: 390px
}

    .product-image img {
        height: 100% !important;
        object-fit: cover;
        width: 100%
    }

.food-product-img {
    position: absolute;
    right: -45px;
    top: -35px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
}

    .food-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.product-details {
    text-align: center;
    border-top: 1px solid #ccc;
    padding: 20px;
}

    .product-details .product-title {
        font-size: 22px;
        color: #252525;
        margin-bottom: 20px;
        min-height:53px;
    }

    .product-details .view-details-btn {
        width: 100%;
    }

.view-details-btn {
    background-color: #3b82f6;
    border: none;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    justify-content: center;
    gap: 10px;
    color: #fff !important;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    white-space: nowrap;
}

    .view-details-btn img {
        width: 20px !important;
    }

.orange-btn {
    background-color: #f96b33;
}

.products-main .products-main .owl-theme .custom-nav {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
}

.products-main .owl-theme .custom-nav .owl-prev,
.products-main .owl-theme .custom-nav .owl-next {
    position: absolute;
    height: 100px;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

    .products-main .owl-theme .custom-nav .owl-prev i,
    .products-main .owl-theme .custom-nav .owl-next i {
        font-size: 2.5rem;
        color: #cecece;
    }

.products-main .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.products-main .owl-theme .custom-nav .owl-next {
    right: 0;
}

.products-main {
    position: relative;
    margin: 0 25px;
}

    .products-main .products-carousel .owl-nav button.owl-prev,
    .products-main .products-carousel .owl-nav button.owl-next {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: #fff;
        color: #000;
        font-size: 28px;
        line-height: 1;
        margin: 0;
    }

    .products-main .products-carousel .owl-nav button.owl-prev {
        left: -40px;
    }

    .products-main .products-carousel .owl-nav button.owl-next {
        right: -40px;
    }


.industries-we-serve {
    padding: 40px;
    background-color: #0f172a;
}

    .industries-we-serve .industry-content-list {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .industries-we-serve .industry-content-list .industry-img {
            flex: 0 0 60px;
        }

        .industries-we-serve .industry-content-list .industry-title {
            font-size: 18px;
            color: #fff;
            font-weight: 500;
            margin-bottom: 0;
            line-height: 22px;
        }

.industry-phara {
    color: white;
}

.industry-text {
    border-left: 5px solid #c4a30d;
    padding-left: 30px;
}

/* about us */
.home-about {
    background-color: #f4f4f4;
}

.home-about-img {
    position: relative;
    height: 100%;
}

    .home-about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-info {
    background-color: #3b82f6;
    padding: 30px;
    height: 100%;
    margin-right: 30px;
}

    .about-info p {
        font-size: 18px;
        font-weight: 500;
        color: #fff;
    }

.list-about {
    margin-top: 30px;
}

    .list-about li {
        font-size: 24px;
        font-family: "Anton", sans-serif;
        color: #fff;
        list-style-image: url('../images/check-mark-white.png');
        margin-left: 30px;
        margin-bottom: 15px;
        padding-left: 10px;
    }

.request-call-main {
    padding: 40px;
    background-color: #0f172a;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.w-quality {
    max-width: 634px;
}

.quality-main {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.quality-list {
    display: flex;
    width: calc(33% - 10px);
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #f4f4f4;
    font-size: 18px;
    font-weight: 500;
    color: #252525;
}

    .quality-list .icon {
        background-color: #3b82f6;
        width: 60px;
        height: 60px;
        FONT-WEIGHT: 600;
        flex: 0 0 60px;
        padding: 8px;
    }

.faq-sec {
    background-color: #f4f4f4;
}

.faq-img {
    height: 100%;
}

    .faq-img img {
        height: 100%;
        object-fit: cover;
    }

.faq-sec .heading-wrap {
    margin-bottom: 24px;
}

.faq-main {
    padding: 40px;
}

.accordion-item {
    border: none;
    background-color: transparent;
}

.accordion-button {
    background-color: transparent;
    padding: 20px 30px 20px 0;
    font-size: 18px;
    border-bottom: 1px solid #cccccc;
    line-height: normal;
}

    .accordion-button:not(.collapsed) {
        background-color: transparent;
        color: #252525;
        box-shadow: none
    }

    .accordion-button:focus {
        box-shadow: none
    }

    .accordion-button::after {
        content: '+';
        background: none;
        font-size: 45px;
        line-height: 14px;
        position: absolute;
        right: 5px;
        color: #f96b33;
    }

    .accordion-button:not(.collapsed)::after {
        content: '-';
        background: none;
        font-size: 45px;
        line-height: 14px;
        right: 10px;
    }


/* footer */

.mainfooter {
    background-color: #1e222b;
    padding-bottom: 0;
}

.shfooter h5 {
    color: #dfdfdf;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
}

.shfooter ul.list-unstyled li {
    margin-bottom: 7px;
}

    .shfooter ul.list-unstyled li a,
    .shfooter ul.list-unstyled li span {
        color: #cacaca;
        font-size: 14px;
        font-weight: 400;
        display: inline-block;
    }

        .shfooter ul.list-unstyled li a:hover {
            color: #ececec;
        }

.shfooter .collapse {
    display: inherit;
}

.copyright-sec {
    margin-top: 2.1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgb(255 255 255 / 0.1);
    color: #8c8c8c;
}

.mailfooter img {
    width: 18px !important;
}

.mailfooter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.get-help .mailfooter img {
    margin-top: 5px;
}

.footer-logo {
    max-width: 230px;
    margin-bottom: 20px;
}

.footer-mii-logo {
    max-width: 120px;
    background-color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.social-icons {
    display: flex;
    gap: 7px;
    margin-top: 18px;
}

.social-icon-list {
    background-color: #f96b33;
    padding: 5px;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .social-icon-list.blue {
        background-color: #3b82f6;
        width: 45px;
        height: 45px;
    }

    .social-icon-list i {
        font-size: 20px;
        margin: auto;
    }

    .social-icon-list a {
        color: #fff;
    }

.telephone_info {
    background: #b2be59;
    padding: 5px;
    min-width: 200px;
    display: flex;
    padding: 13px 15px;
    align-items: center;
    margin-left: 20px;
}

/* header */
header {
    background-color: #fff;
    padding: 0px 0 7px;
}

.logo-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .logo-sec .logo {
        width: 230px;
    }

.head-contact-details {
    display: flex;
    gap: 30px;
}

.head-contact-icon {
    display: flex;
}

.tele_text {
    color: #000;
    font-size: 22px;
}

.head-contact-info {
    display: flex;
    gap: 10px;
}

.head-contact-text {
    display: flex;
    flex-direction: column;
}

    .head-contact-text span {
        font-size: 12px;
        color: #545454;
    }

    .head-contact-text a {
        font-size: 16px;
        font-weight: 500;
        color: #252525;
    }

.head-contact-details .social-icons {
    margin-top: 0;
}

    .head-contact-details .social-icons .social-icon-list {
        width: 38px;
        height: 38px;
    }

.head-contact-icon {
    background-color: #f96b33;
    padding: 5px;
    color: #fff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
}


    .head-contact-icon i {
        font-size: 20px;
        margin: auto;
    }

.head-contact-social-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}
.gst-wrap {
    display: flex;
    justify-content: flex-end;
}

.gst-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    /*    background-color: #fff4ee;
    border: 1px solid #ffceac;
    border-radius: 20px;*/
    padding: 3px 12px;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease;
}

    .gst-badge i {
        color: #f96b33;
        font-size: 20px;
    }

    .gst-badge span {
        font-size: 14px;
        font-weight: 600;
        color: #252525;
        letter-spacing: .2px;
    }
/*
    .gst-badge:hover {
        background-color: #ffe8db;
        border-color: #f96b33;
    }*/

.mobile-menu {
    display: none;
    width: 35px;
    cursor: pointer;
}

.offcanvas-body {
    background: linear-gradient(116deg, #0f172a 51%, #041938 50%)
}

.offcanvas-header {
    padding: 0px 12px 7px;
}

/* Style the list */
ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
}

    /* Display list items side by side */
    ul.breadcrumb li {
        display: inline;
        font-size: 16px;
        color: #f96b33;
    }

        /* Add a slash symbol (/) before/behind each list item */
        ul.breadcrumb li + li:before {
            padding: 8px;
            color: #fff;
            content: "/\00a0";
        }

        /* Add a color to all links inside the list */
        ul.breadcrumb li a {
            color: #fff;
            text-decoration: none;
        }

            /* Add a color on mouse-over */
            ul.breadcrumb li a:hover {
                color: #f96b33;
                text-decoration: underline;
            }

.product-list-main {
    background-color: #f4f4f4;
    margin-right: 40px;
}

.inside-product-list-main li a {
    padding: 20px 30px;
    color: #000;
    display: block;
    font-weight: 500;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ccc;
}

    .inside-product-list-main li a .square {
        width: 8px;
        height: 8px;
        flex: 0 0 8px;
        margin-top: 8px;
        background-color: #f96b33;
        display: inline-block;
    }

.inside-product-list-main li:last-child a {
    border: none;
}

.inside-product-list-main li.active a {
    color: #0f59c5;
}

.product-list-main .heading-wrap {
    padding: 30px 30px 10px;
}

.input-box {
    position: relative;
    height: 70px;
    max-width: 900px;
    margin: auto;
    width: 100%;
    background: #f4f4f4;
    border-radius: 0px;
    border: 1px solid #ccc;
}


    .input-box .button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .input-box input {
        height: 100%;
        width: 100%;
        outline: none;
        font-size: 16px;
        font-weight: 400;
        border: none;
        padding: 0 110px 0 35px;
        background-color: transparent;
    }

    .input-box .button {
        right: 20px;
        font-size: 16px;
        font-weight: 400;
        color: #fff;
        border: none;
        padding: 10px 25px;
        border-radius: 0px;
        background-color: #f96b33;
        cursor: pointer;
    }

        .input-box .button:active {
            transform: translateY(-50%) scale(0.98);
        }

.mt-30 {
    margin-top: 30px;
}

.product-options li {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 5px;
}

    .product-options li i {
        color: #f96b33;
    }

.product-content h1,
.product-content h2,
.product-content h3,
.product-content h4,
.product-content h5 {
    font-family: "Anton", sans-serif;
    font-size: 26px;
    color: #3b82f6;
    letter-spacing: .3px;
    margin: 34px 0 18px;
}

    .product-content h1:first-child,
    .product-content h2:first-child,
    .product-content h3:first-child,
    .product-content h4:first-child,
    .product-content h5:first-child {
        margin-top: 0;
    }

    /* Single-word heading = solid dark text; multi-word heading = leading words stay
       blue, only the last word turns dark (matches the site-wide <span>...</span> style
       heading convention). The word-splitting itself happens in a small script on the
       product details page since it needs to inspect the rendered heading text. */
    .product-content h1.heading-mono,
    .product-content h2.heading-mono,
    .product-content h3.heading-mono,
    .product-content h4.heading-mono,
    .product-content h5.heading-mono,
    .product-content .heading-last-word {
        color: #252525;
    }

.product-content-split h1,
.product-content-split h2,
.product-content-split h3,
.product-content-split h4,
.product-content-split h5 {
    text-align: center;
}

.product-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #545454;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

/* Sections without an accompanying image (Product Size Options, Optional Features,
   Compliance & Documentation, ...) get their bullet list evenly split into two
   columns, matching the original per-section layout. The Applications section is
   deliberately excluded (it stays single-column, alongside the product video).
   The split itself happens in JS (moving <li> elements into two real <ul>s) rather
   than via CSS column-count, because column-count "flows" items top-to-bottom then
   overflows into the next column - with an odd item count that leaves one item
   awkwardly stranded (and its bullet icon mispositioned) instead of giving two
   clean, evenly-centered columns. */
.product-content-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 50px;
    margin: 0 0 20px;
    justify-items: center;
}

    /* justify-items: center (above) sizes each <ul> to its widest <li> and
       centers that whole block within its column - so every icon lines up in
       a straight column. Centering each <li> individually instead (e.g. via
       flex + align-items:center) would size every row to its own text width,
       staggering the icons left/right based on how long each line is. */
    .product-content-cols ul li {
        text-align: left;
    }

@media (max-width: 767px) {
    .product-content-cols {
        grid-template-columns: 1fr;
        gap: 0;
        justify-items: stretch;
    }

    /* On mobile the single stacked column is narrower than each desktop
       half-column (it's the full container width instead of half), so text
       reaches - or nearly reaches - the column's full width more often. That
       collapses the desktop trick (sizing the <ul> to its widest <li> and
       centering that block) down to effectively left-aligned, since the item
       has nowhere left to "shrink" to. Centering each row as a flex group
       instead works regardless of how close the text comes to the column
       width. */
    .product-content-cols ul li {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        padding-left: 0;
    }

    .product-content-cols ul li::before {
        position: static;
        top: auto;
        margin-right: 8px;
    }
}

.product-content ol {
    padding-left: 20px;
    margin: 0 0 20px;
}

.product-content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 17px;
    color: #545454;
}

    .product-content ul li::before {
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #f96b33;
        position: absolute;
        left: 0;
        top: 1px;
    }

.product-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.product-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(2, 6, 23, .06);
}

    .product-content table th {
        background-color: #3b82f6;
        color: #fff;
        font-weight: 600;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: .4px;
    }

    .product-content table td {
        padding: 12px 16px;
        border-bottom: 1px solid #eee;
        font-size: 15px;
        color: #545454;
        text-align: center;
    }

    .product-content table tbody tr:nth-child(even) {
        background-color: #f8f9fb;
    }

    .product-content table tbody tr:last-child td {
        border-bottom: none;
    }

.list-style1 li {
    margin-bottom: 5px;
}

    .list-style1 li i {
        color: #f96b33;
    }

.outer {
    margin: 0 auto;
    max-width: 800px;
}

#big .item {
    background: #f4f4f4;
    padding: 25px;
    margin: 2px;
    color: #FFF;
    border-radius: 0px;
    text-align: center;
    height: 450px;
}

    #big .item img {
        object-fit: contain;
    }

#thumbs .item {
    background: #C9C9C9;
    height: 70px;
    line-height: 70px;
    padding: 0px;
    margin: 2px;
    color: #FFF;
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
}

    #thumbs .item h1 {
        font-size: 18px;
    }

#thumbs .current .item {
    background: #FF5722;
}

.owl-theme .owl-nav [class*='owl-'] {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    .owl-theme .owl-nav [class*='owl-'].disabled:hover {
        background-color: #D6D6D6;
    }

#big.owl-theme,
#thumbs.owl-theme {
    position: relative;
}

    #big.owl-theme .owl-next,
    #big.owl-theme .owl-prev,
    #thumbs.owl-theme .owl-prev,
    #thumbs.owl-theme .owl-next {
        background: #fff;
        line-height: 40px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-top: -20px;
        position: absolute;
        text-align: center;
        top: 50%;
        color: #333 !important;
    }

    #big.owl-theme .owl-prev,
    #thumbs.owl-theme .owl-prev {
        left: 10px;
    }

    #big.owl-theme .owl-next,
    #thumbs.owl-theme .owl-next {
        right: 10px;
    }

    #thumbs.owl-theme .owl-next,
    #thumbs.owl-theme .owl-prev {
        background: #333;
    }

.brochure {
    width: 190px;
    display: block;
    margin-top: 30px;
}

.btn-width {
    width: 190px;
}

.heading-wrap {
    margin-bottom: 32px;
}

.product-desc-inside .heading-wrap {
}

.display-mobile {
    display: none;
}

.white-background {
    background-color: #fff;
}

.about-feature-wrap {
    margin-left: 30px;
}

.about-feature {
    margin-top: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}

.about-feature_title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222222;
    text-transform: uppercase;
}

.about-feature_text {
    margin-bottom: 5px;
    font-size: 16px;
}


.contact-content {
    /* background-color: #1e791f; */
    padding: 60px 0 0px;
}

    .contact-content .contact-form textarea,
    .contact-content .contact-form input {
        width: 100%;
        height: 60px;
        border: 1px solid #dee2e6;
        outline: none;
        padding-left: 20px;
        line-height: 58px;
        margin-bottom: 20px;
    }

    .contact-content .contact-form textarea {
        height: 221px;
    }

    .contact-content .contact-info {
        padding: 0;
    }

        .contact-content .contact-info li {
            list-style: none;
            display: flex;
            /* align-items: center; */
            justify-content: center;
        }

            .contact-content .contact-info li .icon-box,
            .contact-content .contact-info li .content-box {
                display: table-cell;
                vertical-align: top;
            }

                .contact-content .contact-info li .icon-box .inner {
                    width: 50px;
                    height: 50px;
                    border-radius: 10px;
                    /* background-color: #000; */
                    text-align: center;
                    line-height: 40px;
                    color: #fff;
                    font-size: 30px;
                    margin-right: 25px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .contact-content .contact-info li .content-box h4 {
                    margin: 0;
                    font-size: 18px;
                    text-transform: uppercase;
                    color: #0f3c6a;
                    margin-bottom: 10px;
                    font-family: "Plus Jakarta Sans", sans-serif;
                    font-weight: bold;
                }

                .contact-content .contact-info li .content-box p {
                    line-height: normal;
                    margin-bottom: 10px;
                    font-weight: 500;
                }

.contact-form {
    position: relative;
    padding-bottom: 60px;
}

    .contact-form .border {
        padding: 3rem !important;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0px 1px 25px 0px rgb(120 120 120 / 24%);
    }

    .contact-form .sec-title {
        font-size: 28px;
    }

    .contact-form .form-control {
        min-height: 46px;
        display: block;
        width: 100%;
        padding: .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #dee2e6 !important;
        border-radius: 0;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .contact-form .quform-element > label {
        font-weight: 500;
        padding-bottom: 5px;
        margin-bottom: 0;
        color: #6A6A6A;
        font-size: 16px;
    }

.from-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.quform-element label span.quform-required {
    color: #cc0101;
    font-size: 10px;
}

.contact-form .quform-element {
    margin-bottom: 10px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 10px rgba(55, 125, 255, 0.1);
    border-color: #4e86ff
}

.contact-form .form-control::-webkit-input-placeholder {
    color: #d0d4d9;
    opacity: 1
}

.contact-form .form-control::-moz-placeholder {
    color: #d0d4d9;
    opacity: 1
}

.contact-form .form-control:-ms-input-placeholder {
    color: #d0d4d9;
    opacity: 1
}

.contact-form .form-control::-ms-input-placeholder {
    color: #d0d4d9;
    opacity: 1
}

.contact-form .form-control::placeholder {
    color: #d0d4d9;
    opacity: 1
}

.contact-content .contact-info li {
    justify-content: initial;
    margin-bottom: 30px;
}

.product-details .btn-wrap {
    display: flex;
    gap: 10px;
}

#videoModal .btn-close {
    filter: invert(1);
    z-index: 1
}

.request-call-sec .heading-wrap {
    margin-bottom: 0
}

/* Trusted Clients */
.clients-sec {
    background-color: #fbfbfb;
}

.client-logo-card {
    background-color: #fff;
    border: 1px solid #ececec;
    border-top: 3px solid #f96b33;
    border-radius: 10px;
    min-height: 130px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(2, 6, 23, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .client-logo-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .55) 50%, rgba(255, 255, 255, 0) 100%);
        transform: skewX(-20deg);
        animation: clientShine 3.2s ease-in-out infinite;
    }

    .client-logo-card img {
        height: 80px;
        width: auto;
        max-width: 420px;
        object-fit: contain;
        position: relative;
        z-index: 1;
    }

    .client-logo-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 16px 34px rgba(2, 6, 23, .14);
        border-color: #f96b33;
    }

@keyframes clientShine {
    0% {
        left: -75%;
    }

    60% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

/* Blog listing cards */
.blog-list-wrap {
    background-color: #EBEBEB;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .blog-list-wrap:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(2, 6, 23, .1);
    }

.blog-image {
    height: 220px;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .blog-details .blog-date {
        font-size: 13px;
        color: #f96b33;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .blog-details .blog-title {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 500;
        font-size: 23px;
        line-height: 1.35;
        color: #252525;
        margin-bottom: 10px;
    }

    .blog-details p {
        font-size: 13px;
        color: #6b6b6b;
        flex: 1;
        margin-bottom: 15px;
    }

    .blog-details .view-details-btn {
        align-self: flex-start;
    }

.blog-card-noimage {
    background: #e6e4e4;
}

    .blog-card-noimage .blog-date,
    .blog-card-noimage .blog-title {
        color: #3b82f6;
    }


    .blog-card-noimage p {
        color: #545454
    }
    .blog-card-noimage .blog-date {
        color: #252525;
    }

/* Blog details page */
.blog-detail-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.blog-detail-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.blog-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #545454;
}

    .blog-detail-content h1,
    .blog-detail-content h2,
    .blog-detail-content h3,
    .blog-detail-content h4,
    .blog-detail-content h5 {
        font-family: "Anton", sans-serif;
        font-size: 26px;
        color: #3b82f6;
        letter-spacing: .3px;
        margin: 34px 0 18px;
    }

        .blog-detail-content h1:first-child,
        .blog-detail-content h2:first-child,
        .blog-detail-content h3:first-child,
        .blog-detail-content h4:first-child,
        .blog-detail-content h5:first-child {
            margin-top: 0;
        }

        .blog-detail-content h1.heading-mono,
        .blog-detail-content h2.heading-mono,
        .blog-detail-content h3.heading-mono,
        .blog-detail-content h4.heading-mono,
        .blog-detail-content h5.heading-mono,
        .blog-detail-content .heading-last-word {
            color: #252525;
        }

    .blog-detail-content p {
        margin-bottom: 15px;
    }

    .blog-detail-content ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
    }

    .blog-detail-content ol {
        padding-left: 20px;
        margin: 0 0 20px;
    }

    .blog-detail-content ul li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 17px;
        color: #545454;
    }

        .blog-detail-content ul li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #f96b33;
            position: absolute;
            left: 0;
            top: 1px;
        }

    .blog-detail-content img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
        margin-bottom: 15px;
    }

    .blog-detail-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 0 0 20px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 14px rgba(2, 6, 23, .06);
    }

        .blog-detail-content table th {
            background-color: #3b82f6;
            color: #fff;
            font-weight: 600;
            text-align: center;
            padding: 12px 16px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: .4px;
        }

        .blog-detail-content table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
            font-size: 15px;
            color: #545454;
            text-align: center;
        }

        .blog-detail-content table tbody tr:nth-child(even) {
            background-color: #f8f9fb;
        }

        .blog-detail-content table tbody tr:last-child td {
            border-bottom: none;
        }

.blog-prev-next {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.blog-nav-link {
    display: inline-block;
    color: #252525;
}

    .blog-nav-link:hover .fw-semibold {
        color: #f96b33;
    }

.recent-blogs-wrap {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
}

.recent-blog-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #252525;
}

    .recent-blog-item img,
    .recent-blog-noimage {
        width: 64px;
        height: 56px;
        object-fit: cover;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .recent-blog-noimage {
        background-color: #EBEBEB;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
    }

    .recent-blog-item .recent-blog-title {
        font-size: 14px;
        font-weight: 500;
    }

    .recent-blog-item:hover .recent-blog-title {
        color: #f96b33;
    }

/* Dedicated FAQ page */
.faq-page-sec {
    background-color: #fbfbfb;
}

.faq-page-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.faq-page-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.faq-page-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #1e222b;
    color: #fff;
    font-family: "Anton", sans-serif;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    transition: background-color .25s ease;
}

.faq-page-content {
    flex: 1;
    background-color: #fff;
    border: 1px solid #ececec;
    border-left: 3px solid transparent;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, .05);
    transition: border-color .25s ease, box-shadow .25s ease;
    overflow: hidden;
}

.faq-page-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 17px;
    font-weight: 600;
    color: #252525;
    cursor: pointer;
}

    .faq-page-btn i {
        color: #f96b33;
        transition: transform .3s ease;
        flex-shrink: 0;
    }

    .faq-page-btn:not(.collapsed) i {
        transform: rotate(180deg);
    }

.faq-page-answer {
    padding: 0 22px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #545454;
}

.faq-page-item.faq-active .faq-page-number {
    background-color: #f96b33;
}

.faq-page-item.faq-active .faq-page-content {
    border-left-color: #f96b33;
    box-shadow: 0 14px 30px rgba(2, 6, 23, .1);
}

/* FAQ CTA banner */
.faq-cta-sec {
    padding: 50px 0 80px;
}

.faq-cta-box {
    background: linear-gradient(120deg, #1e222b 0%, #3b3f4a 100%);
    border-radius: 14px;
    padding: 40px 45px;
    gap: 20px;
}

    .faq-cta-box h3 {
        color: #fff;
        margin-bottom: 8px;
    }

    .faq-cta-box p {
        color: #cacaca;
        margin-bottom: 0;
    }
.top-head {
  background-color: #ededed;
  padding:8px 0
}