* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --all-color: #ffffff;
    --header-bg-color: #ffffff;
    --menu-text-color: #1ca291;
    --menu-active-color: #1ca291;
    --footer-bg-color: #3e847c;
    --footer-text-color: #ffffff;
    --footer-bottom-bg-color: #00574d;
    --footer-bottom-text-color: #ffffff;
    --mobile-menu-bg: #1ca291;
    --mobile-menu-text: #ffffff;
    --mobile-spinner: #1ca291;
    --primary-color: #1ca291;
    --btn-bg-color: #1ca291;
    --btn-txt-color: #ffffff;
}

html {
    font-size: 16px;
    min-height: 100%
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #838383;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -ms-overflow-style: scrollbar;
    oveflow-y: scroll;
}

iframe,
img {
    border: 0
}

a {
    text-decoration: none;
    color: inherit
}

a:hover,
a:focus {
    color: var(--primary-color);
    text-decoration: none
}

a:focus {
    outline: none
}

p {
    font-size: 14px;
    line-height: 1.6666;

}

li {
    list-style: none;
}

.section-padding {
    padding: 40px 0px;
}

.content {
    padding: 30px 0px 30px 0px;
    min-height: 300px;
}

.no-float {
    float: none !important
}

.no-margin {
    margin: 0 !important
}

.no-padding {
    padding: 0 !important
}

.no-lpadding {
    padding-left: 0 !important
}

.no-rpadding {
    padding-right: 0 !important
}

.no-border {
    border: none !important
}

.full-width {
    width: 100% !important
}

.main-header {
    background: var(--header-bg-color);
    box-shadow: 0px 0px 6px #0000009e;
}

.navbar {
    padding: 0px !important;
}

.nav-item {
    padding: 16px 5px;
}

ul.navbar-nav {
    float: right !important;
}


.nav-link {
    font-size: 14px !important;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--menu-text-color) !important;
}

.navbar-nav .active>.nav-link {
    color: var(--menu-active-color) !important;
}



.dropdown:hover .dropdown-menu {
    display: block;
    animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
}


@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg)
    }

    70% {
        transform: rotateX(20deg)
    }

    100% {
        transform: rotateX(0deg)
    }
}

.dropdown-toggle::after {
    content: none !important;
}

.dropdown-menu.show {
    margin: -5px 0px !important;
}

.dropdown-menu {
    margin: -5px 0px !important;
}



header#header {
    /*margin-bottom: 4%;*/
}

.main-header {
    height: 70px;
}

.main-header.sticky {
    position: fixed;
    z-index: 999;
    width: 100%;

    animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
}

#sidebarMenu {
    height: 1200px;
    position: fixed;
    left: 0;
    width: 250px;
    margin-top: 13%;
    transform: translateX(-250px);
    transition: transform 250ms ease-in-out;
    z-index: 99;


}

.sidebarMenuInner {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: left;
}

.sidebarMenuInner li {
    list-style: none;
    color: var(--mobile-menu-text);
    text-transform: uppercase;
    font-weight: bold;
    padding: 9px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.sidebarMenuInner li span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
}

.sidebarMenuInner li a {
    color: var(--mobile-menu-text);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

input[type="checkbox"]:checked~#sidebarMenu {
    transform: translateX(0);
    background: var(--mobile-menu-bg);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    left: 15px;
    height: 30px;
    width: 30px;
    transform: translateY(54%);
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--mobile-spinner);
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin: 3px 0px;
    width: 20px;
    height: 4px;
}

.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
    height: 4px;
    margin-bottom: 2px;
}

.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    height: 4px;
    margin-top: 2px;

}

input[type=checkbox]:checked~.sidebarIconToggle>.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
    margin: 1px 0px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(134deg);
    margin-top: 6px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -12px;
}

.m-accordion {
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
}

.m-active, .m-accordion:hover {
    background: none;
}

.m-accordion:after {
    content: '\002B';
    color: var(--mobile-menu-text);
    font-weight: bold;
    float: right;
    font-size: 20px;

}

.m-active:after {
    content: "\2212";
}

