*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px;
    --vai-purple: #5034AD;
    --vai-lpurple: #F5F3FF;
    --vai-gray1: #4E4E4E;
    --vai-gray2: #514E5B;
    --vai-orange: #FF6A00;
}


body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    background: white;
    color: var(--vai-gray1)
}


html {
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 990px;
    }
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1340px;
    }
}

.container-fluid {
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

.position-relative {
    position: relative;
}

h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0;
    margin-bottom: 20px;
    margin-top: 0;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
    margin-bottom: 20px;
    margin-top: 0;
}

h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0;
    margin-bottom: 15px;
    margin-top: 0;
}

h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0;
    vertical-align: bottom;
    margin-bottom: 15px;
    margin-top: 0;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    vertical-align: bottom;
    margin-bottom: 15px;
    margin-top: 0;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    margin: 0;
}

.p-small {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0;
    margin: 0;
}

.p-large {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    margin: 0;
}


a {
    text-decoration: none;
    outline: none;
}

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

.row-space {
    margin-bottom: 75px;
}

.outline-btn {
    height: 50px;
    font-weight: 600;
    font-size: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filled-btn {
    height: 50px;
    font-weight: 600;
    font-size: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.filled-btn.purple {
    background: var(--vai-purple);
}

.outline-btn.white {
    color: white;
    border: 3px solid white;
}

.outline-btn.orange {
    color: var(--vai-orange);
    border: 3px solid var(--vai-orange);
}


.breadcrumb {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}


.breadcrumb > * {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--vai-gray2);
}
.breadcrumb > .breadcrumb-current {
    color: var(--vai-purple);
}
.breadcrumb > *:not(:last-child)::after {
    content: "";
    width: 8px;
    height: 9px;
    margin-left: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='9' viewBox='0 0 8 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-0.000273407 -0.000391483H3.53973L7.89973 4.47961L3.53973 8.95961H-0.000273407L4.37973 4.47961L-0.000273407 -0.000391483Z' fill='%23514E5B'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/*header*/
header {
    position: fixed;
    right: 0;
    left: 0;
    top: 30px;
    transition: all 0.3s ease;
}

header.scrolled {
    top: 0;
    background: #fff;
    z-index: 100;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

header nav .menu-item {
    color: var(--vai-gray1);
}

header nav .menu-item.active {
    color: var(--vai-purple);
}

.header-call {
    color: var(--vai-gray1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cta .outline-btn {
    width: 120px;
}

.header-cta .filled-btn {
    width: 227px;
}

.hamburger-menu span {
    height: 2px;
    width: 100%;
    background: var(--vai-purple);
}

.hamburger-menu {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

/*Home*/
#home-hero {
    padding-top: 180px;
    background: linear-gradient(180deg, rgba(90, 60, 255, 0.15) 0%, rgba(255, 167, 48, 0) 53.83%);
}

.typed-cursor {
    display: inline-block;
    color: inherit;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.hero-wrapper {
    display: flex;
    gap: 38px;
    align-items: center;
}

.hero-wrapper .left-sec .outline-btn {
    width: 272px;
}

.hero-wrapper .left-sec, .hero-wrapper .right-sec {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    color: var(--vai-gray1);
    font-weight: 700;
    display: inline-block;
    padding-right: 3px;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--vai-purple);
}
.hero-title .typed-cursor{
    color: var(--vai-orange);
}
.hero-desc {
    color: var(--vai-gray1);
    margin-bottom: 30px;
}

/*why us*/
#why-us {
    display: flex;
    color: white;
}

.why-us-text {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    background: #514e5b;
    padding: 44px;
    position: relative;
}

.why-us-text::before {
    content: "";
    position: absolute;
    top: auto;
    right: 0px;
    width: 40px;
    bottom: -40px;
    height: 40px;
    background: radial-gradient(circle at 0 99%, #ffffff 39px, #514e5b 41px);
    pointer-events: none;
    z-index: -1;
}

.why-us-text .outline-btn {
    width: 272px;
}

#why-us .right-sec {
    padding: 40px;
    border-radius: 0 50px 50px 50px;
    background: #514E5B url('../img/dott.png') no-repeat right;
}

#why-us .left-sec, #why-us .right-sec {
    flex: 1;

}

#why-us .left-sec p {
    margin-bottom: 35px;
}

.why-us-counter {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-right: 20px;
}

.counter-box {
    background: linear-gradient(180deg, #5034AD 50.96%, #6C4CF1 100%);
    width: 207px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 17px;
    justify-content: flex-end;
    border-radius: 50px;
    gap: 20px;
}

.counter-box .desc {
    max-width: 134px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.counter-box .number {
    font-size: 58px;
    font-weight: 700;
    line-height: 48px;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
    max-width: 1114px;
    margin: auto;
}

.service-info {
    background: var(--vai-gray2);
    text-align: center;
    border-radius: 20px;
    color: white;
    padding: 76px 25px 25px 25px;
}


.service-item {
    position: relative;
    padding-top: 75px;
}

.service-item:hover .service-icon-wrapper {
    background: var(--vai-orange);
}

.service-title {
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    font-weight: 400;
}

.service-icon-wrapper {
    border: 4px solid #FFFFFFE5;
    background: var(--vai-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 115px;
    aspect-ratio: 1;
    transition: background-color 0.5s ease;
}

.icon-overlay-box {
    width: 140px;
    height: 125px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    background: white;
    border-radius: 20px;
    text-align: center;
}


.icon-overlay-box::before {
    content: "";
    position: absolute;
    top: 75px;
    left: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0 100%, transparent 19px, white 20px);
    pointer-events: none;
}

.icon-overlay-box::after {
    content: "";
    position: absolute;
    top: 75px;
    right: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 100%, transparent 19px, white 20px);
    pointer-events: none;
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--vai-purple);
    font-size: 48px;
    font-weight: 700;
}


#review {
    background: #F5F3FF;
    padding-bottom: 60px;
}

#review .left-sec, #review .right-sec {
    flex: 1;
}

