* {
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== Colors ===== */
:root {
    --green-lime: #D9EEDA;
    --green-light: #4CAF50;
    --green-main: #2E7D32;
    --green-dark: #1B5E20;
    --green: #0AA093;

    --blue: #0A0093;

    --orange-lime: #FFDCD1;
    --orange-light-m: #F39375;
    --orange-light: #FF8A65;
    --orange-main: #FF7043;
    --orange-dark: #E64A19;

    --grey: #828282;
    --grey-bg: #f6f6f6;
    --border: #E5E5E5;
    --black: #000203;
    --white: #FFFFFF;
    --light-blue: #D7E6F9;
    --heading-font: "Plus Jakarta Sans", sans-serif;
    --body-font: "Rethink Sans", sans-serif;
    --fs-48: 36px;
    --fs-42: 24px;
    --fs-24: 18px;
    --fs-16: 14px;
    --fs-14: 12px;
    --fs-12: 12px;
}

@media (min-width:992px) {
    :root {
        --fs-48: 48px;
        --fs-42: 42px;
        --fs-24: 24px;
        --fs-16: 16px;
        --fs-14: 14px;
        --fs-12: 12px;
    }
}

.p-5 {
    padding: 36px !important;
}

.px-5 {
    padding-left: 36px !important;
    padding-right: 36px !important;
}

.py-5 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
}

.pt-5 {
    padding-top: 36px !important;
}

.pb-5 {
    padding-bottom: 36px !important;
}

.m-5 {
    margin: 36px !important;
}

.mx-5 {
    margin-left: 36px !important;
    margin-right: 36px !important;
}

.my-5 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
}

.mt-5 {
    margin-top: 36px !important;
}

.mb-5 {
    margin-bottom: 36px !important;
}

.g-5 {
    --bs-gutter-y: 36 !important;
    --bs-gutter-x: 36 !important;
}



/* Background Utilities */
.bg-green-lime {
    background: var(--green-lime) !important;
}

.bg-green-light {
    background: var(--green-light) !important;
}

.bg-green-main {
    background: var(--green-main) !important;
}

.bg-green-dark {
    background: var(--green-dark) !important;
}

.bg-green {
    background: var(--green) !important;
}

.bg-blue {
    background: var(--blue) !important;
}

.bg-orange-lime {
    background: var(--orange-lime) !important;
}

.bg-orange-light {
    background: var(--orange-light) !important;
}

.bg-orange-main {
    background: var(--orange-main) !important;
}

.bg-orange-dark {
    background: var(--orange-dark) !important;
}

.bg-grey {
    background: var(--grey) !important;
}

.bg-border {
    background: var(--border) !important;
}

.bg-black {
    background: var(--black) !important;
}

.bg-default {
    background: var(--default) !important;
    border: 1px solid var(--border);
}

/* Text Utilities */
.text-green-lime {
    color: var(--green-lime) !important;
}

.text-green-light {
    color: var(--green-light) !important;
}

.text-green-main {
    color: var(--green-main) !important;
}

.text-green-dark {
    color: var(--green-dark) !important;
}

.text-green {
    color: var(--green) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.text-orange-lime {
    color: var(--orange-lime) !important;
}

.text-orange-light {
    color: var(--orange-light) !important;
}

.text-orange-main {
    color: var(--orange-main) !important;
}

.text-orange-dark {
    color: var(--orange-dark) !important;
}

.text-grey {
    color: var(--grey) !important;
}

.text-border {
    color: var(--border) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-default {
    color: var(--default) !important;
}

section {
    padding: 36px 0;
}

@media (min-width:992px) {
    section {
        padding: 72px 0;
    }
}


.navbar-workseer {
    background: #fff;
    font-family: var(--body-font);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1050;
}

/* Fixed glass effect when scrolled */
.navbar-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 0;
}

.navbar-workseer .navbar-brand img {
    height: 34px;
    /* margin-right: 12px; */
}

@media (max-width:768px) {
    .navbar-workseer .navbar-brand img {
        height: 24px;
        margin-left: 0;
    }
}

.navbar-workseer .navbar-nav .nav-item {
    padding: 0;
}

.navbar-workseer .navbar-nav .nav-link {
    color: var(--grey);
    font-size: var(--fs-14);
    padding-left: 12px;
    padding-right: 12px;
    font-family: var(--body-font);
    font-weight: 400;
    transition: color 0.16s;
}

.navbar-scrolled .navbar-nav .nav-link {
    color: var(--black);
}

.navbar-workseer .navbar-nav .nav-link:hover {
    color: var(--orange-main);
}

.btn-navbar-outline {
    background: var(--white);
    border: 1px solid var(--orange-light) !important;
    font-size: var(--fs-14);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--orange-light);
    font-family: var(--body-font);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-navbar-outline:hover {
    background: var(--orange-main);
    color: var(--white);
}

.btn-navbar-light {
    background: var(--orange-lime);
    font-size: var(--fs-14);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--orange-light);
    font-family: var(--body-font);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-navbar-light:hover {
    background: var(--orange-main);
    color: var(--white);
}

.btn-navbar-main {
    background: var(--orange-main);
    font-size: var(--fs-14);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--body-font);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-navbar-main:hover {
    background: var(--orange-dark);
    color: var(--white);
}

/* Responsive spacing adjustments */
@media (max-width: 991.98px) {
    .navbar-workseer .navbar-nav .nav-link {
        padding-left: 8px;
        padding-right: 8px;
    }

    .navbar-workseer .d-flex.gap-2 {
        flex-direction: column;
        gap: 7px;
        margin-top: 14px;
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-nav .dropdown-menu{
    border: none;
}
/* Desktop hover dropdown with transition */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        display: block; /* keep for position */
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navbar-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-item{
    font-size: var(--fs-14);
    color: var(--grey);
}
.dropdown-item.active, .dropdown-item:active{
    background: var(--orange-main)!important;
}

/*---- animation-block-sec ---*/
.animation-block-sec {
    background: var(--green-lime);
}
.animation-block-sec .col-12{
    position: relative;
    z-index: 99;
}
.animation-block {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 45 / 28;
}

@media (min-width:992px) {
    .animation-block {
        margin-top: -400px;
    }
}

.animation-block iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.animation-block-sec .hero-title {
    font-size: var(--fs-48);
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--black);
    margin: 0;
}

.animation-block-sec .hero-title span {
    color: var(--green-light);
}

.animation-block-sec .hero-description {
    font-size: var(--fs-16);
    color: #828282;
    font-weight: 400;
    margin: 0;
    font-family: var(--body-font);
}

.animation-block-sec .btn-primary-custom {
    background: var(--orange-main);
    font-size: var(--fs-16);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--body-font);
    border: none;
    transition: all 0.3s ease-in-out;
}

.animation-block-sec .btn-primary-custom:hover {
    color: var(--white);
    background: var(--orange-dark);
}

.animation-block-sec .btn-secondary-custom {
    background: var(--white);
    font-size: var(--fs-16);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--orange-light-m);
    font-family: var(--body-font);
    border: 1px solid var(--orange-main);
    transition: all 0.3s ease-in-out;
}

.animation-block-sec .btn-secondary-custom:hover {
    color: var(--white);
    background: var(--orange-main);
}

