:root {
    --heading-font: Lato, sans-serif;
    --body-font: Montserrat, sans-serif;
    --dark: #131924;
    --nav-dark: #000;
    --PrimaryBlue: #223c81;
    --PrimaryBlueLight: #149bd7;
    --white: #fff;
    --light-gray: #888282;
    --light-gray2: #e3e3e8;
    --base-color: #0a0240;
    --ultra-light-blue: #e7ecf7;
    --light-bg: #f8fafd;
    --black: #000;
    --off-white: #f8f8f8;
    --light-green: #b5f1cc;
    --light-pink: #ffc0d9;
    --light-purple: #d0bfff;
    --light-orenge: #ffd8c0;
    --light-green-2: #e4f0c0;
    --light-cyan: #daf5f7;
    --light-gray3: #f7f7f7;
    --light-gray4: #e6e6e6;
    --light-gray5: #fbfbfb;
    --light-gray6: #f2f2f2;
    --light-gray7: #fbfafa;
    --light-gray8: #eee;
    --dc-orange: #e6392a;
    --light-pink-1: #fff3f8;
    --light-green-1: #e9fef1;
    --light-purple-1: #e9f6fe;
    --light-cyan-1: #efedf1;
    --light-beige-1: #fbfcec;
    --light-orange-1: #fde6e4;
    --bright-blue: #0648ef;
    --main-gradient: linear-gradient(139deg, #223c81, #149bd7 85%, #169bd7) 0 0 no-repeat padding-box;
    --light-gray-text: #c5c5c5;
    --bright-yellow: #e1f757;
}

body {
    font-size: 15px;
    font-family: var(--body-font), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 24px;
    color: var(--dark);
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

.font-16 {
    font-size: 16px;
}

.font-14 {
    font-size: 14px;
}

.material-symbols-outlined {
    font-variation-settings: FILL 0, wght 400, GRAD 0, opsz 24;
}

.material-symbols-rounded {
    font-family: "Material Symbols Rounded";
    font-weight: 400;
    font-style: normal;
    font-display: optional;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: liga;
    -webkit-font-smoothing: antialiased;
}

.review-stars {
    --star-size: 60px;
    --star-color: #ddd;
    --star-background: var(--dc-orange);
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: var(--star-size);
    font-family: Times;
    line-height: 1;
}

    .review-stars::before {
        content: "★★★★★";
        letter-spacing: 3px;
        background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}

.play-icon {
    border-radius: 50%;
    background: var(--bright-blue);
    color: #fff;
    transition: all 0.3s ease;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    position: relative;
}

.playvideo_animation {
    position: absolute;
    top: -33px;
    left: -33px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--bright-blue);
    opacity: 0;
    z-index: -1;
    transform: scale(0.5);
    animation: playvideoWave 3s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s infinite;
}

@keyframes playvideoWave {
    from {
        opacity: 0.4;
        transform: scale(0.3);
    }

    to {
        transform: scale(1);
        opacity: 0;
    }
}

.blur-rounded-shape {
    position: absolute;
    width: 210px;
    height: 210px;
    background: var(--dc-orange);
    border-radius: 100%;
    z-index: -1;
    filter: blur(181px);
}

    .blur-rounded-shape.center {
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0 auto;
    }

.drop-shadow {
    filter: drop-shadow(0 8px 8px #0003);
}

.bullet-content .bullet-content-item {
    margin-bottom: 20px;
}

    .bullet-content .bullet-content-item h3 {
        font-size: 18px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-weight: 800;
        color: var(--dc-orange);
    }

        .bullet-content .bullet-content-item h3 svg {
            position: relative;
            top: 2px;
        }

    .bullet-content .bullet-content-item p {
        margin-bottom: 0;
        padding-left: 30px;
        font-size: 14px;
        opacity: 0.9;
    }

.body-font {
    font-family: var(--body-font);
}

.heading-font {
    font-family: var(--heading-font);
}

.text-primary-blue {
    color: var(--PrimaryBlue);
}

.text-primary-blue-light {
    color: var(--PrimaryBlueLight);
}

.dark-text {
    color: var(--dark) !important;
}

.orange-text {
    color: var(--dc-orange) !important;
}

a {
    text-decoration: none;
}

img,
video {
    max-width: 100%;
}

.row-gap-30 {
    row-gap: 30px;
}

.row-gap-gutter {
    row-gap: var(--bs-gutter-x);
}

.pl-50 {
    padding-left: 50px;
}

.pr-50 {
    padding-right: 50px;
}

.-mb-50 {
    margin-bottom: -50px;
}

.section-mt-80 {
    margin-top: 80px;
}

.section-mb-80 {
    margin-bottom: 80px;
}

.section-mb-40 {
    margin-bottom: 40px;
}

.section-padding {
    padding: 50px 0 !important;
}

.section-pb-80 {
    padding-bottom: 80px !important;
}

.section-pb-120 {
    padding-bottom: 120px !important;
}

.section-pt-40 {
    padding-top: 40px !important;
}

.section-pt-80 {
    padding-top: 80px;
}

.above-footer-section {
    padding-bottom: 200px !important;
}

.row-gap-24 {
    row-gap: 40px;
}

.max-w-100 {
    max-width: 100% !important;
}

.bg-pink {
    background: var(--light-pink);
}

.text-italic {
    font-style: italic;
    font-display: optional;
}

.bg-green {
    background: var(--light-green);
}

.bg-purple {
    background: var(--light-purple);
}

.bg-orange {
    background: var(--light-orenge);
}

.bg-pink-1 {
    background: var(--light-pink-1) !important;
}

.bg-green-1 {
    background: var(--light-green-1) !important;
}

.bg-purple-1 {
    background: var(--light-purple-1) !important;
}

.bg-cyan-1 {
    background: var(--light-cyan-1) !important;
}

.bg-beige-1 {
    background: var(--light-beige-1) !important;
}

.bg-orange-1 {
    background: var(--light-orange-1) !important;
}

.bg-off-white {
    background: var(--off-white);
}

.bg-light-c {
    background: var(--light-bg);
}

.bg-ultra-light-blue {
    background: var(--ultra-light-blue);
}

.bg-purple-patch {
    background: url(https://assets.nextwebi.com/assets/images/purple-patch.webp);
    background-size: cover;
}

.bg-pattern-3 {
    position: relative;
    z-index: 1;
}

    .bg-pattern-3:before {
        background: url(../images/bg-pattern-3.png);
        background-size: contain;
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0.7;
    }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}

    .form-group .form-label {
        margin-bottom: 0;
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        outline: 0;
        padding: 6px 12px;
        margin: 0;
        border-radius: 2px;
        border: 1px solid #bebebe;
        font-size: 16px;
        transition: var(--transition3);
        background-color: transparent;
        font-family: var(--body-font);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--PrimaryBlue);
        }

        .form-group select:focus {
            box-shadow: none;
        }

        .form-group input[type="checkbox"] {
            position: absolute;
            opacity: 0;
        }

            .form-group input[type="checkbox"] + label {
                padding-left: 30px;
                position: relative;
                cursor: pointer;
            }

                .form-group input[type="checkbox"] + label:before {
                    content: "";
                    position: absolute;
                    width: 19px;
                    height: 19px;
                    border: 1px solid var(--PrimaryBlue);
                    left: 0;
                    top: 3px;
                    border-radius: 2px;
                    transition: 0.2s;
                    cursor: pointer;
                }

            .form-group input[type="checkbox"]:checked + label:before {
                background: var(--PrimaryBlue);
            }

            .form-group input[type="checkbox"] + label:after {
                content: "";
                left: 3px;
                top: 7px;
                color: var(--white);
                position: absolute;
                width: 13px;
                height: 8px;
                border-bottom: solid 3px currentColor;
                border-left: solid 3px currentColor;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                opacity: 0;
                transition: 0.2s;
                cursor: pointer;
            }

            .form-group input[type="checkbox"]:checked + label:after {
                opacity: 1;
            }

.uploadButton-input {
    position: absolute;
    opacity: 0;
    max-width: 100%;
    left: 0;
}

.uploadButton-button {
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 600;
    border: 2px dashed #979393;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    width: max-content;
    display: inline-flex;
}

.submit-btn {
    padding: 10px 30px !important;
    font-weight: 600 !important;
    font-family: var(--body-font) !important;
}

.form-group.captcha-group img {
    height: 42px;
    width: max-content;
}

.cursor-pointer {
    cursor: pointer;
}

.custom-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .custom-list li {
        padding-left: 36px;
        position: relative;
    }

        .custom-list li:before {
            position: absolute;
            content: "";
            width: 24px;
            height: 24px;
            left: 0;
            background-image: url(https://assets.nextwebi.com/assets/images/icons/tick-circle-blue.svg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: 100%;
        }

.skills-list-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.skills-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .skills-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 14px;
        margin-bottom: 12px;
    }

        .skills-list li svg {
            color: var(--PrimaryBlue);
            position: relative;
            top: 4px;
        }

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .feature-list li {
        padding-left: 40px;
        position: relative;
        margin-bottom: 20px;
    }

        .feature-list li:after {
            content: "";
            position: absolute;
            width: 24px;
            height: 24px;
            left: 0;
            top: 0;
            background: url(https://assets.nextwebi.com/assets/images/solutions/list-icon.svg);
        }

.white-arrow {
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

    .white-arrow.swiper-button-next {
        right: -16px;
    }

    .white-arrow.swiper-button-prev {
        left: -16px;
    }

    .white-arrow:after {
        font-size: 0;
        width: 14px;
        height: 14px;
        border-right: 3px solid var(--PrimaryBlue);
        border-bottom: 3px solid var(--PrimaryBlue);
        transform: rotate(-45deg) translateY(-50%);
        border-radius: 2px;
        position: absolute;
        top: 47%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .white-arrow.swiper-button-prev:after {
        transform: rotate(45deg) translateY(-50%) scaleX(-1);
    }

    .white-arrow.swiper-button-next.swiper-button-disabled,
    .white-arrow.swiper-button-prev.swiper-button-disabled {
        opacity: 1;
    }

        .white-arrow.swiper-button-next.swiper-button-disabled:after,
        .white-arrow.swiper-button-prev.swiper-button-disabled:after {
            opacity: 0.5;
        }

.swiper-arrow-type-1 .swiper-button-next,
.swiper-arrow-type-1 .swiper-button-prev {
    position: relative;
    left: unset !important;
    right: unset !important;
    border: 1px solid var(--PrimaryBlue);
    z-index: 1;
    margin-top: 0;
}

.swiper-arrow-type-1 {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

    .swiper-arrow-type-1 .swiper-button-next:before,
    .swiper-arrow-type-1 .swiper-button-prev:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--PrimaryBlue);
        top: 0;
        left: 0;
        border-radius: 30px;
        pointer-events: none;
        transform-origin: 100% 50%;
        transform: scale3d(0, 1, 1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: -1;
    }

    .swiper-arrow-type-1 .swiper-button-next:hover:before,
    .swiper-arrow-type-1 .swiper-button-prev:hover:before {
        transform: none;
    }

    .swiper-arrow-type-1 .white-arrow:hover:after {
        border-color: var(--white);
    }

    .swiper-arrow-type-1.dark .outlined.swiper-button-next,
    .swiper-arrow-type-1.dark .outlined.swiper-button-prev {
        border-color: var(--white);
        border-width: 2px;
    }

.arrow.swiper-button-next:after,
.arrow.swiper-button-prev:after {
    content: none;
}

.arrow.swiper-button-next,
.arrow.swiper-button-prev {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background: 0 0;
    border: 1px solid transparent;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-self: center;
    transition: 0.2s;
}

    .arrow.swiper-button-next svg,
    .arrow.swiper-button-prev svg {
        width: 16px;
    }

.arrow.blue-arrow.swiper-button-next,
.arrow.blue-arrow.swiper-button-prev {
    background: var(--PrimaryBlue);
    color: var(--white);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 16px;
    border-radius: 26px;
}

.slider-buttons .swiper-button-next:after,
.slider-buttons .swiper-button-prev:after {
    content: none;
}

.btn {
    font-family: var(--heading-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 13px 24px;
    gap: 12px;
    transition: 0.2s;
    letter-spacing: 0.2px;
}

    .btn.rounded {
        border-radius: 70px !important;
    }

.btn-blue {
    background-color: var(--PrimaryBlue);
    border-color: var(--PrimaryBlue);
    color: var(--white) !important;
}

    .btn-blue:hover {
        background-color: #2e52b3;
        border-color: #2e52b3;
    }

.btn-blue-2 {
    background-color: #1c5a96;
    border-color: var(--bright-blue) !important;
    color: var(--white) !important;
}

    .btn-blue-2:hover {
        background-color: var(--bright-blue);
        border-color: var(--bright-blue);
        color: var(--white) !important;
    }

.btn-blue-2-outlined {
    background-color: transparent !important;
    border-color: var(--bright-blue) !important;
    color: var(--bright-blue) !important;
}

    .btn-blue-2-outlined:hover {
        background-color: var(--bright-blue) !important;
        border-color: var(--bright-blue);
        color: var(--white) !important;
    }

.btn-orange {
    background: #1c5a96;
    border-color: #fff;
    color: var(--white);
}

    .btn-orange:hover {
        background: var(--dc-orange);
        border-color: var(--dc-orange);
        color: var(--white);
    }

.btn-white-outlined {
    border-color: var(--white);
    color: var(--white);
    background: 0 0;
}

    .btn-white-outlined:hover {
        background: var(--white);
        color: var(--PrimaryBlue);
    }

.btn.btn-white {
    background: var(--white);
    color: var(--PrimaryBlueLight);
    border-color: var(--white);
}

    .btn.btn-white:hover {
        background: var(--PrimaryBlueLight);
        color: var(--white);
        border-color: var(--PrimaryBlueLight);
    }

.btn-blue-light {
    background: var(--PrimaryBlueLight);
    color: var(--white);
    border-color: var(--PrimaryBlueLight);
}

    .btn-blue-light:hover {
        background: var(--white);
        color: var(--PrimaryBlueLight);
        border-color: var(--white);
    }

.btn-yellow {
    background-color: var(--bright-yellow) !important;
    border-color: var(--bright-yellow) !important;
    color: var(--dark) !important;
}

    .btn-yellow:hover {
        color: var(--bright-yellow) !important;
        background: 0 0 !important;
    }

.btn-black {
    background: var(--black);
    color: var(--white);
}

    .btn-black:hover {
        border-color: var(--black);
    }

.view-all-btn {
    width: 120px;
    margin-top: 20px;
    margin-left: 10px;
}

.bg-blur {
    backdrop-filter: blur(15px);
}

.primary-link {
    transition: 0.2s;
    color: var(--PrimaryBlue);
    font-weight: 600;
}

    .primary-link svg {
        font-size: 14px;
        margin-left: 6px;
        transition: 0.2s;
    }

    .primary-link:hover svg {
        transform: translateX(6px);
    }

.counter-card {
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

    .counter-card .icon {
        width: 60px;
        display: none;
    }

    .counter-card .content {
        width: 100%;
    }

        .counter-card .content h4 {
            font-size: 32px;
            margin-bottom: 0;
            color: var(--dark);
            font-weight: 700;
        }

        .counter-card .content p {
            margin-bottom: 0;
            font-size: 14px;
        }

.radius-0 {
    border-radius: 0;
}

.drop-shadow img {
    filter: drop-shadow(0 0px 4px #0009);
}

.gredient-text {
    color: transparent;
    background: transparent var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

    .gredient-text.type-2 {
        background: -webkit-linear-gradient(45deg, #09ab79, #2824d3 100%);
        -webkit-background-clip: text;
    }

    .gredient-text.type-3 {
        background: -webkit-linear-gradient(45deg, #2438d3, #0ea72f 100%);
        -webkit-background-clip: text;
    }

    .gredient-text.type-4 {
        background: transparent linear-gradient(262deg, #f07f47 0, #8c4bd8 100%, #000 100%) 0 0 no-repeat padding-box;
        -webkit-background-clip: text;
    }

    .gredient-text.type-5 {
        background: transparent linear-gradient(139deg, #ff7549, #985dff 85%, #3b00a3) 0 0 no-repeat padding-box;
        -webkit-background-clip: text;
    }

    .gredient-text.type-6 {
        background: transparent linear-gradient(139deg, #6bd3af, #3158ff 85%, #2925ff) 0 0 no-repeat padding-box;
        -webkit-background-clip: text;
    }

    .gredient-text.type-7 {
        background: transparent linear-gradient(99deg, #ffc465 0, #5338ff 100%) 0 0 no-repeat padding-box;
        background-clip: text;
        -webkit-background-clip: text;
    }

    .gredient-text.type-8 {
        background: transparent linear-gradient(90deg, #f415b8 0, #e98e15 100%);
        -webkit-background-clip: text;
    }

    .gredient-text.type-9 {
        background: transparent linear-gradient(90deg, #d9aeff 0, #ff7a7a 100%);
        -webkit-background-clip: text;
    }

.section-title {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

    .section-title.w-100 {
        max-width: 100%;
        width: 100%;
    }

    .section-title h2,
    .section-title-h4 h4,
    .section-title .section-title-heading {
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 20px;
        font-weight: 700;
        font-family: var(--heading-font);
    }

.section-title-h3 {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

    .section-title-h3 h3 {
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 20px;
        font-weight: 700;
    }

.section-title h2 br {
    display: none;
}

.section-content-gap {
    margin-top: 30px;
}

.solution-hero-section h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 58px;
}

.section-blur-element {
    fill: #ccff0073;
    -webkit-filter: blur(165.5px);
    filter: blur(165.5px);
    z-index: -1;
    width: 100px;
    height: 100px;
    position: absolute;
}

    .section-blur-element.left-top {
        left: 0;
        top: 0;
    }

    .section-blur-element.right-top {
        right: 0;
        top: 0;
    }

    .section-blur-element.bottom-right {
        right: 0;
        bottom: 0;
    }

.inner-banner-section {
    padding-top: 120px;
    padding-bottom: 100px;
    position: relative;
    background-size: cover;
    z-index: 1;
    background-image: url(https://assets.nextwebi.com/assets/images/inner-page-banner-bg.webp);
}

    .inner-banner-section:after {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: -1;
        opacity: 0.7;
    }

.inner-page-banner h1 {
    font-size: 60px;
    font-weight: 700;
}

.inner-page-banner h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 30px 0;
    letter-spacing: 0.5px;
}

.inner-page-banner p {
    font-size: 18px;
    line-height: 30px;
}

.inner-page-banner .cta-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .inner-page-banner .cta-links span {
        display: inline-flex;
        position: relative;
        padding: 0 30px;
    }

        .cta-links span:after,
        .inner-page-banner .cta-links span:before {
            content: "";
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 1px;
            background: var(--PrimaryBlue);
        }

        .inner-page-banner .cta-links span:before {
            left: 0;
        }

        .inner-page-banner .cta-links span:after {
            right: 0;
        }

.sticky-section {
    position: sticky;
    top: 120px;
}

.service-inner-box {
    padding: 0;
    border: 1px solid var(--light-gray2);
    border-radius: 10px;
    position: relative;
    transition: 0.2s;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
}

.service-box .swiper-slide {
    height: unset;
}

.service-inner-box .content {
    padding: 20px;
}

.service-inner-box h4 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
}

    .service-inner-box h4 p {
        margin-bottom: 30px;
    }

.service-inner-box img {
    margin-top: 0;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
}

.service-inner-box .hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
}

.service-inner-box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0, #223c8180, transparent);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
}

.service-inner-box .hover-content a {
    padding: 8px 20px;
    display: block;
    border: 1px solid #e6392a;
    border-radius: 8px;
    color: #fff;
    background: #e6392a;
    transition: 0.2s;
    transform: translateY(0);
    max-width: 150px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    font-size: 13px;
    font-weight: 400;
    font-family: Montserrat, sans-serif;
}

.service-inner-box:hover .hover-content a {
    transform: translateY(-30px);
    opacity: 1;
    visibility: visible;
}

.who-we-serve-card {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-gray2);
    position: relative;
}

    .who-we-serve-card .image img {
        width: 60px;
    }

    .who-we-serve-card .image {
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
        width: 80px;
        height: 70px;
    }

        .who-we-serve-card .image:before {
            content: "";
            width: 40px;
            height: 40px;
            background: var(--ultra-light-blue);
            border-radius: 100%;
            position: absolute;
            z-index: -1;
            right: 0;
            bottom: 0;
        }

    .who-we-serve-card .content h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .who-we-serve-card .content p {
        margin-bottom: 0;
        line-height: 27px;
    }

    .who-we-serve-card:before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: 2px;
        background: var(--PrimaryBlue);
        transform: scaleX(0);
        transition: 0.4s;
    }

    .who-we-serve-card:hover:before {
        transform: scaleX(1);
    }

.testimonial-card {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 4px 4px #223c810d;
    margin: 0;
}

    .testimonial-card .testimonial-detail {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        .testimonial-card .testimonial-detail .wrap {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .testimonial-card .testimonial-detail .image {
            display: flex;
            justify-content: center;
            width: 100%;
        }

            .testimonial-card .testimonial-detail .image img {
                height: 80px;
            }

        .testimonial-card .testimonial-detail .client-detail {
            width: 100%;
            margin-top: 20px;
        }

            .testimonial-card .testimonial-detail .client-detail h3 {
                font-weight: 600;
                font-size: 18px;
                margin-bottom: 0;
            }

            .testimonial-card .testimonial-detail .client-detail p,
            .testimonial-card .testimonial-detail .review-content p {
                margin-bottom: 0;
                font-size: 14px;
            }

        .testimonial-card .testimonial-detail .review-content img {
            width: 50px;
            margin-bottom: 20px;
        }

.blog-card {
    transition: 0.2s;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    display: block;
}

    .blog-card .white-badge {
        position: relative;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 20px;
    }

    .blog-card .image {
        position: relative;
    }

        .blog-card .image img {
            width: 100%;
            height: 280px;
            transition: 0.2s;
            object-fit: cover;
            object-position: left;
        }

    .blog-card .blog-content {
        padding: 30px 20px;
        background: #8d22ffb3;
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0;
        height: 100%;
        transition: 0.2s;
        border-radius: 3px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .blog-card.type-1 .blog-content {
        background: #0648efb3;
    }

    .blog-card.type-2 .blog-content {
        background: #ddb800b3;
    }

    .blog-card.type-3 .blog-content {
        background: #0648efb3;
    }

    .blog-card .blog-content .read-more {
        display: inline-block;
        overflow: hidden;
        transition: 0.4s;
    }

    .blog-card .blog-content h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--white);
    }

    .blog-card .blog-content p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
        color: var(--white);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-card .blog-content a {
        font-weight: 700;
        color: var(--PrimaryBlue);
        text-decoration: underline;
    }

        .blog-card .blog-content a:hover {
            color: var(--PrimaryBlue);
        }

.industry-focused-insight-card {
    padding: 20px;
    color: inherit;
    display: block;
    box-shadow: 0 0 4px #0003;
    transition: all 0.2s ease-in-out;
    height: 100%;
    border: 1px solid transparent;
}

    .industry-focused-insight-card .blog-desc {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
    }

    .industry-focused-insight-card .insight-heading {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .industry-focused-insight-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
    }

        .industry-focused-insight-card ul li {
            padding: 0;
            background: transparent !important;
            border-radius: 2px;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            opacity: 0.8;
            color: var(--dark) !important;
        }

    .industry-focused-insight-card h3,
    .industry-focused-insight-card .insight-heading {
        margin: 20px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--black);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-family: var(--heading-font);
    }

    .industry-focused-insight-card:hover {
        border-color: var(--bright-blue) !important;
        color: inherit;
        background: #fff !important;
    }

        .industry-focused-insight-card:hover .meta-details,
        .industry-focused-insight-card:hover h3,
        .industry-focused-insight-card:hover .insight-heading {
            /*color: var(--white);*/
        }

    .industry-focused-insight-card .meta-details {
        font-size: 14px;
    }

.technology-partner-card {
    padding: 20px;
    background: var(--white);
    box-shadow: 0 0 4px #0000001a;
    border-bottom: 5px solid var(--PrimaryBlue);
    height: 100%;
}

    .technology-partner-card h3,
    .technology-partner-card .process-counter {
        font-size: 36px;
        font-weight: 800;
        color: var(--PrimaryBlue);
        margin-bottom: 0;
        font-family: var(--heading-font);
        line-height: normal;
    }

    .technology-partner-card .process-counter {
        margin-bottom: 16px;
    }

    .technology-partner-card h4,
    .technology-partner-card .process-title {
        font-size: 22px;
        margin: 10px 0;
        font-weight: 600;
        font-family: var(--heading-font);
    }

    .technology-partner-card p {
        font-size: 14px;
    }

.collabration-card {
    transition: 0.3s;
    height: 100%;
    padding: 0;
    background: 0 0;
}

    .collabration-card .top-content {
        display: flex;
        gap: 20px;
        align-items: start;
        flex-direction: column;
        margin-bottom: 15px;
    }

        .collabration-card .top-content .icon {
            width: 80px;
            height: 80px;
            border-radius: 100%;
            position: relative;
            z-index: 1;
        }

        /*.collabration-card .top-content .icon:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #b9e9ff7d;
    z-index: -1;
    top: 20px;
    right: -10px;
}*/

        .collabration-card .top-content h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 0;
        }

    .collabration-card .description p {
        margin-bottom: 0;
        font-size: 18px;
        line-height: 1.5;
		font-family: Manrope;
    }

.collabration-card-type-2 {
    height: 100%;
    min-height: 250px;
    border: 1px solid #d4e0edb3;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease-in-out;
    background: var(--white);
}

    .collabration-card-type-2:hover {
        box-shadow: 0 16px 40px #b0cae433;
    }

    .collabration-card-type-2 .top-content {
        display: flex;
        gap: 20px;
        align-items: start;
        flex-direction: column;
        margin-bottom: 15px;
    }

        .collabration-card-type-2 .top-content h3 {
            font-weight: 700;
            font-size: 20px;
            text-transform: capitalize;
        }

    .collabration-card-type-2 .description p {
        margin-bottom: 0;
        font-size: 14px;
    }

    .collabration-card-type-2 .icon img {
        height: 49px;
    }

.dev-collab-item {
    background: 0 0;
    border-radius: 20px;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
}

.web-services-dev-collab .dev-collab-item {
    border: 4px solid transparent;
    padding: 30px;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s linear 0s;
    position: relative;
    height: 100%;
    backdrop-filter: blur(20px);
    background: var(--white);
}

.dev-collab-item:has(.collabration-card-type-2):hover {
    transform: rotate(4deg);
    background: #7d73ff;
}

.dev-collab-item:hover .collabration-card-type-2 {
    transform: rotate(-4deg);
}

.development-services-card {
    padding: 20px;
    border-radius: 15px;
}

    .development-services-card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 12px;
    }

.get-in-touch-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portfolio-card {
    padding: 20px;
    border-radius: 8px;
    background: 0 0;
    position: relative;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
    display: block;
}

    .portfolio-card a {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .portfolio-card .type-badge {
        position: absolute;
        left: 20px;
        top: 20px;
        background: #fff;
        color: #0648ef;
        font-size: 12px;
        padding: 2px 10px;
        border-radius: 40px;
    }

    .portfolio-card .porfolio-item {
        position: absolute;
        bottom: 20px;
        width: calc(100% - 40px);
        margin: 0 20px;
        background: var(--white);
        left: 0;
        right: 0;
        padding: 12px;
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

        .portfolio-card .porfolio-item h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .portfolio-card .porfolio-item p {
            font-size: 14px;
        }

        .portfolio-card .porfolio-item span {
            font-size: 26px;
            color: #0648ef;
        }

.view-all-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 20px;
}

    .view-all-card a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

.solution-feature-card {
    padding: 30px;
    background: var(--white);
    box-shadow: 0 0 54px 4px #149bd70d;
    border-radius: 6px;
}

    .solution-feature-card h3 {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .solution-feature-card p {
        margin-bottom: 0;
        font-size: 14px;
    }

.get-in-touch-list li {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

    .get-in-touch-list li svg {
        font-size: 26px;
        color: var(--PrimaryBlue);
    }

        .get-in-touch-list li svg.fa-whatsapp {
            font-size: 30px;
        }

    .get-in-touch-list li .wrap {
        display: flex;
        flex-direction: column;
    }

        .get-in-touch-list li .wrap a {
            color: inherit;
            font-weight: 500;
        }

            .get-in-touch-list li .wrap a img {
                margin-right: 4px;
            }

            .get-in-touch-list li .wrap a:hover {
                font-weight: 600;
            }

        .get-in-touch-list li .wrap span {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 4px;
        }

.check-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .check-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 6px;
    }

        .check-list li svg {
            position: relative;
            top: 6px;
            color: var(--bright-blue);
        }

        .check-list li:last-child {
            margin-bottom: 0;
        }

.list-content .list-type-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.list-content .list-type-content {
    margin-bottom: 30px;
}

    .list-content .list-type-content:last-child {
        margin-bottom: 0;
    }

.image-content-box .card-content {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 0 8px #0003;
    border-radius: 4px;
    margin: 20px 30px 20px -30%;
}

    .image-content-box .card-content h2 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
    }

.image-content-box .image img {
    border-radius: 4px;
}

.list-type-content-1 h3 {
    font-size: 20px;
    font-weight: 600;
}

.list-type-content-1 ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

    .list-type-content-1 ul li {
        margin-bottom: 4px;
        position: relative;
        padding-left: 16px;
    }

        .list-type-content-1 ul li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 7px;
            width: 6px;
            height: 6px;
            background: var(--PrimaryBlue);
        }

.quote-card {
    padding: 10px 30px;
    border-left: 3px solid var(--PrimaryBlue);
}

    .quote-card span {
        font-size: 50px;
        opacity: 0.2;
    }

    .quote-card .quote-content {
        font-style: italic;
        font-display: optional;
        font-size: 18px;
        opacity: 0.8;
    }

.product-feature-acc .accordion-button {
    padding: 12px 12px 12px 20px;
    font-weight: 600;
    font-size: 18px;
    background: 0 0 !important;
    color: var(--dark);
    box-shadow: none;
    justify-content: space-between;
}

    .product-feature-acc .accordion-button:not(.collapsed) {
        color: var(--dc-orange);
    }

        .product-feature-acc .accordion-button:not(.collapsed) svg {
            transform: rotate(180deg);
            opacity: 1;
        }

    .product-feature-acc .accordion-button svg {
        transition: 0.3s all ease-in-out;
        opacity: 0.5;
    }

    .product-feature-acc .accordion-button:after {
        content: none;
    }

.product-feature-acc .accordion .accordion-item {
    background: 0 0;
    border: none;
    border-bottom: 1px solid #e2e2e2;
}

.product-feature-acc .accordion .accordion-header {
    margin-bottom: 0;
}

.product-feature-acc .accordion .accordion-item .accordion-body {
    padding-top: 0;
    opacity: 0.9;
    font-size: 14px;
}

.breadcrumb-section {
    margin-top: 80px;
    background: var(--ultra-light-blue);
    padding: 3px 0;
}

.breadcrumb-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

    .breadcrumb-list li {
        padding-right: 30px;
        position: relative;
    }

        .breadcrumb-list li:last-child {
            padding-right: 0;
        }

        .breadcrumb-list li a {
            color: inherit;
            font-size: 12px;
        }

        .breadcrumb-list li:not(:last-child):before {
            content: "";
            position: absolute;
            right: 12px;
            top: 8px;
            width: 8px;
            height: 8px;
            border-bottom: 2px solid #000;
            border-right: 2px solid #000;
            border-radius: 2px;
            transform: rotate(-45deg);
        }

    .breadcrumb-list.light li:not(:last-child):before {
        border-color: #fff;
    }

.tech-expert-tabs.type-2 ul {
    margin: 0 auto;
    padding: 0 20px;
    border-bottom: 1px solid #d5d3d3;
    gap: 10px;
    display: flex !important;
    flex-direction: row;
    border-radius: 0;
    position: relative;
}

.header-top ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 16px;
}

    .header-top ul a {
        font-size: 12px;
        color: var(--white);
        display: flex;
        align-items: center;
    }

    .header-top ul li:nth-child(2) {
        position: relative;
        padding-right: 20px;
    }

        .header-top ul li:nth-child(2):before {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            width: 1px;
            height: 81%;
            background: #fff;
            transform: translateY(-50%);
        }

    .header-top ul li svg {
        margin-right: 4px;
    }

.header-top {
    position: relative;
    margin-top: -22px;
    padding: 5px 0;
}

.header.sticky .header-top {
    padding: 3px 0;
    margin-bottom: 0;
    margin-top: -5px;
}

    .header.sticky .header-top a {
        color: var(--nav-dark);
    }

.header {
    height: 100px;
    padding: 0;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    transition: 0.3s;
    flex-direction: column;
}

    .header .header-wrapper ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .header .header-wrapper .logo {
        max-width: 140px;
    }

    .header .main-menu {
        margin: 0 auto;
    }

        .header .main-menu .menu {
            display: flex;
            align-items: center;
        }

            .header .main-menu .menu li {
                margin: 0 15px;
            }

                .header .main-menu .menu li a {
                    font-size: 14px;
                    font-weight: 500;
                    color: var(--white);
                    padding-bottom: 20px;
                    position: relative;
                    font-family: Montserrat, sans-serif;
                }

                .header .main-menu .menu li > a:before {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 0;
                    height: 4px;
                    background: var(--PrimaryBlueLight);
                    transition: 0.2s;
                }

                .header .main-menu .menu li.has-children:hover > a:before {
                    width: 100%;
                }

                .header .main-menu .menu li.has-children > a svg {
                    font-size: 14px;
                    margin-left: 1px;
                    position: relative;
                    top: 1px;
                }

                .header .main-menu .menu li.has-children > a:after {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 36px;
                }

                .header .main-menu .menu li.has-children:hover .mega-menu {
                    opacity: 1;
                    visibility: visible;
                }

                .header .main-menu .menu li.has-children:hover > a:after {
                    border-color: var(--PrimaryBlueLight);
                }

    .header .right-button a {
        font-size: 13px;
        font-weight: 600;
        font-family: Montserrat, sans-serif;
    }

    .header .mega-menu {
        position: absolute;
        top: 81px;
        transition: 0.2s;
        opacity: 0;
        visibility: hidden;
        left: 0;
        width: 100%;
        right: 0;
        margin: 0 auto;
    }

        .header .mega-menu .inner {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 6px #0003;
        }

            .header .mega-menu .inner .left-links {
                padding: 30px;
                width: 70%;
                background: #ebeff2;
            }

            .header .mega-menu .inner .right-content {
                width: 30%;
                padding: 30px;
                background: var(--PrimaryBlue);
            }

        .header .mega-menu .blue-title {
            letter-spacing: 1px;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 17px;
            margin-bottom: 15px;
        }

        .header .mega-menu .list-link-title h4 {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .header .mega-menu .list-link-title p {
            font-size: 14px;
        }

        .header .mega-menu .list-columns {
            display: flex;
            flex-flow: row wrap;
            column-gap: 20px;
        }

            .header .mega-menu .list-columns li {
                width: calc(33.33% - 20px);
                margin: 0;
            }

                .header .mega-menu .list-columns li a {
                    color: var(--nav-dark);
                    font-size: 14px;
                    padding: 8px 12px;
                    display: block;
                    transition: 0.2s;
                }

                    .header .mega-menu .list-columns li a:hover {
                        background: var(--light-gray6);
                        border-radius: 2px;
                    }

        .header .mega-menu .inner .right-content img {
            border-radius: 20px;
            display: block;
            margin: 20px auto;
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .header .mega-menu .inner .right-content h4 {
            font-size: 18px;
            line-height: 25px;
            font-weight: 600;
            color: var(--white);
        }

        .header .mega-menu .inner .right-content p {
            margin-bottom: 0;
            color: var(--white);
            font-weight: 300;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        .header .mega-menu.about-company .inner .left-content {
            width: 60%;
        }

        .header .mega-menu.about-company .inner .right-content {
            padding: 20px;
            width: 40%;
        }

            .header .mega-menu.about-company .inner .right-content h3,
            .header .mega-menu.about-company .inner .right-content .about-company-right-heading {
                font-size: 19px;
                color: #fff;
                margin-bottom: 40px;
                font-weight: 600;
            }

        .header .mega-menu.about-company .about-right-image {
            width: 100%;
            height: 100%;
            background-size: contain;
            border-radius: 0 8px 8px 0;
        }

        .header .mega-menu.hire-developer .list-links-wrap {
            display: flex;
            flex-flow: row wrap;
        }

            .header .mega-menu.hire-developer .list-links-wrap .list-links {
                width: 20%;
            }

        .header .mega-menu.hire-developer .inner .left-links {
            width: 100%;
            padding: 0;
        }

        .header .mega-menu.hire-developer .list-link-title h4 {
            padding: 0 12px;
        }

        .header .mega-menu.hire-developer .list-links-wrap .list-links:nth-child(2n) {
            background: var(--light-gray6);
        }

        .header .mega-menu.hire-developer .list-links-wrap .list-links {
            padding: 30px 15px;
        }

            .header .mega-menu.hire-developer .list-links-wrap .list-links:nth-child(2n) a:hover {
                background: var(--white);
            }

        .header .mega-menu.solutions-we-have .container {
            max-width: 1350px;
        }

        .header .mega-menu.solutions-we-have .inner .left-links {
            width: 100%;
            padding: 30px;
            border-radius: 20px;
			
        }

        .header .mega-menu.solutions-we-have .list-columns li {
            width: 100%;
        }

        .header .mega-menu.solutions-we-have .inner .left-links li a {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

            .header .mega-menu.solutions-we-have .inner .left-links li a p {
                margin-bottom: 0;
                font-size: 14px;
                line-height: 16px;
                font-weight: 400;
                margin-top: 4px;
            }

        .header .mega-menu.solutions-we-have .inner .left-links li a {
            font-weight: 600;
            font-size: 15px;
        }

            .header .mega-menu.solutions-we-have .inner .left-links li a img {
                width: 25px;
            }

        .header .mega-menu.solutions-we-have .inner .left-links .list-columns {
            column-gap: 30px;
            row-gap: 10px;
        }

        .header .mega-menu.solutions-we-have .list-links {
            width: 33%;
        }

        .header .mega-menu.solutions-we-have .list-links-wrap {
            display: flex;
            flex-wrap: wrap;
        }

        .header .mega-menu.about-company .left-link-wrap .list-links {
            width: calc(50% - 20px);
        }

        .header .mega-menu.about-company .left-link-wrap {
            display: flex;
            column-gap: 20px;
        }

            .header .mega-menu.about-company .left-link-wrap .list-columns li {
                width: 100%;
            }

        .header .mega-menu.about-company .list-link-title h4,
        .header .mega-menu.about-company .list-link-title .about-company-h4 {
            padding: 0 12px;
            font-family: var(--heading-font);
            font-weight: 800;
        }

        .header .mega-menu.about-company .inner .left-links {
            padding: 30px 20px;
            width: 30%;
			border-radius: 20px;
			
        }

        .header .mega-menu.about-company .container {
            max-width: 980px;
        }

        .header .mega-menu.about-company .inner .right-content img {
            height: auto;
            filter: invert(1);
            object-fit: unset;
            border-radius: 0;
            margin: 0;
        }

        .header .mega-menu.about-company .inner .right-content h4,
        .header .mega-menu.about-company .inner .right-content .about-counter-title {
            font-size: 30px;
            margin-bottom: 4px;
            color: var(--white);
            font-family: var(--heading-font);
            font-weight: 600;
        }

        .header .mega-menu.hire-developer .container,
        .header .mega-menu.services .container {
            max-width: 1170px;
        }

        .header .mega-menu.services .right-content .list-columns li {
            width: 100%;
        }

            .header .mega-menu.services .right-content .list-columns li a svg {
                transition: 0.2s;
            }

            .header .mega-menu.services .right-content .list-columns li a:hover {
                background: #182a5b;
            }

                .header .mega-menu.services .right-content .list-columns li a:hover svg {
                    transform: translateX(10px);
                }

            .header .mega-menu.services .right-content .list-columns li a svg {
                position: relative;
                top: unset;
                right: unset;
                transform: unset;
                opacity: 1;
                visibility: visible;
            }

            .header .mega-menu.services .right-content .list-columns li a {
                display: flex;
                align-items: center;
                gap: 10px;
            }

        .header .mega-menu.services .inner .left-links {
            width: 100%;
            padding: 0;
        }

        .header .mega-menu.our-technologies .list-links-wrap {
            display: flex;
            flex-wrap: wrap;
        }

            .header .mega-menu.our-technologies .list-links-wrap .list-links {
                width: 20%;
                padding: 20px 15px;
            }

        .header .mega-menu.our-technologies .list-columns li {
            width: 100%;
        }

        .header .mega-menu.our-technologies .container {
            max-width: 1140px;
        }

        .header .mega-menu.our-technologies .left-links {
            width: 100%;
            padding: 0;
        }

        .header .mega-menu.our-technologies .list-links-wrap .list-links:nth-child(2n) {
            background: var(--light-gray6);
        }

            .header .mega-menu.our-technologies .list-links-wrap .list-links:nth-child(2n) a:hover {
                background: var(--white);
            }

        .header .mega-menu.our-technologies .list-link-title h4,
        .header .mega-menu.our-technologies .list-link-title .technology-menu-heading {
            padding: 0 12px;
            font-family: var(--heading-font);
            font-size: 16px;
            font-weight: 800;
        }

.service-menu-card {
    padding: 20px;
    margin-top: 30px;
    border-radius: 5px;
    margin-left: 12px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

    .service-menu-card h4,
    .service-menu-card .menu-heading-h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 0;
        font-family: var(--heading-font);
    }

    .service-menu-card p {
        font-size: 14px;
    }

.megamenu-verticle-menu {
    display: flex;
    flex-wrap: wrap;
}

    .megamenu-verticle-menu .megamenu-verticle-tab-list {
        width: 330px;
        padding: 20px;
    }

    .megamenu-verticle-menu .megamenu-verticle-tab-content {
        width: calc(100% - 330px);
        padding: 20px;
        border-left: 2px solid #d3d3d3;
    }

    .megamenu-verticle-menu .service-verticle-tab-contentItem {
        height: 100%;
    }

    .megamenu-verticle-menu .tab-content-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        gap: 10px;
    }

    .megamenu-verticle-menu .top-content h3,
    .megamenu-verticle-menu .top-content .megamenu-main-heading {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0;
        color: var(--black);
        font-family: var(--heading-font);
    }

    .megamenu-verticle-menu .top-content p {
        font-size: 14px;
        margin-bottom: 0;
        opacity: 0.7;
    }

    .megamenu-verticle-menu .top-content {
        padding: 0 12px;
        margin-bottom: 20px;
        border-bottom: 1px solid #d1cccc;
        padding-bottom: 12px;
    }

    .megamenu-verticle-menu .megamenu-verticle-tab-content .list-columns li {
        width: calc(50% - 20px);
    }

.header .main-menu .megamenu-verticle-tab-list ul > li {
    margin: 0 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}

    .header .main-menu .megamenu-verticle-tab-list ul > li svg {
        color: var(--dark);
        font-size: 14px;
        display: none;
    }

    .header .main-menu .megamenu-verticle-tab-list ul > li.active svg {
        display: block;
    }

    .header .main-menu .megamenu-verticle-tab-list ul > li.active {
        background: var(--light-gray6);
        font-weight: 800;
    }

.header .mega-menu .list-columns li a {
    position: relative;
}

.header .mega-menu .list-columns li svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    right: 10px;
    opacity: 0;
    transition: 0.2s;
    visibility: hidden;
}

.header .mega-menu .list-columns li:hover svg {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.header .platform-we-use-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

    .header .platform-we-use-wrap h4,
    .header .platform-we-use-wrap .platform-menu-heading {
        font-size: 18px;
        margin-bottom: 10px;
        padding: 0 12px;
        font-weight: 800;
        font-weight: var(--heading-font);
    }

.header.sticky {
    background: var(--white);
    box-shadow: 0 0 18px #0000000d;
    transform: translateY(0);
    height: 80px;
    border-bottom-color: var(--light-gray8);
}

    .header.sticky .main-menu .menu li > a {
        color: var(--nav-dark);
    }

    .header.sticky .main-menu .menu li.has-children > a:after {
        border-color: var(--PrimaryBlue);
    }

    .header.sticky .main-menu .menu li > a:before {
        background: var(--PrimaryBlue);
    }

.header .logo-dark {
    display: none;
}

.header.sticky .logo-light {
    display: none;
}

.header.sticky .logo-dark {
    display: block;
    position: relative;
    top: -18px;
}

.close-btn {
    padding: 10px 16px;
    text-align: right;
    font-size: 22px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.header.inner-page {
    background: var(--white);
}

    .header.inner-page .header-top ul a,
    .header.inner-page .main-menu .menu li a {
        color: var(--dark);
    }

    .header.inner-page .logo-light {
        display: none;
    }

    .header.inner-page .logo-dark {
        display: block;
        position: relative;
        top: 1px;
    }

header.header.sticky {
    height: 60px;
}

    header.header.sticky .mega-menu {
        top: 60px;
    }

.header.sticky .header-top {
    display: none;
}

.header.sticky .logo-dark {
    top: 1px;
}

.header.for-mobile .main-menu {
    margin: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: var(--white);
    max-width: 350px;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 9;
    box-shadow: 0 0 4px #0006;
}

    .header.for-mobile .main-menu.open {
        transform: translateX(0);
    }

.header.for-mobile .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
}

.header.for-mobile .header-top {
    display: none;
}

.header.for-mobile .icon-bar {
    margin: auto;
    background-color: var(--white);
    border-radius: 1px;
    display: block;
    height: 2px;
    position: relative;
    width: 30px;
    transition: 0.4s;
    top: 0;
}

.header.for-mobile .mobile-menu-toggle {
    position: relative;
    cursor: pointer;
    padding: 12px 0;
    width: 30px;
    display: inline-block;
}

.header.for-mobile .icon-bar + .icon-bar {
    margin-top: 6px;
}

.header.for-mobile .right-button {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header.for-mobile.sticky .icon-bar {
    background: var(--dark);
}

.header.for-mobile .main-menu .menu {
    flex-wrap: wrap;
}

    .header.for-mobile .main-menu .menu .menu-item {
        display: block;
        width: 100%;
        margin: 0;
    }

    .header.for-mobile .main-menu .menu li a {
        display: flex;
        color: var(--dark);
        padding: 10px 15px;
        border-bottom: 1px solid #0000004d;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
    }

    .header.for-mobile .main-menu .menu li.has-children > a:after,
    .header.for-mobile .main-menu .menu li.has-children > a:before {
        content: none;
    }

.header.for-mobile .mega-menu {
    position: relative;
    top: 0;
    transition: none;
    display: none;
    opacity: 1;
    visibility: visible;
}

    .header.for-mobile .mega-menu .container {
        padding: 0;
    }

    .header.for-mobile .mega-menu .inner {
        background: var(--light-gray7);
        box-shadow: none;
        border-radius: 0;
    }

    .header.for-mobile .mega-menu .list-link-title,
    .header.for-mobile .mega-menu .right-content,
    .header.for-mobile .mega-menu.about-company .row {
        display: none;
    }

    .header.for-mobile .mega-menu .inner .left-links {
        width: 100%;
        padding: 20px 15px;
    }

    .header.for-mobile .mega-menu .list-columns li {
        width: 100%;
    }

        .header.for-mobile .mega-menu .list-columns li a {
            border-bottom: none;
            padding: 5px 0;
            font-size: 16px;
        }

    .header.for-mobile .mega-menu.hire-developer .list-links-wrap .list-links {
        width: 100%;
    }

.header.for-mobile .main-menu .menu li a.active svg {
    transform: rotate(180deg);
}

.header.for-mobile .main-menu .menu li a svg {
    transition: 0.2s;
}

.header .right-button button {
    padding: 8px 20px;
    border-radius: 5px;
}

.header.for-mobile .mega-menu .list-columns li a:hover {
    background: 0 0;
}

.header.for-mobile.sticky .icon-bar {
    background: var(--dark);
}

.footer {
    background: var(--PrimaryBlue);
    color: var(--white);
    padding-top: 90px;
    margin-top: -120px;
}

    .footer .office-name-wrap img {
        width: 25px;
        height: 25px;
        border-radius: 100%;
        object-fit: cover;
        margin-right: 10px;
    }

    .footer .office-name-wrap span {
        font-size: 20px;
        font-weight: 500;
    }

    .footer .our-offices {
        font-size: 14px;
        padding-bottom: 16px;
        display: inline-block;
        font-weight: 500;
    }

    .footer .full-address {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .footer .quick-address {
        margin-bottom: 20px;
    }

        .footer .quick-address:last-child {
            margin-bottom: 0;
        }

        .footer .quick-address span {
            font-size: 14px;
            display: block;
            line-height: 22px;
            margin-bottom: 10px;
        }

        .footer .quick-address a {
            color: inherit;
            font-size: 20px;
            font-weight: 600;
        }

        .footer .quick-address .social-icons {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            gap: 12px;
        }

    .footer .company-rating-card .list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        gap: 30px;
    }

    .footer .company-rating-card {
        padding: 30px 20px;
        border: 1px solid #2d4a9b;
        border-radius: 30px;
        background: #1b357b;
        box-shadow: 0 0 11px 2px #152d6e7a;
        margin-top: 40px;
        margin-bottom: 40px;
    }

        .footer .company-rating-card .list a {
            display: flex;
            flex-flow: column-reverse;
            gap: 12px;
            padding: 0;
            color: inherit;
            font-size: 18px;
        }

            .footer .company-rating-card .list a svg {
                color: #ffb300;
            }

            .footer .company-rating-card .list a img {
                filter: brightness(100);
            }

    .footer .authorized-partner {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: flex-end;
    }

        .footer .authorized-partner .partner-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
        }

            .footer .authorized-partner .partner-list img {
                height: 50px;
                object-fit: contain;
            }

        .footer .authorized-partner h4,
        .footer .authorized-partner .footer-auth-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 0;
        }

    .footer .footer-links-wrap h4,
    .footer .footer-links-wrap .footer-heading-h4 {
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 10px;
        font-family: var(--heading-font);
    }

    .footer .footer-links-wrap .footer-links ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .footer .footer-links-wrap .footer-links ul a {
            color: var(--light-gray8);
            font-size: 14px;
            line-height: normal;
            display: inline-block;
            padding: 4px 0;
            transition: all 0.2s ease-in-out;
        }

            .footer .footer-links-wrap .footer-links ul a:hover {
                opacity: 1;
            }

    .footer .footer-copy-right {
        padding: 26px 0;
        border-top: 1px solid #8993ad;
        margin-top: 30px;
    }

        .footer .footer-copy-right .footer-quick-links {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 24px;
        }

            .footer .footer-copy-right .footer-quick-links a {
                color: inherit;
                font-size: 14px;
                font-weight: 600;
            }

        .footer .footer-copy-right p {
            margin-bottom: 0;
        }

.hero-section {
    height: 60dvh;
    position: relative;
    z-index: 1;
    background-color: #000;
}

    .hero-section .nav-overlay,
    .inner-page-hero-section .nav-overlay {
        width: 100%;
        height: 13.125rem;
        position: absolute;
        top: 0;
        bottom: auto;
        left: 0;
        right: 0;
        background-image: linear-gradient(#000c 48%, transparent);
        z-index: 2;
    }

    .hero-section .hero-slider {
        height: 100%;
    }

        .hero-section .hero-slider .swiper-slide {
            background-size: cover;
            background-position: right top;
            padding-top: 100px;
            padding-bottom: 100px;
            position: relative;
            z-index: 1;
        }

.home-banner h1, .home-banner h2.main-banner,
.home-banner .hero-section .hero-content-wrap h2.banner-head-title-1 {
    font-size: 20px;
}



.hero-section .hero-slider .swiper-slide:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000c 16%, transparent 66%);
    opacity: 0.5;
    z-index: -1;
}

.hero-section .hero-slider .swiper-slide.slide-2:before {
    background: linear-gradient(90deg, #000c 16%, transparent 66%);
}

.hero-slider .banner-image-static {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

    .hero-slider .banner-image-static img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-section .hero-content-wrap {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .hero-section .hero-content-wrap .home-banner-title {
        font-size: 32px;
    }


    .hero-section .hero-content-wrap h2.banner-head-title-1 {
        font-size: 16px;
    }

.hero-slider .swiper-pagination-bullets {
    bottom: unset;
    left: unset;
    right: 10px;
    top: 50%;
    width: auto;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    gap: 10px;
}

    .hero-slider .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
        background: 0 0;
        border: 1px solid var(--white);
        position: relative;
    }

        .hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:before {
            content: "";
            width: 8px;
            height: 7px;
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
            background: var(--white);
            border-radius: 100%;
            top: 50%;
            transform: translateY(-50%);
        }

.inner-page-hero-section {
    height: 550px;
    position: relative;
    background-position: top center;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}

    .inner-page-hero-section .hero-banner {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        max-width: 1024px;
        margin: 0 auto;
        text-align: center;
        color: var(--white);
        gap: 10px;
    }

        .inner-page-hero-section .hero-banner h1 {
            font-size: 50px;
            font-weight: 600;
        }

.without-banner-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--PrimaryBlue);
}

.with-banner-section {
    padding: 80px 0;
    height: 400px;
}

    .with-banner-section .container,
    .with-banner-section .container > .row {
        height: 100%;
    }

.inner-page-hero-section .hero-service-banner {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 1024px;
    margin: 0 auto;
    color: var(--white);
    gap: 10px;
}

.inner-page-hero-section.light .hero-service-banner {
    color: var(--dark);
}

.inner-page-hero-section .hero-service-banner h1 {
    font-size: 32px;
    font-weight: 600;
}

.inner-page-hero-section .hero-service-banner h2 {
    font-size: 20px;
}

.inner-page-hero-section .right-image img {
    max-height: 400px;
}

.inner-page-hero-section.service-inner-page {
    position: relative;
    z-index: 1;
    background-position: center;
}

    .inner-page-hero-section.service-inner-page:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: -1;
        background: linear-gradient(90deg, #000 0, #42424200);
    }

    .inner-page-hero-section.service-inner-page.no-overlay:before {
        content: none;
    }

    .inner-page-hero-section.service-inner-page.banner-content-type-2 {
        border-bottom: 1px solid #ddd;
        height: auto;
    }

    .inner-page-hero-section.service-inner-page.light-overlay:before {
        background: linear-gradient(90deg, #fff 30%, #42424200);
    }

.banner-type2-right-image img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
    margin-left: auto;
}

.custom-bullet-arrow-list,
.inner-page-hero-section .banner-list, .service-banner-section .banner-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .custom-bullet-arrow-list li,
    .inner-page-hero-section .banner-list li, .service-banner-section .banner-list li {
        font-weight: 400;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 10px;
        position: relative;
    }

        .custom-bullet-arrow-list li svg,
        .inner-page-hero-section .banner-list li svg, .service-banner-section .banner-list svg {
            font-size: 16px !important;
            color: #0648ef;
            margin-left: 6px;
            width: 16px;
        }

        .custom-bullet-arrow-list li:before,
        .inner-page-hero-section .banner-list li:before, .service-banner-section .banner-list li::before {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            background: #ff0;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
            z-index: -1;
        }

.hero-banner-form form {
    padding: 0 30px;
}

.hero-banner-form h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-banner-form .card-title p {
    font-size: 14px;
    line-height: 22px;
    opacity: 0.8;
}

.hero-banner-form .card-title {
    margin-bottom: 0;
    padding: 10px 30px;
    background: var(--bright-blue);
}

.hero-banner-form .form-group input,
.hero-banner-form .form-group select,
.hero-banner-form .form-group textarea {
    min-height: 42px;
    border-radius: 5px;
    font-size: 14px;
    color: var(--white);
}

    .hero-banner-form .form-group input:focus,
    .hero-banner-form .form-group select:focus,
    .hero-banner-form .form-group textarea:focus {
        border-color: var(--PrimaryBlue);
    }

.without-banner-section {
    padding: 50px 0 0px;
    position: relative;
    z-index: 1;
}

.statastics-section {
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

    .statastics-section .home-counter-wrapper {
        row-gap: 20px;
    }

    .statastics-section .home-counter-wrap {
        display: flex;
        justify-content: center;
        gap: 24px;
        background: var(--white);
        border-radius: 6px;
        align-items: center;
        box-shadow: 0 2px 12px #0000001f;
        padding: 10px 20px;
        text-align: center;
    }

        .statastics-section .home-counter-wrap .icon {
            display: none;
        }

            .statastics-section .home-counter-wrap .icon img {
                width: 55px;
            }

        .statastics-section .home-counter-wrap .counter-text .counter-number {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 0;
            font-family: Lato, sans-serif;
            display: inline-block;
            line-height: 1.2;
        }

        .statastics-section .home-counter-wrap .counter-text p {
            margin-bottom: 0;
            font-weight: 500;
        }

    .statastics-section .home-counter-wrapper > div:not(:last-child) {
        position: relative;
    }

        .statastics-section .home-counter-wrapper > div:not(:last-child):before {
            position: absolute;
            height: 100%;
            width: 2px;
            border-left: 2px solid var(--ultra-light-blue);
            top: 0;
            right: 20px;
        }

.fortune-companies {
    padding-top: 50px;
    padding-bottom: 50px;
}

    .fortune-companies .content {
        text-align: center;
    }

        .fortune-companies .content p {
            line-height: 28px;
            color: var(--black);
            margin-bottom: 0;
        }

    .fortune-companies .home-client-logo-wrap {
        flex-flow: row wrap;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px 0;
        margin-top: 70px;
    }

        .fortune-companies .home-client-logo-wrap .client-logo-item img {
            height: 60px;
            object-fit: contain;
            transition: 0.2s;
            display: block;
            margin: 0 auto;
        }

        .fortune-companies .home-client-logo-wrap .client-logo-item {
            margin: 0 20px;
            width: calc(100% / 6 - 40px);
            min-height: 90px;
        }

            .fortune-companies .home-client-logo-wrap .client-logo-item img:hover {
                filter: none;
                opacity: 1;
            }

    .fortune-companies .fortune-companies-inner {
        display: flex;
        flex-direction: column;
    }

        .fortune-companies .fortune-companies-inner a {
            margin: 40px 0 0;
            display: inline-block;
        }

    .fortune-companies.service-page {
        padding-top: 50px;
    }

        .fortune-companies.service-page .home-client-logo-wrap {
            margin-top: 40px;
        }

    .fortune-companies .home-client-logos {
        width: 100%;
        overflow: hidden;
    }
/*new css for client logos*/
.home-client-logo-wrap .client-logo-inner {
    display: flex;
    row-gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

    .home-client-logo-wrap .client-logo-inner .client-logo {
        margin: 0 10px;
        width: calc(100% / 7 - 20px);
        padding: 12px;
        box-shadow: 0 0 4px #0003;
        background: var(--white);
        border-radius: 8px;
    }


.what-can-we-do {
    padding-bottom: 50px;
    background: #F5F5F5;
    padding-top: 50px;
}

    .what-can-we-do .content p {
        line-height: 22px;
        color: var(--black);
        margin-bottom: 0;
        font-size: 18px;
		font-family: Manrope;
    }

    .what-can-we-do .service-box {
        background: var(--white);
        padding: 20px;
        border-radius: 10px;
        margin-top: 40px;
        border: 1px solid #223c8121;
        position: relative;
    }

.service-box .swiper-button-next,
.service-box .swiper-button-prev {
    background: var(--PrimaryBlue);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    color: var(--white);
    font-size: 14px;
}

    .service-box .swiper-button-next svg,
    .service-box .swiper-button-prev svg {
        width: 14px;
    }

    .service-box .swiper-button-next:after,
    .service-box .swiper-button-prev:after {
        content: none;
    }

.what-can-we-do .service-box h3 {
    color: var(--PrimaryBlue);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.who-we-serve {
    padding-top: 50px;
    padding-bottom: 50px;
}

    .who-we-serve .row {
        row-gap: 24px;
    }

    .who-we-serve .pl-50 {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .who-we-serve .title-wrap {
        padding: 30px 20px;
        background-image: linear-gradient(170deg, #d5f2ff 30%, #f6fcff);
        height: 100%;
        border-radius: 10px;
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
        column-gap: 20px;
    }

        .who-we-serve .title-wrap img {
            margin-top: 20px;
            height: 220px;
            object-fit: cover;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }

    .who-we-serve .punch-line h2 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 20px;
    }

.next-gen-tech-stack {
    padding-top: 20px;
    padding-bottom: 20px;
}

    .next-gen-tech-stack .next-gen-tabs-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: stretch;
    }

.custom-tab-list > div > ul {
    display: none;
    position: absolute;
    width: 100%;
    box-shadow: 0 8px 16px #0003;
    z-index: 9;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    background: var(--white);
    flex-direction: column;
}

.custom-tab-list {
    position: relative;
}

    .custom-tab-list > div > ul li {
        font-size: 16px;
        font-weight: 500;
        position: relative;
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        transition: all 0.3s ease-in-out;
        align-items: center;
    }

        .custom-tab-list > div > ul li svg {
            width: 14px;
            opacity: 0;
        }

        .custom-tab-list > div > ul li.active,
        .custom-tab-list > div > ul li:hover {
            color: var(--white);
            background: var(--PrimaryBlue);
        }

            .custom-tab-list > div > ul li.active svg,
            .custom-tab-list > div > ul li:hover svg {
                opacity: 1;
            }

.tab-dropdown-selected-text {
    padding: 10px;
    text-align: center;
    background: var(--PrimaryBlue);
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    position: relative;
}

    .tab-dropdown-selected-text:before {
        content: "";
        position: absolute;
        right: 15px;
        top: 15px;
        width: 10px;
        height: 10px;
        border-left: 2px solid var(--white);
        border-bottom: 2px solid var(--white);
        transform: rotate(-45deg);
        transition: 0.2s;
    }

.next-gen-tech-stack .next-gen-tab-content-wrap {
    display: flex;
    gap: 30px;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 20px;
    justify-content: space-between;
    height: 100%;
}

.next-gen-tech-stack .next-gen-tab-content .next-gen-content__item {
    height: 100%;
}

.next-gen-tech-stack .next-gen-tab-content-wrap .left-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.next-gen-tech-stack .next-gen-tab-content-wrap .left-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

.next-gen-tech-stack .next-gen-tab-content-wrap .left-content ul {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

    .next-gen-tech-stack .next-gen-tab-content-wrap .left-content ul li {
        padding-left: 15px;
        position: relative;
        font-size: 14px;
        color: #000;
    }

        .next-gen-tech-stack .next-gen-tab-content-wrap .left-content ul li::before {
            position: absolute;
            content: "";
            width: 6px;
            height: 6px;
            left: 0;
            top: 8px;
            transform: none;
            background: #000;
            background-position: center;
            background-repeat: no-repeat;
            background-size: 100%;
        }

        .next-gen-tech-stack .next-gen-tab-content-wrap .left-content ul li a {
            color: inherit;
        }

            .next-gen-tech-stack .next-gen-tab-content-wrap .left-content ul li a:hover {
                color: var(--bright-blue);
                text-decoration: underline;
            }

.next-gen-tech-stack .next-gen-tabs-wrap .next-gen-tab-list {
    position: relative;
    width: 400px;
}

.next-gen-tech-stack .next-gen-tab-content-wrap .left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

    .next-gen-tech-stack .next-gen-tab-content-wrap .left-content a {
        display: inline-flex;
        width: max-content;
        margin-left: auto;
    }

.next-gen-tech-stack .next-gen-tab-content {
    width: 100%;
}

.our-products {
    padding-top: 30px;
    padding-bottom: 30px;
}

    .our-products .portfolio-section {
        border-radius: 10px;
        margin-top: 60px;
        position: relative;
    }

.portfolio-section .portfolio-item {
    width: 1100px;
}

.portfolio-section .portfolio-wrapper .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 554px;
    border-radius: 10px;
    overflow: hidden;
}

    .portfolio-section .portfolio-wrapper .inner .left-content .icon {
        background: #ffffff14;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        padding: 10px;
        border: 2px dashed #223c813b;
        display: none;
    }

    .portfolio-section .portfolio-wrapper .inner .left-content h3 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .portfolio-section .portfolio-wrapper .inner .left-content p {
        margin-bottom: 20px;
        line-height: 22px;
        opacity: 0.7;
        font-size: 14px;
    }

    .portfolio-section .portfolio-wrapper .inner .bg-image {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

        .portfolio-section .portfolio-wrapper .inner .bg-image img,
        .portfolio-section .portfolio-wrapper .inner .bg-image video {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

.our-products.py-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.portfolio-item .left-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    margin: 38px;
    max-width: 490px;
    background-color: #fff;
    border-radius: 4px;
}

.portfolio-item .top-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

    .portfolio-item .top-content .product-name {
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-weight: 800;
        font-size: 16px;
        opacity: 0.8;
        font-family: var(--heading-font);
    }

.agile-process-section {
    padding: 0px 0;
    background: var(--ultra-light-blue);
    overflow: hidden;
}



.technology-we-work {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--light-bg);
}

    .technology-we-work .continue-slider .swiper {
        margin-bottom: 20px;
    }

    .technology-we-work .technology-slider-wrap {
        margin-top: 60px;
    }

.techstack .tech-slider a {
    color: #ccc;
    text-decoration: none;
}

    .techstack .tech-slider a:hover {
        color: var(--quaternary_color);
    }

.techstack .tech-slider .img-text-wrap {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px;
    gap: 10px;
    min-height: 60px;
}

.techstack .tech-slider .tech-logo {
    width: 38px;
    height: 38px;
    display: block;
    background-image: url(../images/Tech_stack.png);
    zoom: 0.6;
}

    .techstack .tech-slider .tech-logo.android {
        background-position: 638px 116px;
    }

    .techstack .tech-slider .tech-logo.angular {
        background-position: 1118px 116px;
    }

    .techstack .tech-slider .tech-logo.aws {
        background-position: 698px 116px;
    }

    .techstack .tech-slider .tech-logo.azure {
        background-position: 1488px 116px;
    }

    .techstack .tech-slider .tech-logo.blockchain {
        background-position: 580px 253px;
    }

    .techstack .tech-slider .tech-logo.c-sharp {
        background-position: 525px 368px;
    }

    .techstack .tech-slider .tech-logo.c-plus {
        background-position: 525px 310px;
    }

    .techstack .tech-slider .tech-logo.craft-cms {
        background-position: 406px 368px;
    }

    .techstack .tech-slider .tech-logo.css3 {
        background-position: -20px 250px;
    }

    .techstack .tech-slider .tech-logo.digitalocean {
        background-position: -251px 252px;
    }

    .techstack .tech-slider .tech-logo.docker {
        background-position: -308px 252px;
    }

    .techstack .tech-slider .tech-logo.firebase {
        background-position: -424px 252px;
    }

    .techstack .tech-slider .tech-logo.flutter {
        background-position: -368px -80px;
    }

    .techstack .tech-slider .tech-logo.gatsby {
        background-position: -368px -20px;
    }

    .techstack .tech-slider .tech-logo.golang {
        background-position: -78px -20px;
    }

    .techstack .tech-slider .tech-logo.html5 {
        background-position: 117px 116px;
    }

    .techstack .tech-slider .tech-logo.hubspot {
        background-position: -482px 252px;
    }

    .techstack .tech-slider .tech-logo.ios {
        background-position: -484px -77px;
    }

    .techstack .tech-slider .tech-logo.java {
        background-position: 236px -22px;
    }

    .techstack .tech-slider .tech-logo.javascript {
        background-position: -135px -78px;
    }

    .techstack .tech-slider .tech-logo.jenkins {
        background-position: -78px -135px;
    }

    .techstack .tech-slider .tech-logo.kubernetes {
        background-position: -193px 252px;
    }

    .techstack .tech-slider .tech-logo.laravel {
        background-position: -600px -20px;
    }

    .techstack .tech-slider .tech-logo.mongodb {
        background-position: 351px -135px;
    }

    .techstack .tech-slider .tech-logo.nodejs {
        background-position: 289px 368px;
    }

    .techstack .tech-slider .tech-logo.odoo {
        background-position: 60px -135px;
    }

    .techstack .tech-slider .tech-logo.php {
        background-position: -543px -20px;
    }

    .techstack .tech-slider .tech-logo.python {
        background-position: 60px 368px;
    }

    .techstack .tech-slider .tech-logo.react {
        background-position: -135px -20px;
    }

    .techstack .tech-slider .tech-logo.ror {
        background-position: -20px -20px;
    }

    .techstack .tech-slider .tech-logo.salesforce {
        background-position: 116px -135px;
    }

    .techstack .tech-slider .tech-logo.sanity {
        background-position: 176px -137px;
    }

    .techstack .tech-slider .tech-logo.swift {
        background-position: -426px -78px;
    }

    .techstack .tech-slider .tech-logo.vuejs {
        background-position: 174px 116px;
    }

    .techstack .tech-slider .tech-logo.wordpress {
        background-position: 465px 310px;
    }

    .techstack .tech-slider .tech-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: none;
    }

.techstack .tech-slider .text {
    position: relative;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding-top: 4px;
}

.techstack .tech-slider .img-text-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: 0.4s;
    border: 1px solid var(--light-gray2);
    border-radius: 9px;
    box-sizing: border-box;
    background-color: var(--white);
}

.techstack .tech-slider .text:hover:after {
    background-color: var(--quaternary_color);
}

.techstack .tech-slider .slick-slide {
    padding: 0 6px;
}

.techstack .tech-slider .slide-right .slick-slide {
    direction: ltr;
}

.continue-slider .swiper-wrapper,
.testimonial-type-2-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

.continue-slider .list.swiper-slide {
    width: auto;
    padding: 0 10px;
}

.testimonial-type-2-slider .swiper-slide {
    width: 310px;
    box-shadow: none;
    margin: 12px;
}

.why-us {
    padding-top: 80px;
    padding-bottom: 80px;
}

    .why-us .why-us-row {
        display: flex;
        gap: 40px;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
        justify-content: center;
    }

        .why-us .why-us-row .about-col {
            flex: 0 0 370px;
        }

            .why-us .why-us-row .about-col h3 {
                font-size: 24px;
                font-weight: 600;
                margin-bottom: 20px;
            }

            .why-us .why-us-row .about-col p {
                margin-bottom: 0;
            }

        .why-us .why-us-row .why-us-card {
            max-width: 460px;
            width: 100%;
            padding: 30px;
            border-radius: 24px;
            display: grid;
            grid-template-columns: 1fr 190px;
            grid-gap: 20px;
            align-items: center;
            max-height: 250px;
            font-size: 14px;
        }

    .why-us .why-us-card .why-us-card-info h4 {
        font-weight: 600;
        font-size: 22px;
        line-height: 30px;
    }

    .why-us .why-us-card .why-us-card-info p {
        margin-bottom: 0;
    }

    .why-us .why-us-row .why-us-card img {
        border-radius: 20px;
    }

    .why-us .why-us-row .why-us-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .why-us .why-us-row .why-us-card ul li {
            font-size: 14px;
            margin-bottom: 20px;
            font-weight: 700;
        }

            .why-us .why-us-row .why-us-card ul li:last-child {
                margin-bottom: 0;
            }

.our-testimonial {
    background: #e9ecef;
    margin-left: 30px;
    margin-right: 30px;
    padding: 80px 50px;
    border-radius: 10px;
    position: relative;
    
}

    .our-testimonial:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background: transparent var(--main-gradient);
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        z-index: -1;
        border-radius: 10px;
    }

    .our-testimonial .swiper-pagination-bullet {
        background: var(--white);
    }

    .our-testimonial .swiper-pagination {
        position: relative;
        margin-top: 20px;
    }

    .our-testimonial .testimonial-card.testimonial-card-home {
        min-height: 274px;
        height: 100%;
    }

    .our-testimonial .swiper-slide {
        height: unset;
    }

    .our-testimonial .testimonial-card.testimonial-card-home .review-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .our-testimonial .testimonial-card.testimonial-card-home .testimonial-detail {
        height: 100%;
    }

.industries-we-serve {
    padding-top: 80px;
    padding-bottom: 80px;
}

    .industries-we-serve.inner-page {
        padding-top: 0;
        padding-bottom: 240px;
    }

.industries-list-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    gap: 20px;
}

    .industries-list-wrap .industries-list-item {
        width: calc((100% / 2) - 10px);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 14px 10px;
        gap: 10px;
        color: var(--dark);
        border-radius: 12px;
        background-color: var(--white);
        z-index: 1;
        transition: 0.2s;
        box-shadow: 3px 3px 10px #0000001a;
        font-size: 14px;
        text-align: center;
    }

        .industries-list-wrap .industries-list-item:hover {
            transform: translateY(-10px);
        }

        .industries-list-wrap .industries-list-item .icon {
            width: 30px;
            height: 30px;
            display: inline-block;
            background-image: url(../images/icons/industrie-sprite.png);
            transition: all 0.2s ease-in-out;
        }

.industries-we-serve.inner-page .container {
    max-width: 1200px;
}

.industries-we-serve.inner-page .industries-list-wrap .industries-list-item {
    width: calc((100% / 6) - 20px);
}

.industries-list-item .icon.ecommerce {
    background-position: -20px -20px;
}

.industries-list-item .icon.healthcare {
    background-position: -70px -20px;
}

.industries-list-item .icon.media {
    background-position: -170px -20px;
}

.industries-list-item .icon.finance {
    background-position: -120px -120px;
}

.industries-list-item .icon.insurance {
    background-position: -20px -120px;
}

.industries-list-item .icon.security {
    background-position: -70px -120px;
}

.industries-list-item .icon.education {
    background-position: -170px -120px;
}

.industries-list-item .icon.real-estate {
    background-position: -120px -20px;
}

.industries-list-item .icon.sports {
    background-position: -70px -170px;
}

.industries-list-item .icon.logistic {
    background-position: -20px -170px;
}

.industries-list-item .icon.agritech {
    background-position: -170px -170px;
}

.industries-list-item .icon.food {
    background-position: -120px -170px;
}

.industries-list-item .icon.ai-software {
    background-position: -20px -70px;
}

.industries-list-item .icon.oil-gas {
    background-position: -70px -70px;
}

.industries-list-item .icon.manufacturing {
    background-position: -120px -70px;
}

.industries-list-item .icon.travel-hospitality {
    background-position: -170px -70px;
}

.blog-section {
    padding-top: 20px;
    padding-bottom: 80px;
}

    .blog-section.inner {
        padding-top: 80px;
    }

.contact-us-section {
    background: #f7fbff;
}

.contact-us-spacing {
    padding: 50px 0;
}

.contact-us-section .contact-us-left-content {
    padding-right: 50px;
}

.contact-us-section .contact-us-right-content {
    background: var(--white);
    margin-top: -50px;
    box-shadow: 0 0 20px #0000001a;
    border-radius: 10px;
}

.contact-us-section form {
    padding: 0 30px 30px;
}

.contact-us-section .contact-form h3,
.contact-us-section .contact-form .contact-form-title {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 20px;
    padding: 14px 50px;
    background: var(--bright-blue);
    border-radius: 10px 10px 0 0;
    color: var(--white);
    text-align: center;
    font-family: var(--heading-font);
}

.contact-us-section .form-group {
    margin-bottom: 24px;
    position: relative;
}

.contact-us-section .contact-us-left-content h3,
.contact-us-section .contact-us-left-content .contact-us-sub-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 30px;
    font-family: var(--heading-font);
}

.form-group.captcha-group {
    flex-flow: row wrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: flex-start;
}

.contact-us-section .form-group.captcha-group.captcha-group > div:last-child {
    width: calc(100% - 146px);
}

.contact-us-section .captcha-group input {
    max-width: 210px;
}

.contact-us-section .contact-us-left-content .content {
    margin-bottom: 30px;
}

.lets-connect-section {
    padding-top: 30px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

    .lets-connect-section:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 40%;
        background: var(--PrimaryBlue);
        z-index: -1;
    }

.lets-connect-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px 0 #0000000a;
    padding: 20px;
    border: 1px solid var(--light-gray2);
}

.lets-connect-row {
    display: flex;
    flex-wrap: wrap;
}

    .lets-connect-row .left-content {
        width: 45%;
    }

    .lets-connect-row .right-content {
        width: 45%;
    }

    .lets-connect-row .left-content ul {
        margin: 0;
        padding: 0;
        list-style: none;
        max-width: 480px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

        .lets-connect-row .left-content ul li {
            display: flex;
            gap: 10px;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 0 5px #0003;
            width: 100%;
        }

            .lets-connect-row .left-content ul li.email,
            .lets-connect-row .left-content ul li.phone {
                width: calc(50% - 10px);
            }

            .lets-connect-row .left-content ul li svg {
                color: var(--PrimaryBlue);
                font-size: 18px;
            }

            .lets-connect-row .left-content ul li h5 {
                margin-bottom: 5px;
                font-weight: 600;
                font-size: 16px;
            }

            .lets-connect-row .left-content ul li p {
                margin-bottom: 0;
                line-height: 23px;
            }

            .lets-connect-row .left-content ul li a {
                color: inherit;
                font-weight: 600;
                text-decoration: underline;
            }

    .lets-connect-row .contact-form h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 30px;
    }

.lets-connect-card .section-title h2,
.lets-connect-card .section-title p {
    margin-bottom: 0;
}

.our-case-study {
    padding-top: 40px;
    padding-bottom: 20px;
}

.case-study-section {
    position: relative;
}

.case-study-card .card-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.case-study-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
}

    .case-study-card .card-body {
        width: 100%;
        padding: 10px 20px 30px;
        backdrop-filter: blur(15px);
        margin: 0 auto;
        right: 0;
        background: var(--white);
        border-radius: 0 0 10px 10px;
    }

    .case-study-card .image img {
        min-height: 290px;
        object-fit: cover;
    }

    .case-study-card .card-body ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

        .case-study-card .card-body ul li {
            position: relative;
            color: var(--white);
            background: var(--PrimaryBlue);
            padding: 3px 7px;
            border-radius: 3px;
            font-size: 12px;
            line-height: normal;
        }

    .case-study-card .image {
        overflow: hidden;
        position: relative;
    }

    .case-study-card h3 {
        font-size: 20px;
        font-weight: 600;
        margin: 16px 0;
        color: var(--black);
        min-height: 70px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .case-study-card.swiper-slide {
        height: unset;
    }

.hire-developers {
    background: var(--PrimaryBlue);
    margin: 0 30px;
    padding: 80px 50px;
    border-radius: 30px;
}

.hire-developer-tabs-wrap .hire-developer-tab-content {
    margin-top: 50px;
}

.hire-developer-tabs-wrap .hire-developer-tab-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    flex-wrap: wrap;
}

    .hire-developer-tabs-wrap .hire-developer-tab-list ul li {
        padding: 8px 32px;
        font-family: var(--heading-font);
        opacity: 0.7;
        transition: 0.3s;
    }

.hire-developer-tab-list {
    text-align: center;
}

.hire-developer-tabs-wrap .hire-developer-tab-list ul li.active {
    background: var(--PrimaryBlue);
    opacity: 1;
    color: var(--white);
    border-radius: 40px;
}

.hire-developer-card {
    padding: 32px 24px;
    border-radius: 20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .hire-developer-card .top-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

        .hire-developer-card .top-content img {
            height: 40px;
        }

        .hire-developer-card .top-content span {
            font-weight: 600;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            font-size: 14px;
            font-family: var(--heading-font);
            color: var(--PrimaryBlue);
            padding: 4px 10px;
            background: #223c8142;
            border-radius: 6px;
            border: 1px solid #223c810f;
        }

            .hire-developer-card .top-content span.type-1 {
                background-color: var(--light-pink);
                color: #fd0064;
            }

            .hire-developer-card .top-content span.type-2 {
                background-color: var(--light-purple);
                color: #4e14ed;
            }

            .hire-developer-card .top-content span.type-3 {
                background-color: var(--light-green);
                color: #057630;
            }

            .hire-developer-card .top-content span.type-4 {
                background-color: var(--light-orenge);
                color: #f9701b;
            }

    .hire-developer-card .card-body h3 {
        font-size: 22px;
        font-weight: 600;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .hire-developer-card .card-body ul {
        list-style: none;
        padding: 0;
        margin: 30px 0 0;
    }

    .hire-developer-card .card-body p {
        margin-bottom: 0;
    }

    .hire-developer-card .card-body ul li {
        list-style: none;
        display: inline-block;
        border-radius: 30px;
        padding: 10px 13px;
        text-align: center;
        margin: 15px 8px 0 0;
        background: var(--ultra-light-blue);
        font-size: 14px;
        font-weight: 500;
    }

.client-slider-section {
    padding: 80px 0;
}

    .client-slider-section .client-logo-item {
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .client-slider-section .client-logo-item img {
            height: 60px;
            margin: 0 auto;
            object-fit: contain;
        }

    .client-slider-section .client-slider-wrap {
        max-width: 1170px;
        margin: 0 auto;
        position: relative;
    }

    .client-slider-section .swiper-button-prev {
        left: -50px;
    }

    .client-slider-section .swiper-button-next {
        right: -50px;
    }

    .client-slider-section h3 {
        font-size: 22px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 40px;
        color: var(--PrimaryBlue);
    }

.client-slider-text,
.client-slider-text h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--PrimaryBlue);
}

    .client-slider-text span {
        font-size: 16px;
        color: var(--dark);
        opacity: 0.7;
        margin-top: 10px;
    }

.counter-section {
    padding: 80px 0;
}

    .counter-section .counter__row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -12px;
    }

        .counter-section .counter__row .counter__col {
            width: calc(100% / 6);
            padding: 0 12px;
        }

            .counter-section .counter__row .counter__col .card {
                padding: 12px;
                border-radius: 15px;
                background: var(--PrimaryBlue);
                color: var(--white);
                text-align: center;
                height: 100%;
                display: flex;
                align-items: center;
                flex-direction: column;
                justify-content: center;
            }

                .counter-section .counter__row .counter__col .card h3 {
                    font-size: 36px;
                    font-weight: 700;
                    margin: 0;
                }

                .counter-section .counter__row .counter__col .card p {
                    margin-bottom: 0;
                }

.development-collabration-section {
    padding: 80px 0 80px;
    background: #f4f7ff;
}

.dev-collab-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    text-align: left;
}

.development-services-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: var(--light-bg);
}

    .development-services-section:before {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: var(--white);
        z-index: -1;
        border-radius: 40px 0 0 40px;
    }

.development-services__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .development-services__row .development-services__col:first-child {
        width: 40%;
    }

    .development-services__row .development-services__col:nth-child(2) {
        width: 50%;
        padding-left: 50px;
    }

    .development-services__row .list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 30px 0;
    }

        .development-services__row .list .wrap {
            display: flex;
            gap: 20px;
            align-items: center;
            color: inherit;
            font-size: 18px;
            font-weight: 600;
            transition: 0.2s;
        }

            .development-services__row .list .wrap img {
                width: 42px;
            }

.tech-combo-section {
    padding: 30px 0 80px;
}

.custom-slider-container {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    --bs-gutter-x: 1.5rem;
}

.tech-combo-slider .swiper-slide {
    width: 450px;
}

.tech-combo-card {
    padding: 0;
    background-color: var(--light-gray7);
    border: 1px solid var(--light-gray4);
    border-radius: 0;
    display: block;
}

    .tech-combo-card img {
        height: 270px;
        width: 100%;
        object-fit: cover;
    }

    .tech-combo-card .tech-list {
        display: flex;
        margin-bottom: 30px;
    }

    .tech-combo-card h3,
    .tech-combo-card .tech-combo-card-heading {
        font-size: 22px;
        font-weight: 600;
        color: var(--PrimaryBlue);
        width: 100%;
        margin-bottom: 0;
        padding: 15px;
        background: var(--white);
        font-family: var(--heading-font);
    }

.slider-btns-wrap {
    position: relative;
    display: flex;
    gap: 20px;
}

    .slider-btns-wrap .arrow {
        position: relative;
        left: unset;
        right: unset;
        width: 45px;
        margin-top: 0;
        top: unset;
        height: 45px;
    }

.tech-experts-tab-section {
    padding: 80px 0;
}

.tech-expert-tab-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 16px;
}

    .tech-expert-tab-list ul li {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        min-width: 100px;
        align-items: center;
        background: var(--ultra-light-blue);
        border-radius: 4px;
        position: relative;
    }

        .tech-expert-tab-list ul li img {
            filter: brightness(0);
            height: 35px;
        }

        .tech-expert-tab-list ul li:before {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 10px 11px 0;
            border-color: var(--PrimaryBlue) transparent transparent;
            position: absolute;
            top: 100%;
            transition: 0.4s;
            opacity: 0;
        }

        .tech-expert-tab-list ul li.active {
            background: var(--PrimaryBlue);
            color: var(--white);
        }

            .tech-expert-tab-list ul li.active img {
                filter: grayscale(1) brightness(0) invert(1);
            }

            .tech-expert-tab-list ul li.active:before {
                border-color: var(--PrimaryBlue) transparent transparent;
                opacity: 1;
                content: "" !important;
                width: 100%;
                height: 1px;
                border: none;
                background: var(--bright-blue);
            }

.tech-expert-tab-content {
    padding: 40px 40px 0;
    max-width: 1170px;
    margin: 60px auto 0;
    border-top: 1px solid var(--light-gray2);
}

    .tech-expert-tab-content .icons-wrapper {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        gap: 40px;
        align-items: center;
    }

        .tech-expert-tab-content .icons-wrapper .list .image-box {
            padding: 10px;
            background: var(--white);
            border-radius: 0;
            width: 65px;
            margin: 0 auto 12px;
            box-shadow: 0 0 4px #0003;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tech-expert-tab-content .icons-wrapper .list {
            text-align: center;
            font-weight: 500;
            font-size: 14px;
            color: var(--dark);
        }

.tech-expert-tabs.type-2 .tech-expert-tab-list ul li {
    background: 0 0;
    width: auto;
    height: auto;
    padding: 8px 10px;
    color: var(--dark);
    font-size: 14px;
}

    .tech-expert-tabs.type-2 .tech-expert-tab-list ul li.active {
        color: var(--bright-blue);
        font-weight: 600;
    }

.tech-expert-tabs.type-2 .tech-expert-tab-content {
    margin-top: 0;
    border-top: none;
}

    .tech-expert-tabs.type-2 .tech-expert-tab-content .icons-wrapper .list .image-box {
        padding: 0;
        box-shadow: none;
        margin-bottom: 8px;
    }

.tech-expert-tab-content .icons-wrapper .list .image-box img {
    object-fit: contain;
}

.tech-expert-tabs.type-2 .tech-expert-tab-content .icons-wrapper .list {
    padding: 10px;
    transition: 0.4s ease-in-out;
    border-radius: 6px;
}

.why-choose-company {
    padding: 100px 0;
}

.why-choose-card {
    padding: 30px;
    box-shadow: 0 0 6px #0003;
    background: var(--light-gray3);
    border-radius: 24px;
}

    .why-choose-card .title {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-bottom: 20px;
    }

    .why-choose-card h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .why-choose-card svg {
        font-size: 26px;
    }

.our-testimonial.light-version {
    background: var(--light-gray5);
}

.our-engagement-model {
    background: #121b1d;
    padding: 80px 0;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.engagement-card {
    padding: 30px 20px;
    background: #12233b;
    border-radius: 14px;
    color: #fff;
    border: 1px solid #12233a;
    box-shadow: 0 0 10px 4px #140000;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
}

    .engagement-card img {
        height: 70px;
        border-radius: 7px;
        filter: invert(1);
    }

    .engagement-card svg {
        color: var(--PrimaryBlue);
        font-size: 32px;
    }

    .engagement-card h3 {
        font-size: 20px;
        margin: 30px 0 0;
        font-weight: 800;
    }

    .engagement-card p {
        margin-bottom: 0;
        font-size: 14px;
        opacity: 0.8;
    }

    .engagement-card ul {
        margin: 30px 0 40px;
        padding: 0;
        padding-top: 30px;
        border-top: 1px solid #d5d2d2;
        font-size: 18px;
        list-style: none;
    }

        .engagement-card ul li {
            position: relative;
            display: flex;
            gap: 12px;
            list-style: none;
            font-size: 16px;
            margin-bottom: 20px;
        }

            .engagement-card ul li svg {
                color: #3bb34d;
                font-size: 27px;
            }

    .engagement-card a {
        display: inline-flex;
        text-align: center;
        align-items: center;
    }

        .engagement-card a svg {
            color: #fff;
            font-size: 15px;
        }

.faq-section {
    padding: 50px 0;
}

    .faq-section .container {
        max-width: 1170px;
    }

.faq-accordion .faq-accordion-item {
    margin-bottom: 20px;
    border: 1px solid var(--light-gray2);
    border-radius: 4px;
}

    .faq-accordion .faq-accordion-item .faq-accordian-btn {
        display: block;
        width: 100%;
        border: none;
        background: 0 0;
        text-align: left;
        padding: 10px 50px 10px 20px;
        border-radius: 0;
        transition: 0.2s;
        font-size: 16px;
        font-family: var(--heading-font);
        outline: 0 !important;
        position: relative;
        margin-bottom: 0;
    }

        .faq-accordion .faq-accordion-item .faq-accordian-btn svg {
            transform: translateY(-50%);
            position: absolute;
            right: 20px;
            top: 50%;
            transition: 0.2s;
        }

        .faq-accordion .faq-accordion-item .faq-accordian-btn:not(.collapsed) svg {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-accordion .faq-accordion-item .faq-accordian-btn:not(.collapsed) {
            border-radius: 0;
        }

    .faq-accordion .faq-accordion-item .accordion-body {
        background: var(--light-gray7);
        border-radius: 0;
    }

    .faq-accordion .faq-accordion-item .faq-accordian-btn:hover,
    .faq-accordion .faq-accordion-item .faq-accordian-btn:not(.collapsed) {
        background: var(--light-gray7);
    }

.hire-tech-experts {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.tech-expert-card {
    padding: 30px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

    .tech-expert-card .technology-tech-stack-list {
        width: calc(100% - 420px);
    }

    .tech-expert-card .tech-icon {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 99em;
    }

    .tech-expert-card .technology-main-heading h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .tech-expert-card .technology-main-heading {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        width: 400px;
    }

.technology-items,
.technology-tech-stack-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

    .technology-items .technology-item,
    .technology-tech-stack-list ul li a {
        display: inline-flex;
        gap: 15px;
        padding: 10px 20px;
        border: 1px solid #d9d9d9;
        border-radius: 25px;
        cursor: pointer;
        align-items: center;
        position: relative;
        background: var(--white);
        color: var(--dark);
    }

        .technology-items .technology-item span {
            font-size: 14px;
        }

            .technology-items .technology-item span:first-child {
                font-size: 20px;
                color: #639;
            }

    .technology-tech-stack-list ul li .tech-hover-content {
        position: absolute;
        left: 0;
        top: calc(100% + 10px);
        background: #fff;
        width: 550px;
        border: 1px solid #d3d3d3;
        z-index: 1;
        padding: 12px;
        border-radius: 7px;
        display: none;
    }

    .technology-tech-stack-list ul li.active .tech-hover-content {
        display: block;
    }

    .technology-tech-stack-list ul span {
        font-weight: 500;
        margin-bottom: 0;
    }

    .technology-tech-stack-list ul .tech-logo {
        width: 38px;
        height: 38px;
        display: block;
        background-image: url(../images/Tech_stack.png);
        zoom: 0.6;
    }

        .technology-tech-stack-list ul .tech-logo.react {
            background-position: -135px -20px;
        }

    .technology-tech-stack-list ul li img {
        height: 26px;
    }

    .technology-tech-stack-list ul li .tech-hover-content h4 {
        font-size: 22px;
        font-weight: 500;
    }

    .technology-tech-stack-list ul li .tech-hover-content p {
        font-size: 14px;
        line-height: 20px;
    }

.cubespinner {
    animation-name: spincube;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    transform-style: preserve-3d;
    transform-origin: 40px 40px 0;
}

    .cubespinner div {
        position: absolute;
        left: 0;
        right: 0;
        padding: 12px;
        box-shadow: 0 0 4px #0003;
        background: var(--white);
        border-radius: 8px;
    }

    .cubespinner .face1 {
        -webkit-backface-visibility: hidden;
    }

    .cubespinner .face2 {
        transform: rotateX(180deg);
        -webkit-backface-visibility: hidden;
    }

@-webkit-keyframes spincube {

    from, to {
        -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
    }

    25% {
        -webkit-transform: rotateX(180deg);
    }

    50% {
        -webkit-transform: rotateX(180deg);
    }

    75% {
        -webkit-transform: rotateX(360deg);
    }

    100% {
        -webkit-transform: rotateX(360deg);
    }
}

@keyframes spincube {

    from, to {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }

    25% {
        -webkit-transform: rotateX(180deg);
    }

    50% {
        transform: rotateX(180deg);
    }

    75% {
        -webkit-transform: rotateX(360deg);
    }

    100% {
        transform: rotateX(360deg);
    }
}

.about-us-section {
    padding: 80px 0;
}

    .about-us-section .about-us {
        position: relative;
        padding-right: 80px;
    }

        .about-us-section .about-us:before {
            content: "";
            position: absolute;
            right: 35px;
            top: 0;
            width: 5px;
            height: 100%;
            background: transparent linear-gradient(139deg, #223c81, #149bd7 50%, #169bd7, #169bd700) 0 0 no-repeat;
            border-radius: 4px;
        }

    .about-us-section h3 {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .about-us-section .certified-in-section h3,
    .featured-in-section h3 {
        font-size: 18px;
        margin-bottom: 40px;
        color: #353e4e;
		font-family: Manrope;
    }

    .about-us-section .about-us ul li {
        margin-bottom: 6px;
    }

    .about-us-section .about-us .custom-list {
        margin-top: 30px;
    }

    .about-us-section .about-us .counter-list {
        display: flex;
        padding: 0;
        list-style: none;
        margin: 40px 0;
        flex-wrap: wrap;
        gap: 20px;
    }

        .about-us-section .about-us .counter-list li {
            background: var(--white);
            border: 1px dashed var(--PrimaryBlue);
            border-radius: 30px;
            padding: 8px 30px;
            display: flex;
            align-items: center;
            box-shadow: 0 0 8px #0003;
            gap: 10px;
            margin-bottom: 0;
        }

            .about-us-section .about-us .counter-list li h4,
            .about-us-section .about-us .counter-list li .home-counter {
                margin-bottom: 0;
                font-size: 20px;
                font-weight: 700;
                color: var(--PrimaryBlue);
                font-style: var(--heading-font);
            }

    .about-us-section .featured-in-section {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid var(--light-gray4);
        overflow: hidden;
    }

    .about-us-section .certified-list,
    .featured-in-logo {
        display: flex;
        gap: 20px 20px;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
        flex-wrap: wrap;
    }

        .about-us-section .certified-list a,
        .about-us-section .featured-in-logo a {
            transition: 0.2s;
            display: block;
        }

            .about-us-section .certified-list a:hover,
            .about-us-section .featured-in-logo a:hover {
                transform: translateY(-10px);
            }

        .featured-in-logo img {
            height: 20px;
            object-fit: contain;
            max-width: 200px;
        }

        .about-us-section .certified-list img {
            height: 35px;
            max-width: 200px;
            object-fit: contain;
        }

    .about-us-section .featured-in-logo img.h-50px {
        height: 35px;
    }

.statastics-section .home-counter-wrap video {
    width: 70px;
}

.inner-service-section {
    padding: 0;
}

    .inner-service-section .container {
        max-width: 1300px;
    }

    .inner-service-section .service-inner-card {
        padding: 30px;
        border-radius: 6px;
        margin-bottom: 80px;
    }

        .inner-service-section .service-inner-card h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 16px;
        }

    .inner-service-section .service-title h2 {
        margin-bottom: 0;
        font-weight: 600;
        font-size: 36px;
    }

    .inner-service-section .service-list ul {
        margin: 30px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }

        .inner-service-section .service-list ul a {
            color: var(--black);
            text-decoration: underline;
            transition: 0.2s;
            font-size: 15px;
        }

            .inner-service-section .service-list ul a:hover {
                font-weight: 600;
            }

        .inner-service-section .service-list ul li {
            position: relative;
            padding-left: 15px;
            margin-bottom: 10px;
        }

            .inner-service-section .service-list ul li:before {
                position: absolute;
                content: "";
                width: 6px;
                height: 6px;
                background: var(--PrimaryBlue);
                left: 0;
                top: 9px;
            }

    .inner-service-section .service-image {
        display: flex;
        justify-content: flex-end;
    }

        .inner-service-section .service-image img {
            max-height: 350px;
            margin-left: auto;
            display: block;
            object-fit: contain;
            border-radius: 6px;
            filter: drop-shadow(0 8px 8px #0003);
        }

    .inner-service-section .flex-row-reverse .service-image img {
        margin-right: auto;
        margin-left: 0;
    }

    .inner-service-section .service-inner-card:first-child {
        margin-top: -50px;
        position: relative;
        z-index: 1;
    }

.hire-team-process {
    padding-top: 80px;
    padding-bottom: 80px;
}

    .hire-team-process .process-card-wrapper {
        margin-top: 60px;
    }

.process-card {
    position: relative;
}

.process-card-wrapper > div:not(:last-child) .process-card:after {
    content: "";
    position: absolute;
    top: 23px;
    left: 100%;
    transform: translateX(-50%);
    width: 100px;
    height: 12px;
    background: url(https://assets.nextwebi.com/assets/images/arrow-blue.svg) center/cover no-repeat;
}

.process-card .count-box {
    font-size: 30px;
    font-weight: 600;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    border-radius: 10px;
    background: transparent var(--main-gradient);
}

.process-card .card-body {
    margin: 20px auto 0;
    max-width: 295px;
}

    .process-card .card-body h3 {
        font-size: 20px;
        font-weight: 600;
    }

    .process-card .card-body p {
        font-size: 15px;
        margin-bottom: 0;
    }

.service-intro-section {
    padding: 30px 0 80px;
}

    .service-intro-section .image img {
        height: auto;
        width: 100%;
        object-fit: contain;
        box-shadow: 0 2px 12px #0000001f;
        border-radius: 6px;
        max-height: 30rem;
    }

    .service-intro-section .image.auto-image img {
        width: auto;
        object-fit: contain;
        display: block;
    }

    .service-intro-section .content ul {
        padding: 0;
        margin: 30px 0 0;
        list-style: none;
    }

        .service-intro-section .content ul li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

            .service-intro-section .content ul li svg {
                font-size: 19px;
                color: var(--bright-blue);
            }

            .service-intro-section .content ul li img {
                height: 30px;
            }

    .service-intro-section .image {
        position: relative;
        z-index: 1;
    }

        .service-intro-section .image .img-blue-bg {
            background: transparent var(--main-gradient);
            border-radius: 6px;
            width: 92%;
            position: absolute;
            top: 15px;
            bottom: -8px;
            left: 0;
            right: -8px;
            z-index: -1;
            margin-left: auto;
        }

.connect--cta .cta-card {
    padding: 30px 64px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent var(--main-gradient);
    border-radius: 6px;
    color: var(--white);
    gap: 10px;
    position: relative;
}

    .connect--cta .cta-card h2,
    .connect--cta .cta-card .cta-type-1-heading {
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .connect--cta .cta-card h3,
    .connect--cta .cta-card .cta-type-1-sub-heading {
        margin-bottom: 0;
        margin-top: 20px;
        font-size: 28px;
        line-height: 32px;
    }

    .connect--cta .cta-card h4 {
        margin-bottom: 0;
        margin-top: 20px;
    }

    .connect--cta .cta-card a {
        white-space: nowrap;
    }

    .connect--cta .cta-card:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(https://assets.nextwebi.com/assets/images/cta-vector.svg);
        background-position: left;
        z-index: -1;
        opacity: 0.4;
    }

    .connect--cta .cta-card button {
        width: 250px;
    }

    .connect--cta .cta-card .content {
        width: calc(100% - 260px);
    }

.product--cta .cta-card {
    padding: 44px;
    background: transparent var(--main-gradient);
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    border-radius: 6px;
}

    .product--cta .cta-card .content a,
    .product--cta .cta-card .content button {
        margin-top: 30px;
    }

    .product--cta .cta-card .content h2,
    .product--cta .cta-card .content .cta-type-2-heading {
        font-size: 28px;
        margin: 15px 0;
        font-weight: 600;
        font-family: var(--heading-font);
    }

    .product--cta .cta-card p {
        font-size: 15px;
        margin-bottom: 0;
    }

.why-choose-service .accordion-item {
    border: none;
    margin-bottom: 0;
    background: 0 0;
    border-bottom: 1px solid var(--white);
    border-radius: 0;
}

.why-choose-service .accordion-button:not(.collapsed) {
    background: var(--main-gradient);
    color: var(--white);
}

.why-choose-service .accordion-button {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    justify-content: space-between;
    background: 0 0 !important;
    color: var(--white);
    padding: 20px 0;
    box-shadow: none !important;
    margin-bottom: 0;
}

    .why-choose-service .accordion-button::after {
        content: none;
    }

.why-choose-service .accordion-item .accordion-collapse {
    font-size: 14px;
    color: var(--white);
}

.why-choose-service {
    background: url(../images/hero-bg5.jpg);
    padding: 80px 0;
    background-position: center;
    background-size: cover;
}

    .why-choose-service .accordion-body {
        background: 0 0;
        padding: 10px 0;
    }

    .why-choose-service .why-choose-section-title {
        color: var(--white);
        padding-right: 80px;
    }

        .why-choose-service .why-choose-section-title .counter {
            margin: 20px 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

            .why-choose-service .why-choose-section-title .counter li {
                padding: 7px 20px;
                border: 1px dashed#fff;
                border-radius: 44px;
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 14px;
                backdrop-filter: blur(4px);
            }

                .why-choose-service .why-choose-section-title .counter li h3 {
                    margin-bottom: 0;
                    font-size: 18px;
                    font-weight: 800;
                }

.benefit-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .benefit-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }

.benefits-left-image {
    width: 100%;
    height: 100%;
    background: url(../images/services/web-development-service/web-development-benefits.jpg) no-repeat, #320057;
    background-position: center;
    background-size: contain;
}

.industry-focused-insights {
    padding: 10px 0 50px;
}

.technology-partner .left-card {
    padding: 40px 30px;
    background: url(../images/get-in-touch-bg.jpg);
    border-radius: 4px;
    position: relative;
    background-position: center;
    background-size: cover;
    color: var(--white);
    z-index: 1;
    position: sticky;
    top: 80px;
}

    .technology-partner .left-card:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #0648efff;
        opacity: 0.8;
        border-radius: 4px;
        z-index: -1;
    }

    .technology-partner .left-card h2,
    .technology-partner .left-card .tech-partner-heading {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0;
        font-family: var(--heading-font);
    }

    .technology-partner .left-card h3,
    .technology-partner .left-card .tech-partner-sub-heading {
        margin: 20px 0;
        font-weight: 600;
        font-family: var(--heading-font);
        font-size: 23px;
        line-height: normal;
    }

    .technology-partner .left-card a {
        color: var(--bright-blue);
        margin-top: 20px;
    }

.technology-partner .container {
    max-width: 1270px;
}

.technology-partner {
    padding: 80px 0;
    background: var(--light-bg);
}

    .technology-partner .section-title p {
        display: none;
    }

.our-work-case-study {
    padding-bottom: 80px;
    padding-top: 30px;
}

    .our-work-case-study .catestudy-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        gap: 20px;
    }

        .our-work-case-study .catestudy-title .primary-link {
            white-space: nowrap;
        }

    .our-work-case-study .our-work--row {
        display: flex;
        flex-wrap: wrap;
        background: var(--light-pink-1);
        align-items: center;
        height: 100%;
    }

        .our-work-case-study .our-work--row .our-work--col {
            width: 50%;
        }

        .our-work-case-study .our-work--row .left-content {
            padding: 50px 100px 50px 50px;
            border-radius: 8px;
        }

            .our-work-case-study .our-work--row .left-content img {
                height: 60px;
                object-fit: contain;
            }

            .our-work-case-study .our-work--row .left-content h2,
            .our-work-case-study .our-work--row .left-content .case-study-title {
                margin: 20px 0;
                font-weight: 600;
                font-size: 26px;
                line-height: 1.2;
            }

            .our-work-case-study .our-work--row .left-content a {
                margin-top: 30px;
            }

        .our-work-case-study .our-work--row .our-work--col p {
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .our-work-case-study .our-work--row .our-work--col.right-content {
            background-position: center bottom;
            background-size: contain;
            background-repeat: no-repeat;
            padding: 20px 30px 20px 0;
        }

            .our-work-case-study .our-work--row .our-work--col.right-content img {
                border-radius: 10px;
            }

    .our-work-case-study .our-work-slider .swiper-slide {
        width: 1100px;
        height: unset;
    }

    .our-work-case-study .our-work-slider {
        padding: 0 16px;
    }

.sevice-content-section {
    padding: 80px 0;
}

    .sevice-content-section .section-title {
        margin-bottom: 10px;
    }

        .sevice-content-section .section-title h4 {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 700;
        }

.service-content-h4 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
}

.sevice-content-section .right-content {
    position: sticky;
    top: 80px;
    padding: 30px;
    background: var(--PrimaryBlue);
    border-radius: 4px;
}

    .sevice-content-section .right-content .right-menu-item {
        font-size: 18px;
        padding: 8px 0;
        cursor: pointer;
    }

.sevice-content-section .about-us .custom-list li {
    margin-bottom: 6px;
}

.sevice-content-section .about-us .featured-in-section img {
    height: 35px;
}

.sevice-content-section .about-us .featured-in-section h3 {
    margin-bottom: 20px;
}

.sevice-content-section .content-gap {
    margin-bottom: 50px;
}

    .sevice-content-section .content-gap:last-child {
        margin-bottom: 0;
    }

.sevice-content-section .web-projects > .row {
    row-gap: 24px;
}

.web-projects-card {
    padding: 30px;
    height: 100%;
}

    .web-projects-card h3,
    .web-projects-card h4 {
        font-size: 20px;
        font-weight: 800;
        margin: 0 0 10px;
    }

    .web-projects-card > a {
        margin-top: 20px;
    }

.sevice-content-section .our-commitment > .row,
.sevice-content-section .our-services > .row,
.sevice-content-section .web-projects > .row {
    row-gap: 24px;
}

.our-service-card {
    padding: 30px 20px;
    background: var(--light-bg);
}

    .our-service-card .top-content {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

        .our-service-card .top-content img {
            height: 27px;
        }

        .our-service-card .top-content h3 {
            font-weight: 600;
            font-size: 22px;
            margin-bottom: 0;
        }

.our-service-cta {
    padding: 24px;
    border: 1px solid var(--light-gray4);
    box-shadow: 0 0 4px #0003;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

    .our-service-cta a {
        min-width: 230px;
    }

    .our-service-cta h2 {
        font-size: 28px;
        font-weight: 600;
    }

    .our-service-cta p {
        margin-bottom: 0;
        font-size: 14px;
        max-width: 550px;
    }

    .our-service-cta .content {
        width: 100%;
    }

.our-commitment-card {
    background: var(--light-gray6);
    padding: 30px 20px;
}

    .our-commitment-card .top-content {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

        .our-commitment-card .top-content h3 {
            font-size: 24px;
            margin-bottom: 0;
            font-weight: 600;
        }

        .our-commitment-card .top-content svg {
            font-size: 22px;
        }

.our-commitment .our-service-cta {
    background: var(--main-gradient);
}

.schedule-call-form {
    margin-bottom: 30px;
}

    .schedule-call-form h2 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 20px;
    }

.service-punchlines {
    padding: 12px;
    background: var(--white);
    border-radius: 4px;
    font-size: 14px;
}

    .service-punchlines a {
        color: inherit;
    }

    .service-punchlines h3,
    .service-punchlines .sub-heading-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--heading-font);
    }

    .service-punchlines p {
        line-height: 20px;
        opacity: 0.7;
    }

    .service-punchlines h3 svg {
        font-size: 14px;
        width: 14px;
    }

.service-connect-us img {
    height: 150px;
    margin: 0 auto 20px;
    display: block;
}

.service-connect-us h3,
.service-connect-us .request-quote-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.service-connect-us a {
    margin-bottom: 20px;
}

.benefits-section .benefits-card .quote {
    font-weight: 800;
}

.benefits-section .left-content {
    position: relative;
    padding-right: 80px;
}

    .benefits-section .left-content:before {
        content: "";
        position: absolute;
        right: 35px;
        top: 0;
        width: 5px;
        height: 100%;
        background: transparent linear-gradient(139deg, #223c81, #149bd7 50%, #169bd7, #169bd700) 0 0 no-repeat;
        border-radius: 4px;
    }

.benefits-section {
    padding: 80px 0;
    background: var(--light-bg);
}

    .benefits-section .quote {
        font-weight: 800;
        padding-top: 30px;
    }

.orange-badge {
    padding: 2px 10px;
    display: inline-block;
    background: #ffe7e5;
    color: var(--dc-orange);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.technology-dev-services {
    padding: 80px 0;
    position: relative;
}

    .technology-dev-services .why-choose-nw-card {
        padding: 30px;
        height: 100%;
        border-radius: 10px;
        background: #ced4da;
    }

        .technology-dev-services .why-choose-nw-card .item-icon {
            width: 50px;
            height: 50px;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }

            .technology-dev-services .why-choose-nw-card .item-icon span {
                font-size: 24px;
            }

                .technology-dev-services .why-choose-nw-card .item-icon span.number {
                    font-size: 50px;
                    -webkit-text-fill-color: #000;
                    -webkit-text-stroke: 1px #939191;
                    font-family: sans-serif;
                    font-weight: 700;
                }

        .technology-dev-services .why-choose-nw-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .technology-dev-services .why-choose-nw-card p {
            opacity: 0.8;
        }

        .technology-dev-services .why-choose-nw-card ul {
            margin: 20px 0 0;
            padding: 0;
            list-style: none;
        }

            .technology-dev-services .why-choose-nw-card ul li {
                margin-bottom: 12px;
                display: flex;
                gap: 10px;
            }

                .technology-dev-services .why-choose-nw-card ul li svg {
                    color: var(--dc-orange);
                    position: relative;
                    top: 4px;
                }

.our-work-case-study.our-workpage-portfolio {
    padding-top: 80px;
}

.hire-developer-cta .custom-bullet-arrow-list {
    margin-top: 40px;
}

    .hire-developer-cta .custom-bullet-arrow-list li {
        color: var(--dark);
        margin-bottom: 20px;
        font-weight: 600;
    }

        .hire-developer-cta .custom-bullet-arrow-list li:before {
            z-index: 0;
        }

        .hire-developer-cta .custom-bullet-arrow-list li svg {
            position: relative;
        }

.testimonial-type-2 {
    padding-bottom: 80px;
}

.portfolio-listing-section {
    padding: 80px 0;
}

    .portfolio-listing-section h2 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 30px;
    }

.testimonial-section-type-2 {
    padding: 80px 0;
    background: #efefef;
}

.testimonial-card-type-2 {
    padding: 20px;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--white);
}

    .testimonial-card-type-2 p {
        font-size: 15px;
        font-style: italic;
        font-display: optional;
    }

    .testimonial-card-type-2 .ratings-wrap {
        font-size: 14px;
        color: #ff9b00;
        margin-bottom: 4px;
    }

    .testimonial-card-type-2 .client-detail {
        font-weight: 600;
    }

        .testimonial-card-type-2 .client-detail .position {
            font-weight: 500;
            opacity: 0.7;
            font-size: 14px;
        }

.solution-sucess-story-card .sucess-story-card-inner {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid #d7d5d5;
    border-radius: 5px;
}

    .solution-sucess-story-card .sucess-story-card-inner .left-content,
    .solution-sucess-story-card .sucess-story-card-inner .right-content {
        width: calc(50% - 10px);
    }

.solution-sucess-story-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution-sucess-story-card .sucess-story-card-inner .left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.solution-sucess-story-card .sucess-story-card-inner .client-feedback-content {
    padding: 20px;
    margin-top: -60px;
    background: #f2f2f2;
    border-radius: 4px;
}

    .solution-sucess-story-card .sucess-story-card-inner .client-feedback-content p {
        font-size: 16px;
        font-weight: 600;
        font-style: italic;
        font-display: optional;
    }

    .solution-sucess-story-card .sucess-story-card-inner .client-feedback-content span {
        padding-bottom: 10px;
        display: block;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
        margin-bottom: 20px;
    }

.solution-sucess-story-card .sucess-story-card-inner .client-info-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .solution-sucess-story-card .sucess-story-card-inner .client-info-wrap .image {
        width: 130px;
    }

    .solution-sucess-story-card .sucess-story-card-inner .client-info-wrap .content-wrap {
        width: calc(100% - 150px);
    }

    .solution-sucess-story-card .sucess-story-card-inner .client-info-wrap .image img {
        width: 130px;
        height: 130px;
        object-fit: cover;
        border-radius: 100%;
        border: 1px solid #ababab;
    }

.swiper.solution-story-slider {
    padding-top: 30px;
}

.solution-story-slider-btns .swiper-button-next,
.solution-story-slider-btns .swiper-button-prev {
    width: 35px;
    height: 35px;
    background: var(--bright-blue);
    color: var(--white);
    border-radius: 100%;
}

.solution-story-slider-btns .swiper-button-prev {
    left: -40px;
}

.solution-story-slider-btns .swiper-button-next {
    right: -40px;
}

    .solution-story-slider-btns .swiper-button-next svg,
    .solution-story-slider-btns .swiper-button-prev svg {
        width: 14px;
    }

.service-roadmap {
    padding-top: 60px;
    border-top: 1px solid #d7d7d7;
    margin-top: 80px;
}

    .service-roadmap .service-roadmap-image {
        background: url(https://assets.nextwebi.com/assets/images/purple-patch.webp);
        background-size: cover;
        background-position: center;
        border-radius: 6px;
        height: 100%;
        display: flex;
        align-items: center;
    }

.solution-feature-section {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

    .solution-feature-section:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(../images/solutions/bg-element.png);
        background-position: top;
        background-size: contain;
        z-index: -1;
        opacity: 0.06;
        background-repeat: no-repeat;
    }

.solution-software-products .service-image img {
    max-height: 290px;
    margin: 0 auto !important;
}

.scalable-section {
    padding: 80px 0;
}

.scale-card {
    padding: 24px;
    box-shadow: 0 0 4px #0003;
    border-radius: 6px;
    border-top: 7px solid transparent;
    height: 100%;
}

    .scale-card h3 {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .scale-card p {
        margin-bottom: 0;
        font-size: 14px;
        line-height: 20px;
    }

.why-choose-technology {
    padding: 80px 0;
    background: url(../images/healthcheck.jpg);
    position: relative;
    z-index: 1;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
}

    .why-choose-technology:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #12131d;
        z-index: -1;
        opacity: 0.8;
    }

.why-choose-tech-card {
    padding: 30px;
    background-color: #10101a;
    border-radius: 8px;
    height: 100%;
}

    .why-choose-tech-card .inner {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

        .why-choose-tech-card .inner .icon {
            width: 32px;
            height: 32px;
            background: var(--dc-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100%;
            font-size: 20px;
            color: var(--white);
        }

            .why-choose-tech-card .inner .icon.dark {
                color: var(--black);
            }

        .why-choose-tech-card .inner .content {
            width: calc(100% - 60px);
        }

    .why-choose-tech-card h3 {
        font-size: 22px;
    }

    .why-choose-tech-card p {
        font-size: 14px;
        color: var(--light-gray-text);
        margin-bottom: 0;
    }

.tech-why-choose-nextwebi {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

    .tech-why-choose-nextwebi .image {
        margin-top: 40px;
    }

    .tech-why-choose-nextwebi .why-choose-list {
        padding: 0;
        margin: 0;
        list-style: none;
        margin-bottom: 40px;
    }

        .tech-why-choose-nextwebi .why-choose-list li {
            padding-left: 30px;
            position: relative;
            margin-bottom: 20px;
        }

            .tech-why-choose-nextwebi .why-choose-list li:before {
                content: "";
                position: absolute;
                width: 16px;
                height: 16px;
                left: 0;
                top: 5px;
                background: #454e35;
                border-radius: 100%;
            }

            .tech-why-choose-nextwebi .why-choose-list li:after {
                content: "";
                position: absolute;
                width: 8px;
                height: 8px;
                left: 4px;
                top: 9px;
                background: #aff80b;
                border-radius: 100%;
            }

    .tech-why-choose-nextwebi .happy-clients {
        overflow: hidden;
    }

        .tech-why-choose-nextwebi .happy-clients h3 {
            font-size: 20px;
            margin-bottom: 30px;
        }

        .tech-why-choose-nextwebi .happy-clients ul {
            display: flex;
            column-gap: 15px;
            padding: 0;
        }

            .tech-why-choose-nextwebi .happy-clients ul li {
                height: 70px;
                min-width: 150px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 7px;
                border: 1.376px solid #ddddddd4;
                background: #fff;
            }

                .tech-why-choose-nextwebi .happy-clients ul li img {
                    height: 45px;
                }

.portfolio-type-2 {
    padding-top: 80px;
    padding-bottom: 30px;
    background-color: #000;
}

    .portfolio-type-2 .container {
        max-width: 1250px;
    }

.portfolio-card-type-2 {
    padding: 20px;
    height: 100%;
    position: relative;
    z-index: 1;
}

    .portfolio-card-type-2:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: calc(100% - 50px);
        border-radius: 5px;
        box-shadow: 0 1px 24px 5px #0000001a;
        background: #272c33;
        z-index: -1;
    }

.portfolio-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-card-type-2 img {
    border-radius: 5px;
    box-shadow: 0 1px 24px 5px #0000001a;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-card-type-2 h3,
.portfolio-card-type-2 .case-study-title {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 30px;
    font-style: var(--heading-font);
    line-height: 1.2;
}

.portfolio-card-type-2 p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--light-gray-text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-card-type-2 .primary-link {
    display: block;
    margin-top: 30px;
}

.portfolio-type-2 .swiper-slide {
    width: 400px;
}

.our-succes-story-2 {
    padding-bottom: 120px;
}

    .our-succes-story-2 .container {
        max-width: 1400px;
    }

.our-succes-story-2-card {
    padding: 24px;
    background: #e0e3e2;
    border-radius: 9px;
}

    .our-succes-story-2-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 10px;
    }

    .our-succes-story-2-card .image {
        position: relative;
        margin-bottom: 20px;
    }

    .our-succes-story-2-card .category-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 1;
        background: var(--dc-orange);
        color: var(--white);
        padding: 0 10px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .our-succes-story-2-card h3 {
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .our-succes-story-2-card a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

.solutions-card {
    padding: 30px;
    background: #1e1e1e;
    border: 1px solid #222;
    border-radius: 10px;
}

.solutions-card__row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.solutions-card .solutions-card__row .solutions-card__col-left {
    width: 40%;
}

.solutions-card .solutions-card__row .solutions-card__col-right {
    width: calc(60% - 20px);
    padding-left: 40px;
}

.solutions-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.solutions-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
}

.solutions-card a {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    color: var(--dc-orange);
}

.case-study-banner,
.news-events-banner {
    background-position: center;
    position: relative;
    z-index: 1;
}

    .case-study-banner:before,
    .news-events-banner:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: -1;
        opacity: 0.7;
    }

.case-study-wrapper,
.news-events-section {
    padding: 100px 0 80px;
}

    .news-events-section .new-events-card {
        transition: all ease-in-out;
    }

        .news-events-section .new-events-card h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 0;
            color: #032d60;
        }

        .news-events-section .new-events-card p {
            margin-bottom: 0;
            font-size: 14px;
        }

        .news-events-section .new-events-card a {
            font-weight: 600;
            display: block;
        }

        .news-events-section .new-events-card img {
            width: 100%;
            height: 260px;
            border-radius: 10px;
            margin-bottom: 16px;
            object-fit: cover;
        }

    .case-study-wrapper .event-list__row,
    .news-events-section .event-list__row {
        gap: 50px;
        display: flex;
        flex-wrap: wrap;
    }

        .case-study-wrapper .event-list__row .event-list__col,
        .news-events-section .event-list__row .event-list__col {
            width: calc(33.33% - 40px);
        }

.customer-login {
    display: flex;
    flex-wrap: wrap;
    height: 100dvh;
    align-items: center;
    background-color: #f4f5ff;
    position: relative;
}

    .customer-login .left-content {
        width: 33.33%;
        height: 100%;
        background: url(../images/customer-onboard.png);
        background-position: center;
        background-size: cover;
        backdrop-filter: grayscale(100);
    }

        .customer-login .left-content .login-image {
            height: 100%;
            width: 100%;
        }

    .customer-login .right-content {
        width: 66.66%;
        padding: 100px;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        background: #f5f7f9;
    }

    .customer-login .login-left-image img {
        max-height: 100%;
    }

.login-left-image {
    height: 100%;
}

.customer-login .customer-login-form img {
    width: 220px;
    margin: 0 auto 20px;
    display: block;
}

.customer-login h1 {
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.customer-login .top-content p {
    opacity: 0.8;
}

.customer-login .top-content {
    margin-bottom: 60px;
}

.customer-login .customer-login-form {
    max-width: 420px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 16px;
}

    .customer-login .customer-login-form label {
        font-size: 14px;
    }

    .customer-login .customer-login-form a {
        font-size: 14px;
        font-weight: 600;
        text-decoration: underline;
    }

    .customer-login .customer-login-form button {
        margin-top: 50px;
        display: block;
        width: 100%;
    }

.customer-login .callout-message {
    box-shadow: 0 0 50px 0 #0006;
    width: 400px;
    position: absolute;
    z-index: 2;
    bottom: 100px;
    color: #000;
    background-color: #fff;
    padding: 30px;
    left: calc(33.33% - 250px);
    font-weight: 600;
}

.customer-login .message-slider .swiper-pagination {
    position: relative;
    margin-top: 20px;
    top: unset;
    bottom: unset;
}

.customer-login .signup-content {
    margin-top: 30px;
    text-align: center;
}

.solution--cta {
    padding: 80px 0;
    background-image: url(../images/solution-cta.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

    .solution--cta h2 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--white);
    }

    .solution--cta h3 {
        font-size: 40px;
        margin-bottom: 30px;
        font-weight: 600;
        color: var(--white);
    }

    .solution--cta:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #0648ef;
        z-index: -1;
        opacity: 0.8;
    }

.get-in-touch {
    padding: 0 0 80px;
    margin-bottom: 160px;
}

    .get-in-touch .container {
        max-width: 1200px;
    }

    .get-in-touch .contact-card {
        padding: 30px;
        background: url(../images/get-in-touch-bg.jpg);
        background-size: cover;
        background-position: bottom;
        border-radius: 20px;
        color: var(--white);
        position: relative;
        z-index: 1;
    }

    .get-in-touch .section-title {
        max-width: 730px;
    }

    .get-in-touch .contact-card ul p {
        margin-bottom: 0;
        font-size: 14px;
    }

    .get-in-touch .contact-card:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: -1;
        opacity: 0.8;
        border-radius: 20px;
    }

    .contact-us-inner .get-in-touch-form,
    .get-in-touch .get-in-touch-form {
        background: var(--white);
        margin-left: 50px;
        box-shadow: 0 0 20px #0000001a;
        border-radius: 20px;
    }

        .contact-us-inner .get-in-touch-form h3,
        .get-in-touch .get-in-touch-form h3,
        .get-in-touch-form .contact-form-title {
            font-weight: 700;
            margin-bottom: 30px;
            font-size: 20px;
            padding: 14px 50px;
            background: var(--bright-blue);
            border-radius: 20px 20px 0 0;
            color: var(--white);
            text-align: center;
        }

        .contact-us-inner .get-in-touch-form form,
        .get-in-touch .get-in-touch-form form {
            padding: 0 30px 30px;
        }



    .get-in-touch .nda-content {
        padding-top: 40px;
        display: flex;
        gap: 20px;
    }

        .get-in-touch .nda-content h3 {
            margin-bottom: 0;
            font-weight: 600;
            font-size: 24px;
        }

    .get-in-touch .contact-card h3 {
        margin-bottom: 10px;
        font-weight: 600;
    }

    .get-in-touch .nda-content span {
        font-size: 14px;
    }

    .get-in-touch .contact-card ul {
        padding: 0;
        list-style: none;
        margin: 40px 0 0;
    }

        .get-in-touch .contact-card ul span {
            font-weight: 700;
            color: var(--bright-yellow);
        }

        .get-in-touch .contact-card ul li {
            margin-bottom: 30px;
        }

.support-section {
    padding: 40px 0 120px;
    margin-bottom: 100px;
}

    .support-banner .container,
    .support-section .container {
        max-width: 1200px;
    }

    .support-section .contact-card h3 {
        font-size: 24px;
        font-weight: 600;
    }

    .support-section .contact-card {
        padding-right: 50px;
    }

        .support-section .contact-card .account-wrap {
            margin: 30px 0;
        }

    .support-section .account-wrap a {
        font-weight: 600;
        text-decoration: underline;
        margin-left: 10px;
        color: var(--bright-blue);
    }

.amc-form-wrap {
    padding: 20px;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 0 4px #0003;
    background: #fff;
}

    .amc-form-wrap h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .amc-form-wrap button {
        margin-top: 20px;
        display: inline-flex;
        width: auto;
    }

.e-shop-link a {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bright-blue);
    text-decoration: underline;
}

.new-support-form .form-group input,
.new-support-form .form-group select,
.new-support-form .form-group textarea {
    width: 100%;
}

.new-support-form h3 {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 20px;
    padding: 14px 50px;
    background: var(--bright-blue);
    border-radius: 10px 10px 0 0;
    color: var(--white);
    text-align: center;
}

.new-support-form {
    background: var(--white);
    box-shadow: 0 0 20px #0000001a;
    border-radius: 10px;
}

    .new-support-form .new-support-form-card {
        padding: 0 30px 30px;
    }

.get-in-touch .get-in-touch-list li svg {
    color: #e1f757;
}

.template-listing-section {
    padding: 40px 0 200px;
}

    .template-listing-section .container {
        max-width: 1200px;
    }

    .template-listing-section .template-card {
        padding: 30px 12px;
        box-shadow: 0 0 5px #0003;
        border-radius: 10px;
        height: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 16px;
    }

        .template-listing-section .template-card img {
            height: 50px;
            margin-bottom: 20px;
        }

        .template-listing-section .template-card h4 {
            margin-bottom: 0;
            font-size: 17px;
            font-weight: 600;
            margin-top: 10px;
        }

        .template-listing-section .template-card a {
            font-size: 14px;
            color: var(--bright-blue);
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease-in-out;
            width: max-content;
            margin: 0 auto;
        }

            .template-listing-section .template-card a:before {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0;
                height: 2px;
                background: var(--bright-blue);
                transition: 0.2s;
            }

            .template-listing-section .template-card a:hover:before {
                width: 100%;
            }

.faq-listing-section {
    padding: 40px 0 200px;
}

    .faq-listing-section .container {
        max-width: 1200px;
    }

    .faq-listing-section .right-content {
        padding: 20px;
        box-shadow: 0 0 4px #0003;
        border-radius: 15px;
    }

.case-study-banner {
    height: 550px;
}

.case-study-wrapper .casestudy-events {
    padding: 20px;
    height: 100%;
    background: 0 0;
    border-radius: 10px;
    border: 1px solid #ede9e9;
    position: relative;
}

    .case-study-wrapper .casestudy-events h3 {
        margin-bottom: 0;
        font-size: 20px;
        color: var(--black);
        margin-top: 10px;
    }

    .case-study-wrapper .casestudy-events img {
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .case-study-wrapper .casestudy-events > span {
        background: #000;
        display: inline-block;
        margin-bottom: 12px;
        color: #fff;
        padding: 1px 10px;
        border-radius: 4px;
        font-size: 12px;
    }

    .case-study-wrapper .casestudy-events .bottom-content span {
        color: #757575;
        font-size: 14px;
    }

    .case-study-wrapper .casestudy-events a {
        margin-top: 20px;
        display: inline-block;
        color: var(--bright-blue);
        text-decoration: underline;
    }

        .case-study-wrapper .casestudy-events a:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
        }

    .case-study-wrapper .casestudy-events .bottom-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .case-study-wrapper .casestudy-events > div {
        height: calc(100% - 84px);
    }

.ebook-section {
    padding: 80px 0 200px;
    background: #ededed;
}

.ebook-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
}

    .ebook-card .left-content {
        width: 150px;
    }

    .ebook-card .right-content {
        width: calc(100% - 170px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

        .ebook-card .right-content span {
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .ebook-card .right-content h3 {
            font-weight: 800;
            font-size: 18px;
            line-height: 20px;
            margin-top: 4px;
            margin-bottom: 20px;
        }

.ebook-section .event-list__row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
}

    .ebook-section .event-list__row .event-list__col {
        width: calc(33.33% - 20px);
    }

.ebook-card .left-content img {
    width: 150px;
    object-fit: contain;
    margin-top: -40px;
}

.ebook-card .get-a-link {
    padding: 4px 12px;
    width: auto;
    font-size: 14px;
}

.get-link-modal {
    border: none;
}

    .get-link-modal .modal-content {
        border: none;
        border-radius: 10px;
    }

    .get-link-modal .modal-header {
        font-weight: 700;
        font-size: 20px;
        padding: 10px 20px;
        background: var(--bright-blue);
        color: var(--white);
        text-align: center;
        justify-content: center;
        border-radius: 10px 10px 0 0;
    }

.our-clients-section {
    padding: 40px 0 200px;
}

    .our-clients-section .container {
        max-width: 1200px;
    }

    .our-clients-section .accordion-item {
        box-shadow: 0 0 4px #0003;
    }

    .our-clients-section .checkbox-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

        .our-clients-section .checkbox-list .form-group {
            width: calc(25% - 20px);
            margin-bottom: 0;
        }

    .our-clients-section .accordion-item .accordion-button {
        box-shadow: none;
        background: 0 0;
        color: var(--dark);
        font-weight: 600;
    }

    .our-clients-section .client-logo {
        padding: 40px 20px;
        height: 100%;
    }

    .our-clients-section .logo-wrap > div {
        border-bottom: 1px solid #eee;
        border-right: 1px solid #eee;
        transition: all 0.3s ease-in-out;
    }

    .our-clients-section .client-logo img {
        height: 60px;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }

    .our-clients-section .logo-wrap > div:hover {
        box-shadow: 0 0 16px 4px #00000014;
        border-color: transparent;
    }

.areas-we-serve {
    padding: 40px 0 200px;
}

    .areas-we-serve .indstry-card {
        padding: 30px 60px 30px 30px;
        background: var(--ultra-light-blue);
        border-radius: 1px;
    }

        .areas-we-serve .indstry-card.reversed > .row {
            flex-direction: row-reverse;
        }

        .areas-we-serve .indstry-card.reversed {
            padding: 30px 30px 30px 60px;
        }

        .areas-we-serve .indstry-card img {
            margin-top: -70px;
            margin-bottom: -70px;
            filter: drop-shadow(-15px 16px 25px #0000002b);
        }

        .areas-we-serve .indstry-card h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--PrimaryBlue);
            margin-bottom: 10px;
        }

        .areas-we-serve .indstry-card ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

            .areas-we-serve .indstry-card ul li {
                padding-left: 20px;
                position: relative;
                margin-bottom: 14px;
            }

                .areas-we-serve .indstry-card ul li:before {
                    content: "";
                    width: 12px;
                    height: 12px;
                    background: #a1aac3;
                    position: absolute;
                    left: 0;
                    top: 4px;
                    border-radius: 100%;
                }

                .areas-we-serve .indstry-card ul li:after {
                    content: "";
                    width: 6px;
                    height: 6px;
                    background: var(--PrimaryBlue);
                    position: absolute;
                    left: 3px;
                    top: 7px;
                    border-radius: 100%;
                }

                .areas-we-serve .indstry-card ul li:last-child {
                    margin-bottom: 0;
                }

    .areas-we-serve .industry-card-gap {
        margin-top: 140px;
    }

.contact-us-inner {
    padding-top: 50px;
    padding-bottom: 230px;
}

    .contact-us-inner .container {
        max-width: 1400px;
    }

    .contact-us-inner .contact-card h3 {
        font-weight: 800;
        margin-bottom: 12px;
        font-size: 24px;
        color: var(--PrimaryBlue);
    }

    .contact-us-inner .contact-address-wrap {
        padding-top: 30px;
        border-top: 1px solid #eee;
        margin-top: 30px;
    }

    .contact-us-inner .contact-address h4 {
        font-size: 18px;
        font-weight: 600;
    }

    .contact-us-inner .contact-address p {
        font-size: 14px;
    }

    .contact-us-inner .contact-address a {
        color: var(--bright-blue);
        font-weight: 600;
        text-decoration: underline;
    }

    .contact-us-inner .contact-address {
        margin-bottom: 30px;
    }

.contact-info-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .contact-info-card ul li {
        margin-bottom: 10px;
    }

        .contact-info-card ul li a {
            color: inherit;
        }

            .contact-info-card ul li a svg {
                color: var(--PrimaryBlue);
            }

.contact-us-inner .contact-card .contact-info-card h3 {
    font-size: 24px;
    color: var(--PrimaryBlue);
}

.seo-card-wrap .technology-partner-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.seo-card-wrap .technology-partner-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .seo-card-wrap .technology-partner-card ul li {
        position: relative;
        font-size: 14px;
        display: flex;
        gap: 10px;
        margin-bottom: 6px;
    }

        .seo-card-wrap .technology-partner-card ul li svg {
            position: relative;
            top: 5px;
        }

.partners-section .partners-image {
    box-shadow: 0 0 4px #0006;
    padding: 0 20px;
    border-radius: 8px;
}

.bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    background: #fff;
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 0 4px #00000080;
    display: none;
}

    .bottom-buttons .inner {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .bottom-buttons a {
        display: flex;
        flex-direction: column;
        gap: 5px;
        color: #000;
        width: 33.33%;
        text-align: center;
    }

        .bottom-buttons a svg {
            font-size: 16px;
        }

.awards-certificate {
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px dashed #d5d5d5;
}

    .awards-certificate .award-card {
        text-align: center;
    }

        .awards-certificate .award-card img {
            background: #eee;
            padding: 10px;
            width: 120px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .awards-certificate .award-card p {
            margin-bottom: 0;
            font-size: 14px;
            display: none;
        }

.testimonial-slider-2 .swiper-slide {
    height: unset;
}

.testimonial-slider-2 .testimonial-card-type-2 {
    height: 100%;
}

.our-work-slider-sec .content-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

    .our-work-slider-sec .content-wrapper .icon {
        width: 50px;
        height: 50px;
        padding: 8px;
        border-radius: 100%;
        background: #fff;
        border: 1px solid #b00;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .our-work-slider-sec .content-wrapper .name {
        font-size: 14px;
        font-weight: 600;
        line-height: 18px;
        width: calc(100% - 50px);
    }

.our-work-slider-sec .slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    background: #0648ef;
    border-radius: 100%;
    color: #fff;
}

    .our-work-slider-sec .slider-arrow.swiper-button-prev {
        left: 0;
    }

    .our-work-slider-sec .slider-arrow.swiper-button-next {
        right: 0;
    }

.our-work-slider-sec .swiper-wrapper {
    padding: 0 40px;
    margin: 0;
}

.our-work-slider-sec .slider-arrow:after {
    content: none;
}

.our-work-slider-sec .slider-arrow svg {
    width: 16px;
}

.our-work-slider-sec .work-category-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 12px;
}

    .our-work-slider-sec .work-category-wrap li {
        width: calc((100% / 7) - 12px);
        padding: 12px;
        background: #f2f2f2;
        border-radius: 5px;
        border: 1px solid transparent;
        cursor: pointer;
    }

        .our-work-slider-sec .work-category-wrap li:hover {
            border-color: #263f83;
            background: #eef2fd;
        }

.who-can-use .who-can-use-card {
    padding: 20px;
    height: 100%;
    border-radius: 14px;
    border: 1px dashed var(--dc-orange);
}

    .who-can-use .who-can-use-card h2 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
    }

.product-key-features .key-feature-card {
    padding: 30px;
    background: var(--white);
    box-shadow: 0 0 4px #0003;
    border-radius: 20px;
    border: 1px solid #e9ebf1;
}

    .product-key-features .key-feature-card ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .product-key-features .key-feature-card ul li {
            display: flex;
            align-items: flex-start;
            padding: 12px 0;
            gap: 10px;
            font-weight: 600;
            color: #000;
        }

            .product-key-features .key-feature-card ul li img {
                width: 24px;
            }

.custom-erp-card {
    padding: 20px;
    box-shadow: 0 0 4px #0003;
    transition: all 0.2s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    border-radius: 9px;
}

    .custom-erp-card p {
        margin-bottom: 0;
    }

.custom-erp-section {
    margin-top: 60px;
    border-top: 1px solid #f3f3f3;
    padding-top: 50px;
}

.key-benefits-erp-title {
    font-size: 20px;
    font-weight: 400;
}

.key-benefits-erp-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #d1c7b8;
}

.custom-erp-benefits-card {
    padding: 20px;
    color: inherit;
    display: block;
    box-shadow: 0 0 4px #fff3;
    transition: all 0.2s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    border-radius: 9px;
    color: var(--bs-link-hover-color);
    min-height: 158px;
    background-color: #020040;
}

.custom-erp-benefits-section {
    margin-top: 60px;
    border-top: 1px solid #f3f3f3;
    padding-top: 50px;
    justify-content: center;
    text-align: center;
}

.featured-in-section .featured-new-logos {
    padding: 0;
    margin: 0;
    display: flex;
    column-gap: 15px;
    padding: 0;
}

    .featured-in-section .featured-new-logos li {
        height: 70px;
        min-width: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        border: 1.376px solid #ddddddd4;
        background: #fff;
        padding: 10px;
    }

        .featured-in-section .featured-new-logos li img {
            height: 45px;
            object-fit: contain;
        }

.featured-in-section .featured-new-logos-wrapper {
    animation: slide_to_left 20s linear infinite;
}

    .featured-in-section .featured-new-logos-wrapper:hover {
        animation-play-state: paused;
    }

@keyframes slide_to_left {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.our-succes-story-2 .solution-case-study .swiper-pagination {
    margin-top: 0;
    position: relative;
    top: unset;
    bottom: unset;
}

.our-succes-story-2 .solution-case-study {
    padding-bottom: 30px;
}

.no-img-shadow {
    filter: none !important;
}

.hero-service-banner.text-center .breadcrumb-list {
    text-align: left;
}

.technology-tech-stack-list ul li .hire-tech-sprint {
    width: 26px;
    height: 26px;
    background-image: url(../images/home/hire-section-sprint.png);
    zoom: 0.6;
}

.technology-tech-stack-list ul li .bg-reactjs {
    width: 36px;
    height: 36px;
    background-position: -122px -70px;
}

.technology-tech-stack-list ul li .bg-android {
    width: 36px;
    height: 36px;
    background-position: -122px -70px;
}

.technology-tech-stack-list ul li .bg-angular {
    width: 36px;
    height: 36px;
    background-position: -182px -10px;
}

.technology-tech-stack-list ul li .bg-apple {
    width: 36px;
    height: 36px;
    background-position: -182px -66px;
}

.technology-tech-stack-list ul li .bg-aws {
    width: 36px;
    height: 36px;
    background-position: -10px -127px;
}

.technology-tech-stack-list ul li .bg-azure {
    width: 36px;
    height: 36px;
    background-position: -66px -127px;
}


.technology-tech-stack-list ul li .bg-dot_net {
    width: 36px;
    height: 36px;
    background-position: -238px -122px;
}

.technology-tech-stack-list ul li .bg-flutter {
    width: 36px;
    height: 37px;
    background-position: -126px -10px;
}

.technology-tech-stack-list ul li .bg-github {
    width: 36px;
    height: 36px;
    background-position: -10px -183px;
}


.technology-tech-stack-list ul li .bg-html5 {
    width: 36px;
    height: 36px;
    background-position: -234px -183px;
}

.technology-tech-stack-list ul li .bg-java {
    width: 36px;
    height: 36px;
    background-position: -294px -10px;
}


.technology-tech-stack-list ul li .bg-node_js {
    width: 36px;
    height: 36px;
    background-position: -294px -122px;
}

.technology-tech-stack-list ul li .bg-php {
    width: 36px;
    height: 36px;
    background-position: -294px -178px;
}
.technology-tech-stack-list ul li .bg-laravel {
    width: 36px;
    height: 36px;
    background-position: -294px -178px;
}

.technology-tech-stack-list ul li .bg-python {
    width: 36px;
    height: 40px;
    background-position: -10px -10px;
}

.technology-tech-stack-list ul li .bg-react_native {
    width: 36px;
    height: 36px;
    background-position: -66px -239px;
}


.technology-tech-stack-list ul li .bg-wordpress {
    width: 36px;
    height: 37px;
    background-position: -66px -70px;
}
.technology-tech-stack-list ul li .bg-google_cloud {
    width: 36px;
    height: 36px;
    background-position: -178px -183px;
}

.extra-keypoints {
    padding: 80px 0 0;
}


.inter-link {
    color: inherit;
    text-decoration: underline;
}

.inner-banner-image-section.dark-bg {
    background-color: #000;
}

.inner-banner-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

    .inner-banner-image img {
        height: 100%;
        width: 100%;
        object-position: center;
        object-fit: cover;
    }

.custom-erp-section {
    margin-top: 60px;
    border-top: 1px solid #f7efef82;
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

.custom-erp-card p {
    margin-bottom: 0;
}

.custom-erp-card {
    padding: 20px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    background: #fff;
    text-align: center;
    border-radius: 9px;
}

.why-choose-section-title h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.fs-20 {
    font-size: 20px;
}

/* New service-banner-section */
.service-banner-section {
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
    min-height: 85vh;
}

    .service-banner-section h1 {
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 58px;
    }

    .service-banner-section.dark h1, .service-banner-section.dark p, .service-banner-section.dark ul li {
        color: var(--white);
    }

    .service-banner-section .breadcrumb-list li a {
        font-size: 13px;
        display: flex;
        flex-wrap: nowrap;
        gap: 4px;
    }

    .service-banner-section .image img {
        max-height: 480px;
        display: block;
        margin-left: auto;
    }

    .service-banner-section .breadcrumb-list {
        margin-bottom: 14px;
    }

    .service-banner-section.dark .breadcrumb-list li:not(:last-child):before {
        border-color: #ffffff;
    }

    .service-banner-section .breadcrumb-list li a svg {
        margin-top: 4px;
    }


@media (min-width:1199px) {
    .text-center-lg {
        text-align: center !important;
    }
}

.stickyIcon {
    z-index: 90;
    position: fixed;
    top: 30%;
    right: 0;
    width: 140px;
    display: flex;
    flex-direction: column;
    margin-right: -80px
}

.stickyIcon ul {
    margin: 0;
    padding: 0
}

.stickyIcon ul li {
    list-style: none;
}

.stickyIcon a {
    transform: translate(94px, 0);
    transform: translate(13px, 0);
    border-radius: 50px 0 0 50px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    padding: 5px;
    font-size: 16px;
    transition: all .8s;
    display: flex;
    align-items: center;
    font-weight: 600
}

.stickyIcon a:hover {
    color: #fff;
    transform: translate(0, 0);
    transform: translate(-70px, 0)
}

.stickyIcon a:hover svg {
    transform: rotate(360deg)
}

.stickyIcon a span {
    background-color: #fff;
    height: 35px;
    width: 35px;
    color: #000;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 10px;
    transition: all .5s
}

.stickyIcon a span svg {
    width: 16px;
    height: 16px
}

.facebook a {
    background-color: #0865ff;
    color: #fff
}

.stickyIcon .facebook a span {
    color: #0865ff
}

.stickyIcon .twitter a {
    background-color: #000;
    color: #fff
}

.stickyIcon .twitter a span {
    color: #000
}

.stickyIcon .youtube a {
    background-color: #fa0910;
    color: #fff
}

.stickyIcon .youtube a span {
    color: #fa0910
}

.stickyIcon .instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff
}

.stickyIcon .instagram a span {
    color: #fa0910
}

.linkedin a {
    background-color: #027ba5;
    color: #fff
}

.stickyIcon .linkedin a span {
    color: #027ba5
}
.whatapp_btn {
    background: #01e675;
    width: 50px;
    height: 50px;
    color: #fff;
    position: fixed;
    left: 15px;
    bottom: 90px;
    cursor: pointer;
    z-index: 999;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .16), 0 3px 10px rgba(0, 0, 0, .16)
}

.whatapp_btn svg {
    width: 25px;
    height: 25px
}

.whatapp_btn:hover {
    color: #fff
}

.send_enquiry {
    border-radius: 40px;
    bottom: 30px;
    color: #fff;
    display: table;
    height: 50px;
    left: 15px;
    min-width: 50px;
    position: fixed;
    text-align: center;
    z-index: 9999;
    transition: all .2s linear;
    background: #0f7eb5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(15, 126, 181, .7);
    -webkit-animation: pulse 1.25s infinite cubic-bezier(.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(.66, 0, 0, 1)
}
@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0)
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0)
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0)
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0)
    }
}