#review .left-sec h4 {
    color: var(--vai-purple);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 56px;
}

.review-wrapper {
    display: flex;
    gap: 25px;
    align-items: center;
}


.review-swiper {
    height: 426px;
    overflow: hidden;
    padding: 0 10px !important;
}

.review-swiper .swiper-wrapper {
    position: relative;
}

.review-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0 !important;
    border-radius: 30px;
    background: white;
    box-shadow: 0 4px 4px 0 #00000040;
    padding: 20px 63px 20px 34px;

}


/* آیتم اکتیو */
.review-item.swiper-slide-prev {
    transform: translateY(calc(25%)) scale(0.7) !important;
    opacity: 0.4 !important;
    height: 150px !important;
    overflow: hidden;
}

.review-item.swiper-slide-next {
    transform: translateY(calc(-40%)) scale(0.7) !important;
    opacity: 0.4 !important;
    height: 150px !important;
    overflow: hidden;
}

.review-item.swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 100;
    height: 200px !important;
}

.review-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--vai-gray1);
}


.swiper-button-prev.review-prev,
.swiper-button-next.review-next {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--vai-orange);
    color: white;
}

.swiper-button-prev.review-prev::after,
.swiper-button-next.review-next::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-prev.review-prev {
    left: auto !important;
    right: -70px !important;
    top: 50% !important;
}

.swiper-button-next.review-next {
    left: auto !important;
    right: -70px !important;
    top: calc(50% + 52px) !important;
}

.swiper-navigation-icon {
    max-width: 10px;
}

.review-slider-wrapper {
    position: relative;
}

#cases {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--vai-gray2);
    background-image: url('../img/case-back.png');
    background-position: left;
    background-repeat: no-repeat;
    min-height: 410px;
    margin-bottom: 175px;
}

#cases > .container {
    min-height: 410px;
    height: 100%;
    display: flex;
    align-items: center;
}

.cases-swiper {
    width: 70%;
    margin-right: 0 !important;
    position: absolute !important;
    right: 0;
    top: 114px;
    padding-bottom: 10px !important;
}

.swiper-button-prev.cases-prev,
.swiper-button-next.cases-next {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--vai-orange);
    color: white;
    position: relative;
    margin-top: -30px;
}

.swiper-button-prev.cases-prev::after,
.swiper-button-next.cases-next::after {
    font-size: 18px;
    font-weight: bold;
}

.cases-nav {
    position: absolute;
    top: 0;
    background: #f5f3ff;
    width: 175px;
    height: 40px;
    display: flex;
    justify-content: center;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    gap: 15px;
}

.cases-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -35px;
    width: 42px;
    height: 50px;
    background: radial-gradient(circle at 0 100%, transparent 49px, #f5f3ff 50px);
    pointer-events: none;
}

.cases-nav::after {
    content: "";
    position: absolute;
    top: 0;
    right: -35px;
    width: 42px;
    height: 50px;
    background: radial-gradient(circle at 100% 100%, transparent 49px, #f5f3ff 50px);
    pointer-events: none;
}


.case-item {
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 4px 0 #00000040;
    width: 390px;
}

.case-title {
    text-align: center;
    margin-bottom: 31px;
    margin-top: 26px;
    font-size: 20px;
    font-weight: 600;
    color: var(--vai-gray1);
}

.cases-header p {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cases-header .outline-btn {
    min-width: auto;
    width: 240px;
}

#contact {
    background-image: url('../img/contact-back.png');
    background-position: left;
    background-repeat: no-repeat;
}

.contact-wrapper .left-side, .contact-wrapper .right-side {
    flex: 1;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 30px;
}

input, textarea, select, *::placeholder {
    font-family: "Poppins", sans-serif;
    outline: none;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #282828;
}

.contact-form input {
    border-radius: 6px;
    background-color: #5A3CFF0D;
    border: 1px solid #30008A;
    box-shadow: 0 1px 4px 0 #19213D14;
    height: 46px;
    width: 100%;
    padding-left: 16px;
}

.contact-form textarea {
    border-radius: 6px;
    background-color: #5A3CFF0D;
    border: 1px solid #30008A;
    box-shadow: 0 1px 4px 0 #19213D14;
    height: 92px;
    padding: 16px;
}

.contact-form input[type=submit] {
    background: #5034AD;
    color: white;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

.half-field fieldset {
    flex: 1;
}

.half-field {
    display: flex;
    gap: 20px;
}

fieldset {
    border: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

fieldset label {
    font-size: 14px;
    font-weight: 600;
}

footer {
    margin-top: 60px;
}

#site-footer {
    background: #514E5B;
    padding: 41px 82px;
    border-radius: 50px;
    position: relative;
}

.contact-box {
    padding: 24px 36px;
    background: white;
    display: flex;
    gap: 42px;
    border-radius: 50px;
    max-width: 777px;
    margin-right: 0;
    margin-left: auto;
}

.mail-box {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background: linear-gradient(180deg, #5034AD 50.96%, #6C4CF1 100%);
    border-radius: 40px;
    min-width: 334px;
    min-height: 160px;
    gap: 20px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
}

.footer-menu a {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
}

.menu-social {
    display: flex;
    justify-content: space-between;
    margin-top: 58px;
    align-items: flex-end;
}

.footer-logo img {
    border-bottom-right-radius: 50px;
}

.footer-logo {
    position: absolute;
    left: 0;
    top: 0;
}


.footer-logo::before {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    width: 50px;
    bottom: -42px;
    height: 50px;
    background: radial-gradient(circle at 100% 100%, transparent 49px, white 50px);
    pointer-events: none;
}

.footer-logo::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 100% 100%, transparent 49px, white 50px);
    pointer-events: none;
}

#copyright {
    text-align: center;
    padding: 15px;
    color: var(--vai-gray1);
    font-size: 13px;
}


