/* @font-face {
    font-family: 'Inter-Regular';
    src: url('/fonts/inter/static/Inter-Regular.ttf') format('ttf');
} */

@font-face {
    font-family: 'Inter-Regular';
    src: url('./fonts/inter/static/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Medium';
    src: url('./fonts/inter/static/Inter-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-SemiBold';
    src: url('./fonts/inter/static/Inter-SemiBold.ttf') format('ttf');
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('./fonts/inter/static/Inter-Bold.ttf') format('ttf');
}

@font-face {
    font-family: 'Inter-ExtraBold';
    src: url('./fonts/inter/static/Inter-ExtraBold.ttf') format('ttf');
}

:root {
    --theme-color: #004FFF;

    --interFontFamily--: 'Inter-Regular';
    --interFontMedium--: 'Inter-Medium';
    --interFontBold--: 'Inter-Bold';
    --interExtraBold--: 'Inter-ExtraBold';
    --interSemiBold--: 'Inter-SemiBold';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--interFontFamily--), sans-serif !important;
}

a,
button {
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

header {
    padding: 10px 7%;
    box-shadow: none;
    /* box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2); */
    transition: all 400ms ease-in-out;
}

.Header-Container {
    background: #f2f6ff;
}


header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 9;
    transition: all 450ms ease-in-out;
    padding: 0 5%;
    /* background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px) */
}

/* .container {
    max-width: 1120px;
    margin: 0 auto;
} */

.header_sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 20px 0 15px; */
}

.header_sec a img {
    width: 120px;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
}

.menu ul li {
    list-style: none;
    font-family: var(--interFontMedium--), sans-serif !important;
}

.menu ul li a {
    font-family: var(--interFontMedium--), sans-serif !important;
    font-size: 16px;
    color: #121212;
    display: flex;
    align-items: center;
}

.menu ul>li.contact {
    padding: 6px 16px;
    background-color: #272727;
    border: none;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-family: var(--interFontMedium--), sans-serif !important;
}

.menu ul>li.contact a {
    text-decoration: none;
    color: #fff;
}

.menu ul>li {
    padding: 25px 0;
    z-index: 9999;
}


.dropdown {
    position: relative;
}

.arrow {
    display: inline-block;
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: initial !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-menu li {
    padding: 0 !important;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: var(--theme-color);
}

.menu .dropdown-menu li a {
    font-size: 14px;
}

.menu .dropdown-menu li a img {
    width: 28px;
    margin-right: 10px;
}


.services-dropdown {
    min-width: 400px;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px !important;
    padding: 5px;
}

.services-dropdown a {
    padding: 10px 10px;
}


.tech-dropdown {
    min-width: 350px;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px !important;
    padding: 5px;
}

.tech-dropdown a {
    padding: 10px 10px;
}

/* .services-dropdown li {
    grid-template-rows: repeat(8, auto);
} */


.hero-section {
    display: flex;
    /* padding: 4rem 5rem; */
    /* margin: 0 auto; */
    /* max-width: 1200px; */
    background: linear-gradient(180deg, #F2F6FF 63.81%, #FFFFFF 100%);
}

.hero-left-section {
    padding: 5rem 7rem;
    height: 585px;
    width: 60%;
    background-image: url('./images/hero_shape_3_1.webp');
    background-size: 60% !important;
    background-repeat: no-repeat;
    background-position: 50% 20%;
    animation: mymove 5s infinite;
}

@keyframes mymove {
    50% {
        background-position: 60% 20%;
    }
}

/* .hero-right-section {
    width: 40%;
} */

.hero-right-section>.hero-image {
    width: 540px;
    height: 500px;
    margin-top: -90px;
}

.hero-right-section>.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-left-section span {
    color: var(--theme-color);
    border: none;
    background-color: #E6EEFF;
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 15px;
}

.hero-detail h1 {
    font-size: 50px;
    margin: 20px 0 25px;
    font-family: var(--interFontBold--), sans-serif !important;
}

.hero-detail p {
    width: 90%;
    margin: 0;
    padding: .65rem 0 1.85rem;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    text-align: justify;
}

.hero-detail>.fade-target {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-detail>.fade-in {
    opacity: 1;
}

.hero-detail>.hidden {
    display: none;
}

.hero-section-button>.hidden {
    display: none;
}

.hero-section-button {
    display: flex;
    gap: 20px;
}

.Play-Section-Main {
    display: flex;
    gap: 10px;
}

.Watch-Our-Story {
    align-content: center;
}

.Watch-Our-Story label {
    font-family: var(--interFontMedium--), sans-serif !important;
    font-size: 15px;
}

.Play-Btn-Section>.PlayIcon {
    position: relative;
    border-radius: 50% !important;
    padding: 20px 24px !important;
    margin-top: -6px;
}

.Play-Btn-Section>.PlayIcon::after,
.Play-Btn-Section>.PlayIcon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.Play-Btn-Section>.PlayIcon::after,
.Play-Btn-Section>.PlayIcon::before {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    background-color: #004FFF;
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(0.8);
        ;
        transform: scale(0.8);
        ;
        opacity: 0;
    }

    30% {
        opacity: .2;
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }

}

.videoSection {
    display: none;
    text-align: center;
    align-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 0 8px;
    background: #00000080;
    z-index: 9999999;
}

.videoSection>#CloseVideo {
    position: absolute;
    top: 18%;
    right: 26.3%;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.hero-section-button button {
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--interFontMedium--), sans-serif !important;
}

.hero-section-button button:nth-child(1) {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    margin-right: 5px;
    color: #fff;
}

.hero-section-button button:nth-child(2) {
    background: transparent;
    margin-right: 5px;
    color: #4A82FE;
    border: 1px solid #4A82FE;
}

.hero-right-grid-section {
    display: grid;
    height: 400px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 1rem;
}

.top-box {
    grid-column: 1 / 3;
    color: white;
    border-radius: 25px;
}

.top-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 25px;
    overflow: hidden;
}

.bottom-left {
    grid-column: 1 / 2;
    background-color: #CDC1FF;
    color: white;
    height: 275px;
    position: relative;
    overflow: hidden;
    border: 1px solid #CCCCCC;
    border-radius: 25px;
    width: 300px;
    display: flex;
    flex-direction: column;
}

.bottom-right {
    grid-column: 2 / 3;
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 300px;
    border-radius: 25px;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: all .3s ease;
}

.bottom-right:hover .arrow_ai_sec_tp img {
    transform: scale(1.05);
    transition: all .3s ease;
}

.bottom-right .arrow_ai_sec_tp {
    position: absolute;
    top: 18px;
    right: 18px;
}

.bottom-right .arrow_ai_sec_tp>img {
    width: 17px;
    height: auto;
}

.image-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 99;
    padding: 25px;
}

.image-box img {
    width: 100%;
}

.text-section {
    text-align: justify;
    padding: 20px 25px;
    background: #fff;
}

.text-section p {
    margin: 0;
    color: #272727;
    font-size: 16px;
}

.bottom-right img {
    width: 130px;
}

.bottom-right p {
    margin: 0;
    padding: 1.5rem 1rem 0;
    font-size: 18px;
    line-height: 1.4;
}