.send_enquiry svg {
    width: 24px;
    height: 24px;
    line-height: 50px
}

.send_enquiry:hover {
    color: #fff;
    padding: 0 20px
}

.send_enquiry:focus {
    color: #fff
}

.send_enquiry span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -15px;
    opacity: 0;
    line-height: 50px;
    transition: all .5s;
    text-transform: uppercase
}

.send_enquiry:hover span {
    opacity: 1;
    letter-spacing: normal;
    padding-left: 10px
}
/*christmasScene*/
.christmasScene {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    position: relative;
    height: 32px;
}

.christmasScene::before {
    content: '';
    background: url("../img/top-snow-pattern.png");
    background-repeat: repeat-x;
    width: 100%;
    height: 35px;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
}

.topbar .container {
    z-index: 101;
}

.header.stricky-fixed .christmasScene::before {
    background-color: #012238;
}

.christmasScene2 {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
}

.christmasScene1 {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    pointer-events: none;
}

.snow-canvas {
    pointer-events: none;
    z-index: 9999;
    position: fixed !important;
    top: 0;
    left: 0;
}
/* --- About Us Section Styles --- */
.about-us-section {
    padding-top: calc(60px + (120 - 60) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-bottom: calc(2px + (120 - 60) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-right: 15px;
    padding-left: 15px;
    background: linear-gradient(180deg, #DFEAF4 0%, #FFF 44.23%);
}

.about-us-section .container {
    /* Default container styles are handled by Bootstrap */
}

.about-us-text {
    padding-right: 30px;
    /* Space between text and images on desktop */
}

.about-us-subtitle {
    color: #1C5A96;
    /* Blue color */
    font-family: Manrope;
    font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320))) !important;
    /* Responsive font size */
    font-weight: 600;
    margin-bottom: 8px;
}