/*About*/
.Bungee-title{
    font-family: "Bungee Inline", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    background: linear-gradient(180deg, #B0B0B1 0%, #5034AD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
#half-sec {
    padding-top: 149px;
}

.half-wrapper .left-sec p {
    margin-bottom: 10px;
}

.half-wrapper {
    display: flex;
    gap: 38px;
    align-items: center;
}

.half-wrapper .left-sec .outline-btn {
    margin-top: 20px;
    width: 272px;
}

.half-wrapper .left-sec, .half-wrapper .right-sec {
    flex: 1;
}

#about-who-we-are {
    display: flex;
    gap: 20px;
    align-items: center;
}

#about-who-we-are .left-sec, #about-who-we-are .right-sec {
    flex: 1;
}

#about-who-we-are .left-sec img {
    border-radius: 20px;
}

#about-who-we-are .right-sec p {
    margin-bottom: 50px;
}

#about-who-we-are .right-sec p:last-child {
    margin-bottom: 0;
}


#team {
    position: relative;
}

.team-title {
    position: relative;
    color: white;
    text-align: center;
    padding-top: 22px;
    margin-bottom: 37px;
}

.team-back {
    width: 100%;
    height: 478px;
    position: absolute;
    top: 0;
    background: var(--vai-gray2);
}

.team-back::before,
.team-back::after {
    content: "";
    position: absolute;
    top: 0;
    width: 478px;
    max-width: 100%;
    height: 100%;
    background-image: url('../img/case-back.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.team-back::before {
    left: 0;
}

.team-back::after {
    right: 0;
    transform: rotate(180deg);
}

.team-grid{
    padding: 0 10px !important;
}
.team-grid .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}



.team-grid {
    padding-bottom: 10px !important;
}

.team-item {
    box-shadow: 0 4px 4px 0 #00000040;
    border-radius: 50px;
    text-align: center;
    padding: 22px 22px 45px 22px;
    background: white;
}

.team-item img {
    margin-bottom: 27px;
    border-radius: 33px;
}

.team-item .person-name {
    font-size: 20px;
    line-height: 28px;
    color: var(--vai-purple);
    font-weight: 600;
    margin-bottom: 10px;
}


/*Contact us*/
#contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--vai-gray2);
    padding: 50px;
    border-radius: 20px;
}

#contact-info .left-sec, #contact-info .right-sec {
    flex: 1;
}

.info-item {
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 53px;
}

.info-detail p:first-child {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
}

.contact-info-wrapper {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -50px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding: 28px;
    position: relative;
}

.contact-info-wrapper img {
    max-width: 473px;
}

.contact-info-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0 0, #514e5b 19px, #ffffff 20px);
    pointer-events: none;
}

.contact-info-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 0, #514e5b 19px, #ffffff 20px);
    pointer-events: none;
}

/*services*/
.page-cta {
    width: 1114px;
    max-width: 100%;
    margin: 75px auto;
    background: var(--vai-gray2);
    padding: 44px;
    border-radius: 15px;
    color: white;
    position: relative;
}

.page-cta p {
    max-width: 582px;
}

.cta-btn-wrapper .filled-btn {
    width: 315px;
}

.cta-btn-wrapper {
    position: absolute;
    right: 120px;
    bottom: 0;
    background: white;
    padding: 8px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.cta-btn-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -15px;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle at 0 0, #514e5b 14px, #ffffff 15px);
    pointer-events: none;
}

.cta-btn-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -15px;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle at 100% 0, #514e5b 14px, #ffffff 15px);
    pointer-events: none;
}


/*Service-inner*/
header.service-inner {
    position: sticky;
    top: 0;
    padding: 24px 0;
    box-shadow: 0 4px 4px 0 #0000000D;
    background: white;
    z-index: 10;
}

#service-half-sec {
    padding-top: 35px;
}

.service-half-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.service-half-wrapper .outline-btn {
    width: 272px;
}

#service-half-sec .right-sec img {
    z-index: 2;
    position: relative;
}

#service-half-sec .right-sec {
    position: relative;
    text-align: center;
}

.service-half-wrapper .left-sec, .service-half-wrapper .right-sec {
    flex: 1;
}

.service-single-title {
    color: var(--vai-purple);
    margin-bottom: 20px;
}

.service-single-subtitle {
    color: var(--vai-purple);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 36px;
}

.service-gray-overlay {
    width: 500px;
    height: 595px;
    transform: rotate(17deg);
    top: -50%;
    border-radius: 30px;
    background: var(--vai-gray1);
    position: absolute;
    z-index: 1;
    right: 50px;
}

.service-orange-overlay {
    width: 500px;
    height: 595px;
    transform: rotate(8deg);
    top: -45%;
    right: 25px;
    border-radius: 30px;
    z-index: -1;
    background: #FF6B0180;
    position: absolute;
}

#approach {
    background: var(--vai-lpurple);
    padding-top: 50px;
    padding-bottom: 50px;
}

.approach-title {
    color: var(--vai-purple);
    text-align: center;
}

.approach-desc {
    text-align: center;
}

.steps-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    gap: 30px;
}


.steps-track::before {
    content: '';
    position: absolute;
    top: 115px;
    left: 0;
    right: 0;
    height: 9px;
    background: linear-gradient(to right, #5b3de8, #7b3acd, #9b3aab, #c84e6e, #e8682a);
    z-index: 0;
}

.steps-section.v2 .step-number {
    margin-bottom: 0;
    width: 130px;
    height: 126px;
    font-size: 74px;
    font-weight: 600;
}
.steps-section.v2 .steps-track::before {
    top: 65px;
}
.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 1;
}


.step-number {
    width: 82px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 10px 4px #0000000D;
    margin-bottom: 18px;
}