.solution-sec {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.solution-box {
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.solution-box img {
    width: 100%;
}

section {
    /* text-align: center; */
    max-width: 1120px;
    margin: 6rem auto 0;
}

section>span {
    text-align: center;
    background: #E6EEFF;
    color: var(--theme-color);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 16px;
}

.text-heading {
    text-align: center;
}

.text-heading h1 {
    font-weight: 600;
    padding: 0 14rem;
    font-size: 58px;
    font-family: var(--interExtraBold--), sans-serif !important;
}

.text-heading h2 {
    font-weight: 600;
    /* padding: 0 14rem; */
    font-size: 26px;
    font-family: var(--interExtraBold--), sans-serif !important;
}

.solution-sec {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.solution-box {
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px 6px;
    border-radius: 15px;
}

.solution-box img {
    width: 72px;
}

.solution-box .img_ginni {
    width: 160px;
}

.solution-box p {
    margin: 0;
}

.Ai-sec {
    background: #f2f6ff;
    padding: 3.5rem;
    border-radius: 25px;
    margin: 2.5rem 4% 0;
}

.Ai-sec-inner {
    display: flex;
    background: #fff;
    border-radius: 20px;
}

.Ai-sec-left {
    width: 65%;
    text-align: left;
    padding: 3rem 2.5rem 3rem 3rem;
    position: relative;
    z-index: 3;
}

.Ai-sec-left img {
    position: absolute;
    z-index: -1;
    width: 230px;
    left: 30px;
}

.Ai-sec-left h2 {
    font-size: 54px;
    font-family: var(--interFontBold--), sans-serif !important;
    font-weight: 600;
    position: relative;
}

.Ai-sec-left h2 img {
    position: absolute;
    left: 90px;
    width: auto;
    top: 115px;
}

.Ai-sec-left p {
    color: #666666;
    font-size: 18px;
    margin: 2rem 0 3rem;
}

.Ai-sec-left button {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
}

.Ai-sec-right {
    width: 35%;
    position: relative;
}

.Ai-sec-right img {
    width: 350px;
    position: absolute;
    top: -25px;
    right: -15px;
}

.span-sec {
    margin-top: 1.5rem;
}

.case-study-sec {
    margin: 3rem 0;
}

.case-study-sec-inner {
    display: flex;
    gap: 20px;
}

.upper-case {
    background: #F8F8FF;
    margin: 0 5px;
    padding: 2rem 2rem;
    text-align: left;
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    transition: all .3s ease;
}

.lower-case {
    background: #F8F8FF;
    margin: 0 5px;
    padding: 2rem 2rem;
    text-align: left;
    border-radius: 20px;
    overflow: hidden;
    transition: all .3s ease;
    position: relative;
}

.CRM-lower-case {
    background: #F8F8FF;
    margin: 0 5px;
    padding: 2rem 2rem;
    text-align: left;
    border-radius: 20px;
    overflow: hidden;
    transition: all .3s ease;
    position: relative;
}

.lower-case,
.CRM-lower-case,
.case-study-sec-second {
    transition: all .4s ease;
}

.upper-case:hover,
.lower-case:hover,
.CRM-lower-case:hover,
.case-study-sec-second:hover {
    box-shadow: 0 10px 13px 0 rgba(90, 122, 190, .09), 0 1px 1px 0 rgba(90, 122, 190, .07) !important;
}

.upper-case h2 {
    font-size: 32px;
    color: #000;
}

.upper-case p {
    font-size: 14px;
    margin-top: 20px;
    color: #666;
    line-height: 1.4;
    width: 72%;
}

.CRM-lower-case h2 {
    font-size: 32px;
    color: #000;
}

.CRM-lower-case p {
    font-size: 14px;
    margin-top: 20px;
    color: #666;
    line-height: 1.4;
    width: 65%;
}

.CRM-lower-case img {
    position: absolute;
    right: 20px;
    bottom: 15px;
    width: 87px;
    height: auto;
}

.lower-case h2 {
    font-size: 32px;
    color: #000;
}

.lower-case p {
    font-size: 14px;
    margin-top: 20px;
    color: #666;
    line-height: 1.4;
    width: 65%;
}

.lower-case img {
    position: absolute;
    right: 20px;
    bottom: 15px;
    width: 87px;
    height: auto;
}

.services-image-bx {
    position: relative;
    min-height: 150px;
}

.services-image-bx img {
    position: absolute;
    width: 65%;
    bottom: -35px;
    right: -30px;
}

.services-image-bx::before {
    content: "";
    display: inline-block;
    width: 80px;
    height: 80px;
    background-image: url(./images/circle-overlay.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -35px;
    position: absolute;
    left: -30px;
}

.case-study-image-top img,
.case-study-image-bottom img {
    width: 100%;
}

.case-study-sec-second {
    padding: 0;
    background: #F8F8FF;
    border-radius: 20px;
    display: flex;
}

.case-study-sec-second a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
}

.case-study-image-top,
.case-study-image-bottom {
    padding: 0 25px;
}

.case-study-sec-first {
    width: 35%;
}

.case-study-sec-second {
    width: 30%;
}

.servie-image-bx {
    padding-top: 2rem;
}

.case-study-sec-third {
    width: 35%;
    display: grid;
    gap: 20px;
}

.case-study-sec-third .upper-case {
    order: 2;
    margin: 0;
    /* margin-top: 25px; */
}

.servie-image-bx img {
    width: 100%;
}

.inner-case-center {
    text-align: left;
    padding: 4rem 3rem;
}

.inner-case-center h4 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #000;
}

.inner-case-center p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}







.tech-tabs {
    max-width: 900px;
    margin: auto;
}

.tabstech {
    /* display: flex;
    flex-wrap: wrap; */
    margin: 30px 4rem 45px;
    text-align: center;
}

.tabtc {
    padding: 10px 20px;
    margin-right: 5px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background: none;
    transition: 0.3s;
    color: #000;
    font-family: var(--interFontMedium--), sans-serif !important;
    font-size: 16px;
}

.tabtc.active {
    color: var(--theme-color);
    /* background-color: #e0e0e0; */
    font-family: var(--interFontMedium--), sans-serif !important;
}

.tabtc:hover {
    color: var(--theme-color);
}

.tech img {
    transition: all .4s ease;
}

.tech:hover img {
    transform: scale(1.125);
}

.tab-contents {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tab-panel {
    display: none;
    width: 100%;
}

.tab-panel.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tech {
    text-align: center;
    width: 120px;
}

.tech img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.tech>p {
    margin-top: 12px;
    font-size: 14px;
}










/* .sdk_images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 12px;
    align-items: center;
    margin-top: 2.5rem;
} */

.sdk_images img {
    width: 55px;
}

.sdk_sec {
    margin: 0 6rem;
    text-align: center;
}

/* .sdk_sec p {
    padding: 0 5rem;
    font-size: 20px;
    margin-bottom: 2rem;
    line-height: 28px;
} */


.sdk_Sec span {
    padding: 0 5rem;
    font-size: 20px;
    margin-bottom: 2rem;
}

.innovatiob-sec-tab p {
    padding: 8px 18px;
    font-size: 15px;
}

.innovation-sec {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0 2.5rem;
}

.video-section .video-section-inner img {
    width: 100%;
}

.video-text {
    display: grid;
    place-items: center;
}

.video-text p {
    color: #121212;
    font-size: 16px;
    width: 52%;
    margin: 2.2rem 0 1.8rem;
    line-height: 26px;
}

.video-text button {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
}

.innovatiob-sec-tab {
    border-radius: 30px;
    cursor: pointer;
    border: 1px solid #272727;
}

.innovatiob-sec-tab.active {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
}

.innovatiob-sec-tab.active p {
    color: #fff;
}

.innovatiob-sec-tab:hover {
    background-color: #e6f0ff;
}

.owl-carousel-location .item img {
    position: relative;
}

.owl-carousel-location .item span {
    font-family: var(--interFontMedium--), sans-serif;
    color: #Fff;
    font-size: 16px;
    position: absolute;
    bottom: 30px;
    left: 20px;
    font-weight: 400;
}

.owl-carousel .owl-item .item img {
    border-radius: 14px;
}

.owl-carousel .owl-item .item {
    margin-right: 8px;
}

.owl-carousel-location {
    margin-top: 2.8rem;
}

.country-text {
    display: grid;
    place-items: center;
}

.country-text p {
    color: #121212;
    font-size: 16px;
    width: 52%;
    margin: 2.2rem 0 1.8rem;
    line-height: 26px;
}


.how-we-work {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 0;
}

.how-we-work-leftsec {
    width: 40%;
    text-align: left;
}

.how-we-work-leftsec span {
    text-align: center;
    background: #E6EEFF;
    color: var(--theme-color);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 16px;
    font-family: var(--interFontMedium--), sans-serif;
}

.how-we-work-leftsec .how-we-work-text h1 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 58px;
    font-family: var(--interExtraBold--), sans-serif !important;
}

.how-we-work-leftsec .how-we-work-text h2 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 28px;
    font-family: var(--interExtraBold--), sans-serif !important;
}

.how-we-work-leftsec .how-we-work-text p {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

.how-we-work-rightsec {
    flex: 1;
}

.how-we-work-text {
    width: 90%;
    margin-top: 1.2rem;
}

.accordion {
    background-color: #fff;
    overflow: hidden;
}

.accordion-item {
    margin-bottom: 1.4rem;
}

.accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Inter-Medium', sans-serif;
    color: #000;
    transition: background-color 0.3s ease;
    text-align: left;
    border-left: 4px solid #2289ffb0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-item.active .accordion-header {
    border-color: #2289FF;
}

.accordion-header:hover {
    background-color: #f1f1f1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #fff;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
    text-align: left;
}

.accordion-content p {
    padding: 15px 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-family: var(--interFontFamily--), sans-serif !important;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 20px;
    border-bottom: 1px solid #E8EDFF;
}

/* .accordion-item .expand {
    opacity: 1;
    visibility: visible;
}

.accordion-item.active .expand {
    opacity: 0;
    visibility: hidden;
}

.accordion-item .disband {
    opacity: 0;
    visibility: hidden;
}

.accordion-item.active .disband {
    opacity: 1;
    visibility: visible;
} */

.hire-developer-sec {
    text-align: left;
}

.hire-developer-sec-text {
    width: 80%;
    margin-top: 1.8rem;
}

.hire-developer-leftsec {
    width: 50%;
}

