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

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

body {
    font-size: 14px;
    line-height: 20px;
    color: #7B7B7B;
    font-family: "Google Sans", sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1460px;
    padding: 0 20px;
    margin: 0 auto;
}

header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all ease-in-out 0.8s;
    background: #fff;
    top: 0;
}

header.scroll {
    box-shadow: 0px 4px 14px 0px rgba(168, 168, 168, 0.25);
}

header.hidden {
    transform: translateY(-100%);
}

header .header-contact a {
    padding: 6px 18px 6px 6px;
    background-color: #00A0DE;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    gap: 8px;
    font-weight: 600;
}

header .header-contact a img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    filter: grayscale(1);
}

header nav {
    justify-content: space-between;
    display: flex;
    align-items: center;
    position: relative;
}

header nav .logo img {
    display: block;
    max-height: 54px;
}

header nav .menu ul li {
    list-style: none;
}

.menu {
    border-radius: 50px;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    display: flex;
    position: relative;
}

.menu>ul {
    display: flex;
    align-items: center;
}

.menu ul {
    color: #323232;
}

.menu ul a {
    text-decoration: none;
    color: inherit;
}

.menu ul a.primary-btn {
    color: #00A0DE;
}

.menu>ul>li {
    padding: 5px;
}

.menu>ul>li>p,
.menu>ul>li>a {
    padding: 10px 20px;
    transition: all ease-in-out .2s;
    border-radius: 50px;
    position: relative;
    font-size: 16px;
    display: block;
}

.menu>ul>li:hover>p,
.menu>ul>li:hover>a {
    color: #fff;
}

.menu>ul>li>p svg,
.menu>ul>li>a svg {
    transform-origin: 50% 8px;
    transition: all ease-in-out .2s;
}

.menu>ul>li:hover>p svg,
.menu>ul>li:hover>a svg {
    transform: rotate(180deg);
}

.menu>ul>li:hover>p svg path {
    stroke: #fff;
}

.dropdown-menu-wrap {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    opacity: 0;
    padding: 22px 0;
    visibility: hidden;
    transition: all ease-in-out .3s;
    z-index: 9;
}

.dropdown-menu-inner {
    padding: 5px;
    background: linear-gradient(135deg, rgb(206 237 249) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    position: relative;
}

.menu>ul>li:hover>p+.dropdown-menu-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

.dropdown-menu li a {
    padding: 10px;
    transition: all ease-in-out 0.2s;
    border-radius: 50px;
    display: block;
    white-space: nowrap;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
}

.has-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    transform: translateY(50px);
    padding: 22px 0;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out .3s;
    z-index: 9;
}