.step:nth-child(1) .step-number {
    color: #5b3de8;
}

.step:nth-child(2) .step-number {
    color: #7b35d4;
}

.step:nth-child(3) .step-number {
    color: #9b3aab;
}

.step:nth-child(4) .step-number {
    color: #c84e6e;
}

.step:nth-child(5) .step-number {
    color: #e8682a;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step:nth-child(1) .step-dot {
    background: var(--vai-lpurple);
    border: 7px solid #5b3de8;
}

.step:nth-child(2) .step-dot {
    background: var(--vai-lpurple);
    border: 7px solid #7b35d4;
}

.step:nth-child(3) .step-dot {
    background: var(--vai-lpurple);
    border: 7px solid #9b3aab;
}

.step:nth-child(4) .step-dot {
    background: var(--vai-lpurple);
    border: 7px solid #c84e6e;
}

.step:nth-child(5) .step-dot {
    background: var(--vai-lpurple);
    border: 7px solid #e8682a;
}


.step-content {
    margin-top: 18px;
    text-align: center;
    padding: 0 6px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 28px;
}


.step {
    transition: transform .25s ease;
}

.step:hover {
    transform: translateY(-6px);
}

.step:hover .step-number {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
}


/*Need*/
#your-need {
    display: flex;
    color: white;
    position: relative;
}

#your-need .outline-btn {
    margin-top: 20px;
    width: 272px;
}

#your-need .right-sec {
    flex: 1;
    background: var(--vai-gray2);
    border-bottom-right-radius: 20px;
}

.your-need-content {
    flex: 1;
    background: var(--vai-gray2);
    padding: 55px;
    border-radius: 20px 20px 0 20px;
}

.need-ul li {
    margin-bottom: 10px;
}

.need-overlay-img img {
    border-radius: 20px;
}

.need-overlay-img {
    padding-left: 20px;
    padding-bottom: 20px;
    background: white;
    position: relative;
}

.need-overlay-img::before {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    width: 19px;
    bottom: 0;
    height: 19px;
    background: radial-gradient(circle at 100% 0, transparent 19px, #514e5b 20px);
    pointer-events: none;
}

.need-overlay-img::after {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    width: 19px;
    bottom: -19px;
    height: 19px;
    background: radial-gradient(circle at 0 100%, transparent 19px, #ffffff 20px);
    pointer-events: none;
}

/*Our Service*/
.our-service-title {
    margin-bottom: 10px;
    text-align: center;
    color: var(--vai-purple);
}

.our-service-desc {
    text-align: center;
}

.our-service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px auto auto;
    justify-content: center;
}

.our-service-item {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 36px 0 #00000017;
    padding: 20px 16px;
    overflow: hidden;
    width: calc((100% - 80px) / 3);
}

.our-service-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #f6f6f6;
    border-radius: 0 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 5px -5px 11px 0 #0000000f;
}

.our-service-icon svg {
    width: 36px;
    height: 36px;
}

.our-service-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -19px;
    width: 19px;
    bottom: 0;
    height: 19px;
    background: radial-gradient(circle at 0 100%, transparent 19px, #ebebeb 20px);
    pointer-events: none;
}

.our-service-icon::after {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    width: 19px;
    bottom: -19px;
    height: 19px;
    background: radial-gradient(circle at 0 100%, transparent 19px, #ececec 20px);
    pointer-events: none;
}

.our-service-item-title {
    margin-bottom: 10px;
}

/*Why choose*/
#why-choose-us {
    padding-top: 58px;
    padding-bottom: 58px;
    background: var(--vai-lpurple);
}

.why-choose-us-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-choose-us-wrapper .left-sec, .why-choose-us-wrapper .right-sec {
    flex: 1;
}

.why-choose-us-wrapper .right-sec img {
    width: 100% ;
}

.why-us-title {
    color: var(--vai-purple);
    margin-bottom: 20px;
}

.orange-ul li {
    margin-bottom: 10px;
}

.orange-ul li::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: var(--vai-orange);
    display: inline-block;
    margin-right: 10px;
}

.orange-ul {
    padding-left: 0;
    list-style: none;
}


.text-item-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.text-items-title {
    color: var(--vai-purple);
}

.text-item-wrapper span {
    background: -webkit-linear-gradient(180deg, #5034AD 0%, #B4B4B4 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    flex: 1;
}

.text-items {
    margin-top: 50px;
    margin-bottom: 30px;
}

#text-items .filled-btn {
    width: 100%;
}


/*Seo*/
.counter-items .counter-item span:first-child {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 15px;
}

.counter-items .counter-item span {
    display: block;
    text-align: center;
}

.counter-items .counter-item {
    flex: 1;
}

.counter-items {
    display: flex;
    gap: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
}

#service-report {
    padding-top: 65px;
    padding-bottom: 65px;
    background-color: var(--vai-lpurple);
}

/*strategy*/
#dotted-back {
    position: relative;
    margin-top: -75px;
    padding-top: 100px;
    padding-bottom: 75px;
}

#dotted-back.two-side::before, #dotted-back.left-side::before {
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 700px;
    max-width: 100%;
    background: url('../img/contact-back.png');
    z-index: -1;
}

#dotted-back.two-side::after {
    content: '';
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 700px;
    max-width: 100%;
    background: url('../img/contact-back.png');
    z-index: -1;
    transform: rotate(180deg);
}


/*AI*/
.feature-items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    box-shadow: 0 0 10px 4px #0000000D;
    border-radius: 10px;
    padding: 13px;

}

.middle-rounded-box {
    width: 214px;
    background: var(--vai-gray1);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    position: relative;
    padding: 0 10px 20px 20px;
}

.middle-rounded-box ul {
    padding-left: 20px;
    margin-top: 50px;
    margin-bottom: 0;
}