.m-panel {
    padding: 0 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

ul.m-panel li {
    padding: 7px 0px;
    border: 0px;
}


a.user-profile {
    position: absolute;
    right: 0;
    transform: translateY(28%);
    border: 1px solid var(--mobile-spinner);
    border-radius: 50%;
}

a.user-profile img {
    height: 45px;
    width: 45px;
    padding: 5px;
}

.thumb-img {
    height: 350px;
    width: 500px;
    margin: auto;
}

.thumb-img img {
    width: 100%;
    height: 100%;
}

.s-title {
    text-align: center;
    color: #03a9f4;
    font-size: 40px;
    padding: 16px 0px 5px 0px;
}

.h-about-d p {
    font-size: 21px;
}

.h-about-d a {
    margin-top: 3%;
}


.clients {
    padding: 30px 0px;
}

/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-arrow {
    background: #1e88e5;
    color: white;
    border-radius: 50%;
    padding: 0px 10px;
    width: 36px;
    height: 36px;
}


#partners {
    background: #e7f0fd;
}

.title {
    text-align: center;
    color: var(--primary-color);
    padding: 10px 0px;
    font-weight: 600;
    margin: 0px;
}

p.subtitle {
    text-align: center;
    font-size: 14px;
}


.partners-box {
    height: 200px;
    width: 210px;
    margin: auto;
    box-shadow: 3px 5px 8px #1b19194a;
    border-radius: 7px;
    padding: 12px;
}

.partners-box img {
    height: 100%;
    width: 100%;
}

p.slide-title {
    font-size: 17px;
}

p.slide-title {
    text-align: center;
    font-size: 17px;
    color: #1f1e1e;
    font-weight: 600;
    padding: 13px 0px;
}

.slide {
    cursor: grab;
}



#product {
    padding: 30px 0px;

}

.product-box {
    padding-bottom: 10px;
    padding-top: 5px;
    text-align: center;
    margin: 0px 10px;
}


.product-img:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #d8f2ff;
    width: 100%;
    height: 50%;
    z-index: -1;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-right-radius: 10px;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.product-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #eaf7ff;
    width: 100%;
    height: 50%;
    z-index: -1;
    -moz-border-radius-topleft: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    border-top-right-radius: 10px;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.product-img img {
    height: 154px;
    width: 100%;
}

.product-img {
    position: relative;
    width: 100%;
    padding: 10px;
}

.product-title {
    margin: 0px;
    color: black;
    font-size: 14px;
    padding-top: 4px;
}

.product_display {
    padding: 30px 0px;
}

.blog {
    box-shadow: 0px 0px 6px #0000003b;
    margin: 10px 20px;
    cursor: grab;
}

.blog:hover {
    box-shadow: 1px 2px 6px #0000005e;

}

.blog img {
    height: 250px;
}

.blog h5 {
    padding: 5px 0px;
    margin: 0px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog p {
    color: #ffa000;
    margin: 0px;
}

.view-btn {
    text-align: center;
    padding: 30px 0px 2px 0px;
}

.view-btn a {
    width: 30%;
}

.ch-img img {
    height: 100%;
    width: 100%;
    padding: 9px;
    border-radius: 14px;
}

.ch-img {
    width: 400px;
    height: 335px;
    margin: auto;
    border-radius: 10px;
    border: 4px solid white;
}

.ch-title h1 {
    color: white;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid;
}

.ch-msg {
    border-left: 3px solid #e2dede;
    margin-top: 7%;
    height: 222px;
    padding: 0px 20px;
}

.ch-msg p {
    color: white;
    font-size: 18px;
    font-style: oblique;
}


section#footer {
    background: var(--footer-bg-color);
}

p.copyright {
    margin: 0px;
    text-align: center;
    background: var(--footer-bottom-bg-color);
    color: var(--footer-bottom-text-color);
    padding: 18px 44px;
    font-size: 15px;
    position: absolute;
    width: 100%;
}
p.copyright a:hover {
    color: #fff;
}

#directors {
    background: #eff5ff;
}

.director-single {
    background: white;
    border-radius: 10px;
    padding: 6px;
    text-align: center;
    cursor: grab;
}

.director-single:hover {
    box-shadow: 2px 1px 4px #0000002e;

}

.director-img {
    height: 170px;
    width: 170px;
    padding: 5px;
    margin: auto;
}

.director-img img {
    border: 2px solid var(--primary-color);
    height: 100%;
    width: 100%;
    border-radius: 50%;
    padding: 5px;
}

.director-title p {
    font-size: 16px;
    color: black;
}

.director-title h3 {
    color: var(--primary-color);
    font-size: 24px;
}

.director-title {
    padding: 9px 0px;
}

.director-title h5 {
    font-size: 19px;
    color: black;
    font-weight: 600;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: black;
    border: 0;
    outline: none;
    background: none;
    border-radius: 50%;
    border: 1px solid #0000009c;
    margin-top: 10px;
}