/*--- hero section start ---*/
.hero-section {
    /* background: radial-gradient(226.39% 86.25% at 40.39% 122.42%, #B8E5BA 0%, rgba(184, 229, 186, 0) 100%),
        radial-gradient(22.11% 108.37% at 80.11% 100%, rgba(255, 174, 149, 0.7) 0%, rgba(255, 174, 149, 0) 100%),
        linear-gradient(180deg, rgba(246, 246, 246, 0) 86.23%, #F2F2F2 98.62%); */
    padding-bottom: 52px;
    background-color: var(--grey-bg);
    background-image: url('../image/banner-bg-min.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.ai-badge {
    display: inline-block;
    background: var(--green-lime);
    color: var(--green-dark);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--body-font);
}

.hero-title {
    font-size: var(--fs-42);
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--black);
    margin: 0;
}

.hero-title span {
    color: var(--grey);
}

.hero-description {
    font-size: var(--fs-16);
    color: #828282;
    font-weight: 400;
    margin: 0;
    font-family: var(--body-font);
}

.btn-primary-custom {
    background: var(--orange-light-m);
    font-size: var(--fs-16);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--body-font);
    border: none;
    transition: all 0.3s ease-in-out;
}

/*.btn-primary-custom:hover {
color: var(--white);
background: var(--orange-main);
}
*/
.btn-secondary-custom {
    background: var(--white);
    font-size: var(--fs-16);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--orange-light-m);
    font-family: var(--body-font);
    border: 1px solid var(--orange-main);
    transition: all 0.3s ease-in-out;
}

/*.btn-secondary-custom:hover {*/
/*    color: var(--white);*/
/*    background: var(--orange-main);*/
/*}*/

.banner-tab {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 16px;
    font-family: var(--body-font);
}

/*@media (min-width:992px) {*/
/*    .banner-tab {*/
/*        margin-top: -108px;*/
/*        border-radius: 16px;*/
        /* border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px; */
/*    }*/
/*}*/

.banner-tab .banner-tab-heading {
    font-size: var(--fs-16);
    font-weight: 700;
    color: var(--black);
    text-align: center;
}

.banner-tab .row button[data-btn="btn-tab"] img {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
}

.banner-tab .row button[data-btn="btn-tab"] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 16px 12px;
    width: 100%;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    height: 100%;
    font-size: 10px;
    font-weight: 600;
}

@media (max-width:400px) {
    .banner-tab .row button[data-btn="btn-tab"] {
        font-size: 8px;
    }
}

.banner-tab .row button[data-btn="btn-tab"].active {
    border-color: var(--green-light);
    background: var(--white);
    box-shadow: 0 8px 15px 0 rgba(217, 238, 218, 100);
}

.banner-tab .row button[data-btn="btn-tab"]::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-tab .row button[data-btn="btn-tab"].active::before {
    content: url('../image/banner-tab/check.png');
}

.banner-tab button.banner-tab-custom {
    background: var(--orange-main);
    font-size: var(--fs-16);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--body-font);
    border: none;
    display: block;
    margin: auto;
    transition: all 0.3s ease-in-out;
}

.banner-tab button.banner-tab-custom:hover {
    background: var(--orange-dark);
    color: var(--white)
}

#image-preview {
    position: relative;
    width: 100%;
    /*height: auto;*/
    height: 100%;
}

.preview-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    /*height: 420px;*/
}

.preview-img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    /*object-position: top;*/
    display: block;
    border-radius: 8px 0 0 8px;
}

/* .blur-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
} */

/*--- hero section end -----*/

/*---- brand logo style start ---*/
.client-sec .client-title {
    font-size: var(--fs-16);
    font-family: var(--heading-font);
    color: var(--grey);
    font-weight: 600;
}

.client-logo {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s ease-in-out;
}

.client-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}


.logo-marquee {
    overflow: hidden;
    width: 100%;
    background: transparent;
}

.logo-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 18s linear infinite;
}

.client-logo {
    max-width: 150px;
    max-height: 38px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%) drop-shadow(0 2px 6px rgba(16, 32, 72, 0.08));
    transition: 0.3s ease-in-out;
}