.middle-rounded-box .img-wrapper {
    width: 75%;
    margin: auto;
    text-align: center;
    position: absolute;
    top: -18px;
    background: #f5f3ff;
    right: 0;
    left: 0;
    padding-bottom: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}


.middle-rounded-box .img-wrapper::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -10px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 0 100%, transparent 9px, #f5f3ff 10px);
    pointer-events: none;
}

.middle-rounded-box .img-wrapper::after {
    content: "";
    position: absolute;
    top: 18px;
    right: -10px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 100% 100%, transparent 9px, #f5f3ff 10px);
    pointer-events: none;
}

.ai-new-old {
    display: flex;
    gap: 30px;
    justify-content: end;
}

.flow {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-start;
}

.flow-step {
    display: flex;
    align-items: center;
}

.flow-box {
    border: 8px solid var(--color);
    border-radius: 10px;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color);
    white-space: nowrap;
    letter-spacing: 0.01em;
    background: #fff;
    width: 180px;
    text-align: center;
}

.flow-arrow {
    position: relative;
    width: 110px;
    height: 8px;
    flex-shrink: 0;
    background: linear-gradient(to right, var(--from), var(--to));
}


.flow-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 14px solid var(--mid);
}


.flow-step:nth-child(1) .flow-box  { --color: var(--vai-purple); }
.flow-step:nth-child(3) .flow-box  { --color: #7b3bbf; }
.flow-step:nth-child(5) .flow-box  { --color: #b03a8a; }
.flow-step:nth-child(7) .flow-box  { --color: #d94f3d; }
.flow-step:nth-child(9) .flow-box  { --color: var(--vai-orange); }

/* flow-arrow gradient pairs */
.flow-arrow:nth-child(2)  { --from: var(--vai-purple); --to: #7b3bbf; --mid: #6a37c5; }
.flow-arrow:nth-child(4)  { --from: #7b3bbf; --to: #b03a8a; --mid: #953aa4; }
.flow-arrow:nth-child(6)  { --from: #b03a8a; --to: #d94f3d; --mid: #c44464; }
.flow-arrow:nth-child(8)  { --from: #d94f3d; --to: #e8612a; --mid: var(--vai-orange); }


#roi .left-sec .p-large {
    margin-bottom: 20px;
}

#roi .service-half-wrapper {
    align-items: self-start;
}


/*Social*/


/* ── COMPARISON WRAPPER ── */
.comparison {
    position: relative;
    width: 538px;
    height: 690px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 36px 0px #00000017;
    background: url('../img/before-after-back.png');
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
}


.img-after {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: auto;
    display: block;
    pointer-events: none;
}


.img-before-wrap {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
    will-change: width;
}

.img-before-wrap img {
    position: absolute;
    top: 100px;
    left: 129px;
    width: 280px;
    height: auto;
    display: block;
}

/* Labels */
.label-before, .label-after {
    position: absolute;
    top: 20px;
    font-weight: 600;
    font-size: 48px;
    color: var(--vai-purple, #6c47ff);
    pointer-events: none;
    background: none;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
}

.label-before {
    left: 30px;
}

.label-after {
    right: 30px;
}

/* Divider line */
.comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 8px;
    background: var(--vai-orange);
    transform: translateX(-50%);
    pointer-events: none;
    will-change: left;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* Handle circle */
.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--vai-orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: col-resize;
    will-change: left;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.comparison-handle:hover,
.comparison.dragging .comparison-handle {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 28px rgba(108, 71, 255, 0.35);
}

.arrow {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.arrow-left {
    border-right: 9px solid #6c47ff;
}

.arrow-right {
    border-left: 9px solid #ffffff;
}

/*Cases*/
.cases-right h3, .cases-right h4,
.cases-left h3, .cases-left h4 {
    color: var(--vai-purple);
}

.cases-right .p-large,
.cases-left .p-large {
    margin-bottom: 20px;
}

.cases-right,
.cases-left {
    display: flex;
    gap: 50px;
    align-items: center;
}


.cases-right .left-sec, .cases-right .right-sec,
.cases-left .left-sec, .cases-left .right-sec {
    flex: 0 0 calc(50% - 25px);
    min-width: 0;
}

.case-carousel {
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.case-carousel .swiper-wrapper{
    margin-bottom: 30px;
}
.case-carousel .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #D9D9D9;
    border-radius: 50px;
}
.case-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--vai-orange);
}
.cases-cta .page-cta{
    margin-top: 0;
}


.ticker-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
}
.ticker-item {
    font-family: "Bungee Inline", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--vai-purple);
}
.ticker-dot {
    width: 10px;
    height: 10px;
    background: #e8621a;
    border-radius: 2px;
    flex-shrink: 0;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*Mobile Menu*/
.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 999;
    transition: transform 0.42s cubic-bezier(0.77, 0.2, 0.05, 1);
    display: flex;
    flex-direction: column;
    padding: 18px 40px;
    overflow-y: auto;
    left: 0;
    right: unset;
    transform: translateX(-100%)
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Menu header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    margin-bottom: 50px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--vai-orange);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* Nav items with staggered slide-in */
.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    display: inline-block;
    margin-bottom: 13px;
    margin-top: 13px;
    font-size: 16px;
    color: var(--vai-gray1);
    font-weight: 500;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.35s, transform 0.35s, color 0.2s;
}

.mobile-nav-item.active {
    color: var(--vai-purple);
    font-weight: 700;
}

.mobile-menu.open .mobile-nav-item:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.mobile-menu.open .mobile-nav-item:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.mobile-menu.open .mobile-nav-item:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

.mobile-menu.open .mobile-nav-item:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.mobile-menu.open .mobile-nav-item:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s;
}
.mobile-menu.open .mobile-nav-item:nth-child(6) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

/* CTA buttons */
.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(16px);
    transition: none;
}

.mobile-menu.open .mobile-cta {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s 0.7s, transform 0.7s 0.7s;
}

