.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: var(--primary-light-color);
    z-index: 999;
    transition: 0.3s;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
}

@keyframes sticky {
    0% {
        transform: translateY(-250px);
    }

    100% {
        transform: translateY(0);
    }
}

.header.sticky {
    animation: sticky 800ms 1 ease;
    animation-play-state: running;
    background: rgba(47, 23, 57, 0.9);
    padding: 10px 0;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
}

.btn-toggle {
    width: 26px;
    display: block;
    cursor: pointer;
}

.btn-toggle div {
    width: 100%;
    height: 3px;
    margin: 9px 0 0 0;
    background: #3FBAFD;
    transition: transform 0.4s ease;
}

.btn-toggle div.one {
    margin-top: 0;
}

.btn-toggle.close .two {
    opacity: 0;
}

.btn-toggle.close .one {
    transform: rotate(45deg) translate(8px, 8px);
}

.btn-toggle.close .three {
    transform: rotate(-45deg) translate(9px, -9px);
}

.header-nav__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.nav-primary {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #2F1739;
    color: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
    padding: 50px 20px 20px;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.12);
    overflow-x: hidden;
    overflow-y: auto;
}

.nav-primary.open {
    transform: translateX(0);
}

.close-nav-primary {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-primary.open .close-nav-primary {
    right: -26px;
    font-size: 20px;
    color: var(--white-color);
    background: var(--Primary-color);
    padding: 0px 11px;
    border-radius: 8px;
}

.nav-primary ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-primary ul li {
    width: 100%;
}

.nav-primary ul li a {
    position: relative;
    display: inline-block;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Syne", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    padding: 10px 0;
}

.nav-primary ul li a:hover {
    color: #3FBAFD;
}

.nav-primary ul li.active a {
    color: #3FBAFD;
}

.nav-primary ul li.active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
}

@media (min-width: 768px) {
    .logo {
        width: 200px;
    }
}

@media (min-width: 1200px) {
    .header {
        padding: 43px 0 10px 0;
    }

    .close-nav-primary,
    .btn-toggle {
        display: none;
    }

    .logo {
        width: 200px;
    }

    .header-nav__right {
        width: calc(100% - 200px);
        gap: 32px;
    }

    .nav-primary {
        position: unset;
        width: max-content;
        height: unset;
        background: unset;
        transform: unset;
        z-index: unset;
        padding: 0;
        transition: none;
        background: transparent;
        box-shadow: none;
        overflow: unset;
    }

    .nav-primary ul {
        flex-direction: row;
        gap: 32px;
        justify-content: flex-end;
    }

    .nav-primary ul li a {
        width: max-content;
    }

}

.masthead {
    position: relative;
    padding: 200px 0 50px;
}

.image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.masthead__content p {
    color: #fff;
    margin-bottom: 34px;
}

.masthead__flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.masthead.inner-masthead {
    padding: 0;
}

.inner-masthead .masthead__flex {
    justify-content: center;
    align-items: center;
    min-height: 470px;
}

.masthead.inner-masthead .masthead__content h1 {
    font-size: 44px;
    position: relative;
    z-index: 1;
}

