@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --anchor-color: #59ba41;
    --p-color: #212426e6;
    --body-color: #212426e6;
    --btn-hover-bgcolor: #59ba41;
    --btn-warning-bgcolor: #FF9800;
}

html,
body {
    scroll-behavior: smooth;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    line-height: 1.8;
}

body {
    font-family: "HK Grotesk", Helvetica, arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    overflow-x: hidden;
    background: #fff;
    color: #212426e6;
}

p {
    font-size: 15px;
    color: var(--p-color);
}

a {
    font-size: 15px;
    color: var(--anchor-color);
    text-decoration: none !important;
}

a.hover {
    color: #212426e6;
}


/* ------------------header css----------------- */
.navbar {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 20px !important;
    background: white;
    z-index: 999;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

#zenscaleHeaderNavs .navbar-nav .dropdown {
    position: unset;
}

.header_logo {
    width: 180px !important;
    height: 42px !important;
}

#zenscaleHeaderNavs .navbar-nav .nav-item {
    margin-right: 30px;
}

#zenscaleHeaderNavs .navbar-nav .nav-link {
    font-weight: 600;
    color: #323131;
}

.call-back {
    width: 200px;
}

.call-back .login-signup-a {
    margin-bottom: 20px;
    margin-left: 8px;
}

.call-back .login-signup-a a {
    margin-right: 6px;
    font-size: 78%;
    color: #03363d;
    transition: all .3s;
}

.call-back .login-signup-a a:hover {
    color: var(--btn-hover-bgcolor);
}

.request-call-btn {
    border-radius: 25px;
    background-color: var(--btn-warning-bgcolor);
    padding: 5px 20px;
    color: #fff;
    font-weight: 500;
    border: 2px solid #f59811;
    transition: all .5s;
}

.request-call-btn:hover {
    background-color: var(--btn-hover-bgcolor);
    border: 2px solid var(--btn-hover-bgcolor);
    color: #fff;
}

.dropd-menu-heading {
    font-size: 90%;
    color: #858585;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#zenscaleHeaderNavs .navbar-nav .drop-menu-custom {
    padding: 15px 20px 10px;
    border: none;
    box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
    top: 70%;
    left: 18%;
    width: 910px;
}

.drop-menu-custom2 {
    display: flex;
    flex-wrap: wrap;
    overflow-wrap: break-word;
}

#zenscaleHeaderNavs .drop-menu-custom .dropdown-item {
    white-space: normal;
    padding: 5px 5px 0px 15px;
    min-height: 90px;
    border-left: 3px solid transparent;
    transition: all .25s;
    /* background: #eef5e7; */
    /* border-radius: 15px; */
}

#zenscaleHeaderNavs .drop-menu-custom .dropdown-item:hover {
    background: #fff;
    border-color: #85bf47;
    box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
    /* border-top: 1px solid #85bf47;
    border-right: 1px solid #85bf47;
    border-bottom: 1px solid #85bf47; */
}

#zenscaleHeaderNavs .drop-menu-custom .dropdown-item .col-lg-3,
#zenscaleHeaderNavs .drop-menu-custom .dropdown-item .col-lg-9 {
    padding: 0 3px;
}

#zenscaleHeaderNavs .drop-menu-custom .dropdown-item .content {
    margin-left: 10px;
}

.drop-menu-custom .dropdown-item .content h6 {
    font-size: 15px;
    font-weight: 700;
}

.drop-menu-custom .dropdown-item .content p {
    font-size: 80%;
}

#zenscaleHeaderNavs .drop-menu-custom .dropdown-item img {
    width: 51px;
}

#zenscaleHeaderNavs .drop-menu-custom li {
    width: 33.33%;
    padding: 0 5px;
}



/* ------------------header css end----------------- */

/* banner */
.banner {
    padding: 40px 0;
}

.banner h1 {
    margin-top: 45px;
    margin-bottom: 35px;
}