/* Submenu */
.mobile-nav-item .chevron {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.mobile-nav-item.has-children.expanded .chevron {
    transform: rotate(180deg);
}

.submenu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.submenu.open {
    max-height: 300px;
}

.submenu-item {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    color: var(--vai-gray1);
    margin-left: 4px;
    transition: color 0.2s;
}

.submenu-item:hover {
    color: var(--vai-purple);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    opacity: 0;

}

.mobile-menu.open .mobile-menu-footer {
    opacity: 1;
    transition: opacity 0.9s 0.9s;
}

.mobile-menu-footer-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    font-size: 14px;
    color: var(--vai-gray1);
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--vai-orange);
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 7px;
}

.mobile-menu-social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.mobile-menu-social-icons svg {
    fill: var(--vai-gray1);
}
.mobile-menu-header .header-logo{
    height: 37px !important;
}



@media (min-width: 992px) {
    .hamburger-menu {
        display: none;
    }
}

@media (max-width: 1400px) {
    .flow-box {
        width: 137px;
    }
}
@media (max-width: 1200px) {
    h1 {
        font-size: 38px;
        line-height: 44px;
    }

    h2 {
        font-size: 34px;
        line-height: 38px;
    }

    h3 {
        font-size: 31px;
        line-height: 35px;
    }

    .p-large {
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
    }

    .header-cta .filled-btn {
        width: 170px;
    }

    .swiper-button-next.review-next, .swiper-button-prev.review-prev {
        left: auto !important;
        right: -20px !important;
    }

    .header-logo {
        width: 180px;
    }

    header nav {
        display: flex;
        gap: 25px;
    }

    .counter-box {
        width: 150px;
        gap: 10px;
    }

    .counter-box .number {
        font-size: 36px;
        line-height: 40px;
    }

    .counter-box .desc {
        font-size: 16px;
    }

    .cases-swiper {
        width: 65%;
    }

    .cases-header p {
        font-size: 36px;
    }

    .contact-box {
        padding: 15px 25px;
        justify-content: flex-end;
        max-width: 600px;
    }

    .mail-box {
        min-width: 200px;
        width: 250px;
        padding: 14px 20px;
    }

    #site-footer {
        padding: 40px;
    }

    .service-gray-overlay {
        width: 350px;
    }

    .service-orange-overlay {
        width: 350px;
    }

    #service-half-sec .right-sec img {
        width: 390px;
    }

    .service-single-subtitle {
        color: var(--vai-purple);
        font-size: 24px;
    }

    .your-need-content {
        padding: 25px;
    }

    .orange-ul li {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 22px;
    }

    .step-title {
        font-size: 18px;
    }

    .steps-track {
        gap: 10px;
    }

    .text-item-wrapper span {
        font-size: 22px;
    }
    .flow-arrow {
        width: 75px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }
    h2 {
        font-size: 26px;
        line-height: 34px;
    }
    h3 {
        font-size: 22px;
        line-height: 30px;
    }
    h4 {
        font-size: 18px;
        line-height: 27px;
    }
    h5 {
        font-size: 16px;
        line-height: 22px;
    }
    p {
        font-size: 14px;
        line-height: 24px;
    }
    .p-small {
        font-size: 12px;
        line-height: 20px;
    }
    .p-large {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
    }

    #about-who-we-are {
        flex-direction: column;
    }

    #about-who-we-are .left-sec, #about-who-we-are .right-sec, #about-who-we-are .left-sec img {
        width: 100%;
    }

    .contact-box {
        padding: 10px;
        max-width: 390px;
        gap: 15px;
    }

    .mail-box {
        min-width: auto;
        width: 175px;
        padding: 10px;
        font-size: 15px;
    }

    .footer-logo img {
        max-width: 235px;
    }

    .menu-social {
        gap: 30px;
        margin-top: 40px;
    }

    .menu-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 40px;
    }

    header nav .menu-item, .header-cta {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .header-logo {
        width: auto;
    }

    .service-gray-overlay , .service-orange-overlay {
        width: 240px;
        height: 450px;
    }
    #service-half-sec .right-sec img{
        width: 280px;
    }
    .service-single-title {
        font-size: 28px;
    }
    .service-single-subtitle {
        font-size: 18px;
        line-height: 24px;
    }
    .service-single-title{
        margin-bottom: 10px;
    }
    .feature-box img{
        max-width: 50px;
    }
    .ai-new-old {
        flex-direction: column;
        align-items: center;
        gap: 75px;
    }
    .step-title {
        font-size: 12px;
        line-height: 22px;
        min-height: 50px;
    }
    #roi .left-sec .p-large {
        margin-bottom: 10px;
    }
    #roi .service-half-wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }
    #roi .service-half-wrapper .right-sec img{
        width: 500px;
    }
    .page-cta{
        padding: 44px 44px 85px 44px;
    }
    .why-choose-us-wrapper {
        gap: 50px;
        flex-direction: column-reverse;
    }

    #contact-info{
        margin-top: 400px;
        position: relative;
    }
    .contact-info-wrapper{
        position: absolute;
        top: -250px;
        left: 10%;
        right: 10%;
        border-radius: 10px;
    }
    #contact-info .left-sec{
        padding-top: 270px;
    }
    .contact-info-wrapper::before , .contact-info-wrapper::after{
        display: none;
    }
    .contact-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .contact-wrapper .right-side {
        width: 100%;
    }
    #why-us .right-sec img {
        position: absolute;
        right: 13px;
        width: 250px;
    }
    .why-us-text{
        padding: 25px;
    }
    #why-us .left-sec p {
        margin-bottom: 20px;
    }
    .why-us-text .outline-btn {
        width: 220px;
    }
    .outline-btn , .filled-btn{
        font-size: 18px;
    }
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .review-wrapper{
        flex-direction: column;
    }
    #cases{
        margin-bottom: 30px;
    }
    .our-service-item {
        width: calc((100% - 80px) / 2);
    }
    .our-service-item-title {
        max-width: 83%;
        min-height: 45px;
    }
    #text-items{
        flex-direction: column;
    }
    #your-need{
        flex-direction: column-reverse;
    }
    .need-overlay-img {
        padding-left: 0;
        padding-bottom: 20px;
        padding-right: 20px;
        width: 90%;
    }
    .need-overlay-img::after{
        top: 0;
        right: -19px;
        left: auto;
        background: radial-gradient(circle at 100% 100%, transparent 19px, #ffffff 20px);
    }
    .need-overlay-img::before{
        right: 0;
        left: auto;
        background: radial-gradient(circle at 0 0, transparent 19px, #514e5b 20px);
    }
    #your-need .right-sec{
        border-bottom-right-radius: 0;
        border-top-right-radius: 20px;
    }
    .your-need-content{
        border-radius: 20px 0 20px 20px;
    }
    #review{
        padding-top: 60px;
    }
    .review-wrapper .left-sec {
        text-align: center;
    }
    .flow-arrow {
        width: 34px;
    }
    .flow-box{
        font-size: 14px;
        width: 116px;
    }

}