.overlay-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-family: 'Clash Display';
    font-weight: 700;
    font-size: 200px;
    font-size: 11.417vw;
    line-height: 0.75em;
    text-align: center;
    letter-spacing: 0.04em;
    background: linear-gradient(91.37deg, rgba(255, 255, 255, 0.1) 0%, rgba(92, 206, 253, 0.1) 80.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.masthead.inner-masthead.inner-masthead-services .masthead__content h1 {
    font-size: 32px;
}

@media (min-width: 768px) {

    .masthead {
        padding: 100px 0 50px;
    }

    .masthead__flex {
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .masthead__content,
    .masthead__image {
        width: calc(50% - 15px);
    }
}

@media (min-width: 1200px) {
    .masthead {
        padding: 200px 0 103px;
    }

    .masthead__content {
        max-width: 587px;
    }


    .inner-masthead .masthead__content {
        max-width: 810px;
    }


    .masthead__image {
        max-width: 510px;
    }

    .masthead__content p {
        margin-bottom: 34px;
    }

    .masthead.inner-masthead .masthead__content h1 {
        font-size: 100px;
    }

    .masthead.inner-masthead.inner-masthead-services .masthead__content h1 {
        font-size: 50px;
    }
}

@media (min-width: 1366px) {

    .masthead__content,
    .masthead__image {
        width: unset;
    }
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    background: linear-gradient(180deg, rgba(41, 171, 226, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    border: 3px solid #F1F1F1;
    padding: 30px 20px;
}

.cta-wrapper .image-bg {
    mix-blend-mode: overlay;
}

.cta-content h2 {
    max-width: 548px;
}


@media (min-width: 768px) {
    .cta-wrapper {
        justify-content: space-between;
        align-items: center;
    }

    .cta-content {
        width: calc(60% - 15px);
    }

    .cta-image {
        width: calc(40% - 15px);
    }
}

@media (min-width: 1200px) {
    .cta-wrapper {
        padding: 20px 57px;
    }
}


/* Footer */

footer {
    position: relative;
}

.footer-top__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-top {
    position: relative;
    padding: 50px 0;
}

.footer-top::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    width: calc(100% - 10px);
    height: 100%;
    background: rgba(0, 21, 29, 0.7);
    border-radius: 12px;
    z-index: -1;
}

.footer-bottom {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 36px;
    padding-bottom: 25px;
}

.footer-bottom ul li a {
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: 0.03em;
    color: #2A2A32;
}

.scroll {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: 0.03em;
    color: #29ABE2;
}

.footer-bottom p {
    letter-spacing: 0.03em;
    color: #2A2A32;
}

.newsletter-quicklink-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.newsletter h3 {
    font-size: 22px;
    line-height: 1.21875em;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.newsletter__search {
    position: relative;
    max-width: 500px;
}

.newsletter__search input {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(7.5px);
    border-radius: 70px;
    font-family: "Syne", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    padding: 14px 70px 14px 32px;
}

.newsletter__search input::placeholder {
    font-family: "Syne", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    opacity: 1;
}

.newsletter__search button {
    width: 50px;
    height: 50px;
    background: linear-gradient(95.86deg, #36AFFC 0%, #0B36A8 100%);
    box-shadow: inset 0px 0px 24px rgba(255, 255, 255, 0.15);
    border-radius: 196px;
    font-size: 21px;
    color: #fff;
    border: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 5px;
}


.newsletter__search button:hover {
    background: linear-gradient(95.86deg, #0B36A8 0%, #36AFFC 100%);
}

.company-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quicklink ul {
    column-count: 2;
    max-width: 534px;
}

.quicklink ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 2.2em;
    color: #FFFFFF;
}

.company-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 20px;
}

.company-info__link ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-info__link ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2083333333333333em;
    color: #FFFFFF;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    min-height: 32px;
}

.location {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location p {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2083333333333333em;
    color: #FFFFFF;
    padding-left: 32px;
}

.location p img {
    position: absolute;
    top: 0;
    left: 0;
}

.social-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.social-link li a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
}

.get-in-touch {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 36px;
}

.get-in-touch .btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

@media (min-width: 768px) {
    .newsletter-quicklink-wrapper {
        justify-content: space-between;
    }

    .quicklink,
    .newsletter {
        width: calc(50% - 15px);
    }

    .company-info {
        flex-wrap: unset;
        justify-content: space-between;
        gap: 30px;
    }

    .location,
    .company-info__link {
        width: calc(50% - 15px);
    }

    .footer-bottom ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        width: max-content;
    }

    .scroll {
        width: max-content;
    }

    .footer-bottom {
        text-align: unset;
        justify-content: space-between;
    }

}

@media (min-width:1200px) {
    .footer-top::after {
        left: 15px;
        width: calc(100% - 30px);
    }

    .footer-top__wrapper {
        gap: 60px;
    }

    .scroll {
        font-size: 20px;
    }

    .footer-bottom p {
        font-size: 20px;
        line-height: 1.2em;
    }

    .footer-bottom ul li a {
        font-size: 20px;
        line-height: 1.2em;
    }

    .newsletter h3 {
        font-size: 32px;
    }

    .newsletter__search input {
        font-size: 24px;
    }

    .company-info {
        padding: 40px;
    }

    .company-info__link ul li a {
        font-size: 24px;
    }

    .location p {
        font-size: 24px;
    }

    .company-info__link ul {
        gap: 32px;
    }

    .quicklink ul {
        margin: 0 0 0 auto;
        column-gap: 114px;
    }

    .quicklink ul li a {
        font-size: 20px;
    }

    .footer-bottom ul {
        gap: 50px;
    }

    .quicklink ul li a:hover,
    .company-info__link ul li a:hover,
    .footer-bottom ul li a:hover {
        color: #3FBAFD;
    }

    .social-link li a:hover {
        background: linear-gradient(95.86deg, #36AFFC 0%, #0B36A8 100%);
        box-shadow: inset 0px 0px 24px rgba(255, 255, 255, 0.15);
        border-radius: 56px;
    }
}


@media (min-width:1440px) {
    .footer-top::after {
        left: 40px;
        width: calc(100% - 80px);
    }
}

.half-and-half {
    position: relative;
}

.half-and-half__image {
    display: none;
}

.half-and-half__content h2 {
    margin-bottom: 14px;
}

.half-and-half__content h4 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.half-and-half__content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 40px;
}

.half-and-half__content ul li {
    background: url(../img/arrow-list.svg) no-repeat 0 2px;
    background-size: 20px;
    padding-left: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    color: #2A2A32;
    padding-bottom: 3px;
}

.half-and-half-bg {
    display: none;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.services-wrapper .business-focused-card {
    height: auto;
}


@media (min-width: 1200px) {

    .half-and-half__image {
        display: block;
    }

    .half-and-half-bg {
        display: block;
        position: absolute;
        top: -275px;
        left: 0;
        z-index: -1;
    }

    .bg-right .half-and-half-bg {
        display: block;
        position: absolute;
        top: -275px;
        right: 0;
        z-index: -1;
        left: unset;
        transform: rotate(180deg);
    }

    .half-and-half__image img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
    }

    .half-and-half__content {
        width: calc(50% + 60px);
        margin: 0 0 0 auto;
    }

    .bg-right .half-and-half__content {
        width: calc(50% + 60px);
        margin: unset;
    }

    .half-and-half__content ul {
        gap: 24px;
        flex-direction: unset;
        flex-wrap: wrap;
    }

    .half-and-half__content ul li {
        font-size: 20px;
        background-size: 29px;
        padding-left: 40px;
    }

    .half-and-half__content h4 {
        margin-top: 20px;
        margin-bottom: 27px;
    }

    .half-and-half__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .services-wrapper .business-focused-card {
        width: calc(33.33% - 16px);
        max-width: 100%;
    }
}

.section-heading h2 {
    margin-bottom: 4px;
}

.section-heading {
    margin-bottom: 34px;
}

.icon-card {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 44px rgba(29, 0, 61, 0.1);
    border-radius: 8px;
    padding: 22px;
    height: 100%;
}

.icon-card__icon {
    width: 60px;
    height: 60px;
    background: #050515;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 45px rgba(243, 14, 239, 0.3);
    backdrop-filter: blur(9px);
    border-radius: 4px;
    margin-bottom: 15px;
}

.icon-card__icon img {
    border-radius: 4px;
}

.icon-card__conten h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0.02em;
    background: linear-gradient(91.37deg, #002482 0%, #29ABE2 80.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 10px;
}

.icon-card__conten p {
    color: #2A2A32;
    margin-bottom: 24px;
}

.icon-card-image img {
    width: 100%;
    height: 268px;
    object-fit: cover;
    border-radius: 4px;
}

.center-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

@media (min-width: 768px) {
    .icon-card__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .icon-card-image,
    .icon-card__wrapper .icon-card__conten {
        width: calc(50% - 15px);
    }
}

.why-section {
    position: relative;
    padding-top: 70px;
}


.cercel-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.ai-logo {
    margin-bottom: 22px;
}

.ai-logo img {
    mix-blend-mode: luminosity;
    margin: 0 auto;
}

.card {
    background: rgba(0, 34, 122, 0.7);
    border-radius: 4px;
    padding: 15px 16px;
    max-width: 360px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.card p {
    font-size: 16px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
}

.side {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.circle {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Clash Display';
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: url(../img/circle.png);
}

@media (min-width: 1200px) {
    .content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .circle::after {
        content: "";
        position: absolute;
        top: -71px;
        left: -74px;
        background: url(../img/maping.png) no-repeat;
        width: 446px;
        height: 446px;
    }

    .side {
        gap: 60px 0;
    }

    .card-left {
        margin-left: -30px;
        position: relative;
    }

    .card-right {
        margin-left: 30px;
        position: relative;

    }

    .center-box {
        gap: 0px;
        margin: 50px 0;
    }

    .center-box .btn {
        position: absolute;
        bottom: -64px;
    }

    .why-section {
        margin-bottom: 160px;
    }

}

.section-heading {
    margin-bottom: 40px;
}

.solutions-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}


.solutions-card {
    width: 100%;
}

.solutions-card__link {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 22px 10px 22px 22px;
    border-radius: 16px;
    background: #fff;
    border: 3px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to top, rgba(54, 54, 54, 0.1), #7EACC0);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: 0.3s;
}

.solutions-card__link:hover {
    transform: translateY(-5px);
}

.solutions-card__link h3 {
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.0833333333333333em;
    color: #001651;
    margin-bottom: 5px;
}

.solutions-card__link p {
    font-family: 'Clash Display';
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.02em;
    background: linear-gradient(95.86deg, #29ABE2 0%, #0B36A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


.solutions-card__link:hover p {
    color: #001651;
    -webkit-text-fill-color: unset;
}

.why-businesses .solutions-card__link h3 {
    line-height: 1.3em;
    text-align: center;
}

@media (min-width: 768px) {
    .solutions-card {
        width: calc(50% - 12px);
    }
}

@media (min-width: 1200px) {
    .solutions-card {
        width: calc(33.333% - 16px);
    }

    .solutions-card__link h3 {
        font-size: 24px;
    }
}

.automated-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.automated-card__content h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.0833333333333333em;
    color: #001651;
    margin-bottom: 15px;
}

.automated-card__content p {
    color: #2A2A32;
}

.automated-card__link a {
    font-family: 'Clash Display';
    font-weight: 500;
    font-size: 24px;
    line-height: 1em;
    display: inline-flex;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    padding: 5px 48px;
    height: 50px;
    background: radial-gradient(531.11% 163.42% at 35.94% -1.56%, #29ABE2 1.92%, #154BD9 7.21%, #0B36A8 25.37%, #29ABE2 100%);
    border-radius: 60px;
    width: max-content;
}

.automated-card:hover .automated-card__link a {
    background: radial-gradient(531.11% 163.42% at 35.94% -1.56%, #154BD9 1.92%, #29ABE2 7.21%, #29ABE2 25.37%, #0B36A8 100%);
}

.automated-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 44px rgba(29, 0, 61, 0.1);
    border-radius: 10px;
    padding: 15px;
    position: relative;
}

.automated-cards {
    position: relative;
}

.automated-cards-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (min-width: 768px) {
    .automated-cards-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: unset;
        gap: 30px;
    }

    .automated-card {
        min-height: 220px;
        width: calc(50% - 15px);
        padding-left: 86px;
    }

    .automated-card__link {
        position: absolute;
        top: 78px;
        left: -55px;
        transform: rotate(-90deg);
        height: 50px;
        width: 190px;
    }
}

@media (min-width: 1200px) {
    .automated-card__content h3 {
        font-size: 24px;
    }

    .automated-cards-wrapper {
        position: relative;
        height: 839px;
        align-items: center;
    }

    .automated-card {
        width: 460px;
        position: absolute;
    }

    .automated-card1 {
        top: 0;
        left: 0;
    }

    .automated-card1::after {
        content: "";
        position: absolute;
        top: 89px;
        right: -343px;
        background: url(../img/automated-card1.png) no-repeat;
        width: 348px;
        height: 64px;
    }

    .automated-card2 {
        background: rgba(41, 171, 226, 0.09);
        top: 161px;
        left: 50%;
    }

    .automated-card2::after {
        content: "";
        position: absolute;
        top: 137px;
        left: -213px;
        background: url(../img/automated-card2.png) no-repeat;
        width: 213px;
        height: 137px;
    }

    .automated-card3 {
        background: rgba(41, 171, 226, 0.09);
        top: 445px;
        left: 125px;
    }

    .automated-card3::after {
        content: "";
        position: absolute;
        top: 89px;
        right: -343px;
        background: url(../img/automated-card1.png) no-repeat;
        width: 348px;
        height: 64px;
    }

    .automated-card4 {
        top: 619px;
        right: 0px;
    }
}

.address-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.address-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
}

.address-card h5 {
    font-family: "Heebo", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #001651;
}

.address-card p {
    font-weight: 700;
    color: #2A2A32;
}

.address-card p a {
    color: #2A2A32;
}

.address-card p a:hover {
    color: #3FBAFD;
}

@media (min-width: 768px) {
    .address-wrapper {
        flex-direction: unset;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (min-width: 1366px) {
    .address-card::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: -30%;
        width: 1px;
        height: 87px;
        background: #A9A9A9;
    }

    .address-card:last-child:after {
        display: none;
    }
}

.map iframe {
    width: 100%;
    height: 400px;
}

.form-wrapper {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 44px rgba(29, 0, 61, 0.1);
    border-radius: 8px;
    padding: 20px;
}

@media (min-width: 1200px) {
    .map {
        height: 100%;
    }

    .map iframe {
        width: 100%;
        height: 100%;
    }

    .form-wrapper {
        padding: 55px;
    }

    .contactpage-block .container-fluid {
        padding: 12px;
    }
}

.calenderblock h2 {
    margin-bottom: 16px;
}

.calenderblock p {
    color: #2A2A32;
}

.calenderblock ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.calenderblock ul li a {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #001651;
}

.technology-logo-wrapper {
    background: linear-gradient(180deg, rgba(41, 171, 226, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    padding: 20px 15px;
}

.technology-logo-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


@media (min-width: 1200px) {
    .technology-logo-wrapper {
        padding: 50px 55px;
    }

    .technology-logo-wrapper ul {
        gap: 60px;
    }
}

.experience__card {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 44px rgba(29, 0, 61, 0.1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 274px
}

.experience__card--content h3 {
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 0.7222222222222222em;
    color: #001651;
    margin-bottom: 10px;
}

.experience__card--content p {
    color: #2A2A32;
}

.experience__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.built-for-real-block .experience__card {
    width: 100%;
}

.built-for-real-block .experience__card--content {
    width: calc(100% - 70px);
}

.experience__card--icon {
    width: 50px
}

.built-for-real-block .experience__card--content h3 {
    font-family: 'Clash Display';
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #002482;
    margin-bottom: 10px;
}

.built-for-real-block .experience__card--content p {
    color: #2A2A32;
}

@media (min-width: 768px) {
    .built-for-real-block .experience__card {
        width: calc(50% - 12px);
    }
}

@media (min-width: 1200px) {
    .experience__card {
        padding: 30px;
    }

    .experience__wrapper {
        justify-content: space-between;
        gap: 0;
    }

    .experience__card--content p {
        font-size: 18px;
    }

    .built-for-real-block .experience__wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .built-for-real-block .experience__card {
        width: calc(33.33% - 16px);
    }
}

.business-focused {
    position: relative;
}

.business-focused-ai-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.business-focused-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    mix-blend-mode: difference;
}

.business-focused-card {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 44px rgba(29, 0, 61, 0.1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    max-width: 330px;
    height: 100%;
}

.business-focused-card__stap {
    width: 60px;
    height: 60px;
    background: #060035;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 45px rgba(243, 14, 239, 0.3);
    backdrop-filter: blur(9px);
    border-radius: 4px;
    font-family: 'Clash Display';
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 16px;
}

.business-focused-card__stap span {
    display: block;
}

.business-focused-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.business-focused-card__content h3 {
    font-family: 'Clash Display';
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #002482;
    margin-bottom: 8px;
}

.business-focused-card__content p {
    color: #2A2A32;
}

.business-focused-left,
.business-focused-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.business-focused-block {
    position: relative;
}

@media (min-width: 768px) {
    .business-focused-block .section-heading {
        margin-bottom: 50px;
    }

    .business-focused-wrapper {
        justify-content: space-between;
    }

    .business-focused-left,
    .business-focused-right {
        gap: 100px;
    }
}

.intelligent-section {
    position: relative;
}

.intelligent-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    width: calc(100% - 10px);
    height: 100%;
    background: linear-gradient(180deg, rgba(41, 171, 226, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    z-index: -1;
}

.intelligent-img img {
    mix-blend-mode: multiply;
}

.built-for-real.block {
    position: relative;
}


@media (min-width: 1200px) {
    .intelligent-section:before {
        left: 30px;
        width: calc(100% - 60px);
    }
}

.what-we-do {
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 42px;
    /* color: #1d3f91; */
    margin-bottom: 15px;
    font-weight: 700;
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border-top: 4px solid #3d61c8;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h3 {
    font-size: 20px;
    color: #1d3f91;
    margin-bottom: 12px;
    text-align: center;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.section-footer p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #444;
    font-weight: 500;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 32px;
    }
}
.logo-wrapper{
      margin-bottom:28px;
      display:inline-block;
      padding:20px 34px 18px;
      background:rgba(255,255,255,0.95);
      border-radius:24px;
      box-shadow:
        0 12px 45px rgba(0,0,0,0.38),
        0 0 28px rgba(59,130,246,0.12);
      backdrop-filter: blur(12px);
    }
	
	.contact-section{
    padding:80px 0;
    text-align:center;
}

.contact-section h2{
    margin-bottom:20px;
}

.contact-section p{
    max-width:700px;
    margin:0 auto 30px;
}

.email-box{
    display:inline-block;
    padding:18px 40px;
    border-radius:12px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    transition:.3s;
	font-family: Arial;
}

.email-box:hover{
    background:#1d4ed8;
    color:#fff;
}

footer{
    color:#999;
}