.global-heading {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    padding: 5px 0;
}

.customer-slider {
    padding: 50px 0;
    text-align: center;
}

.customer-slider img {
    margin: 5px;
    /* width: 85%; */
}

.zen-tagline {
    font-weight: 500;
    text-align: center;
    margin-bottom: 2.5rem;
}

.why_zenscale {
    padding: 50px 0;
}

/* General box styling */
.why-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin: 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 270px;
}

/* Hover effects */
.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.why-img {
    margin-bottom: 15px;
}

.why-img img {
    max-width: 60px;
    height: auto;
    display: inline-block;
}

.why-box h5 {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}

.why-box h5 a {
    text-decoration: none;
    color: #59ba41;
    transition: color 0.3s ease;
}

.why-box h5 a:hover {
    color: #005bb5;
}

/* Paragraph styling */
.why-box p {
    font-size: 0.9em;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}



.key-skills {
    padding: 50px 0;
}

/*-------------- features  --------------*/
/* Feature item container */
.feature-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    max-width: 350px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 330px;
}

/* Hover effect */
.feature-item:hover {
    transform: translateY(-8px);
    /* Lift effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow */
}


.testimonials {
    padding: 15px 0 0;
}

.testimonials-box {
    background-color: #59ba41;
    padding: 20px 30px;
    border-radius: 5px;
    height: 250px;
    position: relative;
    text-align: center;
}

.testimonials-box>p {
    color: rgb(255 255 255);
    font-style: italic;
}

.testimonials-box-content {
    padding: 40px 0 0 0;
}

.testimonials-box-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonials-box-content h6 {
    color: #fff;
    font-size: 18px;
}

.testimonials-box-content>p {
    color: rgb(255 255 255);
    font-style: italic;
    font-size: 14px;
}

.cta-box {
    padding: 70px 50px;
    background: #fff;
    border-radius: 4px;
    position: relative;
    top: 50px;
}

/* banner end */

hr {
    margin: 0.5rem 0;
}

input:focus {
    outline: none;
}