.mega-menu-wrap {
    background: linear-gradient(135deg, rgb(206 237 249) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 30px;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    row-gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.mega-menu-box {
    max-width: calc(33.33% - 27px);
    width: 100%;
    font-size: 16px;
    line-height: 22px;
}

.mega-menu-box .mega-menu-title {
    color: #00A0DE;
    padding-bottom: 15px;
    border-bottom: solid 1px #00a0de;
    margin-bottom: 20px;
    border-image: linear-gradient(to right, #00a0de 0%, rgba(255, 255, 255, 0) 90%) 1;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mega-menu-box li {
    margin: 15px 0;
}

.mega-menu-box li:last-child {
    margin-bottom: 0;
}

.mega-menu-box li:first-child {
    margin-top: 0;
}

.mega-menu .mega-menu-box a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.mega-menu .mega-menu-box li p {
    font-size: 13px;
    color: #838383;
    font-weight: 400;
}

.tag-badge {
    font-size: 11px;
    color: #fff;
    background-color: #00a0de;
    padding: 3px 8px;
    border-radius: 15px;
    display: block;
    line-height: 16px;
}

.logo,
.header-contact {
    min-width: 140px;
}

.mega-menu-contact {
    width: 100%;
    padding: 25px;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex: 1 1 0px;
}

.primary-btn {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding-left: 25px;
    gap: 15px;
    background-color: #E2F5FC;
    color: #00A0DE;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    flex-shrink: 0;
    border: none;
    font-family: inherit;
}

.primary-btn span {
    display: block;
    padding: 15px;
    border-radius: 50%;
    background-color: #00A0DE;
    overflow: hidden;
}

.primary-btn svg {
    display: block;
    height: 18px;
    width: auto;
}

.primary-btn:hover svg {
    animation: lineUp 1s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.3s;
}

@keyframes lineUp {
    0% {
        transform: translate(-35px, 35px);
    }

    100% {
        transform: translate(60px, -60px);
    }
}

.mega-menu-contact p {
    color: #00A0DE;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding-bottom: 5px;
}

.mega-menu-contact span {
    color: #838383;
}

.menu>ul>li.has-dropdown>p:before,
.menu>ul>li.has-megamenu>p:before {
    content: '';
    display: block;
    position: absolute;
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #d1edf8;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    top: calc(100% + 18px);
    border-radius: 3px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .3s;
}

.menu>ul>li.has-dropdown:hover>p:before,
.menu>ul>li.has-megamenu:hover>p:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

.mega-menu-contact-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.menu-back {
    display: none;
}

.menu-back svg {
    width: 14px;
    height: auto;
}

.menu-contact-icon svg {
    width: 46px;
    height: auto;
}

#menu-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #00A0DE;
    border-radius: 50px;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease;
}

.softpulse-hero-wrap {
    background: #00A0DE;
    background: linear-gradient(175deg, rgba(0, 160, 222, .05) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.softpulse-hero-wrap::before {
    content: '';
    position: absolute;
    left: 70.4225%;
    bottom: 12.9577%;
    height: 800px;
    width: 800px;
    border-radius: 50%;
    background-color: rgba(120, 217, 255, 0.90);
    filter: blur(100px);
    z-index: -1;
}

.hero-headline {
    padding: 60px 60px 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.hero-review {
    padding: 10px 16px;
    border-radius: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 20px;
}

.hero-review p {
    color: #2b2b2b !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    font-size: 14px !important;
    line-height: 18px !important;
    max-width: 190px;
    text-align: right;
    margin-left: auto;
    padding-bottom: 0 !important;

}

.hero-review p:not(:last-child) {
    padding-right: 10px;
}

.hero-review p:not(:last-child):after {
    height: 100%;
    width: 1px;
    left: 100%;
    background-color: #D8D8D8;
    content: '';
    position: absolute;
    top: 0;
}

.hero-headline h1 {
    font-size: 50px;
    line-height: 1.24;
    letter-spacing: -1%;
    color: #3A3A3A;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-left {
    max-width: 63.0769%;
    width: 100%;
}

.hero-headline h1 span {
    background: #00A0DE;
    background: linear-gradient(90deg, rgba(0, 160, 222, 1) 0%, rgba(0, 86, 120, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-headline .hero-sub-text {
    color: #626262;
    font-size: 16px;
    line-height: 26px;
    max-width: 630px;
}

.hero-client li {
    height: 50px;
    width: 50px;
    list-style: none;
    border-radius: 100%;
    overflow: hidden;
    border: solid 2px #fff;
    margin: 0;
    padding: 0;
}

.hero-client li img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-client ul {
    display: flex;
}

.hero-client {
    gap: 4px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.hero-client li:not(:first-child) {
    margin-left: -20px;
}

.hero-client span {
    color: #2B2B2A;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.hero-right {
    padding-bottom: 30px;
}

.hero-right p {
    color: #2B2B2A;
    font-size: 14px;
    line-height: 18px;
    max-width: 190px;
    text-align: right;
    margin-left: auto;
}

.hero-partner ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 120px;
}

.hero-partner ul li svg {
    display: block;
}

.hero-video-wrap {
    padding: 0 60px 60px;
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 50px;
}

.hero-video {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-partner {
    padding-top: 40px;
}

.hero-video-main {
    border-radius: 16px;
    overflow: hidden;
    width: 49.6153%;
    position: relative;
    z-index: 1;
}

.hero-video video {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-video-overlay {
    background-color: rgba(0, 0, 0, 0.55);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
}

.hero-video-overlay svg {
    width: 50px;
    height: 50px;
}

.hero-video-overlay svg path {
    fill: #fff;
}

.hero-video-overlay svg:last-child {
    display: none;
}

.hero-video-bg-shape {
    display: block;
    position: absolute;
    right: 36%;
    top: 55%;
    z-index: 0;
    max-width: 40vw;
}

.hero-video-bg-shape img {
    display: flex;
    width: 100%;
}

.hero-video.video-clone {
    border-radius: 40px !important;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

.softpulse-hero .container {
    position: relative;
}

.portfolio {
    margin: 100px 0;
}

.portfolio .portfolio-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
}

.portfolio-img-box {
    gap: 50px;
    display: flex;
    flex-direction: column;
}

.portfolio-img-box.small-images {
    width: 18.0327%;
}

.portfolio-img-box.medium-images {
    width: 19.6721%;
}

.portfolio-img-box.big-images {
    width: 21.3114%;
}

.portfolio-img-box .portfolio-img {
    padding-bottom: 122.7272%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.portfolio-img-box .portfolio-img>img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.portfolio-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 160, 222, 1) 100%);
    padding: 20px;
}

.portfolio-img-overlay a {
    color: #fff;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    justify-content: space-between;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.portfolio-img-overlay svg {
    flex-shrink: 0;
}

.portfolio-img-box .portfolio-img:hover .portfolio-img-overlay {
    opacity: 1;
}

.portfolio-img-overlay img {
    max-width: 150px;
    display: block;
    height: auto;
    margin: auto;
}

.portfolio-main-img {
    z-index: 9;
}

.title-badge {
    display: flex;
    align-items: center;
    gap: 3px;
    border: solid 1px #1A547C;
    border-radius: 50px;
    padding: 9px 16px;
    margin-bottom: 10px;
    width: fit-content;
}

.title-badge p {
    font-size: 14px;
    line-height: 20px;
    color: #1A547C;
}

.title-badge svg {
    width: 22px;
    height: auto;
    display: block;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 80px;
}

.section-title h2 {
    font-size: 50px;
    line-height: 1.24;
    letter-spacing: -1%;
    text-align: center;
    color: #3A3A3A;
}

.section-title h2 span {
    background: linear-gradient(90deg, rgba(0, 160, 222, 1) 0%, rgba(0, 86, 120, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
}

.our-services {
    margin: 100px 0;
    position: relative;
}

.our-services-wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 80px;
}

.service-box-big {
    max-width: calc(50% - 10px);
    width: 100%;
}

.service-box-img {
    border-radius: 16px;
    position: relative;
    padding-bottom: 75%;
    margin-bottom: 25px;
    overflow: hidden;
    background-color: #f5fcff;
}

.service-box-img img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-box-content h3 {
    font-size: 22px;
    line-height: 28px;
    padding-bottom: 10px;
    color: #3A3A3A;
    font-weight: 600;
}

.service-box-content p {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 25px;
}

.link-btn {
    font-size: 14px;
    line-height: 20px;
    color: #00A0DE;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border-bottom: solid 1px #00A0DE;
    width: fit-content;
}

.service-box-small {
    max-width: calc(33.33% - 14px);
    width: 100%;
}

.additional-title {
    text-align: center;
    margin: 80px 0;
}

.additional-title h2 {
    background: linear-gradient(90deg, rgba(0, 160, 222, 1) 0%, rgba(0, 86, 120, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
    font-size: 50px;
    line-height: 1.24;
    letter-spacing: -1%;
    font-weight: normal;
}

.additional-services {
    max-width: 1220px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    background: #fff;
}

.additional-service-box {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(90deg, rgba(0, 160, 222, .05) 0%, rgba(0, 86, 120, .01) 100%);
    border-radius: 8px;
    max-width: calc(33.33% - 24px);
    position: relative;
    z-index: 1;
}

.additional-service-box .additional-service-icon {
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 74px;
    width: 74px;
}

.additional-service-content {
    max-width: calc(100% - 84px);
}

.additional-service-content p {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -2%;
    color: #3A3A3A;
    padding-bottom: 6px;
    font-weight: 600;
}

.additional-service-content a {
    display: block;
    text-decoration: none;
}

.services-bg-shape {
    position: absolute;
    bottom: 0;
    left: -200px;
    z-index: -1;
    max-width: 40vw;
}

.services-bg-shape img {
    width: 100%;
    display: block;
}

.services-bg-shape.top {
    top: 0;
    right: 0;
    left: unset;
    z-index: -1;
}

.plus-partner {
    position: relative;
    text-align: center;
}

.plus-partner .plus-partner-img {
    position: relative;
    z-index: 2;
}

.plus-partner .plus-partner-marquee,
.softpulse-marquee {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.plus-partner .plus-partner-marquee .marquee,
.softpulse-marquee .marquee {
    margin: 0;
    white-space: nowrap;
    display: flex;
    width: max-content;
}

.plus-partner .plus-partner-marquee .marquee+.marquee {
    margin-top: 10px;
    opacity: 0.35;
}

.plus-partner .plus-partner-marquee .marquee span,
.softpulse-marquee .marquee span {
    display: inline-block;
    padding-right: 60px;
    font-size: 140px;
    line-height: 140px;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    color: rgba(0, 160, 222, 0.1);
}

.plus-partner .plus-partner-marquee .marquee-two,
.softpulse-marquee .marquee-two {
    filter: blur(1px);
}

.ai-agent {
    margin: 100px 0;
    overflow: hidden;
}

.agent-wrap {
    display: flex;
    gap: 30px;
    will-change: transform;
    width: 100%;
}

.agent-wrap .agent-box {
    background: linear-gradient(135deg, rgba(0, 160, 222, .10) 0%, rgba(0, 86, 120, 0) 100%);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(33.33% - 20px);
}

.agent-wrap .agent-box .agent-img {
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agent-wrap .agent-box .agent-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.agent-content h3 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -2%;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3A3A3A;
    padding-bottom: 10px;
}

.agent-content h3 svg {
    width: 26px;
    height: auto;
    display: block;
}

.agent-content h3 svg path {
    stroke: #3A3A3A;
    stroke-width: 2px;
}

.agent-content {
    margin-top: 30px;
}

.ai-agent ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
}

.ai-agent ul li svg {
    width: 60px;
    height: auto;
    filter: grayscale(1);
    transition: all ease-in-out .2s;
}

.ai-agent ul li {
    display: flex;
}

.ai-agent ul li:hover svg {
    filter: grayscale(0);
}

.ai-agent .primary-btn {
    margin: 100px auto 0;
}

.expertise-wrap {
    display: flex;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(230, 245, 252, 1) 100%);
    border-radius: 20px;
    gap: 120px;
    align-items: center;
}

.expertise-img {
    background: linear-gradient(135deg, rgba(0, 160, 222, 0.20) 30%, rgba(0, 160, 222, 0.05) 66%);
    border-radius: 50px;
}

.expertise-img img {
    display: block;
}

.expertise-content h3 {
    font-size: 30px;
    line-height: 38px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2B2B2A;
}

.expertise-content>p {
    color: #7B7B7B;
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 35px;
}

.expertise-content ul {
    list-style: none;
}

.expertise-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

.expertise-content ul li svg {
    flex-shrink: 0;
}

.expertise-content ul li span {
    font-size: 18px;
    line-height: 26px;
}

.expertise .services-bg-shape {
    position: absolute;
    right: -5.4166%;
    top: -62px;
    z-index: -1;
}

.expertise {
    position: relative;
    margin: 100px 0;
}

.our-numbers {
    margin: 100px 0;
}

.cross-box {
    display: flex;
    align-items: center;
    padding: 20px 21px;
    border: solid 1px rgba(0, 160, 222, .15);
    border-radius: 100px;
}

.cross-box svg {
    display: block;
}

.number-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.number-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 45px;
    background-color: rgba(0, 160, 222, 0.05);
    border-radius: 100px;
}

.number-box h3 {
    font-size: 50px;
    line-height: 1.24;
    letter-spacing: -1%;
    color: #00A0DE;
}

.number-box p {
    font-size: 14px;
    line-height: 18px;
    color: #8F8F8F;
}

.white-numbers.number-box {
    background: linear-gradient(135deg, rgba(0, 160, 222, 1) 41%, rgba(255, 255, 255, 1) 100%);
}

.white-numbers.number-box h3,
.white-numbers.number-box p {
    color: #fff;
}

.industries-wrap {
    border-radius: 20px;
    background-color: rgba(0, 160, 222, .05);
    padding: 50px 0;
}

.industries-img {
    display: flex;
    padding: 50px;
    justify-content: center;
}

.industries-wrap .section-title {
    padding-bottom: 0;
}

.industries-slider .swiper-slide {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 8px;
    gap: 10px;
    padding: 15px;
}

.industries-slider .swiper-slide .industries-icon {
    background-color: rgba(0, 160, 222, .10);
    border-radius: 6px;
    padding: 21px;
}

.industries-slider .swiper-slide .industries-icon svg {
    display: block;
    width: 32px;
    height: auto;
}

.industries-slider .swiper-slide .industries-icon svg path {
    fill: #00A0DE;
}

.industries-slider {
    padding: 0 50px;
}

.industries-wrap .primary-btn {
    margin: 50px auto 0;
}

.industries-slider .industries-name h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -2%;
    color: #2B2B2A;
    padding-bottom: 6px;
}

.industries-slider .industries-name h4 a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.featured-apps-box {
    display: flex;
    justify-content: space-between;
    padding: 50px 50px 0;
    gap: 50px;
    background: linear-gradient(135deg, rgba(0, 160, 222, 0.05) 41%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    margin-bottom: 50px;
}

.featured-apps {
    margin: 100px 0;
}

.featured-apps-box-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

.featured-apps-box-content h3 {
    margin-top: auto;
    padding-bottom: 15px;
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(0, 160, 222, 1) 0%, rgba(0, 86, 120, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
}

.featured-apps-box-content>p {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 30px;
}

.featured-apps-box:before {
    content: '';
    position: absolute;
    left: 70%;
    top: 50%;
    height: 800px;
    width: 800px;
    border-radius: 50%;
    background-color: rgba(120, 217, 255, 0.90);
    filter: blur(100px);
    z-index: -1;
}

.featured-apps-box:nth-child(2):before {
    left: unset;
    right: 70%;
}

.featured-apps-box {
    position: relative;
    overflow: hidden;
}

.featured-apps-box-img img {
    display: block;
}

.review-title {
    max-width: 33.33%;
    width: fit-content;
    text-align: left;
}

.review-title .section-title {
    align-items: flex-start;
}

.review-title .section-title h2 {
    text-align: left;
}

.review .section-title {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 164px;
}

.review .review-ratting-star {
    justify-content: unset;
}

.comment-toast {
    position: absolute;
    padding: 8px 15px;
    border-radius: 50px;
    background-color: #FFEAE8;
    top: 20px;
    right: 0;
    transform: rotate(-15deg);
    z-index: -1;
}

.comment-toast p {
    font-size: 13px;
    line-height: 18px;
    color: #3A3A3A;
}

.comment-toast.yellow {
    background-color: #FFF9E5;
    bottom: 40px;
    top: unset;
    left: 20px;
    transform: rotate(3.6deg);
    right: unset;
}

.comment-toast.green {
    background-color: #ECFFE6;
    top: 100%;
    left: 0;
    right: unset;
    transform: rotate(0deg);
}

.comment-toast.blue {
    background-color: #E6EFFF;
    transform: rotate(15deg);
    top: 100%;
    right: -70px;
}


.review-client {
    gap: 10px;
    display: flex;
    align-items: center;
}

.review-client ul {
    display: flex;
}

.review-client li {
    height: 50px;
    width: 50px;
    list-style: none;
    border-radius: 100%;
    overflow: hidden;
    border: solid 2px #fff;
    margin: 0;
    padding: 0;
}

.review-client li img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.review-client li:not(:first-child) {
    margin-left: -20px;
}

.review-ratting {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.review-ratting-star {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.review-ratting p {
    color: #2B2B2A;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    padding-right: 5px;
}

.review-ratting span {
    font-size: 15px;
    line-height: 20px;
}

.review-list {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 66.66%;
    width: 100%;
    padding-left: 90px;
    margin-left: auto;
    position: relative;
}

.review-wrap {
    display: flex;
    align-items: center;
}

.review-list .client-image {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.review-list .client-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.review-list .client-info p {
    font-size: 16px;
    line-height: 22px;
    color: #626262;
    font-weight: 600;
}

.review-list .client-info {
    text-align: center;
}

.client-text ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 auto;
    justify-content: center;
}

.review-slider .swiper-slide {
    max-width: 410px;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 160, 222, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 16px;
    height: auto !important;
}

.review-slider .swiper-slide hr {
    border: 0;
    height: 1px;
    margin: 15px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(211, 211, 211, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.review-slider .swiper-slide .client-text {
    text-align: center;
}

.review-slider .swiper-slide .client-text p {
    font-size: 16px;
    line-height: 22px;
    color: #626262;
    padding-top: 10px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-slider .swiper-slide .client-text ul li svg {
    display: block;
}

.review-slider {
    height: 100vh;
    overflow: hidden;
}

.review-list::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 3;
    left: 0;
}

.review-list::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 3;
    left: 0;
}

.brand-marquee-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Fade edges */
.brand-marquee-wrap::before,
.brand-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.brand-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.brand-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    gap: 60px;
}

.marquee-track ul {
    display: flex;
    align-items: center;
    gap: 100px;
    list-style: none;
    margin: 0;
}

.marquee-track li img {
    display: block;
    height: 30px;
    width: auto;
}

.brand-marquee {
    margin: 100px 0;
}

.contact-us {
    margin: 100px 0;
}

.contact-us .contact-us-wrap {
    background-color: #00A0DE;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.contact-us .title-badge {
    border-color: #fff;
    margin-bottom: 25px;
}

.contact-us .title-badge p {
    color: #fff;
}

.contact-us .section-title h2 {
    color: #fff;
}

.contact-us .section-title {
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 25px;
}

.contact-us .primary-btn {
    margin: 0 auto;
    background-color: #fff;
    border: solid 1px #fff;
}

.contact-us-wrap .shape {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 30vw;
}

.contact-us-wrap .shape img {
    width: 100%;
    display: flex;
}

.contact-us-wrap:before {
    content: '';
    position: absolute;
    left: unset;
    left: -34.0140%;
    top: 85px;
    height: 800px;
    width: 800px;
    border-radius: 50%;
    background-color: rgba(120, 217, 255, 0.90);
    filter: blur(70px);
    z-index: 1;
}

.case-study {
    margin: 100px 0;
}

.case-study-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
}

.cas-study-article.featured {
    grid-row: span 3;
}

.case-study-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.case-study-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: flex;
}

.case-study-content span {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #00A0DE;
    display: block;
    padding-bottom: 8px;
}

.case-study-content h3 a {
    text-decoration: none;
    color: #3A3A3A;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.case-study-content ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.case-study-content ul li {
    padding: 6px 12px;
    font-size: 13px;
    line-height: 16px;
    display: block;
    background-color: #EFFBFF;
    border-radius: 20px;
    color: #00A0DE;
    margin-bottom: 15px;
}

.case-study-content p {
    font-size: 15px;
    line-height: 20px;
}

.cas-study-article {
    margin-bottom: 40px;
}

.cas-study-article:not(.featured) {
    display: flex;
    gap: 15px;
}

.cas-study-article:not(.featured) .case-study-img {
    width: 50%;
}

.cas-study-article:not(.featured) .case-study-content {
    width: 60%;
    padding: 10px 0;
}

.cas-study-article:not(.featured) .case-study-content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

footer {
    padding: 220px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(0, 160, 222, 1) 30%);
}

.footer-about {
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    max-width: calc(33.33% - 20px);
    width: 100%;
}

.footer-about p {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, .6);
    padding-bottom: 5px;
    font-weight: 300;
}

.footer-about a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 16px;
    line-height: 22px;
}

.footer-about .social-media p {
    padding-bottom: 10px;
}

.footer-about ul {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}

.footer-about .social-media ul {
    gap: 8px;
    justify-content: unset;
}

.footer-about .social-media ul li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
    transition: all ease-in-out 0.2s;
}

.footer-about .social-media ul li:hover {
    background-color: rgba(255, 255, 255, 1);
}

.footer-about .social-media ul li svg path {
    transition: all ease-in-out 0.2s;
}

.footer-about .social-media ul li:hover svg path {
    fill: #00A0DE;
}

.footer-about .social-media ul li svg {
    display: block;
}

.footer-wrap {
    gap: 50px;
    display: flex;
    align-items: flex-start;
}

.softpulse-marquee {
    position: unset;
    padding: 100px 0;
    transform: unset;
}

.softpulse-marquee .marquee span {
    font-size: 200px;
    line-height: 145px;
    font-weight: 700;
}

.footer-link {
    display: flex;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 50px;
}

.quick-link p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    padding-bottom: 15px;
    color: #fff;
}

.quick-link ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-link ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 22px;
    display: block;
    transition: all ease-in-out 0.2s;
}

.quick-link ul li a:hover {
    color: rgba(255, 255, 255, 1);
}

.quick-link.recognized {
    width: 100%;
}

.quick-link.recognized ul {
    flex-direction: row;
    gap: 40px;
}

.quick-link.recognized ul li img {
    display: block;
}

#smooth-wrapper {
    padding-top: 94px;
}

.softpulse-marquee-inner {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.highlight-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle var(--m-radius, 0px) at var(--m-x, 0px) var(--m-y, 0px),
            black 0%,
            transparent 100%);
    mask-image: radial-gradient(circle var(--m-radius, 0px) at var(--m-x, 0px) var(--m-y, 0px),
            black 0%,
            transparent 100%);
}

.softpulse-marquee-inner .marquee span {
    color: rgba(255, 255, 255, 0.1);
}

.softpulse-marquee .marquee.highlight-text span {
    color: #fff;
}

.plus-partner-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.plus-partner-wrap .left-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: calc(50% - 5px);
    width: 100%;
}

.plus-partner-wrap .left-box .developer-list {
    background: linear-gradient(135deg, rgba(0, 160, 222, 1) 0%, rgba(255, 255, 255, 1) 85%);
    padding: 30px 25px 25px;
    border-radius: 20px;
}

.plus-partner-wrap .left-box .developer-list h2 {
    font-size: 30px;
    line-height: 34px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 20px;
}

.right-box {
    max-width: calc(50% - 5px);
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.developer-list .developers-team {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding: 20px 0;
}

.contact-developer {
    padding: 30px;
    border: solid 1px rgba(0, 160, 222, 0.2);
    border-radius: 20px;
    background-color: #fff;
}

.contact-developer h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    padding-bottom: 5px;
    color: #00A0DE;
}

.contact-developer p {
    font-size: 14px;
    line-height: 20px;
    color: #A7A7A7;
    padding-bottom: 25px;
}

.contact-developer a {
    margin: 0 auto;
}

/* New Hero 1 */
.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.softpulse-hero-1 {
    padding-top: 80px;
    border-top: 1px solid #D8D8D8;
}

.hero-content .hero-review {
    border: solid 1px #DFDFDF;
}

.softpulse-hero-1 .hero-headline {
    padding: 0;
    display: block;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-brand ul {
    display: flex;
    gap: 35px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-img img {
    max-width: 100%;
}

.hero-brand {
    margin-top: 70px;
}

.hero-content .hero-title {
    max-width: 1000px;
}

.hero-brand ul img {
    display: flex;
    max-width: 100%;
}

/* Hero 2 */
.softpulse-hero-2 .hero-client {
    justify-content: flex-end;
    margin: 0;
    flex-wrap: wrap;
    max-width: 300px;
}

.softpulse-hero-2 .hero-client p {
    max-width: 200px;
    text-align: right;
}

.softpulse-hero-2 .hero-headline {
    padding: 0;
    gap: 0;
}

.softpulse-hero-2 .hero-headline h1 {
    margin-bottom: 0;
}

.softpulse-hero-2 .hero-headline .hero-sub-text {
    text-align: left;
}

.softpulse-hero-2 {
    margin: 80px 0 100px;
}

.softpulse-hero-2 .hero-video-wrap {
    padding: 0;
    align-items: center;
    margin-top: -30px;
}

.softpulse-hero-2 .hero-right {
    padding: 0;
    max-width: 320px;
    position: relative;
}

.softpulse-hero-2 .hero-left {
    max-width: 45%;
}

.softpulse-hero-2 .hero-video-main {
    width: 44%;
    margin-left: auto;
}

.softpulse-hero-2 .hero-video-wrap .hero-video-bg-shape {
    top: -200px;
    bottom: auto;
    right: 16%;
}

.softpulse-hero-2 .hero-shape {
    position: absolute;
    top: auto;
    bottom: 120%;
}

.mobile-menu {
    display: none;
}

.mega-menu-box.split-mega-menu {
    max-width: 100%;
}

.mega-menu-box.split-mega-menu ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.swiper-pagination {
    position: unset;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    height: 6px;
    width: 6px;
    opacity: 0.1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #00A0DE;
    opacity: 1;
}

.industries-slider .swiper-pagination {
    display: none;
    margin-top: 20px;
}

.mobile-only {
    display: none;
}

body:after {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 160, 222, 0.50);
    top: 0;
    left: 0;
    content: '';
    z-index: 9;
    transition: all ease-in-out 0.3s;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

body.menu-open:after {
    opacity: 1;
    visibility: visible;
}

.page-hero-title {
    padding: 130px 0 0;
    text-align: center;
    max-width: 630px;
    margin: 0 auto;
    position: relative;
}

.our-team-slider {
    padding-top: 130px;
}

.page-hero-title h1 {
    font-size: 50px;
    line-height: 1.24;
    letter-spacing: -1%;
    background: #00A0DE;
    background: linear-gradient(90deg, rgba(0, 160, 222, 1) 0%, rgba(0, 86, 120, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 20px;
}

.page-hero-title p {
    color: #626262;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    padding-bottom: 50px;
}

.page-hero-title .primary-btn {
    margin: 0 auto;
}

.page-hero-title .page-hero-bg-color {
    background-color: rgba(120, 217, 255, 0.9);
    height: 400px;
    width: 400px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    filter: blur(100px);
    left: 100%;
    z-index: -1;
}

.page-hero-title .page-hero-bg-shape {
    position: absolute;
    bottom: 0;
    right: 75.2%;
    z-index: -1;
}

.our-team-swiper .swiper-slide .team-member-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all ease-in-out 0.3s;
}

.our-team-swiper .swiper-slide {
    max-width: 260px;
    width: 100%;
    margin-right: 25px;
    text-align: center;
}

.our-team-swiper .swiper-slide .team-member-image {
    position: relative;
    padding-bottom: 116.92%;
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.our-team-swiper .swiper-slide h3 {
    font-size: 18px;
    line-height: 22px;
    color: #8F8F8F;
    padding-bottom: 2px;
    font-weight: 400;
    transition: all ease-in-out 0.3s;
}

.our-team-swiper .swiper-slide p {
    font-size: 14px;
    line-height: 18px;
    color: #8F8F8F;
    transition: all ease-in-out 0.3s;
}

.our-team-swiper .swiper-slide .team-member-card:hover .team-member-image img {
    filter: grayscale(0);
}

.our-team-swiper .swiper-slide .team-member-card:hover h3 {
    color: #00A0DE;
}

.our-team-swiper .swiper-slide .team-member-card:hover p {
    color: #000;
}

.visionaries {
    margin: 130px 0;
}

.section-title.left-align {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
}

.section-title.left-align h2 {
    text-align: left;
}

.visionaries .visionaries-img ul {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    list-style: none;
}

.visionaries .visionaries-img ul li {
    width: 100%;
    text-align: center;
    max-width: calc(20% - 5px);
}

.visionaries .visionaries-img ul li svg {
    max-width: 100%;
    display: block;
    height: auto;
}

.visionaries .visionaries-img ul li .owner-image {
    padding-bottom: 100%;
    position: relative;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.visionaries .visionaries-img ul li .owner-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(100%);
    transition: all ease-in-out 0.3s;
}

.visionaries .visionaries-img ul li:hover .owner-image img {
    filter: grayscale(0);
}

.visionaries .visionaries-img ul li h3 {
    font-size: 18px;
    line-height: 22px;
    color: #8F8F8F;
    font-weight: 400;
    transition: all ease-in-out 0.3s;
}

.visionaries .visionaries-img ul li:hover h3 {
    color: #00A0DE;
}

.visionaries .visionaries-img ul li p {
    font-size: 14px;
    line-height: 20px;
    color: #8F8F8F;
    transition: all ease-in-out 0.3s;
}

.visionaries .visionaries-img ul li:hover .p {
    color: #000;
}

.visionaries .visionaries-content {
    text-align: right;
    max-width: 680px;
    margin-left: auto;
    padding-top: 60px;
}

.visionaries .visionaries-content h3 {
    padding-bottom: 15px;
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(0, 160, 222, 1) 0%, rgba(0, 86, 120, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
}

.visionaries .visionaries-content p {
    font-size: 18px;
    line-height: 26px;
    color: #7B7B7B;
}

.visionaries .container {
    position: relative;
}

.visionaries .container .visionaries-bg-shape {
    position: absolute;
    top: -20%;
    right: 0;
    z-index: -1;
}

.contact-form-main {
    margin: 130px 0;
}

.contact-form-main .section-title>p {
    padding-top: 15px;
    font-size: 16px;
    line-height: 24px;
    color: #7B7B7B;
    max-width: 580px;
}

.contact-form-main .section-title {
    padding-bottom: 35px;
}

.contact-form-main .contact-form-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form-main .contact-form-content {
    max-width: calc(50% - 10px);
    width: 100%;
    position: relative;
}

.contact-form-main .contact-details .contact-detail-item {
    margin-bottom: 15px;
}

.contact-form-main .contact-details span {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 4px;
    display: block;
}

.contact-form-main .contact-details a {
    font-size: 18px;
    line-height: 26px;
    color: #00A0DE;
    text-decoration: none;
    display: block;
}

.contact-form {
    padding: 50px;
    background-color: #F2FAFD;
    border-radius: 20px;
    max-width: calc(50% - 10px);
    width: 100%;
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 30px;
}

.contact-form form .form-group {
    flex: 0 0 calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.contact-form form .form-group.full-width {
    flex: 0 0 100%;
}

.contact-form .form-group label {
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    padding-bottom: 8px;
    display: block;
}

.contact-form .form-group input {
    padding: 15px;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    background-color: #ffffff;
    border: solid 1px rgba(0, 160, 222, 0.15);
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    width: 100%;
}

.contact-form .form-group textarea {
    padding: 15px;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    background-color: #ffffff;
    min-height: 120px;
    resize: vertical;
    border: solid 1px rgba(0, 160, 222, 0.15);
    border-radius: 8px;
    font-family: inherit;
    outline: none;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #8F8F8F;
    font-family: inherit;
}

.contact-form form .primary-btn {
    margin: 20px auto 0;
}

.contact-form-bg-shape {
    position: absolute;
    bottom: -40%;
    right: -10%;
    z-index: -1;
}

.inside-softpulse .inside-softpulse-img {
    border-radius: 20px;
}

.inside-softpulse .inside-softpulse-img img {
    width: 100%;
    height: auto;
    display: block;
}

.inside-softpulse .primary-btn {
    margin: 60px auto;
}

.inside-softpulse {
    margin: 130px 0;
}

.phone-input {
    display: flex;
    align-items: center;
    background: #fff;
    overflow: visible;
    position: relative;
    border: solid 1px rgba(0, 160, 222, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.country-selector {
    flex-shrink: 0;
    height: 100%;
}

.cs-trigger {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 10px 0 12px;
    height: 100%;
    background: none;
    border: none;
    border-right: solid 1px rgba(0, 160, 222, 0.15);
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.cs-trigger:hover {
    background: #f5f5f5;
}

.cs-flag {
    font-size: 18px;
    font-family: "Noto Color Emoji", sans-serif;
}

.cs-code {
    font-size: 14px;
    line-height: 18px;
    color: #555;
    min-width: 36px;
    font-family: inherit;
}

.cs-caret {
    transition: transform 0.15s;
    transform-origin: inherit;
}

.cs-caret svg {
    max-width: 8px;
    height: auto;
    display: block;
}

.cs-caret.open {
    transform: rotate(180deg);
}

.cs-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow: hidden;
    display: none;
}

.cs-dropdown.open {
    display: block;
}

.cs-search-wrap {
    border-bottom: 1px solid #eee;
}

.contact-form .form-group input.cs-search {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 13px;
    outline: none;
}

.cs-list {
    max-height: 220px;
    overflow-y: auto;
}

.cs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 13px;
}

.cs-item:hover,
.cs-item.active {
    background: #f5f5f5;
}

.cs-item-flag {
    font-size: 18px;
    flex-shrink: 0;
    font-family: "Noto Color Emoji", sans-serif;
}

.cs-item-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cs-item-code {
    font-size: 12px;
    color: #aaa;
    flex-shrink: 0;
}

.cs-empty {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.phone-number-input {
    flex: 1;
    height: 42px;
    border: none;
    background: none;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.contact-form .form-group .phone-input input {
    border: none;
}

.page-hero-title .hero-review {
    border: solid 1px #DFDFDF;
    margin-left: auto;
    margin-right: auto;
}

.our-apps {
    margin: 130px 0;
}

.our-apps .app-list-grid {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
}

.our-apps .app-list-grid .app-list-item {
    max-width: calc(33.33% - 20px);
    width: 100%;
    padding: 30px;
    background: linear-gradient(to bottom, #f2fafd, #f6fbfe, #fafcff, #fdfdff, #ffffff) padding-box,
        linear-gradient(to bottom, rgba(0, 160, 222, 0), rgba(0, 160, 222, 0.1)) border-box;
    border-radius: 20px;
    border: solid 1px transparent;
    display: flex;
    flex-direction: column;
}

.our-apps .app-img-wrap {
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    width: max-content;
    border: solid 1px #ebebeb;
}

.our-apps .app-img-wrap img {
    max-width: 66px;
    height: auto;
    display: block;
}

.our-apps .app-review {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
}

.our-apps .app-review p {
    color: #626262;
}

.our-apps .app-review .app-review-star {
    display: flex;
    align-items: center;
    gap: 2px;
}

.app-list-item h3 {
    font-size: 20px;
    line-height: 26px;
    color: #4c4c4c;
    padding-bottom: 8px;
    font-weight: 600;
}

.our-apps .app-review .app-review-star svg {
    display: block;
    height: 16px;
    width: auto;
}

.our-apps .app-content {
    font-size: 15px;
    line-height: 20px;
    color: #8D8D8D;
}

.our-apps .connect-app {
    padding-top: 27px;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bg-btn {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    gap: 6px;
    width: max-content;
    background-color: #F0F0F0;
    padding: 8px 18px;
    border-radius: 20px;
}

.link-small-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #8D8D8D;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: solid 1px #8D8D8D;
}

.link-small-btn:hover {
    color: #000;
    border-color: #000;
}

.link-small-btn:hover svg path {
    stroke: #000;
}

.our-apps .additional-title {
    position: relative;
}

.our-apps .additional-title .bg-shape {
    position: absolute;
    right: 0;
    bottom: -50%;
    z-index: -1;
}

.faq {
    position: relative;
    margin: 130px 0;
}


.faq-accordion {
    position: relative;
    max-width: 940px;
    margin: 0 auto;
    height: auto;
}

.faq-accordion .accordion-box {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #F2FAFD;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: auto;
    background: linear-gradient(#F2FAFD, #F2FAFD) padding-box,
        linear-gradient(to bottom, rgba(0, 160, 222, 0.5), #ffffff) border-box;
    border: solid 1px transparent;
}

.faq-accordion .accordion-box .accordian-title {
    padding: 20px 50px 20px 30px;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: flex;
    align-items: center;
    font-weight: normal;
    color: #000;
    position: relative;
}

.faq-accordion .accordion-box .accordian-title:after {
    content: '';
    display: block;
    position: absolute;
    height: 14px;
    width: 2px;
    border-radius: 5px;
    background-color: #00A0DE;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-accordion .accordion-box .accordian-title.active:after {
    display: none;
}

.faq-accordion .accordion-box .accordian-title:before {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 14px;
    border-radius: 5px;
    background-color: #00A0DE;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-accordion .accordian-content {
    padding: 0 30px 20px;
    display: none;
}

.faq-accordion .accordian-content p {
    font-size: 15px;
    line-height: 22px;
    margin: 0;
    color: #626262;
}

.faq .bg-shape {
    left: 0;
    top: -20%;
    position: absolute;
    z-index: -1;
}

#globe-container {
    position: relative;
}

.globe-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 6px 8px;
    background: #00A0DE;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0, 160, 222, 0.35);
    transform: translateY(-150%);
    position: relative;
    pointer-events: none;
}

.globe-label .country {
    display: block;
    font-size: 10px;
    opacity: 0.9;
}

.globe-detail .additional-service-box .additional-service-icon svg {
    width: auto;
    height: 100%;
    display: block;
}

.globe-detail .additional-service-box .additional-service-icon {
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.globe-detail .additional-title {
    margin-bottom: 0;
}

.sapp-hero-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.sapp-hero-headline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 60px 110px;
}

.sapp-hero-details {
    display: flex;
    flex-direction: column;
    max-width: 63.0769%;
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.sapp-title-badge {
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
    gap: 30px;
}

.sapp-hero-review {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 16px;
    background-color: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 50px;
}

.sapp-hero-review::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    width: 1px;
    height: 30px;
    background-color: #D8D8D8;
    margin: auto;
}

.sapp-hero-review p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #3A3A3A;
    font-weight: 500;
}

.sapp-hero-review p:not(:last-child) {
    padding-right: 10px;
}

.sapp-hero-review p:not(:last-child):after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 1px;
    height: 100%;
    background-color: #D8D8D8;
}

.sapp-hero-headline h1 {
    font-size: 50px;
    line-height: 1.24;
    letter-spacing: -1%;
    color: #3A3A3A;
    font-weight: 700;
    max-width: 820px;
    margin: 0 auto 20px;
}

.sapp-hero-headline h1 span {
    background: #00A0DE;
    background: rgba(0, 160, 222, 1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sapp-hero-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 50px;
    text-align: center;
    flex-wrap: wrap;
    max-width: 630px;
}

.sapp-hero-content p:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background-color: #7B7B7B;
    border-radius: 50%;
    margin: auto 0;
}

.sapp-hero-content p {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #7B7B7B;
    padding-right: 18px;
}

.sapp-hero-client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 30px;
}

.sapp-hero-client ul {
    display: flex;
}

.sapp-hero-client li {
    width: 50px;
    height: 50px;
    border: solid 2px #fff;
    border-radius: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.sapp-hero-client li:not(:first-child) {
    margin-left: -20px;
}

.sapp-hero-client li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sapp-hero-client span {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #2B2B2A;
}

.sapp-hero-button-center {
    display: flex;
    justify-content: center;
}

.sapp-apps-bg-shape {
    display: flex;
    gap: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.sapp-apps-bg-shape span {
    display: inline-block;
    background: linear-gradient(180deg, rgba(0, 160, 222, 0.05) 0%, rgba(0, 160, 222, 0.01) 90%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 20px;
    width: 25%;
    height: 100%;
}


/* trusted section */
.sapp-trust-section {
    padding: 30px 90px 60px;
    margin-bottom: 70px;
    background-position: bottom;
    background-size: 16px 1.5px;
    background-repeat: repeat-x;
}

.sapp-trust-section .sapp-trust-title {
    text-align: center;
    color: #B7B7B7;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 40px;
}

.sapp-trust-section .sapp-trust-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.sapp-trust-section .sapp-trust-grid .sapp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.sapp-trust-section .sapp-trust-grid .sapp-trust-item .sapp-logo-box {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sapp-trust-section .sapp-trust-grid .sapp-trust-item img {
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain
}

.sapp-trust-section .sapp-trust-grid .sapp-trust-item p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #7B7B7B;
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sapp-trust-section .sapp-trust-grid .sapp-trust-item p span {
    display: block;
}

.sapp-trust-section .sapp-trust-item p .sa-star-wrapper {
    display: inline-block;
}

.sapp-trust-section .sapp-trust-item p .sa-star-wrapper svg {
    display: block;
    width: 14px;
    height: auto;
}

.sapp-trust-section .sapp-trust-item p .sapp-trust-check-icon {
    display: inline-block;
}

.sapp-trust-section .sapp-trust-item p .sapp-trust-check-icon svg {
    display: block;
    width: 26px;
    height: auto;
}

/* our solution section */
.sapp-solutions-section {
    padding: 0 0 60px;
    background-color: #ffffff;
}

.sapp-solutions-section .sapp-solutions-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
}

.sapp-solutions-section .sapp-solution-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sapp-solutions-section .sapp-solution-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sapp-solutions-section .sapp-solution-img-wrapper svg {
    display: block;
    height: auto;
}

.sapp-solutions-section .sapp-solution-col .sapp-solution-card {
    background: linear-gradient(180deg, rgba(0, 160, 222, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 10px;
    position: relative;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sapp-solutions-section .sapp-solution-card .sapp-icon-box {
    width: 54px;
    height: 54px;
    background-color: #00a0de;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 10px;
}

.sapp-solutions-section .sapp-solution-card .sapp-icon-box svg {
    display: block;
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

.sapp-solutions-section .sapp-solution-card .sapp-solution-card-title {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 10px;
}

.sapp-solutions-section .sapp-solution-card p {
    font-size: 14px;
    line-height: 20px;
    color: #7b7b7b;
    font-weight: 400;
    margin: 0;
}


/* Industries scetion */
.section-title-left {
    align-items: flex-start;
    padding: 0;
    margin: 0 0 30px;
}

.section-title-left h2 {
    text-align: left;
    font-weight: 600;
    margin: 0 0 15px;
}

.sapp-iwt-section {
    padding: 60px 0 150px;
    overflow: hidden;
}

.sapp-iwt-section .container {
    position: relative;
}

.sapp-iwt-section .sapp-iwt-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 155px;
}

.sapp-iwt-section .sapp-iwt-desc {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: #7B7B7B;
    margin: 0;
}

.sapp-iwt-section .sapp-iwt-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.sapp-iwt-section .sapp-iwt-feature-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #2b2b2b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sapp-iwt-section .sapp-iwt-feature-list li span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #00A0DE;
}

.sapp-iwt-section .sapp-iwt-feature-list li span svg {
    display: block;
    width: 10px;
    height: auto;
}

.sapp-iwt-section .sapp-iwt-content {
    width: 48.2394366197%;
    margin-top: 31px;
}

.sapp-iwt-section .sapp-iwt-images-wrapper {
    position: relative;
    width: 40.8450704225%;
    margin-left: auto;
    padding-left: 100px;
}

.sapp-iwt-section .sapp-iwt-main-image {
    aspect-ratio: 1/1;
}

.sapp-iwt-section .sapp-iwt-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.sapp-iwt-section .sapp-iwt-badge {
    position: absolute;
    top: 30px;
    left: 35px;
    background: #2B2B2B;
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    border-radius: 10px;
}

.sapp-iwt-section .sapp-iwt-badge h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.sapp-iwt-section .sapp-iwt-badge span {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.sapp-iwt-section .sapp-iwt-sub-image {
    position: absolute;
    bottom: -40px;
    top: auto;
    left: 0;
    width: 238px;
    height: 200px;
}

.sapp-iwt-section .sapp-iwt-sub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 16px;
}

.sapp-iwt-section .sapp-iwt-sub-image img::after {
    content: "";
    position: absolute;
    inset: 2px;
    border: 1px dashed #DEDEDE;
    pointer-events: none;
}

.sapp-iwt-bg-shape {
    display: block;
    position: absolute;
    right: 36%;
    top: 31%;
    z-index: 0;
    max-width: 40vw;
}

.sapp-iwt-bg-shape img {
    display: flex;
    width: 100%;
}

/* services-section */
.sapp-services-section {
    padding: 0 0 130px;
    position: relative;
    overflow: hidden;
}

.sapp-services-section .section-title {
    padding-bottom: 70px;
}

.sapp-services-section .sapp-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.sapp-services-section .sapp-services-card {
    background: #383838;
    padding: 25px;
    transition: 0.3s ease;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: linear-gradient(90deg, rgba(0, 160, 222, 0.2) 0%, rgba(0, 160, 222, 0) 100%);
    border-radius: 16px;
}

.sapp-services-section .sapp-services-grid .sapp-services-card:nth-child(1),
.sapp-services-section .sapp-services-grid .sapp-services-card:nth-child(2) {
    grid-column: span 3;
}

.sapp-services-section .sapp-services-icon {
    width: 60px;
    height: 60px;
    background: #00a0de;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s ease;
    border-radius: 10px;
}

.sapp-services-section .sapp-services-icon svg {
    display: block;
    width: 30px;
    height: auto;
    color: #fff;
    transition: 0.3s ease;
}

.sapp-services-section .sapp-services-card .sapp-services-content h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #323232;
    margin: 0 0 10px;
}

.sapp-services-section .sapp-services-card .sapp-services-content p {
    color: #7b7b7b;
    margin: 0;
}

.sapp-services-section .sapp-services-card ul {
    list-style: none;
    margin: 10px 0 0;
}

.sapp-services-section .sapp-services-card ul li {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #323232;
    position: relative;
    padding-left: 26px;
}

.sapp-services-section .sapp-services-card ul li:last-child {
    margin-bottom: 0;
}

.sapp-services-section .sapp-services-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M13.6747 2.28821C13.2415 1.85448 12.5381 1.85475 12.1044 2.28821L5.03702 9.35588L1.89587 6.21476C1.46213 5.78102 0.759044 5.78102 0.325304 6.21476C-0.108435 6.6485 -0.108435 7.35158 0.325304 7.78532L4.25157 11.7116C4.46831 11.9283 4.7525 12.037 5.03672 12.037C5.32094 12.037 5.6054 11.9286 5.82213 11.7116L13.6747 3.85875C14.1084 3.42531 14.1084 2.72193 13.6747 2.28821Z' fill='%23323232'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* additional services */
.sapp-services-additional {
    margin-top: 80px;
}

.sapp-services-additional .sapp-services-additional-title {
    font-size: 50px;
    line-height: 62px;
    font-weight: 400;
    letter-spacing: -1%;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, rgba(0, 160, 222, 1) 0%, rgba(26, 84, 124, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sapp-services-additional .sapp-services-additional-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sapp-services-additional .sapp-services-additional-card {
    padding: 25px;
    position: relative;
    background: linear-gradient(90deg, rgba(0, 160, 222, 0.1) 0%, rgb(255 255 255 / 0%) 100%);
    border: 1px solid rgba(0, 160, 222, 0.15);
    border-radius: 10px;
}

.sapp-services-additional .sapp-services-additional-card h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #323232;
    margin: 0 0 10px;
}

.sapp-services-additional .sapp-services-additional-card p {
    line-height: 18px;
    color: #7b7b7b;
    margin: 0;
}

.sapp-services-additional .sapp-services-additional-badge-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.sapp-services-additional .sapp-services-additional-badge-wrapper .sapp-services-additional-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 4px 0px #00000033;
    padding: 8px 15px;
    border-radius: 50px;
}

.sapp-services-additional .sapp-services-additional-badge-wrapper .sapp-services-additional-badge svg {
    display: block;
    width: 22px;
    height: auto;
}

.sapp-services-additional .sapp-services-additional-badge-wrapper .sapp-services-additional-badge span {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #00a0de;
}

.sapp-services-additional .sapp-services-additional-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #00a0de;
    z-index: 10;
    border-radius: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M12.0249 4.94168L17.0832 10L12.0249 15.0583' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.9165 10H16.9415' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.sapp-services-bg-shape {
    position: absolute;
    max-width: 40vw;
    bottom: -26%;
    right: 6%;
    left: unset;
    z-index: -1;
    top: auto;
    pointer-events: none;
}

.sapp-services-bg-shape img {
    width: 100%;
    display: block;
}

/* work slider section */
.sapp-work-lists {
    padding: 0 0 30px 50px;
    overflow: hidden;
}

.sapp-work-lists .swiper .swiper-wrapper {
    align-items: center;
}

.sapp-work-lists .sapp-work-card {
    text-align: center;
}

.sapp-work-lists .sapp-work-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
}

.sapp-work-lists .sapp-work-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.sapp-work-lists .sapp-work-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.about-us-portfolio-slider .swiper-wrapper {
    align-items: flex-end;
    padding-left: 20px;
}

.about-us-portfolio-slider .swiper-slide {
    width: 300px;
}

.about-us-portfolio-slider .slider-img img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: auto;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.about-us-portfolio {
    margin-top: 130px;
    position: relative;
}

.about-us-portfolio:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    display: block;
    background: #78D9FFE5;
    filter: blur(100px);
    right: 10%;
    border-radius: 50%;
    top: -40%;
    z-index: -1;
}

.journey-section {
    margin-top: 130px;
    position: relative;
}

.journey-section .section-title {
    align-items: flex-start;
}

.journey-section .section-title h2 {
    text-align: left;
}

.journey-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 70px;
}

.journey-image,
.journey-content {
    flex: 0 0 calc(50% - 35px);
}

.journey-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

.journey-avatars {
    display: flex;
    list-style: none;
    padding-bottom: 15px;
}

.journey-avatars li {
    display: flex;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: solid 2px #fff;
}

.journey-avatars li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-avatars li:not(:first-child) {
    margin-left: -10px;
}

.journey-content h3 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(0, 160, 222, 1) 0%, rgba(0, 86, 120, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
    padding-bottom: 20px;
}

.journey-content p {
    font-size: 16px;
    line-height: 1.5;
}

.journey-section .bg-shape {
    position: absolute;
    top: -15%;
    right: 15%;
    max-width: 40vw;
    z-index: -1;
}

.journey-section .bg-shape img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story {
    margin-top: 130px;
}

.about-story-img {
    flex: 0 0 43.662%;
    position: relative;
}

.about-story-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 20px;
}

.about-story .expertise-content {
    flex: 0 0 48%;
}

.about-story-img .img-grid-item img {
    width: 100%;
    display: flex;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
}

.about-story-img .img-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "top tall" "bottom tall";
}

.about-story-img .img-grid-item.item-top {
    grid-area: top;
}

.about-story-img .img-grid-item.item-bottom {
    grid-area: bottom;
}

.about-story-img .img-grid-item.item-tall {
    grid-area: tall;
}

.about-story .expertise-content ul li span {
    color: #3A3A3A;
}

.about-story-img:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    display: block;
    border-radius: 100%;
    top: 40%;
    left: -20%;
    background: #78D9FFE5;
    filter: blur(100px);
    z-index: -1;
}

.our-mission {
    margin-top: 130px;
}

.our-mission-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-end;
    margin-top: -80px;
    position: relative;
}

.inner-left {
    flex: 0 0 63.381%;
}

.inner-right {
    flex: 0 0 30.282%;
}

.left-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-icon {
    display: flex;
    width: 200px;
    height: 200px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    flex-shrink: 0;
    background: #00A0DE0D;
    box-shadow: 0px 0px 2px 0px #00A0DE80;
    padding: 30px;
}

.mission-icon span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 100%;
    box-shadow: 0px 0px 2px 0px #00A0DE80;
}

.mission-info h3 {
    font-size: 30px;
    line-height: 1.27;
    font-weight: 500;
    color: #000000;
    padding-bottom: 20px;
}

.mission-info p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.right-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
}

.mission-item {
    padding: 30px;
    background: linear-gradient(118.64deg, rgba(0, 160, 222, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
}

.mission-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #00A0DE;
    margin-bottom: 15px;
    line-height: 1.375;
}

.mission-item p {
    font-size: 16px;
    line-height: 1.375;
    font-weight: 400;
    color: #626262;
}

.our-mission .section-title {
    align-items: flex-start;
    padding: 0;
}

.our-mission .section-title h2 {
    text-align: left;
}

.our-mission-inner .bg-shape {
    position: absolute;
    top: 65%;
    left: 0;
    display: flex;
    max-width: 40vw;
    z-index: -1;
}

.our-mission-inner .bg-shape img {
    max-width: 100%;
}


@media (max-width: 1480px) {
    .number-box {
        padding: 15px 25px;
    }

    .cross-box {
        padding: 14px;
    }

    .cross-box svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 1199px) {

    .hero-headline h1,
    .section-title h2,
    .number-box h3,
    .additional-title h2 {
        font-size: 40px;
    }

    .hero-partner ul li svg {
        max-height: 28px;
    }

    .hero-partner ul {
        gap: 20px;
        margin-bottom: 40px;
    }

    .hero-video-wrap {
        padding: 0 50px 50px;
        gap: 40px;
    }

    .hero-headline {
        padding: 50px 50px 0;
    }

    .hero-video-bg-shape {
        right: 25%;
        top: 60%;
    }

    .hero-video-bg-shape img {
        width: 100%;
        height: 100%;
    }

    .expertise-wrap {
        gap: 60px;
    }

    .expertise-img img {
        width: 100%;
    }

    .expertise-wrap .expertise-content {
        max-width: 50%;
    }

    .section-title {
        padding-bottom: 60px;
    }

    .our-services-wrap {
        row-gap: 60px;
    }

    .additional-title {
        margin: 60px 0;
    }

    .ai-agent .primary-btn {
        margin: 80px auto 0;
    }

    .industries-img img {
        width: 100%;
    }

    .cross-box svg {
        width: 35px;
        height: 35px;
    }

    .number-box {
        padding: 12px 18px;
    }

    .cross-box {
        padding: 8px;
    }

    .ai-agent ul {
        gap: 45px;
        flex-wrap: wrap;
    }

    .ai-agent ul li svg {
        width: 50px;
    }

    .featured-apps-box-img img {
        max-width: 100%;
    }

    .featured-apps-box-img {
        flex: 0 0 50%;
    }

    .review .section-title {
        margin-bottom: 120px;
    }

    .cas-study-article {
        margin-bottom: 20px;
    }

    .footer-about .social-media ul li svg {
        width: 20px;
        height: 20px;
    }

    .footer-about .social-media ul li {
        padding: 8px;
    }

    .footer-link {
        max-width: 66%;
    }

    .menu>ul>li>p,
    .menu>ul>li>a {
        padding: 8px 15px;
    }

    .expertise-content>p,
    .expertise-content ul li span {
        font-size: 16px;
        line-height: 24px;
    }

    .expertise-content ul li svg {
        width: 22px;
        height: 22px;
    }

    .expertise-content ul li {
        padding-bottom: 15px;
    }

    .portfolio-img-overlay a {
        font-size: 16px;
        line-height: 22px;
    }

    .portfolio-img-box .portfolio-img {
        border-radius: 20px;
    }

    .portfolio-img-box,
    .portfolio .portfolio-wrap {
        gap: 40px;
    }

    .services-bg-shape img {
        width: 100%;
    }

    .services-bg-shape {
        max-width: 45vw;
    }

    .our-team-swiper .swiper-slide {
        max-width: 210px;
        margin-right: 20px;
    }

    .our-team-swiper .swiper-slide .team-member-image {
        border-radius: 10px;
    }

    .our-team-swiper .swiper-slide h3 {
        font-size: 14px;
        line-height: 18px;
    }

    .our-team-swiper .swiper-slide p {
        font-size: 12px;
        line-height: 18px;
    }

    .page-hero-title h1 {
        font-size: 44px;
        line-height: 1.24;
    }

    .page-hero-title {
        padding: 100px 0 0;
    }

    .our-team-slider {
        padding-top: 100px;
    }

    .visionaries {
        margin: 100px 0;
    }

    .contact-form-main {
        margin: 100px 0;
    }

    .contact-form {
        padding: 30px;
    }

    .inside-softpulse {
        margin: 100px 0;
    }

    .visionaries .visionaries-content h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .visionaries .visionaries-content p {
        font-size: 16px;
        line-height: 22px;
    }

    .visionaries .visionaries-content {
        max-width: 50%;
    }

    .our-apps .app-img-wrap img {
        max-width: 56px;
    }

    .app-list-item h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .our-apps .app-content {
        font-size: 14px;
        line-height: 18px;
    }

    .our-apps .connect-app {
        padding-top: 25px;
    }

    .our-apps .app-list-grid {
        gap: 20px;
    }

    .our-apps {
        margin: 100px 0;
    }

    .faq .bg-shape {
        max-width: 50%;
    }

    .faq .bg-shape img {
        max-width: 100%;
    }

    .faq .bg-shape {
        top: -30%;
    }

    .our-apps .app-list-grid .app-list-item {
        max-width: calc(33.33% - 14px);
        padding: 20px;
    }

    .our-apps .additional-title .bg-shape {
        max-width: 50%;
        bottom: -300%;
    }

    .our-apps .additional-title .bg-shape img {
        max-width: 100%;
    }

    .sapp-hero-headline {
        padding: 80px 60px;
    }

    .sapp-hero-headline h1 {
        font-size: 40px;
        max-width: 680px;
    }

    .sapp-hero-content {
        margin: 0 auto 40px;
    }

    .sapp-services-additional .sapp-services-additional-title {
        font-size: 40px;
    }

    .sapp-services-section .section-title {
        padding-bottom: 60px;
    }

    .faq {
        margin: 100px 0;
    }

    .about-us-portfolio-slider .swiper-slide {
        width: 250px;
    }

    .journey-inner {
        gap: 20px 50px;
    }

    .journey-image,
    .journey-content {
        flex: 0 0 calc(50% - 25px);
    }

    .journey-section .bg-shape {
        right: 5%;
    }
}

@media (max-width: 991px) {
    body {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
    }

    header {
        padding: 15px 0;
    }

    header.nav-open {
        transform: translateY(0);
        background-color: rgb(206 237 249);
    }

    header .header-contact a {
        padding: 6px 12px 6px 6px;
        font-size: 14px;
        gap: 6px;
    }

    header .header-contact a img {
        height: 24px;
        width: 24px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        padding: 8px;
        border-radius: 30px;
        cursor: pointer;
        background: #00a0de;
        position: relative;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease-in-out;
        z-index: 999;
    }


    .menu {
        position: fixed;
        top: var(--header-h, 74px);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-h, 74px));
        overflow: hidden;
        border-radius: 0;
        transform: translateX(-105%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
        z-index: 1001;
        background: linear-gradient(180deg, rgb(206 237 249) 0%, rgba(255, 255, 255, 1) 100%);
        padding: 20px 0px;
        justify-content: unset;
    }

    header.nav-open .menu {
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    header.nav-open+.menu-overlay {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .menu>ul {
        display: block;
        width: 100%;
    }

    .menu>ul>li {
        padding: 5px 0;
    }

    .menu>ul>li.has-megamenu,
    .menu>ul>li.has-dropdown {
        border-bottom: 1px solid #e8f9ff;
    }

    .menu>ul>li>p,
    .menu>ul>li>a {
        padding: 10px 16px;
        border-radius: 12px;
        font-size: 15px;
        display: inline-block;
    }

    .menu>ul>li>p {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
    }

    .menu>ul>li:hover>p,
    .menu>ul>li:hover>a {
        background-color: transparent;
        color: inherit;
    }

    .menu>ul>li>p>svg,
    .menu>ul>li>a>svg {
        transition: transform 0.2s ease-in-out;
    }

    .menu>ul>li>p svg,
    .menu>ul>li>a svg {
        transform-origin: 50% 7px;
    }

    .menu>ul {
        transition: transform 0.35s ease;
        height: 100%;
    }

    .menu.submenu-open>ul {
        transform: translateX(-100%);
    }

    .mega-menu,
    .dropdown-menu-wrap {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        transform: translateX(100%);
        transition: all 0.35s ease;
        z-index: 2;
        padding: 0;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .menu>ul>li.has-megamenu p svg,
    .menu>ul>li.has-dropdown p svg {
        transform: rotate(270deg) !important;
    }

    li.open>.mega-menu,
    li.open>.dropdown-menu-wrap {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        padding: 0 15px;
    }

    .menu-back {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 15px 0;
        font-weight: 500;
        cursor: pointer;
    }

    .dropdown-menu-inner {
        box-shadow: none;
        background: #fff;
    }

    .dropdown-menu li a {
        white-space: normal;
    }

    .menu-toggle__bars,
    .menu-toggle__close {
        transition: all 0.35s ease;
    }

    .menu-toggle__bars {
        transition: all 0.35s ease;
    }

    .menu-toggle__close {
        position: absolute;
        transition: all 0.35s ease;
    }

    .menu-toggle__bars svg,
    .menu-toggle__close svg {
        display: flex;
        width: 20px;
        height: auto;
    }

    .menu-toggle__bars {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    .menu-toggle__close {
        opacity: 0;
        transform: rotate(-90deg) scale(0.6);
    }

    .menu-toggle.active .menu-toggle__bars {
        opacity: 0;
        transform: rotate(90deg) scale(0.6);
    }

    .menu-toggle.active .menu-toggle__close {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    .mega-menu-wrap {
        box-shadow: none;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0;
        border-radius: 0;
        background: transparent;
    }

    .menu>ul>li:hover>p+.dropdown-menu-wrap {
        transform: unset;
    }

    .mega-menu-box {
        max-width: 100%;
        padding: 16px;
        background: #fff;
        border-radius: 12px;
    }

    .mega-menu-contact-wrap {
        flex-direction: column;
        gap: 14px;
    }

    .mega-menu-contact {
        background: linear-gradient(135deg, rgb(206 237 249) 0%, rgba(255, 255, 255, 1) 100%);
        flex-direction: column;
        align-items: flex-start;
    }

    .menu ul .primary-btn {
        color: #00A0DE;
        background-color: #fff;
    }

    .menu>ul>li.has-dropdown>p:before,
    .menu>ul>li.has-megamenu>p:before {
        display: none;
    }

    .menu>ul>li.has-dropdown:hover>p svg,
    .menu>ul>li.has-megamenu:hover>p svg {
        transform: none;
    }

    .menu>ul>li:hover>p svg path,
    .menu>ul>li:hover>a svg path {
        stroke: currentColor;
    }

    .menu>ul>li.has-dropdown.open>p svg,
    .menu>ul>li.has-megamenu.open>p svg {
        transform: rotate(180deg);
    }

    .menu>ul>li:hover>p,
    .menu>ul>li:hover>a,
    .menu>ul>li:hover>p svg {
        background-color: transparent;
    }

    .logo,
    .header-contact {
        min-width: unset;
    }

    header nav .logo img {
        max-height: 44px;
    }

    .header-contact {
        display: flex;
        justify-content: flex-end;
        margin-left: auto;
        margin-right: 10px;
    }

    .softpulse-hero-wrap,
    .hero-right {
        text-align: center;
    }

    .hero-headline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .hero-left {
        max-width: 100%;
    }

    .title-badge {
        margin: 0 auto 10px;
    }

    .hero-right p {
        max-width: 100%;
    }

    .hero-client {
        justify-content: center;
    }

    .hero-review {
        margin: 0 auto 20px;
    }

    .hero-video-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-partner {
        padding-top: 20px;
    }

    .primary-btn {
        margin: auto;
    }

    .hero-video-bg-shape {
        right: -5%;
        top: 50%;
    }

    .hero-video-main {
        width: 80%;
    }

    .portfolio,
    .our-numbers,
    .our-services,
    .ai-agent,
    .expertise,
    .featured-apps,
    .brand-marquee,
    .contact-us,
    .case-study {
        margin: 80px 0;
    }

    .portfolio .portfolio-wrap,
    .portfolio-img-box {
        gap: 30px;
    }

    .portfolio-img-overlay {
        opacity: 1;
        padding: 15px;
    }

    .portfolio-img-overlay a {
        gap: 6px;
        font-size: 16px;
        line-height: 20px;
    }

    .hero-headline h1,
    .section-title h2,
    .number-box h3,
    .additional-title h2 {
        font-size: 34px;
    }

    .section-title {
        padding-bottom: 50px;
    }

    .services-bg-shape.top {
        top: -5%;
        right: -20%;
    }

    .our-services-wrap {
        row-gap: 40px;
    }

    .services-bg-shape:not(.top) {
        bottom: auto;
        left: -19%;
        top: -160px;
    }

    .additional-services {
        gap: 20px;
        padding: 0;
        position: relative;
    }

    .additional-service-box {
        max-width: calc(33.33% - 13.33px);
    }

    .additional-service-box .additional-service-icon {
        height: 50px;
        width: 50px;
        padding: 7px;
    }

    .additional-service-content {
        max-width: calc(100% - 62px);
    }

    .plus-partner .plus-partner-marquee .marquee span,
    .softpulse-marquee .marquee span {
        font-size: 100px;
    }

    .plus-partner .plus-partner-marquee {
        top: auto;
        bottom: -30px;
        transform: unset;
    }

    .right-box img {
        max-width: 100%;
    }

    .agent-wrap {
        gap: 18px;
    }

    .agent-wrap .agent-box {
        max-width: calc(33.33% - 12px);
    }

    .ai-agent .primary-btn {
        margin: 60px auto 0;
    }

    .expertise-content h3 {
        font-size: 28px;
        line-height: 1.24;
    }

    .expertise-wrap {
        gap: 40px;
    }

    .expertise-content .title-badge {
        margin: 0 0 10px;
    }

    .expertise-content>p {
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 25px;
    }

    .expertise-content ul li svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }

    .expertise-content ul li {
        padding-bottom: 10px;
        align-items: flex-start;
    }

    .number-box h3 {
        font-size: 30px;
    }

    .featured-apps-box-content .title-badge {
        margin: 0 0 10px;
    }

    .featured-apps-box {
        gap: 40px;
    }

    .featured-apps-box-content h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .review-wrap {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .review-title {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .review .section-title {
        margin-bottom: 50px;
        text-align: center;
        align-items: center;
    }

    .review-client {
        justify-content: center;
    }

    .review-title .section-title h2 {
        text-align: center;
    }

    .review-list {
        max-width: 100%;
        padding-left: 0;
    }

    .contact-us-wrap:before {
        left: -65%;
    }

    .cas-study-article.featured {
        grid-row: unset;
    }

    .cas-study-article:not(.featured) {
        gap: 0;
        flex-wrap: wrap;
    }

    .cas-study-article:not(.featured) .case-study-img {
        width: 100%;
    }

    .cas-study-article:not(.featured) .case-study-content {
        width: 100%;
        padding: 0;
    }

    .case-study-list .cas-study-article .case-study-content p {
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    .case-study-content h3 {
        font-size: 16px;
    }

    .footer-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }

    footer {
        padding: 150px 0 0;
    }

    .footer-about {
        row-gap: 20px;
        max-width: 255px;
        padding: 20px;
    }

    .footer-link {
        max-width: calc(100% - 275px);
        column-gap: 40px;
        row-gap: 40px;
    }

    .quick-link.recognized ul {
        gap: 30px;
        flex-wrap: wrap;
    }

    .softpulse-marquee {
        padding: 50px 0;
    }

    .softpulse-hero-1 {
        padding-top: 60px;
    }

    .mobile-menu {

        display: flex;

    }

    header nav .logo {

        text-align: center;
        display: flex;
        justify-content: center;
    }

    #smooth-wrapper {
        padding-top: 75px;
    }

    .hero-headline .hero-sub-text {
        margin: auto;
    }

    .comment-toast.red {
        right: 26%;
    }

    .comment-toast.yellow {
        left: 22%;
    }

    .comment-toast.green {
        left: 22%;
    }

    .comment-toast.blue {
        right: 21%;
    }

    .marquee-track li img {
        height: 25px;
    }

    .marquee-track ul {
        gap: 50px;
    }

    .quick-link.recognized ul img {
        max-height: 30px;
    }

    .mega-menu-box.split-mega-menu ul {
        -webkit-column-count: auto;
        -moz-column-count: auto;
        column-count: auto;
    }

    #menu-slider {
        display: none;
    }

    .contact-form {
        max-width: 100%;
    }

    .contact-form-main .contact-form-content {
        max-width: 100%;
    }

    .our-team-swiper .swiper-slide {
        max-width: 190px;
    }

    .page-hero-title {
        padding: 80px 0 0;
        max-width: 80%;
    }

    .our-team-slider {
        padding-top: 80px;
    }

    .visionaries {
        margin: 80px 0;
    }

    .visionaries .container .visionaries-bg-shape,
    .page-hero-title .page-hero-bg-shape,
    .page-hero-title .page-hero-bg-color {
        max-width: 50%;
        width: 100%;
    }

    .visionaries .container .visionaries-bg-shape img,
    .page-hero-title .page-hero-bg-color img,
    .page-hero-title .page-hero-bg-shape img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-hero-title h1 {
        font-size: 36px;
        line-height: 1.24;
    }

    .page-hero-title p {
        font-size: 16px;
        line-height: 24px;
    }

    .page-hero-title p {
        padding-bottom: 40px;
    }

    .visionaries .visionaries-content h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .visionaries .visionaries-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .visionaries .visionaries-content h3 {
        padding-bottom: 10px;
    }

    .contact-form-main .contact-details span {
        font-size: 14px;
        line-height: 20px;
    }

    .contact-form-main .contact-details a {
        font-size: 16px;
        line-height: 22px;
    }

    .contact-form-main .section-title>p {
        padding-top: 15px;
        font-size: 14px;
    }

    .visionaries .visionaries-img ul li h3 {
        font-size: 14px;
        line-height: 18px;
    }

    .visionaries .visionaries-img ul li p {
        font-size: 12px;
        line-height: 18px;
    }

    .section-title.left-align .title-badge {
        margin-left: 0;
    }

    .link-small-btn {
        font-size: 12px;
        line-height: 16px;
    }

    .link-small-btn svg {
        height: 14px;
        width: auto;
    }

    .bg-btn {
        font-size: 12px;
        line-height: 14px;
    }

    .bg-btn svg {
        max-width: 16px;
        height: auto;
        width: auto;
    }

    .bg-btn {
        padding: 8px 16px;
    }

    .app-list-item h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .our-apps .app-content {
        font-size: 13px;
        line-height: 17px;
    }

    .our-apps .app-img-wrap img {
        max-width: 50px;
    }

    .our-apps .app-img-wrap {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .our-apps .app-review .app-review-star svg {
        height: 14px;
    }

    .our-apps .app-review p {
        font-size: 12px;
    }

    .faq-accordion .accordion-box .accordian-title {
        padding: 16px 40px 16px 20px;
        font-size: 14px;
        line-height: 18px;
    }

    .faq-accordion .accordion-box .accordian-title:before {
        width: 12px;
        right: 24px;
    }

    .faq-accordion .accordion-box .accordian-title:after {
        height: 12px;
        right: 29px;
    }

    .faq-accordion .accordian-content {
        padding: 0 20px 18px;
    }

    .faq-accordion .accordian-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .our-apps .app-list-grid .app-list-item {
        border-radius: 16px;
    }

    .sapp-hero-headline {
        padding: 50px;
    }

    .sapp-hero-headline h1 {
        font-size: 34px;
        max-width: 100%;
    }

    .sapp-hero-content {
        gap: 7px;
    }

    .sapp-hero-content p {
        font-size: 14px;
        padding-right: 12px;
    }

    .sapp-hero-content p:not(:last-child)::after {
        width: 5px;
        height: 5px;
    }

    .sapp-apps-bg-shape {
        gap: 20px;
    }

    .sapp-trust-section .sapp-trust-title {
        font-size: 16px;
        line-height: 22px;
    }

    .sapp-trust-section {
        margin-bottom: 20px;
    }

    .sapp-solutions-section {
        padding: 0;
    }

    .sapp-solutions-section .sapp-solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sapp-solutions-section .sapp-solution-col {
        flex-direction: row;
        gap: 20px;
    }

    .sapp-solutions-section .sapp-solution-col .sapp-solution-card {
        flex: 1;
    }

    .sapp-iwt-section {
        padding: 0 0 80px;
    }

    .sapp-iwt-content .primary-btn {
        margin: 0;
    }

    .sapp-iwt-content .title-badge {
        margin: 0 0 10px;
    }

    .sapp-iwt-section .sapp-iwt-wrapper {
        gap: 50px;
    }

    .sapp-iwt-section .sapp-iwt-content {
        width: 44.239437%;
    }

    .sapp-iwt-section .sapp-iwt-images-wrapper {
        width: 50.84507%;
    }

    .sapp-services-section {
        padding: 0 0 80px;
    }

    .sapp-services-section .section-title {
        padding-bottom: 50px;
    }

    .sapp-services-additional .sapp-services-additional-title {
        font-size: 34px;
        line-height: 50px;
        margin-bottom: 50px;
    }

    .sapp-services-additional .sapp-services-additional-card {
        padding: 15px;
    }

    .sapp-services-bg-shape {
        right: -15%;
        bottom: -35%;
    }

    .sapp-work-lists {
        padding-bottom: 0;
    }

    .faq {
        margin: 80px 0;
    }

    .globe-detail,
    .contact-form-main,
    .page-hero {
        overflow: hidden;
    }

    .about-us-portfolio:before {
        width: 300px;
        height: 300px;
        right: 0;
        top: -20%;
    }

    .about-us-portfolio,
    .journey-section,
    .about-story,
    .our-mission {
        margin-top: 80px;
    }

    .journey-section .section-title,
    .our-mission .section-title {
        align-items: center;
    }

    .journey-section .section-title h2,
    .our-mission .section-title h2 {
        text-align: center;
    }

    .journey-content h3,
    .mission-info h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .journey-inner {
        gap: 20px 40px;
    }

    .about-story-img .img-grid {
        gap: 15px;
    }

    .about-story-img:before {
        width: 300px;
        height: 300px;
        top: 30%;
        left: 0;
    }

    .our-mission-inner {
        margin-top: 0;
        padding-top: 50px;
    }

    .inner-left,
    .inner-right {
        flex: 0 0 100%;
    }

    .mission-icon {
        width: 180px;
        height: 180px;
    }

    .right-content-wrapper {
        gap: 20px;
        flex-direction: row;
    }

    .mission-item {
        padding: 25px;
        flex: 0 0 calc(33.33% - 13.33px);
    }

    .journey-section .bg-shape {
        left: -10%;
        right: auto;
    }

    .our-mission-inner .bg-shape {
        top: 90%;
        left: -5%;
    }
}

@media (max-width: 767px) {

    .hero-headline h1,
    .section-title h2,
    .number-box h3,
    .additional-title h2 {
        font-size: 26px;
    }

    .hero-headline {
        padding: 30px 30px 0;
    }

    .hero-video-wrap {
        padding: 0 30px 30px;
        gap: 40px;
    }

    .hero-right {
        padding-bottom: 10px;
    }

    .hero-partner ul {
        margin-bottom: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .portfolio,
    .our-numbers,
    .our-services,
    .ai-agent,
    .expertise,
    .featured-apps,
    .brand-marquee,
    .contact-us,
    .case-study {
        margin: 60px 0;
    }

    .hero-video-main {
        width: 100%;
    }

    .portfolio .portfolio-wrap,
    .portfolio-img-box {
        gap: 10px;
    }

    .portfolio-img-box {
        flex-direction: row;
    }

    .portfolio .portfolio-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .primary-btn span {
        padding: 12px;
    }

    .primary-btn svg {
        height: 16px;
    }

    .portfolio-img-box .portfolio-img {
        border-radius: 10px;
    }

    .portfolio-img-overlay {
        padding: 5px;
    }

    .portfolio-img-overlay a {
        gap: 2px;
        font-size: 14px;
        line-height: 16px;
        justify-content: center;
        text-align: center;
    }

    .portfolio-img-overlay svg {
        display: none;
    }

    .portfolio-img-box .portfolio-img {
        padding-bottom: 39%;
        width: 100%;
    }

    .section-title {
        padding-bottom: 30px;
    }

    .portfolio-img-box.small-images,
    .portfolio-img-box.medium-images,
    .portfolio-img-box.big-images {
        width: 100%;
    }

    .number-wrap {
        gap: 8px;
    }

    .cross-box {
        display: none;
    }

    .number-box {
        padding: 10px 16px;
    }

    .service-box-small {
        max-width: 100%;
    }

    .service-box-img {
        margin-bottom: 15px;
    }

    .service-box-content h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .service-box-content p {
        padding-bottom: 15px;
    }

    .our-services-wrap {
        row-gap: 30px;
    }

    .services-bg-shape.top {
        top: -1%;
    }

    .additional-title {
        margin: 40px 0;
    }

    .additional-service-box {
        max-width: 100%;
        width: 100%;
    }

    .additional-service-content p {
        font-size: 16px;
        line-height: 20px;
        padding-bottom: 4px;
    }

    .additional-services {
        gap: 12px;
        justify-content: flex-start;
        padding: 0 15px;
    }

    .services-bg-shape:not(.top) {
        bottom: auto;
        top: -130px;
        left: -24%;
    }

    .right-box,
    .plus-partner-wrap .left-box {
        max-width: 100%;
    }

    .developer-list .developers-team {
        justify-content: center;
        padding: 10px 0 0;
    }

    .plus-partner-wrap .left-box .developer-list h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .contact-developer h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .developers-team img {
        max-width: 100%;
    }

    .contact-developer {
        padding: 25px;
    }

    .agent-wrap {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .agent-wrap .agent-box {
        padding: 20px;
        flex: 0 0 50%;
        max-width: calc(50% - 10px);
    }

    .agent-content h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .agent-content h3 svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    .ai-agent ul {
        gap: 25px 30px;
    }

    .ai-agent ul li svg {
        width: 35px;
    }

    .ai-agent .primary-btn {
        margin: 50px auto 0;
    }

    .expertise-wrap {
        flex-wrap: wrap;
    }

    .expertise-wrap .expertise-content {
        max-width: 100%;
    }

    .expertise-content h3 {
        font-size: 20px;
    }

    .expertise-content ul li span {
        font-size: 14px;
        line-height: 20px;
    }

    .expertise-content>p {
        padding-bottom: 20px;
        font-size: 14px;
        line-height: 22px;
    }

    .expertise-content ul li svg {
        width: 16px;
        height: 16px;
    }

    .industries-wrap {
        padding: 30px 0;
    }

    .industries-img {
        padding: 30px 20px;
    }

    .industries-slider {
        padding: 0 20px;
    }

    .industries-slider .swiper-slide .industries-icon {
        padding: 10px;
    }

    .industries-slider .industries-name h4 {
        font-size: 16px;
        line-height: 22px;
    }

    .featured-apps-box {
        flex-wrap: wrap;
        padding: 30px 25px 0;
        gap: 30px;
        margin-bottom: 30px;
    }

    .featured-apps-box-content h3 {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 10px;
    }

    .featured-apps-box-content>p {
        font-size: 14px;
        line-height: 22px;
        padding-bottom: 20px;
    }

    .featured-apps-box-content {
        padding-bottom: 0;
    }

    .featured-apps-box-img {
        flex: 0 0 100%;
        order: 2;
    }

    .comment-toast {
        padding: 6px 12px;
    }

    .comment-toast p {
        font-size: 12px;
        line-height: 16px;
    }

    .review .section-title {
        margin-bottom: 60px;
    }

    .review-client li {
        height: 40px;
        width: 40px;
    }

    .review-ratting span,
    .review-list .client-info p {
        font-size: 14px;
        line-height: 18px;
    }

    .review-slider .swiper-slide .client-text p {
        font-size: 14px;
        line-height: 20px;
    }

    .review-list {
        gap: 10px;
        flex-wrap: wrap;
        margin-left: 0;
    }

    .review-slider {
        height: auto;
    }

    .review-slider .swiper-slide .client-text ul li svg {
        width: 16px;
        height: 16px;
    }

    .review-slider .swiper-slide {
        padding: 15px;
    }

    .contact-us .contact-us-wrap {
        padding: 30px;
    }

    .contact-us-wrap:before {
        left: -100%;
    }

    .case-study-list {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .case-study-content h3 a {
        font-size: 18px;
        line-height: 24px;
    }

    .case-study-content p {
        font-size: 14px;
    }

    .footer-about {
        max-width: 100%;
        align-items: center;
        text-align: center;
        row-gap: 15px;
    }

    .footer-about ul {
        justify-content: center;
    }

    .footer-about a {
        font-size: 14px;
        line-height: 20px;
    }

    footer {
        padding: 100px 0 0;
    }

    .quick-link ul li a {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-link {
        max-width: 100%;
        row-gap: 0;
        flex-direction: column;
        width: 100%;
        order: -1;
    }

    .quick-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 0;
    }

    .quick-link p {
        font-size: 14px;
        line-height: 20px;
        margin: 0;
        cursor: pointer;
        position: relative;
        padding-right: 25px;
        padding-bottom: 0;
        font-weight: 500;
    }


    .quick-link p::after {
        content: "+";
        position: absolute;
        right: 0;
        font-size: 18px;
        transition: 0.3s;
        font-weight: 400;
    }

    .quick-link.active p::after {
        content: "-";
    }

    .quick-link ul {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s;
    }

    .quick-link.active ul {
        max-height: 500px;
    }

    .quick-link.recognized ul img {
        display: flex;
        max-width: 100%;
        max-height: 20px;
        width: auto;
    }

    .quick-link ul li:first-child {
        margin-top: 10px;
    }

    .quick-link.recognized ul {
        gap: 15px 30px;
        justify-content: center;
        max-height: unset;
    }

    .quick-link.recognized li {
        margin-top: 10px;
    }

    .title-badge {
        padding: 5px 14px;
    }

    .primary-btn {
        gap: 12px;
        font-size: 15px;
        padding-left: 20px;
    }

    .mega-menu-box {
        font-size: 14px;
    }

    .mega-menu-contact p,
    .mega-menu-box .mega-menu-title {
        font-size: 16px;
        line-height: 24px;
    }

    .mega-menu-box li {
        margin: 10px 0;
    }

    .mega-menu-box .mega-menu-title {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .dropdown-menu li a {
        padding: 5px;
    }

    .dropdown-menu-inner {
        padding: 10px;
    }

    .plus-partner-wrap {
        padding-top: 0;
    }

    .softpulse-marquee {
        padding: 0;
    }

    .review-list::before {
        width: 50px;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    }

    .review-list::after {
        bottom: auto;
        left: auto;
        right: 0;
        top: 0;
        width: 50px;
        height: 100%;
        background: linear-gradient(270deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    }

    .title-badge svg {
        width: 18px;
    }

    .softpulse-hero-1 {
        padding-top: 50px;
    }

    .hero-btns {
        gap: 15px;
        margin-top: 30px;
    }

    .hero-brand {
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .hero-brand ul {
        gap: 25px;
    }

    .hero-brand ul li img {
        max-height: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .comment-toast.yellow {
        bottom: 58px;
    }

    .right-box {
        display: none;
    }

    .expertise-img {
        width: 100%;
    }

    .hero-video-bg-shape {
        right: 0;
    }

    .marquee-track li img {
        height: 18px;
    }

    .case-study {
        margin-bottom: 0;
    }

    .quick-link.recognized {
        border-bottom: none;
        padding: 30px 0 15px;
    }

    .quick-link.recognized p {
        text-align: center;
        font-weight: normal;
        padding-right: 0;
        padding-bottom: 15px;
        font-size: 14px;
        line-height: 18px;
        display: none;
    }

    .quick-link.recognized p::after {
        content: unset;
    }

    .industries-slider .swiper-pagination {
        display: flex;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .visionaries .visionaries-img ul li.decorative-shape {
        display: none;
    }

    .visionaries .visionaries-content {
        max-width: 70%;
        padding-top: 50px;
    }

    .contact-form-bg-shape {
        max-width: 50%;
    }

    .contact-form-bg-shape img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-hero-title h1 {
        font-size: 30px;
        line-height: 1.24;
    }

    .page-hero-title p {
        font-size: 14px;
        line-height: 20px;
    }

    .page-hero-title p {
        padding-bottom: 30px;
    }

    .visionaries .visionaries-img ul li {
        max-width: calc(33.33% - 11px);
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form .form-group label {
        font-size: 14px;
        line-height: 18px;
    }

    .contact-form .form-group input {
        padding: 12px;
        font-size: 13px;
        line-height: 16px;
    }

    .contact-form form {
        column-gap: 15px;
        row-gap: 20px;
    }

    .contact-form form .form-group {
        flex: 0 0 calc(50% - 8px);
    }

    .our-team-swiper .swiper-slide {
        max-width: 170px;
        margin-right: 15px;
    }

    .our-apps .app-list-grid .app-list-item {
        max-width: calc(50% - 8px);
        padding: 16px;
    }

    .our-apps .app-list-grid {
        gap: 16px;
    }

    .our-apps .app-img-wrap img {
        max-width: 48px;
    }

    .app-list-item h3 {
        font-size: 15px;
        line-height: 18px;
    }

    .faq-accordion .accordion-box .accordian-title {
        padding: 15px 30px 15px 15px;
    }

    .faq-accordion .accordion-box .accordian-title:before {
        right: 10px;
    }

    .faq-accordion .accordion-box .accordian-title:after {
        right: 15px;
    }

    .faq-accordion .accordian-content {
        padding: 0 15px 15px;
    }

    .faq-accordion .accordian-content p {
        font-size: 12px;
        line-height: 18px;
    }

    .title-badge p {
        font-size: 12px;
        line-height: 18px;
    }

    .title-badge svg {
        width: 16px;
    }

    .title-badge {
        padding: 5px 10px;
    }

    .our-apps {
        margin: 80px 0;
    }

    .sapp-hero-headline {
        padding: 30px 30px 50px;
    }

    .sapp-hero-content {
        flex-direction: column;
        gap: 0;
        margin: 0 auto 30px;
    }

    .sapp-hero-content p:not(:last-child)::after {
        content: unset;
    }

    .sapp-hero-content p {
        font-size: 14px;
        padding-right: 0;
    }

    .sapp-hero-content p:last-child {
        padding-right: 0;
    }

    .sapp-hero-headline h1 {
        font-size: 26px;
    }

    .sapp-title-badge>svg {
        width: auto;
        height: 32px;
    }

    .sapp-hero-review {
        padding: 5px 12px;
    }

    .sapp-hero-review::before {
        height: 25px;
    }

    .sapp-hero-content {
        margin: 0 auto 30px;
    }

    .sapp-hero-client {
        gap: 10px;
    }

    .sapp-hero-client li {
        width: 40px;
        height: 40px;
    }

    .sapp-hero-client span {
        font-size: 14px;
        line-height: 20px;
    }

    .sapp-solutions-section .sapp-solution-card .sapp-solution-card-title {
        font-size: 18px;
        line-height: 26px;
    }

    .sapp-iwt-section .sapp-iwt-wrapper {
        flex-direction: column;
    }

    .sapp-iwt-section .sapp-iwt-content {
        width: 100%;
    }

    .sapp-iwt-section .sapp-iwt-images-wrapper {
        width: 100%;
    }

    .sapp-iwt-bg-shape {
        right: -10%;
        top: 25%;
        z-index: -1;
    }

    .sapp-services-section {
        padding: 0 0 60px;
    }

    .sapp-services-section .sapp-services-card {
        padding: 15px;
        gap: 15px;
        grid-column: span 3;
    }

    .sapp-services-section .sapp-services-card .sapp-services-content h4 {
        font-size: 18px;
        line-height: 26px;
    }

    .sapp-services-additional {
        margin-top: 60px;
    }

    .sapp-services-additional .sapp-services-additional-title {
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .sapp-work-lists {
        padding-left: 30px;
    }

    .sapp-trust-section .sapp-trust-grid .sapp-trust-item .sapp-logo-box {
        height: 30px;
    }

    .sapp-trust-section .sapp-trust-grid .sapp-trust-item p {
        font-size: 12px;
        line-height: 17px;
    }

    .sapp-trust-section .sapp-trust-grid .sapp-trust-item {
        gap: 5px;
    }

    .sapp-trust-section .sapp-trust-item p .sapp-trust-check-icon svg {
        display: block;
        height: auto;
        width: 18px;
    }

    .sapp-trust-section .sapp-trust-title {
        margin-bottom: 30px;
    }

    .sapp-trust-section .sapp-trust-grid {
        gap: 40px;
    }

    .sapp-trust-section .sapp-trust-grid .sapp-trust-item .sapp-logo-box {
        height: 28px;
    }

    .sapp-solutions-section .sapp-solution-img-wrapper svg {
        max-width: 200px;
        height: auto;
        width: 100%;
    }

    .sapp-trust-section {
        padding: 30px 30px 50px;
    }

    .about-us-portfolio-slider .swiper-slide {
        width: 160px;
    }

    .about-us-portfolio-slider .swiper-wrapper {
        padding-left: 10px;
    }

    .about-us-portfolio-slider .slider-img img {
        border-radius: 12px;
    }

    .about-us-portfolio,
    .journey-section,
    .about-story,
    .our-mission {
        margin-top: 60px;
    }

    .about-us-portfolio:before {
        width: 200px;
        height: 200px;
        top: -10%;
    }

    .journey-image,
    .journey-content,
    .about-story .expertise-content,
    .about-story-img,
    .mission-item {
        flex: 0 0 100%;
    }

    .journey-content h3,
    .mission-info h3 {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 15px;
    }

    .journey-section .bg-shape {
        top: -10%;
    }

    .about-story-img {
        order: -1;
    }

    .about-story-img:before {
        width: 200px;
        height: 200px;
    }

    .left-content-wrapper {
        gap: 20px;
    }

    .mission-icon {
        width: 110px;
        height: 110px;
        padding: 20px;
    }

    .mission-icon span svg {
        width: 60px;
        height: 60px;
    }

    .mission-item p,
    .mission-item h4,
    .mission-info p,
    .journey-content p {
        font-size: 14px;
    }

    .mission-item {
        padding: 20px;
        border-radius: 12px;
    }

    .right-content-wrapper {
        gap: 15px;
    }

    .our-mission-inner {
        gap: 20px;
        padding-top: 30px;
    }

    .our-mission-inner .bg-shape {
        top: 98%;
        left: -10%;
    }

    .journey-image img,
    .about-story-img .img-grid-item img {
        border-radius: 12px;
    }
}

@media (max-width: 500px) {
    header nav .logo img {
        max-height: 40px;
    }

    .comment-toast.blue {
        right: 2%;
    }

    .comment-toast.red {
        right: 2%;
    }

    .comment-toast.yellow {
        left: 2%;
    }

    .comment-toast.green {
        left: 12%;
    }

    .contact-us-wrap:before {
        left: -194.014%;
    }

    .services-bg-shape:not(.top) {
        top: -120px;
        left: -30%;
    }

    .plus-partner .plus-partner-marquee {
        bottom: -50px;
    }

    .contact-us-wrap:before {
        left: -180%;
    }

    .hero-video-bg-shape {
        top: 72%;
    }

    .agent-wrap .agent-box {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .page-hero-title {
        max-width: 100%;
        padding: 60px 0 0;
    }

    .our-team-slider {
        padding-top: 60px;
    }

    .visionaries {
        margin: 60px 0;
    }

    .visionaries .visionaries-content {
        max-width: 100%;
        padding-top: 30px;
    }

    .contact-form-main {
        margin: 60px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form form .form-group {
        flex: 100%;
    }

    .our-team-swiper .swiper-slide {
        max-width: 140px;
        margin-right: 12px;
    }

    .our-team-swiper .swiper-slide h3 {
        font-size: 13px;
        line-height: 16px;
    }

    .contact-form-main .section-title {
        padding-bottom: 20px;
    }

    .contact-form-main .contact-details a {
        font-size: 14px;
        line-height: 20px;
    }

    .contact-form form {
        row-gap: 15px;
    }

    .inside-softpulse {
        margin: 60px 0;
    }

    .our-apps .app-list-grid .app-list-item {
        max-width: 100%;
        width: 100%;
    }

    .our-apps {
        margin: 60px 0;
    }

    .sapp-hero-headline {
        padding: 30px 30px 50px;
    }

    .sapp-hero-headline h1 {
        font-size: 26px;
    }

    .sapp-title-badge {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .sapp-title-badge>svg {
        height: 32px;
    }

    .sapp-hero-review {
        padding: 5px 12px;
    }

    .sapp-hero-review::before {
        content: unset;
    }

    .sapp-hero-client {
        gap: 10px;
    }

    .sapp-hero-client li {
        width: 40px;
        height: 40px;
    }

    .sapp-trust-section {
        margin-bottom: 20px;
        padding: 10px 15px 60px;
    }

    .sapp-solutions-section .sapp-solution-col {
        flex-direction: column;
    }

    .sapp-services-section .sapp-services-grid {
        grid-template-columns: 1fr;
    }

    .sapp-services-section .sapp-services-card {
        grid-column: unset;
    }

    .sapp-services-section .sapp-services-grid .sapp-services-card:nth-child(1),
    .sapp-services-section .sapp-services-grid .sapp-services-card:nth-child(2) {
        grid-column: unset;
    }

    .sapp-services-additional .sapp-services-additional-wrapper {
        grid-template-columns: 1fr;
    }

    .sapp-services-additional .sapp-services-additional-card h4 {
        font-size: 15px;
        line-height: 20px;
    }

    .sapp-services-additional .sapp-services-additional-card:not(:last-child)::after {
        left: 0;
        right: 0;
        margin: auto;
        top: calc(100% + 10px);
        transform: translateY(-50%) rotate(90deg);
    }

    .sapp-services-bg-shape {
        bottom: -11%;
    }

    .sapp-iwt-section {
        padding: 0 0 100px;
    }

    .sapp-iwt-section .sapp-iwt-images-wrapper {
        padding-left: 30px;
    }

    .sapp-iwt-section .sapp-iwt-badge {
        left: 0;
    }

    .sapp-iwt-section .sapp-iwt-badge h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .sapp-iwt-section .sapp-iwt-badge span {
        font-size: 14px;
        line-height: 20px;
    }

    .sapp-iwt-section .sapp-iwt-sub-image {
        width: 120px;
        height: auto;
    }

    .sapp-iwt-bg-shape {
        top: 37%;
    }

    .additional-service-content p {
        font-size: 15px;
        line-height: 20px;
    }

    .additional-service-content span {
        font-size: 13px;
        line-height: 16px;
        display: block;
    }

    .sapp-trust-section .sapp-trust-grid {
        gap: 30px;
    }

    .faq {
        margin: 60px 0;
    }

    .left-content-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    header nav .menu ul li.has-megamenu:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }

    .dropdown-menu li a:hover {
        background-color: #00A0DE;
        color: #fff;
    }
}