.hire-developer-rightsec {
    width: 50%;
}

.hire-developer-sec span {
    background: #E6EEFF;
    color: var(--theme-color);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 16px;
    font-family: var(--interFontMedium--), sans-serif;
}

.hire-developer-sec-text h1 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 58px;
    font-family: var(--interExtraBold--), sans-serif !important;
}

.hire-developer-sec-inner {
    display: flex;
}

.hire-developer-sec-inner .hire-developer-leftsec p {
    font-size: 16px;
    color: #666666;
    line-height: 1.4;
}

.hire-developer-detail {
    margin-top: 1.8rem;
}

.hire-developer-detail h2 {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--interFontMedium--), sans-serif;
}

.hire-developer-detail ul {
    margin: 25px 0 35px 20px;
}

.hire-developer-detail ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
}

.hire-developer-detail button {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
}

.hire-developer-rightsec-image {
    padding: 5px;
}

.hire-developer-rightsec-image img {
    width: 100%;
}

.reviews-section {
    background-color: #F2F2F2;
    padding: 2.5rem;
    border-radius: 25px;
}

.reviews-section .text-heading.span-sec h1 {
    padding: 0 15rem;
}

.owl-carousel2 {
    margin-top: 2rem;
}

.owl-carousel2 .owl-item {
    height: 320px;
}

.owl-carousel2 .owl-item .item {
    margin-right: 15px;
    background: #fff;
    padding: 2.5rem;
    height: 100%;
    border-radius: 15px;
}

.owl-carousel2 .owl-item .item .item-inner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.owl-carousel .owl-item .item .item-inner .item-inner-imagebx>img {
    width: 100px !important;
}

.owl-carousel .owl-item .item .item-inner .item-inner-imagebx p {
    text-align: left;
    margin-top: 1rem;
}

.review-client {
    display: flex;
    align-items: center;
}

.review-client img {
    width: 60px !important;
}

.client-detail {
    text-align: left;
    /* margin-left: 10px; */
}

.client-detail h4 {
    font-size: 16px;
    font-family: var(--interFontMedium--), sans-serif;
    font-weight: 400;
    margin-bottom: 4px;
}

.client-detail p {
    font-size: 12px;
    color: #666;
}



.footer-section {
    padding-top: 5rem;
}

.footer-top {
    background-image: linear-gradient(to right, #427DFE, #004FFF);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 8%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.footer-top h2 {
    font-family: var(--interFontBold--), sans-serif;
    font-size: 54px;
    color: #fff;
}

.footer-top button {
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    color: #121212;
    font-family: var(--interFontMedium--), sans-serif;
    font-size: 16px;
}

.footer-inner {
    text-align: center;
    padding: 2rem 0 0;
    background: #f2f2f2;
}

.footer-inner h2 {
    color: #121212;
    font-family: var(--interFontBold--), sans-serif;
    font-size: 54px;
    margin: 2rem 0 2.5rem;
}


.input-footer input {
    border: 1px solid #c6c6c6;
    padding: 5px 10px;
    min-width: 300px;
    min-height: 40px;
    border-radius: 30px;
    color: #333;
    font-size: 14px;
    font-family: var(--interFontFamily--), sans-serif;
}

.input-footer input:focus {
    outline: none;
}

.input-footer input::placeholder {
    color: #333;
    font-size: 14px;
    font-family: var(--interFontFamily--), sans-serif;

}

.input-footer button {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-family: var(--interFontFamily--), sans-serif;
    margin-left: 6px;
}

.social-detail {
    text-align: left;
}

.social-detail>p {
    font-family: var(--interFontMedium--), sans-serif;
    font-size: 18px;
    color: #427DFE;
    margin: 0 0 10px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.footer-service-detail h3,
.footer-company-detail h3 {
    color: #427DFE;
    font-size: 18px;
    font-family: var(--interFontMedium--), sans-serif;
    font-weight: 400;
}

.footer-Menu-Sec {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    gap: 6rem;
}

.footer-service-detail,
.footer-company-detail {
    text-align: left;
}

.footer-service-detail ul,
.footer-company-detail ul {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    margin-top: .5rem;
}

.footer-service-detail ul li,
.footer-company-detail ul li {
    list-style: none;
    color: #121212;
    margin: 15px 2px;
    position: relative;
    font-family: var(--interFontFamily--), sans-serif;
    font-size: 14px;
}

.footer-service-inner-detail {
    display: flex;
    gap: 50px;
}

/* .footer-service-detail ul li::after,
.footer-company-detail ul li::after {
    content: '';
    position: absolute;
    right: -15px;
    width: 2px;
    height: 20px;
    background-color: #555;
} */

.footer-service-detail ul li a,
.footer-company-detail ul li a {
    color: #121212;
}

/* .footer-company-detail {
    margin-top: 2rem;
} */

.footer-service-detail ul li:last-child::after,
.footer-company-detail ul li:last-child::after {
    content: none;
}

.copyright-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 8%;
    margin-top: 2.5rem;
}

.copyright-footer h6 {
    color: #121212;
    font-size: 14px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 400;
}

.copyright-footer ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.copyright-footer ul li {
    list-style: none;
}

.copyright-footer ul li a {
    color: #121212;
    font-size: 14px;
}

/* OUR PROCESS SECTION */

.our-process-section {
    margin: 0;
    max-width: 100%;
}

.our-process-section .section-inner-sm {
    text-align: center;
    background: #E6EEFF;
    padding: 3rem 0;
    border-radius: 30px;
    max-width: 1120px;
    margin: 4rem auto 0;
}

.section-inner-sm>span {
    text-align: center;
    background: #E6EEFF;
    color: var(--theme-color);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 15px;
}

.section-inner-sm .text-heading {
    text-align: center;
}

.section-inner-sm .text-heading h1 {
    font-weight: 600;
    padding: 0;
    font-size: 58px;
    font-family: var(--interExtraBold--), sans-serif !important;
}

.section-inner-sm .text-heading h1>span {
    color: #427DFE;
}

.section-process-dv {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    max-width: 1120px;
    margin: 0 auto;
}

.section-process-dv .content {
    flex: 1;
    padding: 20px 0;
    text-align: left;
}

.section-process-dv .content h2 {
    font-size: 32px;
    font-family: var(--interFontBold--), sans-serif;
    font-weight: 600;
    color: #121212;
    margin: 5px 0 1rem 0;
}

.section-process-dv .content p {
    font-size: 18px;
    font-family: var(--interFontFamily--), sans-serif;
    font-family: 300;
    color: #333;
    line-height: 1.5;
    padding-right: 4rem;
}

.section-process-dv .content ul {
    font-size: 18px;
    font-family: var(--interFontFamily--), sans-serif;
    font-family: 300;
    color: #333;
    line-height: 1.5;
    margin-left: 30px;
}

.section-process-dv .content span {
    font-size: 64px;
    font-family: var(--interFontBold--), sans-serif;
    font-weight: 700;
}

.section-process-dv .image {
    flex: 1;
    padding: 2rem 0 2rem 2rem;
}

.section-process-dv .image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 3rem 0 0 3rem;
}

.section-lg:nth-child(odd) .image img {
    padding: 2rem 2rem 0 0;
}

.section-lg:nth-child(odd) .image {
    padding: 2rem 2rem 2rem 0;
}

.section-lg:nth-child(odd) .section-process-dv .content p {
    padding: 0;
}

.section-lg:nth-child(odd) .section-process-dv {
    flex-direction: row-reverse;
}

.section-lg:nth-child(even) .section-process-dv {
    flex-direction: row;
}

.section-lg:nth-child(even) {
    background-color: #fff;
}

.section-lg:nth-child(odd) {
    background-color: #f0f0f0;
}

.contact-section {
    display: flex;
    padding: 0 2rem;
    /* align-items: center; */
}

.contact-left {
    width: 50%;
    text-align: left;
}

.contact-left p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 300;
    color: #333;
    margin-top: 1.8rem;
    /* width: 80%; */
    line-height: 1.4;
}

.contact-left h1 {
    font-size: 58px;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
}

.contact-right {
    width: 50%;
    padding: 1rem 2rem 0 1rem;
}

.contact-form {
    width: 80%;
    margin-top: 1rem;
}

.div-input-contact {
    margin-bottom: 15px;
}

.div-input-contact input {
    padding: 10px;
    width: 100%;
    border: 1px solid #808080;
    border-radius: 30px;
    padding: 14px 18px;
    font-size: 14px;
    font-family: var(--interFontFamily--), sans-serif;
}

.div-input-contact input:focus {
    outline: none;
}

.div-input-contact input::placeholder {
    font-size: 14px;
    text-transform: capitalize;
    font-family: var(--interFontFamily--), sans-serif;
}

.div-contact-country {
    display: flex;
    gap: 10px;
}