/* signin css */
.header-content {
    padding-top: 0px;
    background: linear-gradient(to bottom, #F8FBFF, #e1e7ff, #f8fbff);
}

.header-content::before {
    background: url(../images/bg/shape-a.svg), linear-gradient(to bottom, #cfd6ff, #e1e7ff, #f8fbff);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}

.contact-form {
    margin-top: 70px;
    margin-bottom: 30px;
    padding: 50px 20px 40px !important;
    box-shadow: 0 10px 10px rgb(99 114 130 / 10%);
    border-radius: 4px;
    background: #fff;
}

.login-title {
    text-align: center;
}

.lead {
    font-size: 1.1rem !important;
}

.input-login {
    width: 100%;
    border: none;
    font-size: .875em;
    border-bottom: 1px solid #e2e7ed;
    padding: 5px 5px 5px 10px;
}

.login-text a {
    color: var(--anchor-color);
    font-size: 14px;
}

.login-btn-s2 {
    float: right;
}

/* signin css end */

/* body slider */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #72bf37;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* body slider end */

/* solution section */
.solution-main {
    background-color: #f9f9f9;
    padding: 30px 5px;
}

.solu_top_header {
    background: #baffc9;
    padding: 40px 150px;
    color: #03363d;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
}

.solu_services_intro {
    padding: 20px;
    text-align: center;
}

.solutions_img_cont {
    width: 150px;
    height: 60px;
}

.content-case-study-main h4 {
    font-weight: 700;
    text-align: center;
    padding: 20px 0;
}

.head-bg-style::before {
    background-color: #f9dfea;
    content: "";
    position: absolute;
    width: 100px;
    height: 40px;
    border-radius: 40px;
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    left: 36%;
    top: -4%;
    z-index: -1;
}

.content-case-study {
    padding: 14px;
    background: white;
    text-align: center;
    border-radius: 5px;
    height: 400px;
}

.content-case-study h5 {
    font-size: 24px;
    color: #9db5ad;
    padding: 15px 10px;
}

.content-case-study img {
    height: 370px;
}

/* solution section end */

/* product css */
.product-header {
    background: linear-gradient(to bottom, #9CE36B, #73c038);
    padding: 50px 0 10px;
    color: #fff;
}

.product-header .contact-form-leads,
.zentask-banner .contact-form-leads {
    background: #fff;
}

.product-header .contact-form-leads h4 {
    color: #1a1717;
}

.prod-line-bar {
    border-top: 1px solid #fff;
    height: 1px;
    width: 100px;
    background-color: #fff;
    margin-bottom: 5px;
    margin-left: 2px;
    display: inline-block;
}

.product-head-list li {
    list-style: disc;
    margin-right: 40px;
}

.prod-why-choose-zen {
    padding: 50px 0;
}

.gallery-wrapper {
    text-align: center;
    padding: 25px 10px 10px;
    background: #fff;
    border-radius: 3px;
    height: 250px;
    margin-top: 12px;
}

.gallery-wrapper h5 {
    margin-top: 25px;
}

.u-icon {
    padding: 18px;
    border-radius: 18px;
}

.u-icon i {
    font-size: 25px;
}

.u-icon--green {
    color: #25c16f;
    background: rgba(37, 193, 111, .1);
}

.u-icon--primary {
    color: #2f5be7;
    background: rgba(47, 91, 231, .1);
}

.u-icon--secondary {
    color: #6eecec;
    background: rgba(110, 236, 236, .2);
}

.u-icon--danger {
    color: #de4437;
    background: rgba(222, 68, 55, .1);
}

.product-reporting {
    padding: 50px 0;
    background-color: #f5f7fa;
}

.prd-repo-intro {
    text-align: center;
    background: #fff;
    padding: 14px 10px;
    margin-top: 10px;
    border-radius: 3px;
    height: 230px;
    border: 1px solid #ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.prd-repo-intro:hover,
.gallery-wrapper:hover {
    border: 1px solid #59ba41;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.prd-repo-intro img {
    width: 60px;
    margin-bottom: 20px;
}

.why-finance-ac {
    padding: 50px 0;
    background-color: #e5eefd;
}

.why-finance-ac .gallery-wrapper {
    height: 100%;
}

.why-finance-ac img {
    float: right;
    width: 70%;
}

.empower-bussiness {
    padding: 50px 0;
    background-image: linear-gradient(180deg, #7e93b3 -10%, #41526f 100%);
    color: #fff;
}

.empower-bussiness p {
    color: #fff;
}

.emp-icon {
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 30px;
    background: #a8b8d1;
    color: #4CAF50;
}

.empower-bussiness h6 {
    margin-top: 20px;
}

.effective-financial {
    padding: 50px 0;
    background: #f5f7fa;
}

.product-contact-us {
    padding: 50px 0;
    background: #343a40;
    color: #fff;
}

.product-contact-us p {
    color: #fff;
    text-align: center;
}

/* product css end */

/* zentask */
.zentask-banner {
    padding: 50px 0;
    text-align: center;
    background: #f0f7ee;
}

.zentask-banner h1 {
    font-size: 60px;
}

.face-issue-task {
    padding: 50px 0;
}

.face-issue-task ul li {
    margin-top: 10px;
    color: #414141;
    font-size: 15px;
}

.manage-team-effi {
    padding: 50px 0;
    background: #fff;
}

.zen_color {
    color: #59ba41;
}

.manage-team-cont {
    margin-top: 20px;
}

.manage-team-cont h6 {
    font-size: 20px;
    margin-top: 25px;
}

.zent-icon {
    padding: 15px 15px;
    border-radius: 20px;
}

.zen-signin-sec {
    padding: 80px 0;
    background-color: #59ba41;
    color: #fff;
}

.zen-case-study {
    padding: 50px 0;
    background: #fafafc;
}

.zen-case-study .nav-link {
    color: #59ba41;
    font-weight: 600;
    border: none !important;
    border-bottom: 1px solid #ccc !important;
}

.zen-case-study .nav-link:hover {
    color: #318b1a;
}

.zen-case-study .nav-link.active {
    background-color: unset !important;
    border-color: #318b1a !important;
}

.zen-counter {
    padding: 50px 0;
}

.zen-counter .zen-count-cont {
    background: #59ba411f;
    padding: 10px;
    text-align: center;
    border-radius: 3px;
    box-shadow: 0px 0px 8px 0px #59ba41;
    height: 170px;
}

.zen-counter .zen-count-cont:hover {
    background: #59ba4163;
    box-shadow: 0px 0px 8px 0px #2d781a;
}

.zen-count-cont i {
    font-size: 30px;
    margin-bottom: 15px;
    margin-top: 10px;
    color: #59ba41;
}

.zen-count-cont h2 {
    font-size: 20px;
    margin-top: 10px;
}

.zen-count-cont h2 span {
    font-size: 16px;
    color: #626259;
}

.zen-dashboard {
    padding: 50px 0;
}

/* zentask end */

/* zen slider */
.zen-dashboard {
    background-color: #5072a7;
    padding: 3em 2em;
}

.zen-dashboard .card {
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
    height: 100%;
}

.zen-dashboard .carousel-control-prev,
.zen-dashboard .carousel-control-next {
    background-color: #fff;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    top: 60%;
    transform: translateY(-50%);
}

@media (min-width: 576px) {
    .zen-dashboard .carousel-item {
        margin-right: 0;
        flex: 0 0 50%;
        display: block;
    }

    .zen-dashboard .carousel-inner {
        display: flex;
    }
}

/*------------- header start  -------------*/
/* Show dropdown menu on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* Align the dropdown menu */
}

/* Hide dropdown by default */
.nav-item .dropdown-menu {
    display: none;
    position: absolute;
    /* Necessary for dropdowns */
    will-change: transform;
    top: 100%;
    left: 0;
    z-index: 1000;
}

/* Custom Dropdown Styling */
.drop-menu-custom-ep-aps {
    background-color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
    padding: 10px 0;
    position: relative;
}

.drop-menu-custom-ep-aps li {
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.drop-menu-custom-ep-aps li:hover {
    border-color: #85bf47;
    /* border-left: 3px solid #85bf47; */
    background-color: #f1f1f1
}

.productMegaMenu {
    display: none;
    position: absolute;
    top: 0;
    background-color: #ffff;
    left: 110px;
    width: 700px;
    padding-left: 0;
    box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
    border-radius: 5px;
}

ul.productMegaMenuItem {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 15px;
}


ul.productMegaMenuItem li {
    width: 300px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 300px;
}

.productMegaMenuItem li:hover {
    background: #fff;
    border-color: #85bf47;
    box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
    border-left: 3px solid #85bf47;
}

li.custom-itemMenu-ep-aps:hover .productMegaMenu {
    display: block;
}

.productMegaMenuItem li h6 {
    font-size: 15px;
    font-weight: 700;
    color: #414141;
}

.productMegaMenuItem li P {
    font-size: 12px;
    color: #414141;
}

/*------------- header start end  -------------*/


@media screen and (max-width: 768px) {
    .zen-dashboard .carousel-inner {
        padding: 1em;
    }

    .zen-dashboard .carousel-control-prev,
    .zen-dashboard .carousel-control-next {
        opacity: 1;
        position: absolute;
        left: 1em;
        top: 90%;
        transform: translateY(-50%);
    }

    .zen-dashboard .carousel-control-next {
        left: 5em;
    }

    .apsimg img {
        max-width: 100% !important;
    }

    .img550 {
        width: 100%;
        margin-top: 1rem;
    }

    .RM1 {
        margin-top: 1rem !important;
    }

    /*------------- header part -------------*/
    .productMegaMenu {
        width: unset;
        top: 100px;
        left: 0;
        max-height: 300px;
        overflow-y: auto;
    }

    /*----------- header part end -----------*/

    #phone {
        width: 306px !important;
    }

    footer {
        background: linear-gradient(0deg, #4aa826 86%, #f2f6ff 14%) !important;
    }

}

#phone {
    width: 340px;
}

/* zen slider end*/

/* zen testimonials */
.zen-testimonials {
    padding: 50px 0;
    background: #cbe1d9;
    text-align: center;
}

.zen-testimonials .testimonial {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3d5a80;
}

.zen-testimonials .testimonial_box-top {
    padding: 10px 5px;
    background: #ffffff;
    border-radius: 5px;
    min-height: 250px;
}

.zen-testimonials .testimonial_box {
    margin: 0px 10px;
}

.zen-testimonials .testimonial_box-icon {
    color: #59ba41;
}

.testimonial_box-icon .fas {
    font-size: 30px;
}

.zen-testimonials .testimonial_box-name {
    color: #59ba41;
    font-style: italic;
}

.zen-testimonials .testimonial_box-job {
    font-weight: 600;
}

.my_carousel_zt .carousel_item_zt {
    height: 480px;
}

/* zen testimonials end */

/* api page  */
.api-page {
    padding: 50px 0;
}

.api-content {
    text-align: center;
    margin-top: 10px;
}

.api-content img {
    width: 130px;
    height: 100px;
}

.api-content h4 {
    color: #59ba41;
    margin-top: 15px;
}

/* api page end */

/* client page */
.client-with-form {
    padding: 50px 0 20px;
}

.client-page-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.client-page-logo .img-logo-clnt {
    padding: 45px;
    width: 215px;
    height: 130px;
    text-align: center;
}

.client-page-logo .img-logo-clnt img {
    width: 110px;
}

.logo-bg-1 {
    background-color: #a3cb9a;
}

.logo-bg-2 {
    background-color: #d7aced;
}

.logo-bg-3 {
    background-color: #EBBDBC;
}

.logo-bg-4 {
    background-color: #b3d7ed;
}

.clients-detail {
    padding: 50px 0;
}

.clients-detail .client-content {
    padding: 40px 10px 0;
}

.clients-detail .client-img {
    padding: 10px;
}

.clients-detail .client-img .clnt-img1 {
    width: 200px;
    height: 70px;
    margin-bottom: 5px;
}

.clients-detail .client-img .clnt-img2 {
    width: 400px;
    height: 220px;
}

/* client page end */

/* customer individual page */
.customer-title {
    background: #179538;
    color: #fff;
    padding: 50px 0;
    font-weight: 600;
}

.customer-title h3 {
    width: 52%;
    margin-left: 80px;
}

.customer-content {
    padding: 50px 0;
}

.customer-img-se {
    position: absolute;
    right: 8%;
    top: 45%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #179538;
}

.customer-img-se img {
    width: 200px;
}

.cust-left-border {
    border-left: 1px solid #59ba41;
    padding-left: 20px;
    width: 75%;
}

/* customer individual page end */

/* footer */
footer {
    /* background: linear-gradient(to bottom, #e3e8ff, #f2f6ff); */
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 40px 0px 15px;
    /* background: linear-gradient(298deg, #4aa826 10%, #f2f6ff 90%); */
    background: linear-gradient(298deg, #4aa826 70%, #f2f6ff 30%);
}

.footer-list {
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
    color: #fff;
}

.footer-list li a {
    font-size: 15px;
    /* color: #6f7c8a; */
    color: #fff;
    transition: 0.5s all;
}

.footer-list li a:hover {
    color: var(--p-color);
}

.social {
    display: flex;
    align-items: center;
}

.social .social-icon {
    background-color: #c8cfe7;
    margin: 3px;
    padding: 4px 10px;
    width: 35px;
    height: 35px;
    border-radius: 30px;
    transition: all .3s;
}

.social .social-icon:hover {
    background-color: #424c6d;
}

.social .social-icon a i {
    color: #424c6d;
}

.social .social-icon:hover a i {
    color: #ffffff !important;
}

.copyright-sec {
    padding: 10px;
    text-align: center;
}

.up-icon {
    background-color: #59ba41;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    position: fixed;
    bottom: 8%;
    right: 3%;
    box-shadow: 0 15px 40px 0 rgb(89 186 65);
    cursor: pointer;
    transition: all .3s;
}

.up-icon i {
    position: absolute;
    top: 48%;
    left: 49%;
    transform: translate(-50%, -50%);
}

.up-icon:hover {
    background-color: #7c98e7;
    box-shadow: 0 15px 40px 0 rgb(124 152 231 / 30%);
}

/* footer end */


/*---------------- thankyou page ----------------- */

.mybtn2 {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    padding: 15px 30px;
    line-height: 20px;
    height: 50px;
    text-decoration: none !important;
    display: inline-block;
    background: #59ba41;

    -webkit-box-shadow: 0px 15px 32px 1px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0px 15px 32px 1px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 15px 32px 1px rgba(0, 0, 0, 0.23);
}

.mybtn2:hover {
    color: #FFFFFF;
    background: #19954c;
    transition: all ease .7s;
}

.thanku-main {
    width: 100%;
    padding: 128px 0 70px;
    text-align: center;
    background: -moz-linear-gradient(323deg, rgba(93, 182, 50, 1) 0%, rgba(93, 182, 50, 1) 49%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(93, 182, 50, 1)), color-stop(49%, rgba(93, 182, 50, 1)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(323deg, rgba(93, 182, 50, 1) 0%, rgba(93, 182, 50, 1) 49%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(323deg, rgba(93, 182, 50, 1) 0%, rgba(93, 182, 50, 1) 49%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(323deg, rgba(93, 182, 50, 1) 0%, rgba(93, 182, 50, 1) 49%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    /* ie10+ */
    background: linear-gradient(127deg, rgba(93, 182, 50, 1) 0%, rgba(93, 182, 50, 1) 49%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5db632', endColorstr='#ffffff', GradientType=1);
    /* ie6-9 */
}

.tnku-popup {
    background: #fff;
    padding: 34px;
    width: 62%;
    margin: 0 auto;
}

.thanku-main .tnku-popup>h1 {
    font-size: 50px;
    color: #59ba42;
    margin: 0px;
}

.thanku-main .tnku-popup>h4 {
    font-size: 20px;
    font-weight: 900;
    margin: 5px 0;
}

.thanku-main .tnku-popup>p {
    font-size: 15px;
}

.thanku-main .tnku-popup>i {
    font-size: 60px;
    color: #59ba42;
}

.thanku-main a {
    color: #59ba42;
}

/*---------------- thankyou page end ----------------- */

/*-------------------- 404 page-------------------- */
.btn2 {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    padding: 15px 30px;
    line-height: 20px;
    height: 50px;
    text-decoration: none !important;
    display: inline-block;
    background: #59ba41;

    -webkit-box-shadow: 0px 15px 32px 1px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0px 15px 32px 1px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 15px 32px 1px rgba(0, 0, 0, 0.23);
}

.btn2:hover {
    color: #FFFFFF;
    background: #19954c;
    transition: all ease .7s;
}

.error-main {
    width: 100%;
    padding: 0 0 70px;
    text-align: center;
}

.error-main h1 {
    font-size: 136px;
    color: #59ba42;
    margin: 65px 0px;
}

.error-main h4 {
    font-size: 30px;
    font-weight: 900;
    margin: 5px 0;
}

.error-main p {
    font-size: 20px;
}

@media all and (min-width: 768px) {
    .footer-content {
        padding-top: 75px;
    }
}

/*-------------------- 404 page end-------------------- */
.solu_top_header p {
    width: 100%;
    color: #03363d;
    text-align: center;
    margin: 0 auto;
    font-size: 36px;
    font-weight: 700;
}

.disabled_btn {
    border-radius: 30px;
    padding: 5px 20px;
    background-color: #ddd;
    color: #827f7f;
    cursor: not-allowed;
}

.ColorG {
    color: #8BC34A;
}



.industry-serve {
    padding: 95px 0px 0px 0px;
}

.serve-cont {
    position: relative;
    margin-top: 30px;
}

.serve-heading {
    position: absolute;
    background: #fff;
    box-shadow: 0px 0px 5px 3px #bcc0cc;
    color: #58ba41;
    padding: 3px 4px;
    width: 164px;
    left: 50%;
    top: 94%;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    transform: translate(-50%, -50%);
}

.serve-cont:hover .serve-heading,
.serve-heading:hover {
    background: #58ba41;
    color: #fff;
}



.w65 {
    width: 65% !important;
}

.lineh0 {
    line-height: 0;
    margin-top: 1rem;
}

.lineh0 a {
    line-height: 27px;
    font-size: 20px;
}


/* home page */
/* banner */
.bannerhome {
    /* background: linear-gradient(135deg, #85bf47, #2c3e50); */
    /* background: linear-gradient(135deg, #85bf47, #4facfe); */
    /* background: linear-gradient(135deg, #85bf47, #ffb67f); */

    background: linear-gradient(180deg, #71be36, #fff);
    height: fit-content;
    width: 100%;
    text-align: center;
    padding: 40px 0;
    /* background-image: url(../../frontwithaps/image/bg-pattern.svg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}

.bannerhome h1 {
    font-weight: 700;
    color: #4aa826;
    background: #fff;
    width: fit-content;
    font-size: 30px;
    padding: 1rem 10px;
    border-radius: 5px;
    margin: auto;
    /* box-shadow: 0px 0px 6px 3px rgb(65 159 34); */
}

.bannerhome h3 {
    font-weight: 700;
    color: #ffffff;
    font-size: 25px;
    margin-top: 15px;
}

.service-list {
    display: flex;
    list-style: none;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.service-list li {
    position: relative;
    padding: 10px 10px 0px 10px;
    border: 1px solid #ddd;
    border-radius: 15px;
    background: #ffffff4a;
    color: #ffffff;
    text-align: left;
    flex-shrink: 1;
    width: 200px;
    flex: 1 1 200px;
    height: 145px;
}

ul.service-list.mt-1 {
    margin-bottom: 3.7rem;
}

.service-list li h5 {
    font-weight: 600;
    font-size: 19px;
    color: #414141;
}

.service-list li img {
    max-width: 30px;
    /* border-radius: 50px; */
    background: #ffffffd1;
    box-shadow: 0px 2px 15px 7px #ffffff;
}

.apsCateg {
    /* color: #414141; */
    padding: 20px;
}

.apsCateg p {
    /* color: #fff; */
    font-size: 13px;
    text-align: left;
}

.apsCateg h5 {
    font-weight: 800;
}

.service-list li p {
    font-size: 13px;
    /* color: #fff; */
}

.myapsconbox {
    border: 1px solid #aaa;
    border-radius: 10px;
    padding-right: 1.3rem;
    margin-bottom: 1rem;
}

.brapsui {
    border: 1px solid #aaa;
    border-radius: 10px;
    padding: 1.2rem;
    margin-top: 0;
}

.apsCateg .service-list {
    padding-bottom: 1.3rem;
}

/* banner end */


/* service area */
.main-services {
    padding: 50px 0;
}

.serve-cont img {
    border: 11px solid #85bf47;
    border-radius: 10px;
}

.sectionDiv img,
.scalezoomImg {
    transition: 0.5s ease-in-out;
    border: 2px solid #85bf47;
    border-radius: 20px;
}

.main-services img:hover,
.sectionDiv img:hover,
.scalezoomImg:hover {
    transform: scale(1.1);
}

.img550 {
    max-width: 550px;
}

.serv-ls {
    padding: 45px 0;
}

.left-p img {
    transition: 0.2s;
}

.apsimg img {
    width: 100%;
    height: auto;
    transition: 0.2s;
    max-width: 65%;
    display: block;
    margin: auto;
    border-radius: 15px;
}

.right-p {
    padding-left: 20px;
}

.right-p ul {
    list-style-type: none;
    /* padding: 0; */
    font-size: 18px;
}

.imges-mw40 {
    max-width: 30px;
}

.right-p ul i {
    color: #4aa826;
    margin-right: 8px;
}

.m-auto {
    margin: auto;
}

.heading {
    /* font-size: 35px; */
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #4b4b4b;
}

.heading span {
    color: #4aa826;
}

.sub-heading {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #4b4b4b;
}


.ul_List li:before {
    content: '\f058';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #4aa826;
    -webkit-box-shadow: 0 10px 15px rgba(47, 91, 231, .1);
    box-shadow: 0 10px 15px rgba(47, 91, 231, .1);
}

.ul_List li {
    padding-left: 15px;
    font-size: 15px;
    font-size: 18px;
}

.ul_List {
    position: relative;
}

.custom-btnap {
    padding: 7px 20px;
    background: #6ec938;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0px 2px 3px 0px rgb(65 159 34);
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    /* margin: auto; */
}

.custom-btnap:hover {
    transform: scale(1.1) !important;
}

.sectionDiv {
    padding: 2rem 0;
}


/* service area end */

/* calling  */
.our-assit-service {
    padding: 50px 0;
    background: aliceblue;
}

.our-assit-service li {
    font-size: 18px;
}

.our-assit-service li,
.our-assit-service p {
    font-size: 18px;
}



/* testimonials */
.main-testimonials {
    padding: 50px 0;
}

.main-testimonials .testimonial {
    margin: 0 20px 50px;
}

.main-testimonials .testimonial .pic {
    display: inline-block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 15px 15px 0;
}

.main-testimonials .testimonial .pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.main-testimonials .testimonial .testimonial-profile {
    display: inline-block;
    position: relative;
    top: 15px;
}

.main-testimonials .testimonial .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2f2f2f;
    text-transform: capitalize;
    margin: 0 0 7px 0;
}

.main-testimonials .testimonial .post {
    display: block;
    font-size: 14px;
    color: #4aa826;
}

.main-testimonials .testimonial .description {
    padding: 20px 22px;
    background: #4aa826;
    color: #fff;
    position: relative;
}

.main-testimonials .testimonial .description:before,
.main-testimonials .testimonial .description:after {
    content: "";
    border-width: 18px 0 0 18px;
    border-style: solid;
    border-color: #4aa826 transparent transparent;
    position: absolute;
    bottom: -18px;
    left: 0;
}

.main-testimonials .testimonial .description:after {
    border-width: 18px 18px 0 0;
    left: auto;
    right: 0;
}

.main-testimonials .owl-theme .owl-controls {
    margin-top: 10px;
    margin-left: 30px;
}

.main-testimonials .owl-theme .owl-controls .owl-buttons div {
    opacity: 0.8;
    background: #4aa82640;
}

.main-testimonials .owl-prev:before,
.main-testimonials .owl-next:before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #4aa826;
}

.main-testimonials .owl-next:before {
    content: "\f054";
}

/* testimonials end */

.w450 {
    max-width: 400px;
}

.font18 {
    font-size: 18px;
}

/* home page end */



body {
    background-image: url('../../frontwithaps/image/bg-pattern.svg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover
}