.about-us-title {
    color: #393F44;
    /* Darker text color */
    font-family: Manrope;
    font-size: calc(24px + (36 - 24) * ((100vw - 320px) / (1920 - 320))) !important;
    /* Responsive font size */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.about-us-divider {
    border: none;
    border-top: 1px solid #c3c3c3;
    /* Thin grey line */
    margin-bottom: 20px;
    width: 80px;
    /* Adjust width as needed */
}

.about-us-text p {
    color: #464646;
    /* Paragraph text color */
    font-family: Manrope;
    font-size: 18px;
    /* Responsive font size */
    line-height: 1.5;
    margin-bottom: 15px;
}

.about-us-text ul {
    color: #464646;
    /* List item text color */
    font-family: Manrope;
    font-size: 18px;
    /* Responsive font size */
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
    /* Add padding for list bullets */
}

.about-us-text ul li {
    margin-bottom: 8px;
}

.about-us-stats {
    margin-top: 30px;
    /* Space above stats row */
}

.about-us-stat-number {
    color: #1C5A96;
    /* Blue color for numbers */
    font-family: Manrope;
    font-size: calc(18px + (32 - 18) * ((100vw - 320px) / (1920 - 320))) !important;
    /* Responsive font size */
    font-weight: 700;
    margin-bottom: 5px;
}

.about-us-stat-label {
    color: #464646;
    /* Text color for labels */
    font-family: Manrope;
    font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    /* Responsive font size */
}

.about-us-images .row {
    /* Uses Bootstrap's g-3 for gap */
}

.about-us-images img {
    display: block;
    /* Ensure images are block elements */
    width: 100%;
    /* Images take full width of their column */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 8px;
    /* Rounded corners for images */
    object-fit: cover;
    /* Cover the area without distortion */
}
.horizontal-line-style {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(0.25turn, #505050, rgb(216, 215, 215), rgba(255, 255, 255, 0));
    border-image-slice: 1;
    margin-top: -20px;
}
/* Responsive Adjustments */

/* Tablet and smaller (below 992px) */
@media (max-width: 991.98px) {
    .about-us-text {
        padding-right: 15px;
        /* Adjust padding for tablet */
        margin-bottom: 30px;
        /* Space below text before images */
    }
}

/* Mobile and smaller (below 576px) */
@media (max-width: 575.98px) {
    .about-us-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .about-us-text {
        padding: 0 !important;
        /* Remove padding on mobile */
    }

    .about-us-stats .col-6 {
        margin-bottom: 20px;
        /* Space between stats on mobile */
    }

    .about-us-images .col-6 {
        /* Images stack vertically on mobile due to Bootstrap grid */
        width: 100%;
        /* Ensure images take full width */
    }
}

/* ===============================
   COMMON SECTION STYLES
================================ */
.commonSection {
    padding: 70px 0;
}

.commonSection_header {
    text-align: center;
    margin-bottom: 60px;
}

.commonSection_title {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.blue-text {
    color: #1d6fe3;
}

.blue-border-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #20c997;
}

/* ===============================
   GET STARTED CARDS
================================ */
.getStarted {
    background: #f6f6f6;
}

.are-you-ready-card {
    position: relative;
    background: 
    border-radius: 12px;
    padding: 65px 25px 40px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.are-you-ready-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Number Circle */
.approachIcon.numberIcon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.approachIcon.numberIcon h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1d6fe3;
}

/* Card Content */
.fusion-text {
    text-align: center;
}

.fusion-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #131924;
    margin-bottom: 15px;
}

.fusion-text p {
    font-size: 18px;
    line-height: 1.5;
    color: #4b5563;
	font-family: Manrope;
}

/* Utility spacing */
.mar-top-20 {
    margin-top: 20px;
}

.mar-bot-10 {
    margin-bottom: 10px;
}

/* ===============================
   FLEXIBLE ENGAGEMENT SECTION
================================ */
.flexibleSec {
    background: #ffffff;
}

.flexibleSec__box {
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.flexibleSec__box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12) !important;
}