.div-contact-country .country-ct {
    width: 30%;
}

.div-contact-country .country-tel {
    width: 100%;
}

.div-contact-country .country-tel::-webkit-outer-spin-button,
.div-contact-country .country-tel::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.div-contact-country .country-tel[type=number] {
    -moz-appearance: textfield;
}

.div-input-button button {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
}

.toggle-button {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    margin-top: 10px;
}

.contact-right .owl-carousel.owl-carousel-location.owl-loaded.owl-drag {
    padding-bottom: 3rem;
}


/* service-page-style */

.service-section {
    margin: 4rem auto 0;
}

.service-section .contact-left>span {
    background: #E6EEFF;
    color: var(--theme-color);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 16px;
    font-family: var(--interFontMedium--), sans-serif;
}

.service-section .contact-left p {
    margin-top: 1.35rem;
}

.service-section .contact-right-service {
    width: 55%;
    padding: 0rem 3rem 0 3rem;
}

.service-section .contact-section {
    padding: 0;
}

.contact-right-service img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.contact-left h1 {
    font-size: 42px;
    font-family: var(--interExtraBold--), sans-serif;
    color: #121212;
}

.contact-left h1 span {
    color: #004FFF;
}

.text-heading-services {
    text-align: left;
}

.text-heading-services h2 {
    font-size: 32px;
    font-family: var(--interExtraBold--), sans-serif;
    color: #121212;
    margin-bottom: 1rem;
}

.text-heading-services p {
    font-size: 16px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 300;
    color: #121212;
    line-height: 1.4;
}

.col-sec-service {
    margin: 4rem auto 0;
}

.col-sec-service>h2 {
    font-size: 30px;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 600;
    color: #121212;
    line-height: 1.3;
}

.services-two-col {
    /* display: flex; */
    margin: 2.8rem 2rem 0;
    /* gap: 25px; */
}

.services-two-col .services-two-col-inner {
    text-align: left;
    background: #427dfe;
    border-radius: 18px;
    padding: 1.5rem 2.5rem;
    margin-bottom: 20px;
}

.services-two-col-inner h2 {
    font-size: 28px;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
    color: #fff;
}

.services-two-col-inner h3 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    font-family: var(--interFontFamily--), sans-serif;
    margin-bottom: 10px;
}

.services-two-col-inner p {
    font-size: 16px;
    color: #fff;
    font-family: var(--interFontFamily--), sans-serif;
}

.services-two-col-inner ul {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-family: var(--interFontFamily--), sans-serif;
    margin-left: 20px;
    margin-top: 10px;
}

.services-two-col-inner ul li {
    padding: 7px 0;
}

.services-two-col-inner>.Service-inner-content {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}

.services-two-col-inner>.Service-inner-content>.service-content {
    width: 31%;
}

.serivce-Second-sec {
    margin-top: 2rem;
    background-image: url('./images/nLogoBig.png');
    background-repeat: no-repeat;
    background-size: 35%;
}

.serivce-Second-sec h2 {
    font-size: 32px;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
}

.serivce-Second-sec>.serivce-inner-Second-sec {
    display: flex;
}

.serivce-Second-sec>.serivce-inner-Second-sec p {
    font-family: var(--interFontFamily--), sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    margin-top: 10px;
    width: 95%;
}

.serivce-Second-sec>.serivce-inner-Second-sec ul {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-family: var(--interFontFamily--), sans-serif;
    margin-left: 20px;
    margin-top: 10px;
    margin-right: 40px;
}

.serivce-Second-sec-image {
    margin-left: 80px;
}

.serivce-Second-sec>.serivce-inner-Second-sec ul li {
    padding: 7px 0;
}

.serivce-Second-sec>.serivce-inner-Second-sec img {
    width: 440px;
    height: 320px;
}

.service-thrid-sec {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.service-tech-sec {
    padding: 30px;
    border-radius: 30px;
    background: #E6EEFF;
    width: 478px;
}

.service-tech-sec h2 {
    font-size: 32px;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
    text-align: center;
}

.ecommerce-sec {
    width: 478px;
}

.ecommerce-sec h2 {
    background: #E6EEFF;
    font-size: 32px;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    border-radius: 30px;
}

.ai-section {
    text-align: center;
}

.our-services-section {
    text-align: center;
}

.video-industry-section {
    text-align: center;
}

.location-serve-section {
    text-align: center;
}

.reviews-section {
    text-align: center;
}

.ecommerce-inner-sec ul {
    list-style: none;
}

.ecommerce-inner-sec ul li {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 10px;
    padding-top: 15px;
}

.ecommerce-inner-sec ul li label {
    font-family: var(--interFontMedium--), sans-serif;
    font-size: 15px;
    color: #121212;
}

.ecommerce-inner-sec ul li p {
    font-family: var(--interFontFamily--), sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    background: #E6EEFF;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
}

.Tech-Section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.Tech-Section>.Tech-inner-Section {
    text-align: center;
    width: 100px;
}

.Tech-Section>.Tech-inner-Section p {
    font-family: var(--interFontFamily--), sans-serif;
    font-size: 16px;
    color: #121212;
}

.Tech-Section>.Tech-inner-Section img {
    width: 50px;
    height: 50px;
}

.service-tech-content {
    background: #F7F7F7;
    border-radius: 30px;
    padding: 40px;
    width: 717px;
}

.service-tech-content h2 {
    font-size: 32px;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
}

.service-tech-content ul {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-family: var(--interFontFamily--), sans-serif;
    margin-left: 20px;
    margin-top: 10px;
}

.service-tech-content ul li {
    padding: 7px 0;
}

.case-studies-section {
    max-width: 1120px;
    margin: 3rem auto 0;
}

.case-studies-section h1 {
    font-size: 48px;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
}

.sace-studies-inner-sec {
    margin-top: 1.8rem;
}

.case-studies-inner-box {
    display: flex;
}

.case-studies-inner-box:nth-child(even) {
    flex-direction: row-reverse;
}

.case-studies-inner-box:nth-child(odd) {
    flex-direction: row;
}

.case-studies-image-sec {
    width: 50%;
}

.case-studies-image-sec img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-studies-text-sec {
    width: 50%;
    padding: 2rem 2rem;
}

.case-studies-text-sec>span {
    background: #E6EEFF;
    color: var(--theme-color);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 16px;
    font-family: var(--interFontMedium--), sans-serif;
}

.case-studies-text-dtl {
    margin-top: 1.5rem;
}

.case-studies-text-dtl h2 {
    font-size: 32px;
    font-family: var(--interFontMedium--), sans-serif;
    font-weight: 400;
    color: #121212;
    line-height: 1.2;
    margin-bottom: .8rem;
}

.case-studies-text-dtl p {
    font-size: 16px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
}

.read-more-cs {
    position: relative;
}

.read-more-cs span {
    position: absolute;
    right: -10px;
    bottom: -35px;
    font-size: 16px;
    font-family: var(--interFontMedium--), sans-serif;
    cursor: pointer;
}

.read-more-cs span a {
    color: #222;
}

.casestudies-2 {
    background-color: #5766E5;
    color: #fff;
}

.casestudies-3 {
    background-color: #E55795;
    color: #fff;
}

.casestudies-2 h2,
.casestudies-2 p {
    color: #fff;

}

.casestudies-3 h2,
.casestudies-3 p {
    color: #fff;
}

.casestudies-3 span a,
.casestudies-2 span a {
    color: #fff;
}




.about-section {
    max-width: 1120px;
    margin: 3rem auto 0;
}

.about-section .about-section-inner>.about-section-Highlight {
    text-align: center;
}

.about-section .about-section-inner>.about-section-Highlight>span {
    background: #E6EEFF;
    color: var(--theme-color);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 16px;
    font-family: var(--interFontMedium--), sans-serif;
}

.about-section .about-section-inner .about-heading-sec {
    /* display: flex;
    align-items: center; */
    margin-top: 2rem;
}

.about-section .about-section-inner .about-heading-sec h1 {
    font-size: 54px;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
    width: 85%;
    text-align: center;
    margin: auto;
}

.about-section .about-section-inner .about-heading-sec p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    /* width: 35%; */
    margin-top: 15px;
}

.about-banner-img {
    margin: 4.5rem 0;
}

.about-banner-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
}


.about-section-flex-inner {
    display: flex;
    margin-bottom: 4rem;
}

.about-section-flex-inner:nth-child(even) {
    flex-direction: row-reverse;
}

.about-section-flex-inner:nth-child(odd) {
    flex-direction: row;
}

.about-section-left {
    width: 30%;
}

.about-section-left h2 {
    font-size: 54px;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
    padding: 0 .5rem;
}

.vison-ab .about-section-left h2 {
    text-align: right;
}

.vison-ab .about-section-right {
    background-color: #F2F2F2;
    padding: 2rem;
    border-radius: 15px;
}