@media (max-width: 768px) {
    .row-space {
        margin-bottom: 40px;
    }
    #home-hero {
        padding-top: 75px;
    }
    .container{
        padding: 0 40px;
    }
    .hero-wrapper{
        flex-direction: column-reverse;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-wrapper .left-sec .outline-btn {
        width: 100%;
    }
    #why-us{
        flex-direction: column-reverse;
    }
    #why-us .left-sec {
        background: var(--vai-gray2);
    }
    #why-us .right-sec {
        border-radius: 30px 30px 0 0;
        padding: 10px;
    }
    .why-us-text {
        border-top-left-radius: 0;
        border-bottom-left-radius: 30px;
    }
    #why-us .right-sec img {
        position: relative;
        right: auto;
        width: 100%;
    }
    .why-us-counter{
        flex-direction: column;
        width: 84%;
        background: white;
        padding-top: 20px;
        padding-right: 20px;
        position: relative;
        margin-right: 0;
        margin-top: 0;
    }
    .counter-box{
        width: 100%;
        aspect-ratio: auto;
        border-radius: 30px;
    }
    .section-title{
        font-size: 26px;
        margin-bottom: 20px;
    }
    .services-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    #review .left-sec h4{
        font-size: 26px;
        line-height: 30px;
    }
    .review-wrapper .left-sec {
        text-align: left;
    }
    .review-header img{
        max-width: 40px;
    }
    .reviewer-name {
        font-size: 16px;
    }
    .review-header{
     margin-bottom: 10px;
    }
    .review-item{
        padding: 20px 15px 20px 15px;
    }
    .review-wrapper{
        gap: 0;
    }
    #cases > .container{
        flex-direction: column;
    }
    .cases-swiper{
        width: 100%;
    }
    .cases-header{
        margin-top: 75px;
        display: flex;
        align-items: center;
    }
    .cases-header p {
        font-size: 26px;
        line-height: 34px;
    }
    .cases-header .outline-btn {
        width: 130px;
    }
    .cases-swiper{
        width: 290px;
        right: 0;
        left: 0;
        margin: auto !important;
        top: 180px !important;
    }
    #cases{
        margin-bottom: 185px;
    }
    .half-field {
        flex-direction: column;
        gap: 0;
    }
    fieldset{
        margin-bottom: 20px;
    }
    .header-logo {
        width: 147px;
    }
    .menu-social{
        display: none;
    }
    .footer-logo img {
        max-width: 85px;
    }
    .contact-box{
        background: transparent;
        flex-direction: column;
        padding: 0;
    }
    .mail-box svg{
        width: 30px;
        height: 30px;
    }
    .mail-box{
        width: 100%;
        background: none;
        flex-direction: row;
        gap: 5px;
        min-height: fit-content;
        padding: 0;
        justify-content: flex-start;
        font-size: 16px;
        font-weight: 400;
    }
    #site-footer {
        border-radius: 0;
        padding: 16px 16px 16px 40%;
    }
    .footer-logo img {
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
    }
    .footer-logo::before{
        top: 0;
        left: -16px;
        width: 16px;
        bottom: auto;
        height: 16px;
        background: radial-gradient(circle at 0 100%, transparent 15px, white 16px);
    }
    .footer-logo::after{
        top: 0;
        right: -16px;
        width: 16px;
        height: 16px;
        background: radial-gradient(circle at 100% 100%, transparent 15px, white 16px);
    }

    .why-us-counter::before{
        position: absolute;
        content: '';
        top: -30px;
        left: 0;
        width: 30px;
        bottom: auto;
        height: 30px;
        background: radial-gradient(circle at 100% 0, transparent 29px, white 30px);
    }

    #why-us .left-sec::after{
        position: absolute;
        content: '';
        top: auto;
        right: 10%;
        width: 30px;
        bottom: 0;
        height: 30px;
        background: radial-gradient(circle at 100% 0, transparent 29px, white 30px);
    }
    .why-us-counter::after{
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        width: 30px;
        bottom: auto;
        height: 30px;
        background: radial-gradient(circle at 0 100%, transparent 29px, #514e5b 30px);
    }

    .footer-logo{
        left: 30px;
    }
    #why-us .left-sec{
        border-radius: 0 0 30px 0;
        position: relative;
    }
    .swiper-button-prev.cases-prev, .swiper-button-next.cases-next{
        width: 36px;
        height: 36px;
        margin-top: -25px;
    }
    .swiper-button-prev.review-prev{
        top: 40% !important;
    }
    .swiper-button-next.review-next{
        top: 55% !important;
    }
    .swiper-button-next.review-next, .swiper-button-prev.review-prev{
        width: 36px;
        height: 36px;

        right: -35px !important;
    }
    .review-swiper {
        height: 285px;
    }
    .review-item.swiper-slide-prev,.review-item.swiper-slide-next{
        height: 90px !important;
    }
    .review-item.swiper-slide-active{
        height: 173px !important;
    }
    .review-body{
        font-size: 12px;
        line-height: 24px;
    }
    .review-item.swiper-slide-prev {
        transform: translateY(calc(15%)) scale(0.7) !important;
    }
    .review-item.swiper-slide-active{
        margin-top: -30px;
    }
    .half-wrapper{
        flex-direction: column-reverse;
    }

    .team-grid .swiper-wrapper {
        display: flex;
        gap: 0;
    }

    .team-grid .swiper-slide {
        width: 80%;
    }
    .team-back {
        height: 400px;
    }
    .contact-info-wrapper img {
        max-width: 90%;
    }
    .contact-info-wrapper {
        top: -100px;
    }
    #contact-info {
        margin-top: 160px;
    }
    #contact-info .left-sec {
        padding-top: 150px;
    }
    #contact-info .left-sec, #contact-info .right-sec {
        flex: auto;
    }
    .info-item:last-child{
        margin-bottom: 0;
    }
    .contact-wrapper {
        gap: 20px;
    }
    #half-sec {
        padding-top: 75px;
    }
    .feature-items{
     flex-direction: column;
    }
    .service-half-wrapper{
        flex-direction: column-reverse;
    }
    .service-gray-overlay, .service-orange-overlay {
        width: 274px;
        height: 380px;
        right: 0;
    }
    #service-report  .service-half-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    .ai-new-old{
        flex-direction: row;
        gap: 10px;
    }
    .middle-rounded-box {
        width: 50%;
        font-size: 12px;
        font-weight: 500;
        padding: 0 10px 10px 10px;
        min-height: 200px;
    }
    #service-report {
        padding-top: 65px;
        padding-bottom: 40px;
    }
    #dotted-back {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-top: -40px;
    }
    #dotted-back.two-side{
        margin-top: 40px;
    }
    #dotted-back.two-side .service-half-wrapper:first-child{
        flex-direction: column-reverse;
    }
    #dotted-back .service-half-wrapper {
        flex-direction: column;
        align-items: baseline;
    }
    #dotted-back.left-side::before{
        bottom: 63%;
        width: 100%;
    }
    #dotted-back .orange-ul li{
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
    }
    .page-cta{
        padding: 50px 30px 90px 30px;
    }

    .team-grid {
        padding: 0 0 10px 0 !important;
    }


    .steps-section {
        padding: 40px 40px 0 40px;
    }

    .steps-track {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .steps-track::before {
        top: 0;
        bottom: 0;
        left: 76px;
        right: auto;
        width: 7px;
        height: 100%;
        background: linear-gradient(to bottom, #5b3de8, #7b3acd, #9b3aab, #c84e6e, #e8682a);
    }

    .step {
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 16px;
        padding: 20px 0;
    }

    .step:hover {
        transform: none;
    }

    .step-number {
        position: absolute;
        left: 0;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        border-radius: 14px;
        top: 50%;
        transform: translateY(-50%);
    }

    .step-title {
        font-size: 14px;
        min-height: 1px;
    }

    .step-dot {
        position: absolute;
        left: 60px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
    }


    .step:nth-child(1) .step-dot,
    .step:nth-child(2) .step-dot,
    .step:nth-child(3) .step-dot,
    .step:nth-child(4) .step-dot,
    .step:nth-child(5) .step-dot {
        background: #eef0f8;
    }

    .step-content {
        text-align: left;
        margin-top: 0;
        padding: 0;
        margin-left: 37%;
    }
    #approach{
        padding-bottom: 0;
    }
    #your-need .outline-btn {
        width: 100%;
    }
    .our-service-item {
        width: 100%;
    }

    .cta-btn-wrapper .filled-btn {
        width: revert-rule;
        max-width: 90%;
        display: table-cell;
        vertical-align: middle;
    }
    .cta-btn-wrapper{
        right: 0;
        left: 0;
        width: 70%;
        margin: auto;
        text-align: center;
        padding: 5px;
    }
    .page-cta {
        margin: 40px auto;
    }
    .outline-btn, .filled-btn {
        font-size: 16px;
    }
    .flow-box {
        width: 82px;
        font-size: 12px;
        border: 4px solid var(--color);
    }
    .flow-arrow {
        height: 2px;
        width: 12px;
    }
    .flow-arrow::after {
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 8px solid var(--mid);
    }
    footer{
        background: #514E5B;
    }
    #copyright{
        background: white;
    }
    .breadcrumb > * {
        font-size: 14px;
    }
    .breadcrumb > *:not(:last-child)::after {
        margin-left: 10px;
    }
    .breadcrumb {
        gap: 10px;
    }

    .steps-section.v2 .step-number {
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 40px;
        font-weight: 500;
    }
    .steps-section.v2 .steps-track::before {
        top: 38px;
        left: 30px;
    }
    .steps-section.v2 .step-content {
        margin-left: 20%;
    }
}
@media (max-width: 576px) {
    .why-us-counter{
        width: calc(100% - 16%);
    }
    .flow{
        flex-direction: column;
    }
    .flow-box {
        width: 180px;
    }
    .flow-arrow {
        height: 40px;
        width: 8px;
    }
    .flow-arrow::after {
        border-left: 13px solid transparent;
        border-right: 13px solid transparent;
        border-top: 14px solid var(--mid);
        border-bottom: 0;
    }
    .breadcrumb > .breadcrumb-current{
        display: none;
    }
    .mail-box {
        font-size: 14px;
    }
    .steps-section.v2 .step-content {
        margin-left: 30%;
    }
}