/* Card UI helpers */
.bg-white {
    background: #ffffff;
	
}

.rounded-10 {
    border-radius: 10px;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Icons */
.engagem-icon {
    margin-bottom: 20px;
}

.engagem-icon img {
    max-width: 60px;
}

/* Text styles */
.font-bd {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.flexibleSec__box p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

/* ===============================
   RESPONSIVE FIXES
================================ */
@media (max-width: 991px) {
    .commonSection_title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .are-you-ready-card,
    .flexibleSec__box {
        margin-bottom: 30px;
    }

    .kick-break {
        display: none;
    }
}

/* --- Styles for the New AI Services Section --- */
.ai-services-section {
    padding-top: calc(48px + (100 - 48) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-bottom: calc(48px + (100 - 48) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-left: 15px;
    padding-right: 15px;
    background: linear-gradient(140deg, #DFEAF4 13.61%, rgba(255, 255, 255, 0.20) 45.13%);
    /* Light background color */
}

.ai-services-section .container {
    /* Default container styles are likely handled by Bootstrap, if used */
}

.ai-services-section .ai-services-left {
    padding-right: 30px;
    /* Space between left text and right cards on desktop */
}

.ai-services-section .ai-services-left h2 {
    font-size: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320))) !important;
    /* Responsive heading size */
    color: #131924;
    /* Blue color for heading */
    margin-bottom: 15px;
    line-height: 1.3;
}

.ai-services-section .ai-services-left p {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
    /* Responsive paragraph size */
    color: #555;
    /* Adjust color */
    line-height: 1.6;
}

.ai-services-section .ai-services-right .row>div {
    margin-bottom: 20px;
    /* Space between service cards */
}

.ai-services-section .ai-service-card {
    border-radius: 12px;
    border: 1px solid #EBEBEB;
    background: linear-gradient(180deg, #FFF 58.91%, #F5F5F5 96.04%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    padding-top: calc(12px + (16 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-bottom: calc(12px + (16 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-left: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-right: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    gap: calc(11px + (15 - 11) * ((100vw - 320px) / (1920 - 320))) !important;

}


.ai-services-section .ai-service-card h3 {
    color: #595959;
    text-align: center;
    font-family: Manrope;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 0;
}

.ai-services-section .ai-service-card p {
    color: #131924;
    text-align: center;
    font-family: Manrope;
    font-size: calc(18px + (14 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 0;
}

/* --- Responsive Styles for AI Services Section --- */

/* Tablet and smaller screens */
@media (max-width: 992.98px) {

    .ai-services-section .ai-services-left h2,
    .ai-services-section .ai-services-left p {
        text-align: center;
        /* Ensure text is centered */
    }

    .ai-services-section .ai-services-right .row>div {
        margin-bottom: 15px;
        /* Adjust space between cards on tablet */
    }

    .ai-services-section .ai-service-card {
        padding: 20px;
        /* Adjust card padding for tablet */
        align-items: center;
        /* Center items in card on tablet */
        text-align: center;
        /* Center text in card on tablet */
    }

    .ai-services-section .ai-service-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    /* Card headings and paragraphs will adjust size based on fluid typography */
}

/* Mobile and smaller screens */
@media (max-width: 575.98px) {

    .ai-services-section .ai-services-left {
        margin-bottom: 30px;
        /* Adjust space below text on mobile */
    }

    .ai-services-section .ai-services-right .row>div {
        margin-bottom: 15px;
        /* Space between cards on mobile */
        padding: 0 !important;
    }

    .ai-services-section .ai-service-card {
        padding: 15px;
        /* Adjust card padding for mobile */
    }

    .ai-services-section .ai-service-card img {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }

    /* Card headings and paragraphs will adjust size based on fluid typography */
}

/* --- End AI Services Section Styles --- */