.about-section-right {
    width: 70%;
    padding-left: 1rem;
}

.about-section-right h4 {
    font-size: 20px;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-section-right p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
}

.case-studies-single-section .case-studies-single-section-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 0 1rem;
}

.case-studies-single-section .case-studies-single-section-inner h1 {
    font-size: 54px;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 0 4rem;
    line-height: 1.2;
}

.case-studies-single-section .case-studies-single-section-inner>p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 400;
    line-height: 1.4;
    padding: 0 10rem;
}

.case-studies-details {
    padding-top: 4rem;
}

.case-studies-details-inner {
    display: flex;
    margin-bottom: 8rem;
    gap: 25px;
    position: relative;
}


.case-studies-details-left {
    width: 30%;
}

.case-studies-details-left h4 {
    font-size: 36px;
    font-family: var(--interExtraBold--), sans-serif;
    text-align: left;
}

.case-studies-details-right {
    width: 70%;
    text-align: left;
}

.case-studies-details-right p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    text-align: left;
    line-height: 1.4;
}

.case-studies-details-inner1::after {
    position: absolute;
    content: '';
    top: 6rem;
    left: 50%;
    height: 50px;
    width: 2px;
    background-color: #666;
}

.case-studies-details-inner2::after {
    position: absolute;
    content: '';
    top: 9rem;
    left: 50%;
    height: 50px;
    width: 2px;
    background-color: #666;
}

.case-studies-details-inner3::after {
    position: absolute;
    content: '';
    top: 11rem;
    left: 50%;
    height: 50px;
    width: 2px;
    background-color: #666;
}

.case-studies-vertical-inner {
    position: relative;
}

.case-studies-vertical-inner.case-studies-details-inner4 {
    margin-bottom: 6rem;
}

.case-studies-details-inner4::after {
    position: absolute;
    content: '';
    top: 9.5rem;
    left: 50%;
    height: 50px;
    width: 2px;
    background-color: #666;
}

.case-studies-vertical-inner h2 {
    font-size: 36px;
    font-family: var(--interExtraBold--), sans-serif;
}

.case-studies-vertical-inner p {
    font-size: 16px;
    font-family: var(--interFontFamily--), sans-serif;
    line-height: 1.4;
    text-align: center;
    padding: 1.25rem 10rem 3rem;
}

.case-studies-grid-sec {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.case-studies-grid-inner {
    background-color: #F2F2F2;
    padding: 2rem 4rem;
    border-radius: 10px;
}

.case-studies-grid-inner p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    line-height: 1.4;
    text-align: left;
}






.technologies-section {
    padding: 6rem 0 2rem;
}

.technologies-container {
    display: flex;
    height: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.technologies-left-sec {
    width: 20%;
}

.technologies-right-sec {
    width: 80%;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tab {
    padding: 6px 18px;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    font-family: var(--interFontMedium--), sans-serif;
    font-size: 14px;
}

.technologies-left-inner {
    padding: 6px 18px;
    display: flex;
    align-items: center;
    font-family: var(--interFontMedium--), sans-serif;
    font-size: 14px;
    background: #F2ECFD;
    margin-bottom: 2rem;
}

.tab:hover {
    background: #F2ECFD;
}

.tab.active {
    background: #F2ECFD;
    font-weight: var(--interSemiBold--), sans-serif;
    font-weight: 500;
}

.tab img {
    margin-right: 8px;
}

.tab-content {
    flex: 1;
    padding: 10px 0 10px 60px;
}

.tab-content>div {
    display: none;
}

.tab-content>div.active {
    display: block;
}

.tech_btn {
    text-align: center;
    margin-bottom: 2rem;
}

.tech_btn button {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-family: var(--interFontFamily--), sans-serif;
}

.technologies-right-inner h1 {
    font-size: 54px;
    font-family: var(--interFontBold--), sans-serif;
    font-weight: 600;
    padding-right: 8rem;
    line-height: 1.3;
}

.technologies-right-inner h4 {
    font-family: var(--interFontMedium--), sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin: 1rem 0 1.5rem;
}

.technologies-right-inner p {
    color: #333;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: .25rem;
}

.technologies_content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 2rem;
}

.technologies_content_inner img {
    width: 100%;
    height: auto;
}

.tech_content_btm {
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
}

.hire-developer-main-container {
    padding: 1rem 10rem;
}

.hire-developer-main {
    margin-top: 20px;
}

.hire-developer-main h1 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 42px;
    font-family: var(--interExtraBold--), sans-serif !important;
    text-align: center;
}

.hire-developer-main h1 span {
    color: #004FFF;
}

.hire-developer-content {
    display: flex;
    gap: 20px;
}

.hire-developer-left-sec {
    width: 59%;
}

.hire-developer-left-sec h2 {
    font-size: 28px;
    margin: 20px 0 20px 0;
    line-height: 1.4;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
}

.hire-developer-left-sec p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 300;
    color: #333;
    width: 90%;
}

.hire-developer-right-sec {
    width: 41%;
    margin-top: 20px;
}

.hire-developer-right-sec img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hire-developer-btn {
    margin-top: 20px;
}

.hire-developer-btn button {
    border: none;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--interFontMedium--), sans-serif !important;
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
}


.hire-developer-Second-content {
    background: #E6EEFF;
    border-radius: 20px;
    padding: 20px;
    margin-top: 40px;
    display: flex;
}

.hire-developer-Second-Heading {
    width: 25%;
}

.hire-developer-Second-Heading h2 {
    font-size: 28px;
    margin: 0;
    line-height: 1.4;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
}

.hire-developer-Second-Heading h2 span {
    color: #004FFF;
}

.hire-developer-Second {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 75%;
}

.hire-developer-Second p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 300;
    color: #333;
    width: 90%;
}

.hire-developer-inner-Second {
    width: 48%;
}

.hire-developer-thrid-content {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.hire-developer-thrid-heading {
    width: 50%;
}

.hire-developer-thrid-heading h2 {
    font-size: 28px;
    margin: 0 0 20px 0;
    line-height: 1.4;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
}

.hire-developer-thrid-heading p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 300;
    color: #333;
    width: 100%;
    display: flex;
}

.hire-developer-thrid-heading p span {
    font-size: 28px !important;
    font-family: var(--interSemiBold--), sans-serif !important;
    font-weight: 300;
    margin-right: 10px;
}

.hire-developer-thrid-inner {
    background: #427DFE;
    color: #fff;
    border-radius: 20px;
    padding: 20px 40px;
    width: 50%;
    align-content: center;
}

.hire-developer-thrid-inner h2 {
    font-size: 28px;
    margin: 0;
    line-height: 1.4;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
}

.hire-developer-thrid-inner p {
    font-size: 15px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 300;
    width: 92%;
}

.Ginnie-Top-Sec-Content {
    width: 62%;
    margin: auto;
    text-align: center;
}

.Ginnie-Top-Sec-Content h1 {
    font-size: 48px;
    margin: 20px 0 25px;
    font-family: var(--interFontBold--), sans-serif !important;
}

.Ginnie-Top-Sec-Content p {
    margin: auto;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    width: 80%;
}


.Ginnie-Top-Sec-Image {
    width: 65%;
    margin: auto;
    position: relative;
    margin-bottom: -4px;
}

.Ginnie-Top-Sec-Image img {
    width: 100%;
    height: auto;
}

.Ginnie-Top-Sec-Image-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 30%;
    left: 10%;
    width: 80%;
}

.Ginnie-Top-Sec-Bot-Content {
    align-self: flex-end;
    display: flex;
    gap: 1rem;
    width: 100%;
    margin: 0 0 20px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s, transform .5s;
}

.Ginnie-Top-Sec-Bot-Content.v--visible {
    opacity: 1;
    transform: translateY(0);
}

.Ginnie-Top-Sec-Bot-Content p {
    box-shadow: 0px 0px 15px 0px #0000001A;
    background: #fff;
    border-radius: 20px;
    padding: 15px 14px;
    font-family: var(--interFontFamily--);
    font-size: 14px;
    max-width: 31%;
    margin: 0;
    align-content: center;
    line-height: 20px;
}

.Ginnie-Top-Sec-Bot-Content img {
    width: 35px;
    height: 35px;
}

.Ginnie-BelowBar {
    height: 72px;
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 98.93%);
    display: flex;
    justify-content: space-evenly;

}

.Ginnie-BelowBar p {
    margin: auto;
    font-size: 16px;
    line-height: 1.4;
    color: #E2E2E4;
}

.Ginnie-BelowBar svg {
    font-size: 25px;
    margin: 0 3px -6px 0px;
}

.Ginnie-BelowBar-Inner {
    align-content: center;
}

.Ginnie-GrowSec {
    padding: 0 13rem;
    margin-top: 4rem;
}