.slick-dots li button:hover, .slick-dots li button:focus {
    background: #2196f3;
}

.newsletter-section {
    width: 100%;
    height: 300px;
    position: relative;
    background-image: -moz-linear-gradient(left, #eceff1, #1e88e52b), url('../images/nl.png');
    background-image: linear-gradient(90deg, #eceff1, #1e88e52b), url(../images/nl.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.nl-form {
    transform: translateY(50%);
}

.nl-form .form-inline {
    display: inline-flex;
}

.contact-address {
    text-align: center;
    background: #f7f7f7;
    margin: 0 0 60px;
    padding: 45px;
    color: #000;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
}

.nl-title p {
    color: #1e1a1a;
    font-size: 18px;
}

.nl-title h3 {
    color: var(--primary-color);
}

.footer {
    padding-top: 20px;
    color: var(--footer-text-color);
}

.first-widget {
    text-align: center;
}

.footer-social p {
    font-size: 14px;
}

.footer-contact-us {
    color: var(--footer-text-color);
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}

.quick-icon ul {
    margin: 0;
    padding: 0;
}

.quick-icon ul li {
    list-style: none;
    text-decoration: none !important;
    z-index: 1;
    position: relative;
    display: block;
    padding: 12px 5px;
    border-bottom: 1px solid #5a5555;
    color: var(--footer-text-color);
    text-transform: uppercase;
    font-size: calc(14px + .05vw);
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
}

.main-last-widget {
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    font-size: 14px;
}

.last-first-sec {
    margin-right: 20px;
}

.main-last-widget ul {
    margin: 0;
    padding: 0;
}

.last-first-sec ul li {
    line-height: 33px;
}

.main-last-widget li {
    list-style: none;
}

.main-last-widget li a {
    text-decoration: none !important;
    z-index: 1;
    position: relative;
    display: block;
    padding: 6.5px 5px;
    border-bottom: 1px solid #5a5555;
    color: var(--footer-text-color);
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
}


.main-last-widget a {
    color: #fff;
}

.footer-social i {
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    text-align: center;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 35px;
    border: 1px solid #fff;
}

.first-widget img {
    padding-bottom: 11px;
}

.first-widget h3 {
    font-size: 28px;
    margin: 0px;
}


.search {
    background: #ffffff;
    height: 40px;
    border-radius: 40px;
}

.search:hover>.search-txt {
    width: 140px;
    padding: 0 10px;
    color: wheat;
    font-family: 'Pangolin', cursive;
}

.search:hover>.search-btn {
    background: white;
}

.search-btn {
    color: white;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #03a9f4;
}

.search-txt {
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: white;
    font-size: 16px;
    transition: ease-in 0.4s;
    line-height: 40px;
    width: 0px;
    font-family: 'Pangolin', cursive;
}

.fas fa-search {
    font-weight: 200;
    font-size: 40px;
}

.product-box2 img {
    height: 100%;
    width: 100%;
}

.product-box2 {
    height: 180px;
    width: 200px;
    border: 1px solid #9e9e9e;
    padding: 16px;
    border-radius: 4px;
    margin: auto;
    margin-bottom: 8%;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.product-box2:hover {
    box-shadow: 5px 7px 9px #0000003b;
    transform: scale(1.04);
}

.company-box {
    margin: 1.5rem;
}

.company-box img {
    height: 100%;
    width: 100%;
}

.company-box:hover {
    box-shadow: 0px 0px 6px #00000066;
    transform: scale(1.05);
    transition: all 0.5s ease-in-out;
}

.contact-box {
    border: 1px solid #03a9f4;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    margin-bottom: 5%;
}

.contact-box h3 {
    color: #03a9f4;
}

.contact-box p {
    color: black;
    font-size: 18px;
    margin: 27px 0px 0px 0px;
}

.contact-form {
    background: #e3f2fd;
    padding: 30px 0px;
}

.contact-data {
    margin: auto;
    width: 65%;
}

.mission {
    padding: 25px 0px;
}


.mission-img {
    width: 80%;
    margin: auto;
    height: 306px;
}

.mission-img img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 6px #00000085;
}

.mission-text h3 {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

.mission-text p {
    padding: 15px 0px;
    color: black;
    font-size: 17px;
}

.jobs-header {
    background-image: url('../images/jobs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 371px;
}

.jobs-header-title {
    text-align: center;
    transform: translateY(50%);
    height: 219px;
}

.jobs-header-title h3 {
    font-size: 55px;
    color: white;
    font-weight: 600;
}

.jobs-list {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 38px 20px;
    box-shadow: 2px 2px 12px #00000024;
    margin-bottom: 5%;

}

.jobs-list h2 {
    color: var(--primary-color);
}

.jobs-list p {
    color: black;
}


.job-apply a {
    width: 67%;
    font-size: 23px;
}

.job-apply {
    text-align: center;
    height: 100%;
    transform: translateY(30%);
}

.jd-header-title h3 {
    font-size: 39px;
    border-left: 6px solid #fdd835;
    border-radius: 4px;
    padding: 5px;
}

.jd-header-title {
    color: white;
    transform: translateY(50%);
    height: 206px;
}

.jd-img img {
    height: 100%;
    width: 100%;
    border-radius: 16px;
}

.jd-img {
    width: 400px;
    height: 300px;
    box-shadow: 0px 0px 6px white;
    border-radius: 16px;
}

.appy-now {
    padding: 10px;
    text-align: center;
}

section.resume {
    padding: 30px 0px;
}

.resume-form {
    margin: auto;
    width: 50%;
    background: #f1f8e9;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0px 0px 6px #0000005e;
}

.blog-cover img {
    height: 100%;
    width: 100%;
    border-radius: 13px;
    box-shadow: 0px 0px 6px #00000063;
}

.blog-cover {
    height: 440px;
    width: 100%;
}

.blog-details h1 {
    color: var(--primary-color);
}

.blog-details {
    padding: 15px 0px;
}

.read-more-btn a, .read-more-btn button {
    padding: 13px 25px;
    display: inline-block;
    -moz-border-radius: 160px;
    border-radius: 160px;
    cursor: pointer;
    color: var(--btn-txt-color);
    border: none;
    background-color: var(--btn-bg-color);
    /*background-image: -moz-linear-gradient(left,#005bea 0,#00c6fb 50%,#005bea 100%);*/
    /*background-image: linear-gradient(90deg,#005bea 0,#00c6fb 50%,#005bea);*/
    /*-moz-transition: all .2s ease-in-out;*/
    transition: all .2s ease-in-out;
    background-size: 200% 100%;
}

.read-more-btn a:hover, .read-more-btn button:hover {
    background: var(--btn-bg-color) !important;
    color: var(--btn-txt-color);
    border-color: var(--btn-bg-color) !important;
}

.blog-section {
    padding: 15px 0px;
}

/*.blog-header {*/
/*    background-image: linear-gradient(90deg, rgb(6 6 6 / 37%), rgb(0 0 0 / 71%)), url(../img/blog-bg.jpg);*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    height: 371px;*/
/*}*/

.clients-box {
    height: 150px;
    width: 100%;
    box-shadow: 0px 3px 8px #1b19194a;
    border-radius: 7px;
    padding: 12px;
    margin: 10px 0px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.clients-box img {
    height: auto;
    width: 100%;
    margin: 0 auto;
}

.underline-border {
    border-top: 1px solid white;
    margin: auto;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.company-overview {
    background: #e1f5fe;
    padding: 58px 0px;
}

.company-img img {
    width: 100%;
    height: auto;
    border-radius: 11px;
}

.company-text h3 {
    color: var(--primary-color);
}

.company-text {
    padding-top: 10px;
}

.company-text p {
    color: black;
    font-size: 16px;
}

.company-des h5 {

    font-weight: 600;
}

.company-des {
    position: absolute;
    bottom: 14px;
    background: #000000a3;
    left: 29px;
    width: 42%;
    border-radius: 5px;
    padding: 5px 15px;
    color: white;
}

.quick-icon ul li span {
    padding: 15px;
}





.sister-concern {
    background-color: #fff;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.sister-concern {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.sister-concern {
    text-align: center;
}

.sister-concern-img {
    -moz-box-shadow: 2px 3px 3px 2px rgba(0, 0, 0, .1);
    box-shadow: 2px 3px 3px 2px rgb(0 0 0 / 10%);
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 30px;
    height: 160px;
    width: 161px;
    display: flex;
    align-items: center;
}


.our-companies img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
    padding-top: 6px;
}

.sister-concern-img img {
    width: 100%;
    padding-top: 19px !important;
}

.sister-concern:hover {
    -webkit-transform: translateY(-10px) scale(1.02);
    -moz-transform: translateY(-10px) scale(1.02);
    transform: translateY(-10px) scale(1.02);
}


.all-clients {
    background-color: #fff;
    -moz-border-radius: 10px;
    border-radius: 10px;
    box-shadow: 2px 3px 3px 2px rgb(0 0 0 / 10%);
    text-align: center;
    background-color: #fff;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.all-clients-img {

    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 30px;
}

.all-clients-img {
    height: 180px;
    width: 180px;
    margin: auto;
}

.all-clients-img img {
    width: 100%;
    padding-bottom: 11px;
    height: 114px;
}

.all-clients-img p {
    font-weight: 600;
    font-size: 15px;
    color: #3b3636;
}

.all-clients:hover {
    -webkit-transform: translateY(-10px) scale(1.02);
    -moz-transform: translateY(-10px) scale(1.02);
    transform: translateY(-10px) scale(1.02);
}


.bg-section {
    background: #f1f6ff;
}

#scroll {
    position: fixed;
    right: 20px;
    bottom: 65px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: var(--btn-bg-color);
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 99;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: var(--btn-txt-color);
}

#scroll:hover {
    background-color: #607d8b;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

.contact_map iframe {
    height: 100% !important;
    width: 100% !important;
}

.contact_map {
    height: 231px;
    width: 100%;
}

.product-details-img img {
    width: 100%;
    height: auto;
    border-radius: 11px;
    padding: 5px;
    border: 2px solid #e0dede;
}

.product-details-img {
    width: 100%;
    height: auto;
}

.pdf-btn {
    text-align: center;
    padding: 17px;
    margin: 5px 0px;
}

.custom-table.home thead {
    background: #488b61 !important;
    color: #ffffff;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-weight: bold;
    font-size: 25px;
    /* border-radius: 20px; */
    text-transform: uppercase;
}

.custom-table thead td {
    padding: 25px 15px;
    text-align: center;
    color: #fff !important;
    background: #005450;
    font-weight: 800;
    font-size: 25px;
}

.custom-table td {
    width: 51%;
    border-right: 3px solid #fff !important;
    border-top: 1px solid;
}


.custom-table tbody td:first-child {
    background: #2e987d;
    color: #f9f9f9;
    font-size: 20px;
}

.custom-table tbody td {
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    line-height: 2em;
    padding: 16px 15px;
}


.custom-table tbody td:nth-child(2) {
    background: #f7e8da;
    color: #2e987d;
}

ul.m-panel li a {
    font-weight: 500;
}

.user-profile i {
    border-radius: 50%;
    padding: 8px;
    color: var(--mobile-spinner);
    height: 32px;
    width: 32px;
}

.job-apply a, .appy-now a, .pdf-btn a {
    background: var(--btn-bg-color);
    color: var(--btn-txt-color);
}

.job-apply a:hover, .appy-now a:hover, .pdf-btn a:hover {
    background: var(--btn-bg-color) !important;
    color: var(--btn-txt-color);
    border-color: var(--btn-bg-color) !important;
}

.dropdown-item.active, .dropdown-item:active {
    color: #16181b;
    text-decoration: none;
    background-color: #e9ecef;
}

/* new style */
#homeSliders .item img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 650px;
    /* adjust to your hero height */
}

/* Remove default owl nav button styling */
#homeSliders .owl-nav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

#homeSliders .owl-nav button.owl-prev,
#homeSliders .owl-nav button.owl-next {
    pointer-events: all;
    background: transparent !important;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

#homeSliders .owl-nav button.owl-prev {
    margin-left: 10px;
}

#homeSliders .owl-nav button.owl-next {
    margin-right: 10px;
}

#homeSliders .owl-nav button:hover {
    opacity: 1;
    background: transparent !important;
}

/* Thin chevron arrows drawn with borders (no icon font needed) */
.owl-arrow-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.owl-prev-icon {
    /* transform: rotate(-135deg); */
}

.owl-next-icon {
    /* transform: rotate(45deg); */
}

#homeSliders .owl-nav [class*=owl-] {
    font-size: 25px;
    background: transparent;
}

/* Dash-style dots instead of round ones */
#homeSliders .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

#homeSliders .owl-dots .owl-dot span {
    width: 30px;
    height: 4px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.4);
    margin: 0;
    transition: background 0.3s ease;
}

#homeSliders .owl-dots .owl-dot.active span {
    background: #ffffff;
}

#homeSliders .slider-item {
    height: 650px;
}
#homeSliders .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make slider section relative so absolutely-positioned nav/dots anchor correctly */
#slider {
    position: relative;
}

.product-card {
    background-color: #cce3f1;
    padding: 10px;
    border-radius: 15px;
}

.product-card h5 {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}
.product-carousel {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}