@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}
    .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;
}

.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;
    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;
}

.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: 7px 0;
}

.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;
}

.mobile-menu {
    display: none;
    width: 35px;
    cursor: pointer;
}

.offcanvas-body {
    background: linear-gradient(116deg, #0f172a 51%, #041938 50%)
}

.offcanvas-header {
    padding: 7px 12px;
}

/* 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;
}

.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;
}