.Ginnie-Top-Heading {
    margin: auto;
    font-size: 15px;
    font-family: var(--interExtraBold--), sans-serif;
    line-height: 1.4;
    color: #004FFF !important;
    background: #E6EEFF;
    border-radius: 20px;
    width: 25%;
    padding: 2px;
    text-align: center;
}

.Ginnie-Grow-content {
    text-align: center;
    margin-top: 20px;
}

.Ginnie-Grow-content h2 {
    font-size: 45px;
    margin: 20px 0 15px;
    font-family: var(--interFontBold--), sans-serif !important;
}

.Ginnie-Grow-content p {
    margin: auto;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    width: 80%;
}

.Ginnie-Grow-Image {
    width: 100%;
    margin-top: 20px;
}

.Ginnie-Grow-Image img {
    width: 100%;
    height: auto;
}

.Ginnie-Show {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.Ginnie-Show-Left {
    padding: 3rem;
    align-content: center;
}

.Ginnie-Show-Left h2 {
    font-size: 30px;
    margin: 20px 0 15px;
    font-family: var(--interFontBold--), sans-serif !important;
}

.Ginnie-Show-Left p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    width: 95%;
}

.Ginnie-Show img {
    width: 455px;
    height: auto;
}

.Ginnie-Theme {
    margin-top: 10%;
    display: flex;
    position: relative;
}

.Ginnie-Theme img {
    width: 550px;
    height: auto;
}

.Ginnie-Theme-right {
    padding: 10px 0 0 40px;
}

.Ginnie-Theme-right h2 {
    font-size: 30px;
    margin: 20px 0 15px;
    font-family: var(--interFontBold--), sans-serif !important;
}

.Ginnie-Theme-right p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

.Ginnie-Theme-Video {
    position: absolute;
    top: -44px;
    left: 27%;
    width: 300px;
    height: auto;
    box-shadow: 5px 5px 24px -3px #00000026;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
}

.Ginnie-Theme-Video video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.Ginnie-Theme-email {
    margin-top: 20px;
}

.Ginnie-Theme-email label {
    font-family: var(--interFontFamily--);
    font-size: 13px;
    color: #00D007;
}

.Ginnie-Theme-email input {
    font-family: var(--interFontFamily--);
    font-size: 14px;
    border: 1px solid #808080;
    background: #fff;
    border-radius: 30px;
    padding: 10px;
    width: 100%;
    margin-top: 5px;
    outline: none;
}

.Ginnie-Theme-email button {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    margin-top: 20px;
}

.Mobile_Header {
    display: none;
}

.Mobile-hero-image {
    display: none;
}

.mobile-video-industry-section {
    display: none;
}







.container-blog {
    display: flex;
    overflow: hidden;
    align-items: center;
    background: #f2f6ff;
}

.left-section {
    flex: 1;
    padding: 1.5rem 3rem 2.5rem;
}

.left-section h2 {
    color: var(--theme-color);
    margin: 0;
    font-size: 32px;
    width: 90%;
    font-family: var(--interFontMedium--), sans-serif !important;
}

.left-section p {
    color: #666;
    font-size: 15px;
    margin: 1rem 0;
    width: 90%;
    line-height: 24px;
}

.left-section .read-btn {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    border-radius: 50px;
    font-family: var(--interFontFamily--), sans-serif !important;
    font-size: 14px;
}

.left-section .meta {
    color: #000;
    font-size: 0.9em;
}

.left-section .meta>span {
    display: block;
    margin: .5rem 0 1rem;
    color: #666;
}

.image-section {
    flex: 1.2;
}

.image-section img {
    width: 100%;
    height: auto;
}

.nav-buttons {
    padding: 5px;
    background: #fff;
    display: flex;
    gap: 20px;
    margin: 0 20px;
}

.nav-buttons button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-family: var(--interFontFamily--), sans-serif !important;
}

.gallery {
    display: flex;
    gap: 10px;
    padding: 10px;
}

.gallery img {
    width: 100%;
    border-radius: 5px;
}


.blogs_wraps {
    position: relative;
    width: 100%;
    top: 20px;
    padding: 0 7% 0;
}