.client-logo:hover {
    filter: grayscale(0%) drop-shadow(0 2px 6px rgba(16, 32, 72, 0.08));
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*---- brand logo style end -----*/


/*------ expert automation sec start ------*/
.expert-automation-section {
    background: var(--black);
}

.expert-automation-section-title {
    font-size: var(--fs-42);
    font-family: var(--heading-font);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    /*margin-bottom: 16px;*/
}

.expert-automation-section-subtitle {
    text-align: center;
    font-size: var(--fs-16);
    color: var(--white);
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0;
}

.features-container {
    margin-top: 52px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.features-menu {
    flex: 0 0 400px;
    background: transparent;
}

.feature-item {
    border-bottom: 1px solid var(--grey);
    margin-bottom: 0;
    font-family: var(--body-font);
}

.feature-item.active {
    border-bottom: none;
    transition: all 0.3s ease;
}

@media (min-width:768px) {
    .feature-item.active {
        border-left: 2px solid var(--orange-dark);
        padding-left: 1rem;
        padding-right: 1rem;
        background: #1B1B1B;
    }
}

.feature-header {
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: transparent;
    color: var(--white);
    width: 100%;
    text-align: left;
    font-size: var(--fs-16);
    font-weight: 500;
}

.feature-header:hover {
    color: #ff6b35;
}

/* .feature-header.active {
    color: var(--white);
} */

.feature-content {
    padding: 0 0 1rem 0;
    color: var(--border);
    font-size: var(--fs-14);
    line-height: 1.5;
    display: none;
    transition: all 0.3s ease;
}

.feature-content.show {
    display: block;
}

.chevron {
    transition: transform 0.3s ease;
    color: #666;
}

.chevron.rotated {
    transform: rotate(90deg);
    color: var(--orange-dark);
}

.dashboard-preview {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dashboard-view {
    display: none;
}

.dashboard-view.active {
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .features-container {
        flex-direction: column;
        gap: 2rem;
    }

    .features-menu {
        flex: none;
        width: 100%;
    }

    .dashboard-preview {
        /* Hide main dashboard preview on mobile */
        display: none;
    }

    /* Show mobile dashboard content within accordion items */
    .mobile-dashboard {
        display: block;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        margin-top: 1rem;
    }

    .match-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Hide mobile dashboards on desktop */
.mobile-dashboard {
    display: none;
}

/*------ expert automation sec end ------*/
.global-trade-content-library {
    background: #000203;
    border-radius: 24px;
    color: var(--white);
    font-family: var(--body-font);
    overflow: hidden;
}

@media (max-width:768px) {
    .global-trade-content-library {
        margin: 0;
    }
}

.global-trade-content-library .gtrade-title {
    font-family: var(--heading-font);
    font-size: var(--fs-42);
    font-weight: 700;
    color: var(--white);
}

.global-trade-content-library .gtrade-desc {
    font-family: var(--body-font);
    font-size: var(--fs-16);
    color: var(--white);
}

.global-trade-content-library .gtrade-card {
    background: #000203;
    border-radius: 16px;
    border: 1px solid var(--grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    height: 100%;
}

.global-trade-content-library .gtrade-stats {
    font-size: var(--fs-24);
    font-weight: 700;
    color: var(--white);
    font-family: var(--heading-font);
}

.global-trade-content-library .gtrade-label {
    font-size: var(--fs-16);
    color: var(--white);
    font-family: var(--body-font);
}

.global-trade-content-library .gtrade-img {
    background: #000203;
    /* object-fit: contain; */
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1;
    object-position: left;
}



.cloud-options-section {
    font-family: var(--body-font);
    background: var(--grey-bg);
}

.cloud-tag {
    display: inline-block;
    background: var(--green-lime);
    color: var(--green-dark);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: var(--fs-14);
    font-family: var(--body-font);
    font-weight: 500;
}

.cloud-options-title {
    font-family: var(--heading-font);
    font-size: var(--fs-42);
    font-weight: 700;
    color: var(--black);
}

.cloud-options-subtitle {
    color: var(--grey);
    font-size: var(--fs-16);
    font-family: var(--body-font);
}

.cloud-card {
    border-radius: 16px;
    /* min-height: 460px; */
    background: #FBFBFB;
    border: 1px solid var(--green-light);
    transition: box-shadow .2s;
    font-family: var(--body-font);
}

.cloud-card:hover {
    box-shadow: 0 8px 15px 0 rgba(52, 52, 52, 0.10);
    cursor: pointer;
}

.shared-cloud {
    border-color: var(--green-light);
}

.dedicated-cloud {
    border-color: var(--orange-light);
}

.cloud-card-title {
    font-family: var(--heading-font);
    font-size: var(--fs-24);
    font-weight: 700;
    color: var(--black);
}
.sub-title{
    font-family: var(--body-font);
    font-size: var(--fs-16);
    font-weight: 400;
    color: var(--grey);
}
.cloud-dedicated-icon {
    color: var(--orange-main);
}

.cloud-card-content .cloud-list {
    background: var(--green-lime);
    border-radius: 8px;
    font-size: var(--fs-14);
    font-family: var(--body-font);
    font-weight: 500;
}
.cloud-card-content .cloud-list-two{
    background: var(--orange-lime);
}
/*.shared-cloud .cloud-list li,*/
/*.dedicated-cloud .cloud-list li {*/
/*    position: relative;*/
/*    padding-left: 24px;*/
/*    color: var(--grey);*/
/*    font-size: var(--fs-14);*/
/*}*/

/*.shared-cloud .cloud-list li:before,*/
/*.dedicated-cloud .cloud-list li:before {*/
/*    content: url('../image/deployment-business/Vector.svg');*/
/*    position: absolute;*/
/*    left: 0;*/
/*}*/

.cloud-img {
    width: 100%;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}


.Trade-Contact-Section {
    background: var(--white);
    font-family: var(--body-font);
}

.Trade-Contact-Section .contact-card {
    border: 1px solid var(--green-lime);
}

.Trade-Contact-Section .contact-card-right {
    border: 1px solid var(--orange-lime);
}

.Trade-Contact-Section .contact-card-right h6 {
    font-size: var(--fs-24);
    font-weight: 700;
    color: var(--black);
}

.Trade-Contact-Section h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--black);
    margin: 0;
}

@media (max-width:768px) {
    .Trade-Contact-Section h2 {
        font-size: 24px;
    }
}

.Trade-Contact-Section p {
    font-size: var(--fs-16);
    color: var(--grey);
}

.Trade-Contact-Section h6 {
    font-size: var(--fs-16);
    color: var(--grey);
}

.Trade-Contact-Section .client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.Trade-Contact-Section .client-logos img {
    width: 36px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.Trade-Contact-Section .client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.Trade-Contact-Section .mobileCol .dropdown-toggle {
    border-radius: 6px;
    font-size: var(--fs-14);
    padding: 12px;
    border: 1px solid var(--border);
    background: var(--grey-bg);
    color: var(--grey);
    border-right: 1px solid var(--border);
}

.Trade-Contact-Section .mobileCol .dropdown-item {
    font-size: var(--fs-14);
    color: var(--grey);
}

.Trade-Contact-Section .form-control {
    border-radius: 6px;
    font-size: var(--fs-14);
    padding: 12px;
    border: 1px solid var(--border);
    background: var(--grey-bg);
}

.Trade-Contact-Section .form-control:focus {
    border-color: var(--orange-main);
    box-shadow: none;
}

.Trade-Contact-Section .btn-submit {
    background: var(--orange-main);
    color: var(--white);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: var(--fs-16);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

/*.Trade-Contact-Section .btn-submit:hover {*/
/*    background: var(--orange-dark);*/
/*}*/


.cta-trade-transform {
    background: var(--green-main);
    font-family: var(--body-font);
}

.cta-trade-transform .col-12 {
    padding: 72px 0;
    overflow: hidden;
}

@media (max-width:768px) {
    .cta-trade-transform .col-12 {
        padding: 36px;
    }
}

.cta-trade-transform .cta-title {
    font-family: var(--heading-font);
    font-size: var(--fs-42);
    font-weight: 700;
    color: var(--white);
}

.cta-trade-transform .cta-subtitle {
    color: var(--white);
    font-size: var(--fs-16);
    color: var(--green-lime);
}

.cta-trade-transform .cta-btn-green {
    background: var(--white);
    font-size: var(--fs-16);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--green-main);
    font-family: var(--body-font);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cta-trade-transform .cta-btn-green:hover {
    background: var(--green-light);
    color: var(--white);
}

.cta-trade-transform .cta-btn-outline {
    background: var(--white);
    font-size: var(--fs-16);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--orange-main);
    font-family: var(--body-font);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cta-trade-transform .cta-btn-outline:hover {
    background: var(--orange-main);
    color: var(--white);
}


.footer-workseer {
    background: var(--white);
    font-family: var(--body-font);
    padding: 72px 0;
}

@media (max-width:768px) {
    .footer-workseer {
        padding: 36px 0;
    }
}

/* .footer-logo {
    max-width: 130px;
    margin-bottom: 10px;
} */

.footer-brand-desc {
    color: var(--grey);
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-social {
    color: var(--grey);
    font-size: 1rem;
}

.footer-linkedin img {
    vertical-align: middle;
}

.footer-heading {
    font-family: var(--heading-font);
    font-size: var(--fs-16);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black);
}

.footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-list li {
    font-size: var(--fs-16);
    color: var(--grey);
    margin-bottom: 8px;
}

.footer-office {
    font-size: 1rem;
    color: var(--grey);
}

.footer-mail {
    color: var(--grey);
    text-decoration: none;
    font-size: 1rem;
}

.footer-mail a{
    color: var(--orange-main)!important;
    text-decoration: none!important;
    font-size: 1rem;
}

.footer-basebar {
    background: var(--grey-bg);
    font-family: var(--body-font);
    font-size: var(--fs-16);
    color: var(--grey);
    border-top: 1px solid var(--border);
}

.footer-copyright {
    color: var(--grey);
}

.footer-bar-link {
    color: var(--grey);
    text-decoration: none;
    margin: 0 4px;
    font-weight: 400;
    transition: color 0.18s;
}

.footer-bar-link:hover {
    color: var(--black);
}

.footer-sep {
    color: var(--grey);
    margin: 0 2px;
}







.why-workseer-section {
    background: var(--grey-bg);
    font-family: var(--body-font);
}

.why-title {
    font-family: var(--heading-font);
    font-size: var(--fs-42);
    font-weight: 700;
    margin: 0;
    color: var(--black);
}

.why-title-24 {
    font-family: var(--heading-font);
    font-size: var(--fs-24);
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.why-subtitle {
    font-size: var(--fs-16);
    color: var(--grey);
    opacity: 0.8;
    font-family: var(--body-font);
    margin: 0;
}

.why-swiper .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    height: auto;
}

.why-card {
    position: relative;
    border-radius: 16x;
    /* min-height: 460px; */
    color: var(--white);
    overflow: hidden;
    background: var(--orange-light);
}

/* 
.why-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-color: var(--black);
} */

.why-card-green {
    background: var(--green-main);
}

.why-card-purple {
    background: var(--purple-main);
}

.why-card-orange {
    background: var(--orange-main);
}

.why-card-content {
    font-family: var(--body-font);
}

.why-card-icon .icon {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 8px;
}

.why-card-title {
    font-family: var(--heading-font);
    font-size: var(--fs-16);
    font-weight: 700;
}

.why-card-desc {
    font-size: var(--fs-14);
}

.swiper-pagination-bullet {
    background: var(--green-main) !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--green-main) !important;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .why-swiper .swiper-slide {
        max-width: 95vw;
        min-width: 230px;
        min-height: 375px;
    }
}

.work-fix-section {
    background: var(--grey-bg);
    font-family: var(--body-font);
}

.work-fix-card {
    border-radius: 24px;
    height: 100%;
    position: relative;
}

.fixit-card {
    background: #E8ECFF;
    color: var(--white);
    position: relative;
    border: 1px solid var(--border);
}

.work-fix-title {
    font-size: 32px;
    color: var(--black);
    font-family: var(--heading-font);
    font-weight: 700;
    margin: 0;
}

.work-fix-lead {
    font-size: var(--fs-16);
    color: var(--grey);
    margin: 0;
}

.btn-fixit {
    background-color: var(--orange-main);
    color: var(--white);
    font-family: var(--body-font);
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 700;
    font-size: var(--fs-16);
    border: none;
    text-decoration: none;
}

.btn-fixit:hover {
    background-color: var(--orange-dark);
    color: var(--white);
}

.work-fix-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.work-fix-img .fixit-img {
    max-width: 100%;
}

.clients-section {
    background: var(--grey-bg);
    font-family: var(--body-font);
    padding-bottom: 18px;
}

.clients-title {
    color: var(--grey);
    font-size: var(--fs-16);
    font-family: var(--heading-font);
    font-weight: 600;
}

.client-logo {
    max-height: 38px;
    width: 100%;
    filter: drop-shadow(0 2px 6px rgba(16, 32, 72, 0.08));
    filter: grayscale(100%);
}

/*------ Our Product Suite style start ------*/
.our-product .cta-title {
    font-family: var(--heading-font);
    font-size: var(--fs-42);
    font-weight: 700;
    color: var(--black);
    text-align: center;
}

.our-product .cta-subtitle {
    color: var(--grey);
    font-size: var(--fs-16);
    text-align: center;
}

.our-product .cta-btn-green {
    background: var(--orange-main);
    font-size: var(--fs-16);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--body-font);
    border: none;
    text-decoration: none;
}

.hello_1 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    align-self: stretch;
    inline-size: 100vw;
    -webkit-margin-start: 50%;
    margin-inline-start: 50%;
    -webkit-margin-after: 120px;
    margin-block-end: 120px;
    background: #f7f8fd;
    transform: translate(-50%);
    padding: 0 var(--spacing-desktop-padding-gutter);
}

@media (max-width: 900px) {
    .hello_1 {
        -webkit-margin-after: 100px;
        margin-block-end: 100px;
    }
}

@media (max-width: 600px) {
    .hello_1 {
        padding: 0 var(--spacing-mobile-padding-gutter);
    }
}

.hello_2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    inline-size: 100%;
    max-inline-size: var(--size-v3-container);
}

.hello_3 {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

@media (max-width: 600px) {
    .hello_3 {
        flex-direction: column;
    }
}

.hello_4 {
    display: flex;
    flex: 1 0;
    flex-direction: column;
    align-items: center;
}

.hello_5 {
    -webkit-margin-after: 12px;
    margin-block-end: 12px;
}

.hello_6 {
    max-inline-size: 380px;
    -webkit-margin-after: 30px;
    margin-block-end: 30px;
    text-align: center;
}

.hello_6 {
    background: rgba(0, 0, 0, 0);
    -webkit-mask-image: radial-gradient(circle, rgb(217, 217, 217) 50%, transparent 100%);
    mask-image: radial-gradient(circle, rgb(217, 217, 217) 50%, transparent 100%);
}

.hello_7 {
    min-inline-size: 421px;
    min-block-size: 66px;
    font-size: 23px;
}

@media (max-width: 900px) {
    .hello_7 {
        min-inline-size: unset;
        min-block-size: unset;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .hello_7 {
        font-size: 14px;
    }
}

.hello_8 {
    background: rgba(0, 0, 0, 0);
}

.hello_8 .hello_2 {
    -webkit-padding-start: 140px;
    padding-inline-start: 140px;
    -webkit-padding-end: 140px;
    padding-inline-end: 140px;
    -webkit-padding-before: 15px;
    padding-block-start: 15px;
    -webkit-padding-after: 0;
    padding-block-end: 0;
}

@media (max-width: 1200px) {
    .hello_8 .hello_2 {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
        -webkit-padding-end: 0;
        padding-inline-end: 0;
    }
}

@media (max-width: 900px) {
    .hello_8 .hello_2 {
        padding-inline: 0;
        -webkit-padding-before: 0;
        padding-block-start: 0;
    }
}

.hello_8 .hello_3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    gap: 20px;
}

@media (max-width: 600px) {
    .hello_8 .hello_3 {
        display: flex;
        flex-direction: column;
    }
}

.hello_8 .hello_4 {
    overflow: hidden;
    block-size: 100%;
    border-radius: 18px;
    font-family: Plus Jakarta Sans, sans-serif;
}

.hello_8 .hello_4 .hello_5 {
    inline-size: 100%;
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    text-align: start;
}

.hello_8 .hello_4 .hello_6 {
    inline-size: 100%;
    max-inline-size: unset;
    text-align: start;
}

.hello_8 .hello_4 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.hello_8 .CuHomeConvergence_brokenCard__mvBMW {
    background: #f8f8fc;
}

.hello_8 .CuHomeConvergence_brokenCard__mvBMW .CuHomeConvergence_cardContent__pc1aQ {
    margin: 50px 50px 0;
}

@media (max-width: 600px) {
    .hello_8 .CuHomeConvergence_brokenCard__mvBMW .CuHomeConvergence_cardContent__pc1aQ {
        margin: 30px 30px 0;
    }
}

.hello_8 .CuHomeConvergence_brokenCard__mvBMW video {
    transform: scale(1.25) translateY(25px);
}

@media (max-width: 900px) {
    .hello_8 .CuHomeConvergence_brokenCard__mvBMW video {
        transform: scale(1.2) translateY(25px);
    }
}

.hello_8 .CuHomeConvergence_fixedCard__O0QfI {
    background: #000;
    color: #fff;
}

.hello_8 .CuHomeConvergence_fixedCard__O0QfI .hello_5 {
    -webkit-padding-start: 50px;
    padding-inline-start: 50px;
    -webkit-padding-end: 50px;
    padding-inline-end: 50px;
    -webkit-padding-before: 50px;
    padding-block-start: 50px;
}

@media (max-width: 600px) {
    .hello_8 .CuHomeConvergence_fixedCard__O0QfI .hello_5 {
        -webkit-padding-start: 30px;
        padding-inline-start: 30px;
        -webkit-padding-end: 30px;
        padding-inline-end: 30px;
    }
}

.hello_8 .CuHomeConvergence_fixedCard__O0QfI .hello_6 {
    -webkit-margin-after: 20px;
    margin-block-end: 20px;
    -webkit-padding-start: 50px;
    padding-inline-start: 50px;
    -webkit-padding-end: 50px;
    padding-inline-end: 50px;
}

@media (max-width: 600px) {
    .hello_8 .CuHomeConvergence_fixedCard__O0QfI .hello_6 {
        -webkit-padding-start: 30px;
        padding-inline-start: 30px;
        -webkit-padding-end: 30px;
        padding-inline-end: 30px;
    }
}

.hello_8 .CuHomeConvergence_fixedCard__O0QfI p {
    color: #fff;
}

.hello_8 .CuHomeConvergence_fixedCard__O0QfI .CuHomeConvergence_actionButtonContainer__odSj_ {
    -webkit-padding-start: 50px;
    padding-inline-start: 50px;
    -webkit-padding-end: 50px;
    padding-inline-end: 50px;
}

@media (max-width: 600px) {
    .hello_8 .CuHomeConvergence_fixedCard__O0QfI .CuHomeConvergence_actionButtonContainer__odSj_ {
        -webkit-padding-start: 30px;
        padding-inline-start: 30px;
        -webkit-padding-end: 30px;
        padding-inline-end: 30px;
    }
}

.hello_8 .CuHomeConvergence_fixedCard__O0QfI .hello_6 {
    padding: 0;
}

.hello_8 .CuHomeConvergence_actionButtonContainer__odSj_ {
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: center;
    inline-size: 100%;
    -webkit-margin-after: 30px;
    margin-block-end: 30px;
}

.hello_8 .hello_7 {
    min-inline-size: unset;
    min-block-size: unset;
    padding: 10px 20px;
    border-radius: 12px;
    color: #000;
    font-size: 16px;
}

.hello_8 .hello_7 svg {
    position: relative;
}

.hello_8 .CuHomeConvergence_actionButtonDescription__u5F45 {
    color: #60626f;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}

.CuWallOfFeatures_wrapper__hccvt {
    overflow: hidden;
    inline-size: 100vw;
    margin: auto;
    -webkit-margin-start: 50%;
    margin-inline-start: 50%;
    -webkit-margin-before: 120px;
    margin-block-start: 120px;
    -webkit-padding-before: 75px;
    padding-block-start: 75px;
    background: rgba(var(--color-v3-grey-6));
    transform: translate(-50%);
    scroll-margin-block-start: 120px;
}

@media (max-width: 1000px) {
    .CuWallOfFeatures_wrapper__hccvt {
        -webkit-margin-before: 60px;
        margin-block-start: 60px;
        -webkit-padding-before: 50px;
        padding-block-start: 50px;
        scroll-margin-block-start: 60px;
    }
}

.demo_container {
    position: relative;
    display: grid;
    grid-template-rows: repeat(8, 1fr);
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 14px;
    gap: 14px;
    justify-content: center;
    max-inline-size: 1510px;
    margin: -120px auto auto;
    -webkit-mask-image: linear-gradient(90deg, transparent 2%, rgb(217, 217, 217) 10%, rgb(217, 217, 217) 90%, transparent 98%), linear-gradient(180deg, transparent 5%, rgb(217, 217, 217) 15%, rgb(217, 217, 217) 85%, transparent 95%);
    mask-image: linear-gradient(90deg, transparent 2%, rgb(217, 217, 217) 10%, rgb(217, 217, 217) 90%, transparent 98%), linear-gradient(180deg, transparent 5%, rgb(217, 217, 217) 15%, rgb(217, 217, 217) 85%, transparent 95%);
    -webkit-mask-composite: source-in, xor;
    mask-composite: intersect;
}

@media (max-width: 1000px) {
    .demo_container {
        gap: 8px;
        justify-items: center;
        -webkit-margin-before: -80px;
        margin-block-start: -80px;
        padding: 0 16px;
    }
}

.demo_1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    inline-size: 138.126px;
    block-size: 126.951px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: box-shadow var(--transition-short);
    text-decoration: none;
}

@media (max-width: 1000px) {
    .demo_1 {
        inline-size: 84.139px;
        block-size: 77.331px;
        border-radius: 10.934px;
    }
}

.demo_1:hover {
    box-shadow: 0 8px 15px 0 rgba(217, 238, 218, 100);
    border-color: var(--green-light);
}

.demo_1:hover .demo_1_img,
.demo_1:hover .smallTitle>p {
    color: var(--grey);
    text-align: center;
    font-family: var(--body-font);
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.smallTitle>p {
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .v4.smallTitle>p {
        font-size: 9.803px;
        line-height: 15.248px;
    }
}

.CuWallOfFeatures_parentTile__xlWD4 {
    position: relative;
    display: flex;
    flex-direction: column;
    grid-row: span 2;
    grid-column: span 2;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-padding-after: 30px;
    padding-block-end: 30px;
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: 0 8px 15px 0 rgba(52, 52, 52, 0.10);
    cursor: pointer;
    transition: box-shadow var(--transition-short);
    border: 1px solid var(--border);
}

@media (max-width: 1000px) {
    .CuWallOfFeatures_parentTile__xlWD4 {
        inline-size: 176.991px;
        block-size: 163.376px;
        padding: 17.427px;
        border-radius: 12.183px;
    }
}

.CuWallOfFeatures_parentTile__xlWD4:hover {
    box-shadow: 0 8px 15px 0 rgba(217, 238, 218, 100);
    border-color: var(--green-light);
}

.CuWallOfFeatures_parentTile__xlWD4:hover .CuWallOfFeatures_bigTitle__8V8qN>h3,
.CuWallOfFeatures_parentTile__xlWD4:hover .demo_1_img {
    color: var(--black) !important;
    transition: color var(--transition-short);
}

.CuWallOfFeatures_parentTile__xlWD4:after,
.CuWallOfFeatures_parentTile__xlWD4:before {
    content: "";
    position: absolute;
    inline-size: 100%;
    block-size: 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

@media (max-width: 1000px) {
    .CuWallOfFeatures_parentTile__xlWD4 img {
        -webkit-margin-after: 20px;
        margin-block-end: 20px;
        width: 60px;
    }
}

.CuWallOfFeatures_parentTileProject__c8X7l:before {
    background-image: url("data:image/svg+xml;base64,Cjxzdmcgd2lkdGg9IjI5MSIgaGVpZ2h0PSIxNTAiIHZpZXdCb3g9IjAgMCAyOTEgMTUwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBvcGFjaXR5PSIwLjI1IiBmaWx0ZXI9InVybCgjZmlsdGVyMF9mXzE2NjdfNjczNjEpIj4KPHBhdGggZD0iTTI4LjI0NiAtMTkuNDM1MkMyNy4xMDYxIC01NC40NzMyIDExMC4zNDIgLTI0Ljg4NTkgMTQ1LjQ4OSAtMjYuMDI5MkwxNTUuOTIyIC0yNi4zNjg2QzE5MS4wNjkgLTI3LjUxMiAyNDkuOTY3IC01NC4xNzQ4IDI1OS4xNjMgLTI5LjY1MjZDMjY4LjM1OSAtNS4xMzAyOSAyNDYuMzkxIDExLjcyODUgMjI2Ljk3NyAyMS45NDZDMjA3LjU2NCAzMi4xNjM2IDE0NC4yODcgMzcuNTE4OSAxNDQuMjg3IDM3LjUxODlDMTA5LjEzOSAzOC42NjIzIDI5LjM4NTggMTUuNjAyOCAyOC4yNDYgLTE5LjQzNTJaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXJfMTY2N182NzM2MSkiLz4KPC9nPgo8ZGVmcz4KPGZpbHRlciBpZD0iZmlsdGVyMF9mXzE2NjdfNjczNjEiIHg9Ii04My41MTgxIiB5PSItMTUxLjc0IiB3aWR0aD0iNDU2LjU5MiIgaGVpZ2h0PSIzMDEuMDUyIiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUJsZW5kIG1vZGU9Im5vcm1hbCIgaW49IlNvdXJjZUdyYXBoaWMiIGluMj0iQmFja2dyb3VuZEltYWdlRml4IiByZXN1bHQ9InNoYXBlIi8+CjxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjU1Ljg3NjMiIHJlc3VsdD0iZWZmZWN0MV9mb3JlZ3JvdW5kQmx1cl8xNjY3XzY3MzYxIi8+CjwvZmlsdGVyPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMTY2N182NzM2MSIgeDE9IjI1Mi41MzkiIHkxPSI2Ljg4MDYzIiB4Mj0iMTc1LjIyNSIgeTI9Ii05MC44NDc3IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRkQ3MDAiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkY0ODhBIi8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==");
}

.CuWallOfFeatures_parentTileDoc__6moEg:before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIiIGhlaWdodD0iMTUwIiB2aWV3Qm94PSIwIDAgMjkyIDE1MCIgZmlsbD0ibm9uZSI+CiAgPGcgb3BhY2l0eT0iMC4yNSIgZmlsdGVyPSJ1cmwoI2ZpbHRlcjBfZl8xNjY3XzY3MzYzKSI+CiAgICA8cGF0aCBkPSJNMjkuMDg4NyAtMTkuNDM1MkMyNy45NDg5IC01NC40NzMyIDExMS4xODUgLTI0Ljg4NTkgMTQ2LjMzMiAtMjYuMDI5MkwxNTYuNzY1IC0yNi4zNjg2QzE5MS45MTIgLTI3LjUxMiAyNTAuODEgLTU0LjE3NDggMjYwLjAwNiAtMjkuNjUyNkMyNjkuMjAxIC01LjEzMDI5IDI0Ny4yMzQgMTEuNzI4NSAyMjcuODIgMjEuOTQ2QzIwOC40MDcgMzIuMTYzNiAxNDUuMTI5IDM3LjUxODkgMTQ1LjEyOSAzNy41MTg5QzEwOS45ODIgMzguNjYyMyAzMC4yMjg2IDE1LjYwMjggMjkuMDg4NyAtMTkuNDM1MloiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcl8xNjY3XzY3MzYzKSIvPgogIDwvZz4KICA8ZGVmcz4KICAgIDxmaWx0ZXIgaWQ9ImZpbHRlcjBfZl8xNjY3XzY3MzYzIiB4PSItODIuNjc1NCIgeT0iLTE1MS43NCIgd2lkdGg9IjQ1Ni41OTIiIGhlaWdodD0iMzAxLjA1MiIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIiBjb2xvci1pbnRlcnBvbGF0aW9uLWZpbHRlcnM9InNSR0IiPgogICAgICA8ZmVGbG9vZCBmbG9vZC1vcGFjaXR5PSIwIiByZXN1bHQ9IkJhY2tncm91bmRJbWFnZUZpeCIvPgogICAgICA8ZmVCbGVuZCBtb2RlPSJub3JtYWwiIGluPSJTb3VyY2VHcmFwaGljIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJzaGFwZSIvPgogICAgICA8ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSI1NS44NzYzIiByZXN1bHQ9ImVmZmVjdDFfZm9yZWdyb3VuZEJsdXJfMTY2N182NzM2MyIvPgogICAgPC9maWx0ZXI+CiAgICA8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMTY2N182NzM2MyIgeDE9IjI0OS43NjQiIHkxPSIxNy43ODU1IiB4Mj0iMTg4LjA2OSIgeTI9Ii03Ny43OTM4IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxzdG9wIHN0b3AtY29sb3I9IiM0MERERkYiLz4KICAgICAgPHN0b3Agb2Zmc2V0PSIwLjU2ODkxNiIgc3RvcC1jb2xvcj0iIzAwOTFGRiIvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDM4RkYiLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgPC9kZWZzPgo8L3N2Zz4=");
}

/* .CuWallOfFeatures_parentTileDoc__6moEg img {
    inline-size: 247px;
    block-size: 210px;
} */

.CuWallOfFeatures_parentTileWhiteboard__V390E:before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIiIGhlaWdodD0iMTQ3IiB2aWV3Qm94PSIwIDAgMjkyIDE0NyIgZmlsbD0ibm9uZSI+CiAgPGcgb3BhY2l0eT0iMC4yNSIgZmlsdGVyPSJ1cmwoI2ZpbHRlcjBfZl8xNjY3XzY3Njc3KSI+CiAgICA8cGF0aCBkPSJNMjguNzM2OSAtMjIuMzQxNEMyNy41OTcxIC01Ny4zNzk0IDExMC44MzMgLTI3Ljc5MjEgMTQ1Ljk4IC0yOC45MzU1TDE1Ni40MTMgLTI5LjI3NDlDMTkxLjU2IC0zMC40MTgzIDI1MC40NTggLTU3LjA4MTEgMjU5LjY1NCAtMzIuNTU4OEMyNjguODUgLTguMDM2NTQgMjQ2Ljg4MiA4LjgyMjIgMjI3LjQ2OCAxOS4wMzk4QzIwOC4wNTUgMjkuMjU3MyAxNDQuNzc4IDM0LjYxMjYgMTQ0Ljc3OCAzNC42MTI2QzEwOS42MyAzNS43NTYgMjkuODc2OCAxMi42OTY2IDI4LjczNjkgLTIyLjM0MTRaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXJfMTY2N182NzY3NykiLz4KICA8L2c+CiAgPGRlZnM+CiAgICA8ZmlsdGVyIGlkPSJmaWx0ZXIwX2ZfMTY2N182NzY3NyIgeD0iLTgzLjAyNzIiIHk9Ii0xNTQuNjQ2IiB3aWR0aD0iNDU2LjU5MiIgaGVpZ2h0PSIzMDEuMDUyIiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CiAgICAgIDxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CiAgICAgIDxmZUJsZW5kIG1vZGU9Im5vcm1hbCIgaW49IlNvdXJjZUdyYXBoaWMiIGluMj0iQmFja2dyb3VuZEltYWdlRml4IiByZXN1bHQ9InNoYXBlIi8+CiAgICAgIDxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjU1Ljg3NjMiIHJlc3VsdD0iZWZmZWN0MV9mb3JlZ3JvdW5kQmx1cl8xNjY3XzY3Njc3Ii8+CiAgICA8L2ZpbHRlcj4KICAgIDxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xNjY3XzY3Njc3IiB4MT0iNzkuOTgzOSIgeTE9Ii0yNC40NTkiIHgyPSIyMjIuOTIxIiB5Mj0iNzUuMTU3NiIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgogICAgICA8c3RvcCBzdG9wLWNvbG9yPSIjNzYxMkZBIi8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzlFNTJGRiIvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICA8L2RlZnM+Cjwvc3ZnPg==");
}

.CuWallOfFeatures_parentTileWhiteboard__V390E img {
    inline-size: 100%;
    width: 60px;
}

.CuWallOfFeatures_parentTileChat__IDAHd:before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIiIGhlaWdodD0iMTQxIiB2aWV3Qm94PSIwIDAgMjkyIDE0MSIgZmlsbD0ibm9uZSI+CiAgPGcgb3BhY2l0eT0iMC4yNSIgZmlsdGVyPSJ1cmwoI2ZpbHRlcjBfZl8xNjY3XzY3NzEyKSI+CiAgICA8cGF0aCBkPSJNMjkuMTc3NCAtMjcuODYyOEMyOC4wMzc1IC02Mi45MDA4IDExMS4yNzMgLTMzLjMxMzUgMTQ2LjQyMSAtMzQuNDU2OUwxNTYuODUzIC0zNC43OTYyQzE5Mi4wMDEgLTM1LjkzOTYgMjUwLjg5OCAtNjIuNjAyNCAyNjAuMDk0IC0zOC4wODAyQzI2OS4yOSAtMTMuNTU3OSAyNDcuMzIyIDMuMzAwODQgMjI3LjkwOSAxMy41MTg0QzIwOC40OTUgMjMuNzM2IDE0NS4yMTggMjkuMDkxMyAxNDUuMjE4IDI5LjA5MTNDMTEwLjA3MSAzMC4yMzQ3IDMwLjMxNzIgNy4xNzUyMSAyOS4xNzc0IC0yNy44NjI4WiIgZmlsbD0iI0ZBMTJFMyIvPgogIDwvZz4KICA8ZGVmcz4KICAgIDxmaWx0ZXIgaWQ9ImZpbHRlcjBfZl8xNjY3XzY3NzEyIiB4PSItODIuNTg2NyIgeT0iLTE2MC4xNjgiIHdpZHRoPSI0NTYuNTkyIiBoZWlnaHQ9IjMwMS4wNTIiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KICAgICAgPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz4KICAgICAgPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJCYWNrZ3JvdW5kSW1hZ2VGaXgiIHJlc3VsdD0ic2hhcGUiLz4KICAgICAgPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iNTUuODc2MyIgcmVzdWx0PSJlZmZlY3QxX2ZvcmVncm91bmRCbHVyXzE2NjdfNjc3MTIiLz4KICAgIDwvZmlsdGVyPgogIDwvZGVmcz4KPC9zdmc+");
}

/* .CuWallOfFeatures_parentTileChat__IDAHd img {
    inline-size: 198px;
    block-size: 123px;
} */

.CuWallOfFeatures_content__LSa4M {
    position: absolute;
    inset-block-end: 30px;
    z-index: 2;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .CuWallOfFeatures_content__LSa4M {
        inset-block-end: 18px;
        gap: 4px;
    }
}

.demo_1_img {
    color: #3e3e6f;
}

@media (max-width: 1000px) {
    .demo_1_img {
        inline-size: 16px;
    }
}

.CuWallOfFeatures_iconWrapper__xeNcM {
    block-size: 25px;
    width: 30px;
    height: 30px;
    border-radius: 16px;
    background: red;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1000px) {
    .CuWallOfFeatures_iconWrapper__xeNcM>svg {
        inline-size: 16px;
    }
}

.CuWallOfFeatures_image__jwgjk {
    inline-size: 100%;
}

.CuWallOfFeatures_bigTitle__8V8qN {
    margin: 0;
}

.smallTitle {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
    text-align: center;
    color: var(--grey);
    font-family: var(--body-font);
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1000px) {
    .smallTitle {
        -webkit-margin-before: 0;
        margin-block-start: 0;
    }
}

.v4 .CuWallOfFeatures_bigTitle__8V8qN>h3 {
    color: var(--black);
    font-family: var(--body-font);
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

/* @media (max-width: 1000px) {
    .v4 .CuWallOfFeatures_bigTitle__8V8qN>h3 {
        font-size: 15.248px;
        line-height: 18.516px;
        letter-spacing: -0.408px;
    }
} */

.demo_1_a {
    pointer-events: none;
}

/*--- Our Product Suite style end ---*/


/*--- contact-page-banner sec style start ---*/
.contact-page-banner {
    padding: 72px 0;
    background-color: var(--grey-bg);
    background-image: url('../image/banner-bg-min.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-page-banner .cloud-tag {
    display: inline-block;
    background: var(--green-lime);
    color: var(--green-dark);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: var(--fs-14);
    font-family: var(--body-font);
    font-weight: 500;
}

.contact-page-banner .cloud-options-title {
    font-family: var(--heading-font);
    font-size: var(--fs-42);
    font-weight: 700;
    color: var(--black);
}

.contact-page-banner .cloud-options-subtitle {
    color: var(--grey);
    font-size: var(--fs-16);
    font-family: var(--body-font);
}

.contact-page-banner .contact-card {
    border: 1px solid var(--green-lime);
}

.contact-page-banner .contact-card-right {
    border: 1px solid var(--orange-lime);
}

.contact-page-banner .contact-card h2 {
    font-size: var(--fs-16);
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--black);
    margin-bottom: 24px;
}

.contact-page-banner .contact-card h5 {
    font-size: var(--fs-16);
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--black);
}

.contact-page-banner .contact-card p {
    font-size: var(--fs-14);
    font-weight: normal;
    font-family: var(--body-font);
    color: var(--grey);
    margin: 0;
}

.contact-page-banner .mobileCol .dropdown-toggle {
    border-radius: 6px;
    font-size: var(--fs-14);
    padding: 8px;
    border: 1px solid var(--border);
    background: var(--grey-bg);
    color: var(--grey);
    border-right: 1px solid var(--border);
    font-family: var(--body-font);
}

.contact-page-banner .mobileCol .dropdown-item {
    font-size: var(--fs-14);
    color: var(--grey);
}

.contact-page-banner .form-label {
    font-size: var(--fs-14);
    color: var(--black);
    font-family: var(--heading-font);
}

.contact-page-banner .form-control {
    border-radius: 6px;
    font-size: var(--fs-14);
    padding: 8px;
    border: 1px solid var(--border);
    background: var(--grey-bg);
    font-family: var(--body-font);
    color: var(--grey);
}

.contact-page-banner .form-control:focus {
    border-color: var(--orange-main);
    box-shadow: none;
}

.contact-page-banner .btn-submit {
    background: var(--orange-main);
    color: var(--white);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: var(--fs-16);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.contact-page-banner .btn-submit:hover{
    background: var(--orange-dark);
    color: var(--white);
}

/*.contact-page-banner .btn-submit:hover {*/
/*    background: var(--orange-dark);*/
/*}*/
/*--- contact-page-banner sec style end ---*/


/*--- about-page-banner sec style start ---*/
.about-page-banner {
    background-color: var(--grey-bg);
    background-image: url('../image/banner-bg-min.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about-page-banner .item h1 {
    font-family: var(--heading-font);
    color: var(--black);
    margin: 0;
    padding: 0;
    font-size: var(--fs-48);
    font-weight: 700;
}

.about-page-banner .item p {
    font-size: var(--fs-16);
    font-family: var(--body-font);
    color: var(--black);
    margin: 0;
}

.about-page-banner .item button {
    background: var(--orange-dark);
    font-size: var(--fs-16);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--white);
    font-family: var(--body-font);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.about-page-banner .item button:hover {
    background: var(--orange-main);
    color: var(--white);
}

.standard-about-sec {
    background: var(--black);
}

.standard-about-sec h3 {
    font-size: var(--fs-24);
    color: var(--white);
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 24px;
}

.standard-about-sec h2 {
    font-size: 28px;
    color: var(--white);
    font-family: var(--heading-font);
    margin: 0;
    font-weight: 700;
}
@media (min-width:992px) {
  .standard-about-sec h2 {
    font-size: 62px;
}  
}



.future-sec-about {
    background: var(--black);
}

.future-sec-about h2 {
    font-size: var(--fs-42);
    font-family: var(--heading-font);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 24px;
}

.future-sec-about p {
    font-size: var(--fs-24);
    color: var(--grey-bg);
    font-family: var(--body-font);
    margin: 0;
    font-weight: 400;
}

.future-sec-about .row:nth-child(1) {
    margin-bottom: 52px;
}

@media (max-width:768px) {
    .future-sec-about .row:nth-child(1) {
        margin-bottom: 36px;
    }
}

.future-sec-about .item {
    background: var(--border);
    border-radius: 16px;
    height: 100%;
}

.future-sec-about .item img {
    width: 36px;
    height: 36px;
    display: block;
    margin-bottom: 20px;
}

.future-sec-about .item h4 {
    font-size: var(--fs-24);
    color: var(--black);
    font-family: var(--heading-font);
    font-weight: 700;
    margin: 0;
}

.future-sec-about .item p {
    font-size: var(--fs-16);
    color: var(--black);
    font-family: var(--heading-font);
    font-weight: 400;
}

/* .coreValue-sec-about{
    background: var(--black);
} */
.coreValue-sec-about h2 {
    font-size: var(--fs-42);
    font-family: var(--heading-font);
    color: var(--black);
    font-weight: 700;
    margin: 0;
}

.coreValue-sec-about .row:nth-child(1) {
    margin-bottom: 52px;
}

@media (max-width:768px) {
    .coreValue-sec-about .row:nth-child(1) {
        margin-bottom: 26px;
    }
}


.coreValue-sec-about .item {
    position: relative;
    background: var(--border);
    border-radius: 16px;
    height: 425px;
    overflow: hidden;
    padding: 20px;
}
@media (max-width:768px) {
    .coreValue-sec-about .item {
        height: 250px;
    }
}

.coreValue-sec-about .item-default {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 2;
}

.coreValue-sec-about .item-default img {
    width: 36px;
    height: 36px;
}

.coreValue-sec-about .item-default h4 {
    font-size: var(--fs-24);
    color: var(--black);
    font-family: var(--heading-font);
    font-weight: 500;
    margin: 0;
}

.coreValue-sec-about .item-hover {
    position: absolute;
    inset: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    border-radius: 16px;
}

.coreValue-sec-about .item-hover p {
    font-size: var(--fs-16);
    color: var(--white);
    font-family: var(--body-font);
    font-weight: 400;
    flex: 1;
    margin: 0;
}

.coreValue-sec-about .item-hover img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    margin-left: auto;
}

/* Hover effect */
.coreValue-sec-about .item:hover .item-default {
    opacity: 0;
}

.coreValue-sec-about .item:hover .item-hover {
    opacity: 1;
    transform: translateY(0);
}

.ourTeam-sec {
    background: var(--black);
}

.ourTeam-sec .row:nth-child(1) {
    margin-bottom: 52px;
}

@media (max-width:768px) {
    .ourTeam-sec .row:nth-child(1) {
        margin-bottom: 36px;
    }
}

.ourTeam-sec h2 {
    font-size: var(--fs-42);
    font-family: var(--heading-font);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 24px;
}

.ourTeam-sec p {
    font-size: var(--fs-24);
    color: var(--grey-bg);
    font-family: var(--body-font);
    margin: 0;
    font-weight: 400;
}

.ourTeam-sec .item .image-content {
    width: 100%;
    height: 335px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.ownCreation .swiper-slide-active .item .image-content {
    height: 360px;
}

.ourTeam-sec .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(100%);
    transition: transform 0.8s ease, filter 0.8s ease;
    border-radius: 16px;
    transform: scale(1);
}

.ourTeam-sec .item h4 {
    font-size: var(--fs-24);
    font-family: var(--heading-font);
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.ourTeam-sec .item a {
    font-size: var(--fs-24);
    font-family: var(--heading-font);
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.ourTeam-sec .item span {
    font-size: var(--fs-16);
    color: var(--grey);
    font-weight: 700;
    font-family: var(--heading-font);
}

.ourTeam-sec .item p {
    font-size: var(--fs-14);
    color: var(--white);
    font-family: var(--body-font);
    font-weight: 400;
}

.ourTeam-sec .item a,
.ourTeam-sec .item p {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease;
}

.ourTeam-sec .swiper-slide-active .item .image-content {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.ownCreation .swiper-slide-active .item img {
    filter: none;
    /* transform: scale(1.1);
    border-radius: 16px; */
}

.ownCreation .swiper-slide-active .item a,
.ownCreation .swiper-slide-active .item p {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar styling */
.ourTeam-sec .ownCreation-pagination {
    flex: 1;
    /* take available space in row */
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

/* Scrollbar drag (the moving part) */
.ourTeam-sec .ownCreation-pagination .swiper-scrollbar-drag {
    /* background-color: var(--grey-bg); */
    border-radius: 2px;
}

/* Prev/Next buttons */
.ourTeam-sec .ownCreation-prev,
.ourTeam-sec .ownCreation-next {
    background-color: var(--accent-mint);
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    margin: 0 !important;
}

.ourTeam-sec .ownCreation-next {
    background-color: var(--accent-pink);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
}

.ourTeam-sec .ownCreation-prev,
.ourTeam-sec .ownCreation-next {
    background-color: var(--white);
    width: 32px !important;
    height: 32px !important;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ourTeam-sec .ownCreation-next {
    background-color: var(--white);
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: auto !important;
    height: auto !important;
}

/*--- about-page-banner sec style end ---*/

/*--- bredcrumb start ---*/
nav[aria-label="breadcrumb"] .breadcrumb .breadcrumb-item{
    font-size:14px;
    font-family: var(--body-font);
}
nav[aria-label="breadcrumb"] .breadcrumb .breadcrumb-item a{
    color: var(--white);
    text-decoration: none;
}
nav[aria-label="breadcrumb"] .breadcrumb .breadcrumb-item.active{
    color: var(--grey);
}
/*--- bredcrumb end ---*/