.blogs_wraps_inner {
    background: #fff;
    border-radius: 20px;
    padding: 20px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.nav-btn.active {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    color: #fff;
    border-color: #004FFF;
}


.card-container {
    padding: 20px;
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.card-content {
    padding: 15px 0;
}

.card-content .meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.card-content>h2 {
    font-family: var(--interFontMedium--), sans-serif !important;
    font-size: 24px;
    font-weight: 500;
    margin-top: .5rem;
    color: #000;
}

.card-content>p {
    font-family: var(--interFontFamily--), sans-serif !important;
    font-size: 15px;
    font-weight: 400;
    margin-top: .8rem;
    line-height: 20px;
    color: #444;
}

.single_blog_container {
    padding: 2rem 8%;
}

.single_blog_container_inner h2 {
    color: #000;
    font-family: var(--interExtraBold--), sans-serif;
    font-size: 48px;
    margin: 2rem 0 2rem;
}

.blog_single_img img {
    width: 100%;
    border-radius: 20px;
}

.blog_details {
    margin-top: 2rem;
}

.blog_details h4 {
    font-size: 24px;
    font-family: var(--interFontMedium--), sans-serif !important;
    font-weight: 400;
}

.blog_details p {
    font-family: var(--interFontFamily--), sans-serif !important;
    color: #333;
    margin: .5rem 0 1.25rem;
    font-size: 15px;
    line-height: 1.5;
}

.blog_details ul {
    margin-left: .8rem;
}

.blog_details ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.read-btn a {
    color: #fff;
}

.single_blog_container_inner>ul {
    display: flex;
    gap: 15px;
    list-style: none;
    align-items: center;
}

.single_blog_container_inner>ul li {
    color: #000;
    font-size: 14px;
}

.single_blog_container_inner>ul li a {
    color: #444;
    font-size: 14px;
}

.single_blog_container_inner>ul {
    display: flex;
    gap: 15px;
    list-style: none;
    align-items: center;
}

.single_blog_container_inner>ul li {
    color: #000;
    font-size: 14px;
}

.single_blog_container_inner>ul li a {
    color: #444;
    font-size: 14px;
}

.blog-Heading h6 {
    font-family: var(--interFontFamily--), sans-serif;
    font-size: 20px;
    margin-left: 20px;
}

@media (min-width:320px) and (max-width:767px) {
    .header_sec {
        display: none;
    }

    .Mobile_Header {
        display: flex;
        justify-content: space-between;
    }

    .Mobile_Header img {
        width: 110px;
        height: auto;
        margin-top: 10px;
    }

    .Mobile_Header .fa-navicon {
        font-size: 20px;
    }

    .hero-image {
        display: none;
    }

    .hero-section {
        flex-direction: column-reverse;
    }

    .hero-left-section {
        padding: 22% 5% 5%;
        height: unset;
        width: 100%;
        text-align: center;
    }

    .hero-detail h1 {
        font-size: 28px;
    }

    .hero-left-section span {
        font-size: 13px;
    }

    .hero-detail p {
        width: 100%;
        font-size: 14px;
        text-align: center;
    }

    .hero-section-button {
        justify-content: center;
    }

    .hero-section-button button {
        font-size: 13px;
    }

    .Play-Btn-Section>.PlayIcon {
        padding: 17px 20px;
    }

    .Watch-Our-Story {
        display: none;
    }

    .hero-right-section {
        width: 300px;
        height: 300px;
        margin: auto;
    }

    .Mobile-hero-image {
        display: block;
    }

    .Mobile-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ssc-section {
        margin: 10% 0;
    }

    .text-heading h1 {
        padding: 0;
        font-size: 28px;
    }

    .solution-sec {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        padding: 0 20px;
        margin-top: 1rem;
    }

    .ai-section {
        margin: 10% 0;
    }

    .Ai-sec {
        margin: 0;
        border-radius: unset;
        padding: 15px 1.5rem;
        background: unset;
    }

    .Ai-sec-left h2 {
        font-size: 28px;
        padding: 10px 0 80px 0;
    }

    .Ai-sec-left h2 img {
        position: absolute;
        left: 0;
        width: auto;
        margin: auto;
        bottom: 0;
        right: 0;
        top: 85px;
    }

    .Ai-sec-left p {
        font-size: 14px;
        margin: 1rem 0 2rem;
    }

    .Ai-sec-right img {
        width: 90%;
        position: unset;
    }

    .Ai-sec-right {
        width: 100%;
        padding-bottom: 5px;
    }

    .Ai-sec-left {
        text-align: center;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .Ai-sec-inner {
        display: block;
        box-shadow: 1px 4px 10px 1px #0000001A;
        z-index: 9;
        display: block;
        position: relative;
    }

    .Glogo {
        display: none;
    }

    .Ai-sec::before {
        content: "";
        position: absolute;
        top: -40px;
        left: -50px;
        width: 230px;
        height: 230px;
        background: radial-gradient(circle, #99B9FF, transparent 80%);
        opacity: 0.5
    }

    .our-services-section {
        margin: 10% 0;
    }

    .section-inner-sm .text-heading h1 {
        font-size: 28px;
    }

    .case-study-sec-inner {
        flex-direction: column;
    }

    .case-study-sec-first {
        width: 100%;
    }

    .case-study-sec-second {
        width: 100%;
    }

    .case-study-sec-third {
        width: 100%;
    }

    .case-study-sec {
        margin: 0;
        padding: 15px 1.5rem;
    }

    .upper-case {
        text-align: center;
    }

    .upper-case h2 {
        font-size: 24px;
    }

    .upper-case p {
        width: 100%;
    }

    .case-study-image-top {
        display: none;
    }

    .inner-case-center {
        text-align: center;
        padding: 2rem 3rem;
    }

    .inner-case-center h4 {
        font-size: 24px;
    }

    .lower-case {
        text-align: center;
    }

    .lower-case h2 {
        font-size: 24px;
    }

    .lower-case p {
        width: 100%;
    }

    .lower-case img {
        position: unset;
        width: 100px;
        margin-top: 20px;
    }

    .sdk_sec {
        margin: 10% 1.5rem;
    }

    .tabstech {
        margin: 30px -1rem 20px;
    }

    .tech {
        width: 75px;
        margin: 10px 3px;
    }

    .tech img {
        width: 45px;
        height: auto;
    }

    .video-industry-section {
        display: none;
    }

    .mobile-video-industry-section {
        display: block;
        text-align: center;
        margin: 10% 0;
    }

    .innovation-sec {
        display: none;
    }

    .video-section {
        margin-top: 10px;
    }

    .video-text p {
        width: 90%;
    }

    .mobile-video-section-inner {
        margin: 0 1%;
    }

    .mobile-video-section-inner img {
        width: 95% !important;
        margin: 0 2%;
    }

    .location-serve-section {
        margin: 10% 0 -2px;
        background: #0E0E0E;
        padding: 10% 0px;
    }

    .text-heading h2 {
        font-size: 28px;
        color: #fff;
    }

    .location-head {
        background: #313131;
        color: #87ACFF;
    }

    .country-text p {
        color: #fff;
        width: 90%;
    }

    .owl-carousel .owl-item .item img {
        margin: 0 2px;
    }

    .how-we-work-section {
        margin: 0;
        background: #0E0E0E;
        padding: 10% 0;
    }

    .how-we-work {
        flex-direction: column;
    }

    .how-we-work-leftsec span {
        background: #313131;
        color: #87ACFF;
    }

    .how-we-work-leftsec {
        width: 100% !important;
        margin: auto;
        text-align: center;
    }

    .how-we-work-rightsec {
        width: 90%;
        margin: auto;
    }

    .how-we-work-text {
        width: 100%;
    }

    .how-we-work-leftsec .how-we-work-text h2 {
        color: #fff;
    }

    .how-we-work-leftsec .how-we-work-text p {
        color: #fff;
        background: #0E0E0E;
    }

    .accordion {
        background-color: unset;
    }

    .accordion-header {
        color: #fff;
        background: #0E0E0E;
    }

    .accordion-content p {
        color: #fff;
    }

    .accordion-content {
        background-color: #0E0E0E;
    }

    .accordion-item.active .accordion-content {
        border-bottom: 1px solid #333333;
    }

    .accordion-header:hover {
        background-color: unset;
    }

    .hire-developer-section {
        margin: 10% 0;
    }

    .hire-developer-sec {
        text-align: center;
    }

    .hire-developer-sec-text {
        width: 100%;
    }

    .hire-developer-sec-text h1 {
        font-size: 28px;
    }

    .hire-developer-sec-inner {
        flex-direction: column;
    }

    .hire-developer-leftsec {
        width: 90%;
        margin: auto;
    }

    .hire-developer-detail ul {
        text-align: left;
    }

    .hire-developer-rightsec {
        display: none;
    }

    .reviews-section {
        margin: 10% 0 0;
        padding: 1.5rem;
        border-radius: unset;
    }

    .reviews-section .text-heading.span-sec h1 {
        padding: 0;
    }

    .owl-carousel2 .owl-item .item {
        padding: 1.5rem;
    }

    .footer-section {
        padding: 0;
    }

    .footer-top {
        display: block;
        text-align: center;
        border-radius: unset;
        padding: 2rem 8%;
    }

    .footer-top h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .footer-inner h2 {
        font-size: 28px;
        margin: 2rem 0 0.5rem;
    }

    .input-footer input {
        margin-bottom: 15px;
    }

    .footer-Menu-Sec {
        margin-top: 4rem;
        gap: 15px;
        flex-direction: column-reverse;
    }

    .social-detail {
        text-align: center;
    }

    .social-icons {
        margin-bottom: 0;
    }

    .footer-service-detail,
    .footer-company-detail {
        width: 90%;
        margin: auto;
    }

    .footer-company-detail ul {
        display: flex;
        gap: 10px;
    }

    .copyright-footer {
        display: block;
        background: #0E0E0E;
    }

    .copyright-footer ul {
        justify-content: center;
        margin-top: 10px;
    }

    .copyright-footer ul li a {
        color: #fff;
    }

    .footer-service-detail ul {
        width: 100%;
    }

    .copyright-footer h6 {
        color: #fff;
    }

    .Mobile-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgb(0 0 0 / .6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: 0.8s;
    }

    .Mobile-menu-inner {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        padding: 20px 25px;
        width: 70%;
        background: #fff;
        border-right: 3px solid #2569ff;
    }

    .showMenu {
        opacity: 1;
        visibility: visible;
    }

    .Mobile-menu-logo img {
        width: 120px;
        height: auto;
    }

    .menu-inner-container {
        margin-top: 15px;
    }

    .close-Menu {
        position: absolute;
        right: -14px;
        top: 55px;
        background: #fff;
        border-radius: 50%;
        padding: 2px 7px;
        box-shadow: 1px 1px 4px 1px #0000005e;
    }

    .close-Menu i {
        color: #000;
        font-size: 22px;
    }

    .menu-head {
        border-bottom: 1px solid #CCCCCC;
    }

    .menu-head h2 {
        font-family: var(--interFontMedium--), sans-serif;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        line-height: 100%;
        color: #121212;
        font-weight: lighter;
        padding: 15px 0;
    }

    .accordian-menu-detail {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .accordian-menu-detail ul {
        list-style: none;
        font-family: var(---interFontMedium--), sans-serif;
        line-height: 150%;
        font-size: 14px;
        color: #333333;
    }

    .accordian-menu-detail ul li {
        padding: 0 0 10px 0;
    }

    .accordian-menu-detail ul li a {
        display: flex;
        align-items: center;
        color: #333333;
    }

    .accordian-menu-detail img {
        width: 25px;
        height: auto;
        margin: 0 15px 0 0;
    }

    .menu-head.active .accordian-menu-detail {
        max-height: fit-content;
    }

    .menu-head.active .arrow {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .mobile-contact-us button {
        font-family: var(--interFontFamily--), sans-serif;
        font-size: 14px;
        border-radius: 20px;
        padding: 10px 30px;
        background: #222222;
        color: #fff;
        border: transparent;
        width: 100%;
        margin-top: 20px;
    }

    .videoSection video {
        width: 100%;
        height: auto;
    }

    .videoSection>#CloseVideo {
        position: absolute;
        top: 31%;
        right: 2%;
    }



    .container-blog {
        flex-direction: column;
    }

    .left-section {
        flex: 1;
        padding: 20px;
    }

    .left-section h2 {
        font-size: 24px;
        width: 100%;
        font-family: var(--interFontMedium--), sans-serif !important;
        font-weight: 500;
        line-height: 1.4;
    }

    .left-section p {
        font-size: 14px;
        margin: 1rem 0;
    }

    .left-section .read-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .blogs_wraps {
        position: relative;
        width: 100%;
        top: -18px;
        padding: 0 4% 0;
    }

    .blogs_wraps_inner {
        padding: 20px 0;
    }

    .nav-buttons button {
        padding: 8px 20px;
        font-size: 13px;
    }

    .card-container {
        padding: 20px 10px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .single_blog_container {
        padding: 2rem 4%;
    }

    .single_blog_container_inner h2 {
        font-size: 32px;
        font-weight: 600;
        line-height: 1.4;
    }

    /* about-page-css */

    .about-section {
        margin: 2rem auto 0;
    }

    .about-section .about-section-inner>.about-section-Highlight>span {
        padding: 5px 14px;
        font-size: 16px;
        font-family: var(--interFontMedium--), sans-serif;
    }

    .about-section .about-section-inner .about-heading-sec {
        margin-top: 2rem;
        padding: 0 1.25rem;
    }

    .about-section .about-section-inner .about-heading-sec h1 {
        font-size: 28px;
        width: 100%;
    }

    .about-section .about-section-inner .about-heading-sec p {
        font-size: 14px;
        width: 100%;
        margin-top: 18px;
        text-align: center;
    }

    .about-banner-img {
        margin: 1.5rem 0;
    }

    .about-section-flex-inner:nth-child(odd) {
        flex-direction: column;
        padding: 0 1.25rem;
    }

    .about-section-left {
        width: 100%;
    }

    .about-section-left h2 {
        font-size: 32px;
        font-family: var(--interExtraBold--), sans-serif;
        font-weight: 700;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .about-section-right {
        width: 100%;
        padding: 0 !important;
    }

    .vison-ab .about-section-right {
        background-color: unset;
        padding: 0rem 1.5rem !important;
    }

    .about-section-flex-inner:nth-child(even) {
        flex-direction: column;
        background-color: #F2F2F2;
        padding: 1rem 0;
    }

    .about-section-left {
        width: 100%;
    }

    .vison-ab .about-section-left h2 {
        text-align: left;
        padding: 0 1.25rem;
    }

    .about-section-left h2 {
        font-size: 28px;
        padding: 0;
        margin-bottom: 18px;
    }

    .about-section-right p {
        font-size: 14px;
        text-align: unset;
    }

    .about-section-flex-inner {
        margin-bottom: 2rem;
    }

    .our-process-section .section-inner-sm {
        margin: 0;
        border-radius: 0;
        padding: 2rem 0;
    }

    .section-inner-sm .text-heading {
        padding: 0 60px;
    }

    .section-process-dv {
        display: block;
    }

    .section-process-dv .content {
        padding: 0 30px;
    }

    .section-process-dv .content span {
        font-size: 32px;
    }

    .section-process-dv .content h2 {
        font-size: 20px;
    }

    .section-process-dv .content p {
        font-size: 14px;
        padding: 0;
    }

    .section-process-dv .image {
        padding: 0;
        margin-top: 20px;
    }

    .section-process-dv .image img {
        padding: 0;
        border-radius: 0;
    }

    .section-process-dv .content ul {
        font-size: 14px;
    }

    .section-lg:nth-child(odd) .image {
        padding: 0;
    }

    .section-lg:nth-child(odd) .image img {
        padding: 0;
    }

    .section-lg:nth-child(odd) {
        background-color: unset;
    }

    .form-country {
        margin: 1rem auto 2rem;
    }

    .contact-left h1 {
        font-size: 28px;
    }

    .contact-left p {
        font-size: 14px;
        margin-top: 0.8rem;
    }

    .contact-form {
        width: 100%;
    }

    .contact-left {
        width: 100%;
    }

    .contact-right {
        display: none;
    }

    .case-studies-section {
        margin: 1rem auto 0;
    }

    .case-studies-section h1 {
        font-size: 28px;
        padding: 0px 25px;
    }

    .case-studies-inner-box:nth-child(odd) {
        flex-direction: column;
    }

    .case-studies-image-sec {
        width: 100%;
    }

    .case-studies-text-sec {
        width: 100%;
    }

    .case-studies-inner-box:nth-child(even) {
        flex-direction: column;
    }

    .case-studies-text-dtl h2 {
        font-size: 28px;
    }

    .case-studies-text-dtl p {
        font-size: 14px;
    }

    .service-section {
        margin: 1rem auto 0;
    }

    .service-section .contact-section {
        flex-direction: column;
    }

    .service-section .contact-left {
        width: 100%;
        text-align: center;
        padding: 0 2rem;
    }

    .service-section .contact-right-service {
        padding: 1rem 2rem 0;
        width: 100%;
    }

    .col-sec-service {
        margin: 0;
    }

    .services-two-col {
        margin: 2.8rem 0 0;
    }

    .services-two-col .services-two-col-inner {
        border-radius: 0;
        text-align: center;
    }

    .services-two-col-inner>.Service-inner-content>.service-content {
        width: 100%;
    }

    .serivce-Second-sec {
        background-image: unset;
        padding: 0 2rem;
    }

    .serivce-Second-sec>.serivce-inner-Second-sec {
        flex-direction: column-reverse;
    }

    .serivce-Second-sec>.serivce-inner-Second-sec img {
        width: 100%;
        height: auto;
    }

    .serivce-Second-sec>.serivce-inner-Second-sec ul {
        font-size: 14px;
        margin-right: unset;
        text-align: left;
    }

    .serivce-Second-sec h2 {
        font-size: 28px;
        text-align: center;
    }

    .service-thrid-sec {
        flex-direction: column;
    }

    .ecommerce-sec {
        width: 100%;
        padding: 0 2rem;
    }

    .ecommerce-sec h2 {
        font-size: 28px;
    }

    .ecommerce-inner-sec ul {
        text-align: left;
        font-size: 14px;
    }

    .service-tech-content {
        width: 100%;
        border-radius: 0;
    }

    .service-tech-content h2 {
        font-size: 28px;
        text-align: center;
    }

    .service-tech-content ul {
        font-size: 14px;
    }

    .service-tech-sec {
        margin: 0 2rem;
        width: unset;
    }

    .service-tech-sec h2 {
        font-size: 28px;
    }

    .Tech-Section>.Tech-inner-Section {
        width: 28%;
    }

    .serivce-Second-sec-image {
        margin-left: 0;
    }

    .hire-developer-main-container {
        padding: 0;
    }

    .hire-developer-main h1 {
        font-size: 28px;
    }

    .hire-developer-content {
        flex-direction: column;
    }

    .hire-developer-main {
        padding: 0 2rem;
    }

    .hire-developer-left-sec {
        width: 100%;
        text-align: center;
    }

    .hire-developer-left-sec h2 {
        font-size: 28px;
    }

    .hire-developer-left-sec p {
        width: 100%;
        font-size: 14px;
    }

    .hire-developer-right-sec {
        width: 100%;
    }

    .hire-developer-Second-content {
        border-radius: 0;
        flex-direction: column;
    }

    .hire-developer-Second-Heading {
        width: 100%;
        text-align: center;
    }

    .hire-developer-Second {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .hire-developer-inner-Second {
        width: 100%;
    }

    .hire-developer-Second p {
        width: 100%;
    }

    .hire-developer-thrid-content {
        flex-direction: column;
    }

    .hire-developer-thrid-heading {
        width: 100%;
        padding: 0 2rem;
    }

    .hire-developer-thrid-inner {
        margin: 0 0 20px 0;
        text-align: center;
        width: 100%;
        border-radius: 0;
    }

    .Ginnie-Top-Sec-Content {
        width: 90%;
        margin: auto;
    }

    .Ginnie-Top-Sec-Content h1 {
        font-size: 28px;
    }

    .Ginnie-Top-Sec-Content p {
        font-size: 14px;
        width: 100%;
    }

    .Ginnie-Top-Sec-Image-content {
        display: none;
    }

    .Ginnie-Top-Sec-Image {
        width: 95%;
    }

    .Ginnie-BelowBar {
        width: 100%;
        overflow: hidden;
        align-items: center;
    }

    .Ginnie-BelowBar p {
        width: 220px;
        animation: scroll 10s linear infinite;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-190px * 4));
        }
    }

    .Ginnie-GrowSec {
        margin-top: 2rem;
        padding: 0;
    }

    .Ginnie-Top-Heading {
        width: 55%;
    }

    .Ginnie-Grow-content h2 {
        font-size: 28px;
    }

    .Ginnie-Grow-content p {
        font-size: 14px;
        width: 85%;
    }

    .Ginnie-Show {
        flex-direction: column;
        padding: 0 2rem;
    }

    .Ginnie-Show-Left {
        padding: 0rem 1rem 1rem;
        text-align: center;
    }

    .Ginnie-Show-Left h2 {
        font-size: 28px;
    }

    .Ginnie-Show-Left p {
        font-size: 14px;
        width: 1005;
    }

    .Ginnie-Show img {
        width: 100%;
    }

    .Ginnie-Theme {
        flex-direction: column;
        padding: 0 2rem;
    }

    .Ginnie-Theme-right {
        padding: 2rem 0;
        text-align: center;
    }

    .Ginnie-Theme-right h2 {
        font-size: 28px;
    }

    .Ginnie-Theme-right p {
        width: 100% !important;
        font-size: 14px;
    }

    .Ginnie-Theme img {
        width: 100%;
    }

    .Ginnie-Theme-inner {
        position: relative;
    }

    .Ginnie-Theme-Video {
        top: -24px;
        right: -1px;
        width: 52%;
        left: unset;
    }
}