/* Root Css */
:root {
    --primary-color: #4EFFFF;
    --primary-blue-color: #0B243E;
    --primary-grident: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    --black-color: #000;
    --heading-font: "Libre Baskerville", serif;
    ;
}

/************ Global Css ************/
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth;
}

* {
    outline: none !important;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

p:empty {
    display: none;
}

body {
    background-color: var(--primary-blue-color);
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 1rem;
}

p>b,
p>strong {
    color: #007bff;
}

p:empty {
    display: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

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

.container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fluid {
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.common-btn {
    background: var(--primary-grident);
    box-shadow: 0px 4px 20px 0px #50A0FF8C;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    display: inline-block;
    border-radius: 34px;
    padding: 13px 64px;
    color: var(--black-color) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease-in-out;
    width: max-content;
    margin: auto;

}

a.common-btn img {
    width: 20px;
}

a.common-btn:hover {
    transform: translateY(-10px);
}

.owl-nav button:hover {
    background: #0000 !important;
}

.owl-nav button>img,
.owl-nav button:hover>img {
    padding: 0 !important;
    background: #0000 !important;
    margin: 0px !important;
}

.stroke-text {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #Fff;
    font-weight: 600;
    font-size: 130px;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.7;
    font-family: var(--heading-font);
}

.col-12 {
    width: 100%;
}

.text-center {
    text-align: center !important;
}

.heading {
    font-weight: 400;
    font-size: 54px;
    line-height: 1.3;
    color: #fff;
    margin: 0px;
    font-family: var(--heading-font);
}

.heading strong,
.heading b {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.common-badge {
    display: flex;
    align-items: center;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    padding: 6px;
    padding-right: 45px;
    gap: 17px;
}

.common-badge-img {
    width: 55px;
    height: 55px;
    background-color: rgb(255 255 255 / 15%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-badge img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.common-badge-content {
    color: #fff;
}

.common-badge-content span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.common-badge-content a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}

@media (min-width: 576px) {
    .col-sm-6 {
        width: 48%;
    }
}


@media (min-width: 768px) {
    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
}

/************ Global Css ************/

/************ Header Css Start ************/
.logo-brand img {
    width: 175px;
}

.header-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
    position: relative;
}

.header-grid {
    display: flex;
    justify-content: end;
    gap: 55px;
    align-items: center;
}

.site-header {
    padding-top: 25px;
    padding-bottom: 20px;
    position: sticky;
    top: 0px;
    z-index: 99999999;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.site-header li.menu-item a {
    color: #fff;
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    padding: 25px 0px;
}

ul.sub-menu li.menu-item a {
    padding: 10px 0px;
    position: relative;
}

/* ul.sub-menu li.menu-item a::after{
    content: '';
    position: absolute;
    left: 0px;
    height: 100%;
    width: 2px;
    background-image: var(--primary-grident);
} */

.site-header a:not(.common-btn):hover,
.site-header li.current-menu-item a,
li.current-menu-parent>a {
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease-in-out;
}

li.menu-item {
    line-height: 1.5;
    position: relative;
}

/* li.menu-item-has-children {
    position: relative;
} */

header.site-header.fixed {
    background-color: var(--primary-blue-color);
    /* padding-top: 20px; */
    /* padding-bottom: 20px; */
    transition: all 0.3s ease-in-out;
}

ul.sub-menu {
    display: none;
}

li.menu-item-has-children:hover ul.sub-menu {
    display: block;
}

ul.sub-menu {
    position: absolute;
    top: 70px;
    width: max-content;
    left: 0px;
    min-width: 200px;
    padding: 1.2rem;
    background: #0000001A;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    border: 2px solid rgb(255 255 255 / 13%);
    box-shadow: 0px 4px 24px 0px #0000001A;
}

/************ Header Css End ************/

/************ Footer Css Start ************/
footer {
    color: #fff;
}

.top-footer {
    padding-top: 60px;
    margin-bottom: 63px;
}

.footer-menu ul {
    list-style: none;
    padding-left: 0px;
}

.footer-menu li {
    padding-bottom: 15px;
}

.footer-menu li>a {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
}

.footer-menu li.current-menu-item>a,
.footer-menu li>a:hover {
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease-in-out;
}

.social-icon-list img {
    height: 20px;
}

.social-icon-list {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    justify-content: end;
}

.bottom-footer .container {
    padding-top: 37px;
    border-top: 1px solid lab(100% 0.01 -0.01 / 0.15);
}

.footer-menu h3 {
    position: relative;
    margin-bottom: 38px;
    font-weight: 600;
    font-size: 20px;
    font-family: var(--heading-font);
}

.footer-menu h3::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 0px;
    width: 35px;
    height: 2px;
    border-radius: 50px;
    background-image: var(--primary-grident);

}

/************ Footer Css End ************/


/* Hero Banner Css */
section.hero-section-v1 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-inner-gird {
    display: flex;
    position: relative;
}

/* hero-content */
.hero-content-v1 {
    text-align: center;
    margin: auto;
    max-width: 842px;
    padding: 0 60px;
}

.hero-content-v1 .light-icon img {
    width: 100px;
    margin-bottom: 20px;
}

.hero-content-v1 h1 {
    font-family: "Libre Baskerville";
    font-weight: 400;
    font-size: 72px;
    line-height: 80px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 0px;
    margin-bottom: 33px;
}

.hero-content-v1 h1 span {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content-v1 p {
    font-weight: 400;
    font-size: 26px;
    line-height: 34px;
    text-align: center;
    color: #ffff;
    max-width: 458px;
    margin: auto;
    margin-bottom: 45px;
}

.hero-content-v1 .common-btn {
    padding: 19px 44px;
}

.hero-section-v1 .hero-badge {
    position: absolute;
    top: 0px;
}

.hero-badge {
    width: 261px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #ffffff;
    padding: 5px;
    padding-right: 28px;
    display: flex;
    align-items: center;
    gap: 16px;

}

.hero-badge a {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.hero-badge a span {
    color: var(--primary-color);
}
.hero-badge a b {
    color: #50a1ff;
    font-weight: 600;
}
.hero-badge img {
    background-color: #ffffff76;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    padding: 5px;
}

.hero-badges-left .hero-badge:nth-child(1) {
    left: 0px;
    top: -20px;
}

.hero-badges-left .hero-badge:nth-child(2) {
    top: 138px;
    left: -250px;
}

.hero-badges-left .hero-badge:nth-child(3) {
    top: 300px;
    left: -150px;
}

.hero-badges-left .hero-badge:nth-child(4) {
    bottom: 40px;
    left: 0px;
    top: unset;
}

/* Right Side */
.hero-badges-right .hero-badge:nth-child(1) {
    right: 0px;
    top: -20px;
}

.hero-badges-right .hero-badge:nth-child(2) {
    top: 138px;
    right: -250px;
}

.hero-badges-right .hero-badge:nth-child(3) {
    top: 300px;
    right: -150px;
}

.hero-badges-right .hero-badge:nth-child(4) {
    bottom: 40px;
    right: 0px;
    top: unset;
}

/*============ section.hero-section-v2 =============== */
section.hero-section-v2 {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.hero-section-v2 .row {
    align-items: center;
}

.hero-content-v2 h1 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #4ff3ff;
}

.hero-content-v2 {
    /* padding-right: 70px; */
}

.hero-content-v2 h2 {
    font-weight: 400;
    font-size: 44px;
    line-height: 1.4;
    color: #FFFFFF;
    margin-top: 0px;
    margin-bottom: 33px;
    font-family: var(--heading-font);
}

.hero-content-v2 h2 span,
.hero-content-v2 h2 b {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content-v2 p {
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    color: #ffff;
    margin-bottom: 45px;
    letter-spacing: 1px;
    text-align: justify;
}

.hero-content-v2 .common-btn {
    padding: 19px 44px;
    margin-left: 0px;
}

.hero-section-v1 .hero-badge {
    position: absolute;
    top: 0px;
}

.hero-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: end;
}


/* innovative-section */
.innovative-section {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    width: 100%;
}

.innovative-section .container {
    margin-top: 56px;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    box-shadow: 0px 4px 24px 0px #0000001A;
    padding: 43px 64px;
}

.innovative-section .row {
    align-items: center;
}

.innovative-content {
    padding-left: 70px;
}

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

.innovative-content h2 {
    margin-bottom: 21px;
}

.innovative-content p {
    color: #FFFFFFD9;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* letter-spacing: 0%; */
    margin-bottom: 33px;
    text-align: justify;
}

.innovative-content .common-btn {
    margin-left: 0px;
}

/*  */
.partner-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.partner-section ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 35px;
}

.partner-section li {
    position: relative;
    width: 45%;
    color: #fff;
    padding-bottom: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding-left: 35px;
}

.partner-section li::after {
    content: '';
    position: absolute;
    top: 0px;
    left: -0px;
    bottom: 0px;
    width: 25px;
    height: 25px;
    background-image: url(../images/icons/check-icon.png);
    background-size: contain;
    background-position: center;
}

.partner-section h2 {
    margin-bottom: 34px;
}

.partner-section .common-btn {
    margin-left: 0px;
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.partner-inner-grid {
    width: 47%;
}

.partner-card {
    border: 1px solid #FFFFFF21;
    background: #FFFFFF0D;
    backdrop-filter: blur(94px);
    box-shadow: 0px 4px 24px 0px #0000001A;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    padding: 37px 18px 40px 18px;
    min-height: 100%;
}

.partner-card h3 {
    font-weight: 600;
    font-size: 62px;
    line-height: 72px;
    margin: 0px;
    font-family: var(--heading-font);
}

.partner-card p {
    font-weight: 300;
    font-size: 23px;
    line-height: 1.3;
}

/* services-section */
.services-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.services-section .container {
    margin-top: 56px;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    box-shadow: 0px 4px 24px 0px #0000001A;
    /* padding: 43px 64px; */
}

.tabs-section {
    padding: 40px;
    border-radius: 10px;
    color: #fff;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.tab-button {
    background: none;
    border: 1px solid #FFFFFF;
    color: #fff;
    padding: 14px 45px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.tab-button.active {
    background-color: #ffffff;
    color: #000;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

.tab-inner {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.tab-inner .row {
    align-items: center;
}

.tab-image img {
    width: 100%;
}

.tab-text {
    padding-right: 15px;
    padding-left: 50px;
}

.tab-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFFD9;
    margin-bottom: 20px;
    text-align: justify;
}

.checklist {
    list-style: none;
    padding-left: 0;
    font-size: 15px;
    color: #ffffff;
}

.tab-text ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 35px;
}

.tab-text li {
    position: relative;
    color: #fff;
    padding-bottom: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding-left: 35px;
}

.tab-text li::after {
    content: '';
    position: absolute;
    top: 0px;
    left: -0px;
    bottom: 0px;
    width: 25px;
    height: 25px;
    background-image: url(../images/icons/check-icon.png);
    background-size: contain;
    background-position: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* why-choose-section */
.why-choose-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.solutions-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 46px;
}

.why-choose-left {
    /* padding-right: 24px; */
}

.why-choose-section .why-chooes-right {
    padding-left: 24px;
}

.why-choose-left iframe {
    width: 100%;
    margin-bottom: 42px;
}

.solutions-inner-grid {
    width: 47%;
    color: #fff;
}

.why-choose-section {
    color: #fff;
}

.why-choose-section h2 {
    margin-bottom: 30px;
}

.why-choose-section .container {
    margin-top: 80px;
}

.why-choose-section p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 25px;
    text-align: justify;
}

.solutions-card h3 {
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.solutions-card h3 span {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: linear-gradient(180deg, #50A0FF 0%, #4EFFFF 100%);
    display: inline-flex;
    margin-right: 10px;
}

.testimonial-main-card {
    padding: 70px 49px;
    box-shadow: 0px 4px 24px 0px #0000001A;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);

}

.testimonial-main-card p {
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 27px;
}

.why-choose-section .testimonial-main-card p {
    min-height: 320px;
}

.testimonial-user h4 {
    font-weight: 700;
    font-size: 23px;
    line-height: 32px;
    color: #4EFFFF;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
    margin-top: 0px;
}

.testimonial-user h4::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 15px;
    height: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    transform: translate(0%, -50%);
}

.testimonial-user span {
    color: #FFFFFF;
    opacity: 0.6;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.top-quote-icon {
    position: absolute;
    top: 45px;
    left: 15px;
    width: 107px;
}

.bottom-quote-icon {
    position: absolute;
    bottom: 95px;
    right: 35px;
    width: 107px;
}

/*** Technology Section ****/
.technology-section {
    padding-top: 64px;
    padding-bottom: 60px;
}

.technology-heading p {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
}

.technology-tab-grid {
    margin-top: 45px;
}

.technology-tabs {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    gap: 15px;
    margin-bottom: 30px;
    overflow: auto;
}

.technology-tab.active {
    background-color: #FFFFFF;
    color: #000;
}

.technology-tab {
    padding: 14px 31px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.3s ease-in-out;
}

.technology-tab:hover,
.technology-tab.active {
    background: #fff;
    color: #000;
    position: relative;
}

.technology-tab.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translate(-50%, 0%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

.tab-content {
    display: none;
    background: #112f4a;
    padding: 40px 20px;
    border-radius: 20px;
}

.tab-content.active {
    display: block;
}

.technology-tab-content {
    display: none;
}

.technology-tab-content.active {
    display: block;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 63px;
}

.tech-item {
    text-align: center;
}

.tech-item img {
    height: 50px;
    width: auto;
}

.tech-item p {
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
}

.technology-tab-content {
    padding: 53px 100px 43px 100px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 13%);
    border-radius: 30px;
    box-shadow: 0px 4px 24px 0px #0000001A;

}

/**** Upwork Review ***/
.upwork-review {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.upwork-review h2 {
    margin-top: 52px;
    margin-bottom: 47px;
}

.upwork-item {
    border-radius: 30px;
    border: 1px solid #fff;
    padding: 30px;
}

.upwork-review p {
    color: #fff;
    font-size: 20px;
}

/**** Upwork Review ***/


/*** Technology Section ****/

/**** Video Testimonials ****/
.video-testimonials {
    padding-top: 50px;
    padding-bottom: 80px;
}

.video-testimonials .row {
    align-items: center;
}

.video-testimonials p {
    color: #fff;
}

.video-grid {
    padding-right: 34px;
    height: 100%;
}

.video-grid img {
    width: 100%;
    border-radius: 30px;
    height: 100%;
    object-fit: cover;
}

.video-testimonials .owl-nav {
    position: absolute;
    bottom: -150px;
    left: -150px;
}

.video-testimonials .owl-theme .owl-nav [class*=owl-] {
    padding: 0;
    background: transparent !important;
}

/**** Video Testimonials ****/

/* Cta Content */
.cta-section {
    padding-top: 50px;
    padding-bottom: 70px;
}

.cta-content .row {
    gap: 15px;
}

.cta-content h2 {
    margin-bottom: 25px;
}

.cta-content p {
    color: #FFFFFFD9;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
    padding-right: 80px;
    text-align: justify;
}

.hire-us-form input {
    width: 100%;
    margin-bottom: 15px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 17px 27px;
    padding-left: 40px;
}

.hire-us-form textarea {
    border-radius: 25px;
    width: 100%;
    backdrop-filter: blur(94px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 4px 24px 0px #0000001A;
    padding: 17px 27px;
    height: 112px;
    resize: none;
}

.hire-us-form {
    width: 100%;
    display: block;
}

.form-grid-full {
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
    margin-bottom: 24px;
}

.form-grid-half {
    width: 48%;
}

.hire-us-form input::placeholder,
.hire-us-form textarea::placeholder {
    color: #FFF;
    opacity: 1;
    /* Firefox */
}

.hire-us-form button {
    background: var(--primary-grident);
    box-shadow: 0px 4px 20px 0px #50A0FF8C;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    display: inline-block;
    border-radius: 34px;
    padding: 13px 34px;
    color: var(--black-color) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease-in-out;
    width: max-content;
}

.hire-us-form button:hover {
    opacity: 0.85;
}

/* Hrining Page Css */
.services-card-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.services-card-section h2 {
    margin-bottom: 60px;
    margin-top: 62px;
}

.services-card {
    padding: 40px;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
}

.services-card:nth-child(3n + 2) {
    transform: translateY(-50px) scaleY(0.99);
}

.services-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.services-card h3 {
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 18px;
    font-family: var(--heading-font);
}

.services-card span {
    display: inline-block;
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    width: 32px;
    height: 2px;
    margin-bottom: 10px;
}

.services-card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.services-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
}

.services-card {
    width: 32%;
}

.hiring-tab-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hiring-tab-content p {
    text-align: left;
}

/*  */
.find-developer-v2 h2,
.find-developer h2 {
    margin-bottom: 60px;
}

.find-developer-v2 .row:first-child,
.find-developer .row:first-child {
    justify-content: center;
}

.find-developer,
.find-developer-v2 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.find-developer-v2 h3,
.find-developer h3 {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.find-developer-v2 p,
.find-developer p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: justify;
    color: #fff;
}

.find-developer-card-v2,
.find-developer-card {
    padding: 32px 48px;
    box-shadow: 0px 4px 24px 0px #0000001A;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);
    margin-right: 30px;
    position: sticky;
    top: 100px;
}

.find-developer-card-v2 h3,
.find-developer-card h3 {
    color: #fff;
    font-weight: 600;
    font-size: 26px;
    line-height: 40px;
    margin: 0px;
    margin-bottom: 23px;
}

.find-developer-card-v2 li,
.find-developer-card-v2 li>a,
.find-developer-card li,
.find-developer-card li>a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 15px;
}

.find-developer-card-v2 li a.active,
.find-developer-card li.active>a {
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease-in-out;
}

.find-developer-list-v2 ul,
.find-developer-list ul {
    padding-left: 10px;
}

.hiring-content h3>strong,
.hiring-content h3> {
    font-weight: 600;
}

.hiring-content h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.hiring-pro-btn {
    margin-top: 100px;
}

.hiring-tab-content-v2 ul {
    padding-left: 40px;
}

.hiring-tab-content-v2 li {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    padding-bottom: 10px;
}

.hiring-tab-content-v2 h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.hiring-tab-content-v2 h3:not(:first-child) {
    margin-top: 40px;
}

.hiring-tab-content-v2 h3>b {
    font-weight: 600;
}

/* ===================== Blog Desgin ============================ */
.blog-listing-container {
    padding: 70px 0px;
}

.blog-listing {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.article-grid {
    width: calc(100% / 3 - 15px);
    margin: 0 7px 30px;
    transition: .3s;
}

article.tile {
    min-height: 100%;
    margin: 0 7px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 13%);
    box-shadow: 0px 4px 24px 0px #0000001A;
    border-radius: 24px !important;
    overflow: hidden;
}

.article-grid:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: .5s ease;
}

article.tile:hover .article-img>img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s;
    transition: .3s;
}

.article-grid article.tile a .article-content h3 {
    font-weight: 400;
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

span.publish_date {
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--heading-font);
}

.article-content span i {
    color: #148a6d;
    margin-right: 4px;
    font-size: 20px;
}

.article-grid .article-content p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    min-height: 71px;
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.article-btn {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.article-grid .common-btn {
    margin-left: 0;
}

.article-grid .common-btn img {
    width: 25px;
}

.article-grid .common-btn:hover {
    transform: translateY(-10px);
}

.article-content {
    padding: 1.25rem;
}

.article-grid .article-img {
    height: 300px;
}

.article-grid .article-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.blog-pagination {
    margin: auto;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

span.page-numbers.current,
a.page-numbers {
    padding: 10px 19px;
    color: #fff;
    background: #FFFFFF21;
    line-height: 0;
    border-radius: 4px;
    border: 2px solid #FFFFFF21;
    font-family: var(--heading-font);
}

span.page-numbers.current {
    background: var(--primary-grident);
    color: #000;
}

/* =============== Conact Us Page ===================== */
.inner-hero-banner {
    padding: 40px 0px;
    /* border-bottom: 1px solid #FFFFFF21; */
}

.inner-hero-banner p {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    text-align: justify;
}

/* .inner-hero-banner .row {
    align-items: center;
} */

.inner-hero-content .heading {
    margin-bottom: 30px;
}

.inner-hero-content {
    padding-right: 30px;
}

.inner-hero-content ul {
    list-style: none;
}

.inner-hero-content ul li {
    position: relative;
    color: #fff;
    padding-bottom: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding-left: 35px;
}

.inner-hero-content ul li::after {
    content: '';
    position: absolute;
    top: 0px;
    left: -0px;
    bottom: 0px;
    width: 25px;
    height: 25px;
    background-image: url(../images/icons/check-icon.png);
    background-size: contain;
    background-position: center;
}

.inner-hero-img {
    width: 100%;
    text-align: center;
}

.inner-hero-img img {
    width: 60%;
}

/* New Form Banner */
.inner-hero-content h1 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #4ff3ff;
}

.form_banner {
    margin-left: 70px;
}

.form_banner {
    padding: 2rem;
    background: #0000001A;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    border: 2px solid rgb(255 255 255 / 13%);
    box-shadow: 0px 4px 24px 0px #0000001A;
    border-radius: 24px;
}

.form_banner .form-row {
    gap: 23px;
}

.form_banner .form-grid-full .user-name-b p {
    margin: auto;
}

.form_banner h3 {
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
}

.form_banner h3 b {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single .inner-hero-img {
    position: relative;
}

.single .inner-hero-img img {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 24px;
    z-index: 3;
}

.single .inner-hero-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    box-shadow: 0px 4px 24px 0px #0000001A;
    border: 2px solid #FFFFFF21;
    border-radius: 24px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);
}


.address-map-section {
    margin-top: 70px;
    margin-bottom: 50px;
}

.address-map-section iframe {
    width: 100%;
    border-radius: 24px;
}

.form-grid p {
    margin: 0px;
}

.contact-form-info {
    padding-left: 70px;
}

.contact-form-info h2.heading {
    font-size: 50px;
    line-height: 1.3;
    text-transform: capitalize;
}

.contact-form-info h2.heading b {
    font-weight: 600;
}

.form-grid-full input.wpcf7-form-control,
.form-grid-half input.wpcf7-form-control {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 17px 27px;
    padding-left: 40px;
}

.form-grid-full textarea.wpcf7-form-control {
    border-radius: 25px;
    width: 100%;
    backdrop-filter: blur(94px);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: 17px 27px;
    height: 112px;
    resize: none;
    padding-left: 38px;
    color: #fff;
}

.contact-form-title {
    text-align: center;
    margin-bottom: 40px;
}

.form-grid-full input.wpcf7-submit {
    background: var(--primary-grident);
    box-shadow: 0px 4px 20px 0px #50A0FF8C;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    border: 0px;
    display: inline-block;
    border-radius: 34px;
    padding: 13px 34px;
    padding-right: 70px;
    color: var(--black-color) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease-in-out;
    width: max-content;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.form-grid-half input.wpcf7-form-control::placeholder,
.form-grid-full input.wpcf7-form-control::placeholder,
.form-grid-full textarea.wpcf7-form-control::placeholder {
    color: #FFF;
    opacity: 1;
    /* Firefox */
}

.user-name-f span,
.user-name-e span,
.user-name-p span {
    position: relative;
}

.wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
    height: 100%;
}

.user-name-f span.wpcf7-form-control-wrap::after,
.user-name-e span.wpcf7-form-control-wrap::after,
.user-name-p span.wpcf7-form-control-wrap::after,
.user-name-t span.wpcf7-form-control-wrap::after {
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 16px;
    left: 10px;
    position: absolute;
    width: 22px;
    height: 22px;
}

.user-name-f span.wpcf7-form-control-wrap::after {
    background-image: url(../images/icons/user-v1.png);
}

.user-name-e span.wpcf7-form-control-wrap::after {
    background-image: url(../images/icons/email-v1.png);
    width: 25px;
}

.user-name-p span.wpcf7-form-control-wrap::after {
    width: 22px;
    background-image: url(../images/icons/telephone-v1.png);
}

.user-name-t span.wpcf7-form-control-wrap::after {
    background-image: url(../images/icons/message-v1.png);
}

.form-grid-full .user-name-b p {
    position: relative;
    width: max-content;
}

.user-name-b {
    margin-top: 24px;
    position: relative;
}

.user-name-b p::after {
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 13px;
    right: 30px;
    position: absolute;
    width: 28px;
    height: 28px;
    background-image: url(../images/icons/arrow-icons.png);
}

span.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -20px;
    left: 10px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.info-inner-grid {
    padding: 20px 20px;
    border-radius: 24px;
    background: rgb(255, 255, 255);
    width: 41.3%;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-inner-grid {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.info-inner-grid:hover {
    transform: translateY(-10px);
}

.info-inner-grid h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-blue-color);
    font-family: var(--heading-font);
}

.info-inner-grid a {
    color: #000;
}

.info-inner-grid img {
    width: 40px;
}

.info-inner-grid div.info-inner-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-inner-card>div {
    width: 75%;
}

.info-inner-grid:not(:last-child) .info-inner-card img {
    filter: grayscale(1) invert(1);
}

.contact-form-info-v2 {
    margin-top: 90px;
}

/* info-grid-v2 */
.info-grid-v2 .info-inner-grid {
    width: 100%;
    height: 65px;
}

.info-grid-v2 .info-inner-grid div.info-inner-card {
    justify-content: start;
}

.info-grid-v2 .info-inner-card>div {
    margin-left: 20px;
}

.info-grid-v2 .info-inner-grid {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.info-grid-v2 .info-inner-grid:hover {
    transform: translate(-10px);
}

/* =============== Testimonial Page ===================== */
section.testimonials-cards {
    padding: 80px 0px;
}

.testimonials-heading {
    margin-bottom: 30px;
    text-align: center;
}

.testimonials-heading p {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin-top: 20px;
}

.testimonials-cards .col-md-4 {
    margin-bottom: 30px;
}

.testimonial-item.has-clip-path {
    clip-path: polygon(0% 0%, 90% 0, 100% 12%, 100% 100%, 0% 100%);
    padding: 30px 30px;
    border-radius: 2px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);
    margin: 0 15px;
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
}

.testimonial-avater-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avater-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-avater-title {
    margin: 10px 0px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
}

span.testimonial-avater-designation {
    color: #fff;
    font-size: 18px;
    display: none;
}

.testimonial-rating-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(221, 221, 221, 0.6);
    margin-top: 30px;
    padding-top: 20px;
}

.testimonial-description {
    max-height: 200px;
    min-height: 200px;
    overflow: auto;
}

.testimonial-description p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.rating img {
    width: 20px;
}

/* =============================== */
/* Blog Deatils Page */
.blog-deatils-content {
    padding-top: 70px;
    padding-bottom: 30px;
}

.blog-content-grid {
    padding-right: 30px;
}

.blog-side-bar {
    border-left: 1px solid #FFFFFF21;
    padding-left: 40px;
    position: sticky;
    top: 100px;
}

.blog-content h2 {
    margin-bottom: 30px;
}

.blog-content h3,
.blog-content h2,
.blog-content h4,
.blog-content h5 {
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.blog-content h3,
.blog-content h2,
.blog-content h4,
.blog-content h5,
.blog-content p,
.blog-content li {
    color: #fff;
}

.blog-content h3,
.blog-content h3>b {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 30px;
}

.blog-content p {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.50px;
}

.blog-content li {
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 10px;
    letter-spacing: 0.1px;
    position: relative;
}

.blog-content ul {
    padding-left: 40px;
    list-style: none;
}

.blog-content li>strong,
.blog-content li>b s {
    font-weight: 600;
}

.blog-content ul>li::after {
    content: '';
    position: absolute;
    top: 5px;
    left: -40px;
    bottom: 0px;
    width: 25px;
    height: 25px;
    background-image: url(../images/icons/check-icon.png);
    background-size: contain;
    background-position: center;
}

.publish-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0px;
}

.publish-date img {
    width: 26px;
    filter: brightness(1) invert(1);
}

.publish-date span {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    font-family: var(--heading-font);
}

.single-hero-banner h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
}

ul.breadcrumb {
    display: flex;
    align-items: center;
    padding-left: 0;
    list-style: none;
    gap: 10px;
}

ul.breadcrumb li,
ul.breadcrumb li a {
    color: #fff;
}

ul.breadcrumb li h1 {
    font-size: 18px;
    color: #4ff3ff;
    font-weight: 400;
}

.breadcrumbs-wrap {
    margin-top: 20px;
}

.post-info {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-info::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 1px;
    width: 100%;
    background-image: var(--primary-grident);
}

.post-author {
    display: flex;
    align-items: center;
}

.post-author img {
    width: 26px;
}

.blog-featured-image img {
    border-radius: 24px;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
}

.post-author span {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    padding-left: 10px;
}

.sidebar-widget {
    position: relative;
    padding: 40px 30px 40px 30px;
    box-shadow: 0px 4px 24px 0px #0000001A;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);
    margin-bottom: 40px;
}

.sidebar-widget-content ul {
    list-style: none;
    padding-left: 0px;
    display: inline-flex;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    gap: 15px;
}

.sidebar-widget-content ul li {
    background-color: #FFFFFF21;
    padding: 10px;
    width: 100%;
    border: 1px solid #FFFFFF21;
}

.sidebar-widget-content li a {
    color: #fff;
}

.sidebar-widget-title {
    margin-bottom: 20px;
    margin-top: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
}

.tagcloud a {
    font-size: 16px;
    border: 1px solid #FFFFFF21;
    display: inline-block;
    padding: 7px 15px;
    margin-bottom: 10px;
    margin-inline-end: 8px;
    position: relative;
    transition: 0.3s;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
}

.tagcloud a:hover {
    background-image: var(--primary-grident);
    border-color: 1px solid transparent;
}

.categories-list li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories-list li img {
    filter: brightness(1) invert(1);
    width: 20px;
}

#table-of-contents ul {
    list-style: none;
    padding-left: 0;
}

#table-of-contents li {
    padding: 2px 0px;
    position: relative;
    padding-left: 35px;
}

#table-of-contents li::after {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 0px;
    left: 0px;
    width: 20px;
    height: 25px;
    background-image: url(../images/icons/arrow-icons.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0.5) invert(1);
}

#table-of-contents a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

#table-of-contents a:hover {
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease-in-out;
}

#toc-list a.active {
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease-in-out;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #FFFFFF21;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
}

.nav-link:hover {
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease-in-out;
}

.nav-previous,
.nav-next {
    max-width: 45%;
}

/* ================ About Company ============================= */
.about-company {
    padding: 70px 0px;
}

.about-company-card {
    padding: 60px 30px;
    border-radius: 2px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);
    border-radius: 24px;
}

.about-company-card h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-company-card p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.proprogress-gird {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.proprogress-card {
    padding: 22px;
    background: #0b243e;
    border: 2px solid rgb(79 112 147);
    text-align: center;
    width: 50%;
    /* height: 80px; */
    border-radius: 14px;
}

.proprogress-card span {
    color: #fff;
    color: 20px;
}

.proprogress-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 44px;
    color: #fff;
}

.about-company-img {
    display: flex;
    padding-left: 50px;
    justify-content: space-between;
}

.about-company-img img {
    width: 50%;
    height: 550px;
    border-radius: 20px;
    object-fit: cover;
}

.about-company-img-2 {
    width: 42%;
    display: flex;
    flex-wrap: wrap;
}

.about-company-img-2 img {
    width: 100%;
    height: 380px;
    margin-bottom: 30px;
}

.about-company-img-2 .proprogress-card {
    width: 100%;
    background-color: rgb(255 255 255 / 5%);
}

.vision-mission-v1 {
    padding-top: 70px;
    padding-bottom: 50px;
}

.vision-card-v1 {
    background-color: rgb(255 255 255 / 5%);
    border: 2px solid rgb(255 255 255 / 5%);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 24px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.vision-card-v1:last-child {
    margin-bottom: 0px;
}

.vision-card-v1:hover {
    background-color: #50A0FF;
    transform: translateX(-10px);
}

.vision-card-v1 h3 {
    padding: 15px;
    margin: 0;
    margin-bottom: 20px;
    color: #fff;
    background-color: var(--primary-blue-color);
    width: max-content;
    border-radius: 15px;
}

.vision-card-v1:hover h3 {
    background-color: #FFF;
    color: var(--primary-blue-color);
}

.vision-card-v1 p {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
}

.vision-img-v1 {
    height: 100%;
    width: 94%;
    margin-right: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: end;
    position: sticky;
    top: 100px;
    height: 700px;
}

.vision-img-v1::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 36, 62, 0.32) 18%, rgba(11, 36, 62, 0.9) 60%);
}

.vision-img-v1 h2 {
    color: #fff;
    z-index: 1;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.4;
    padding: 30px;
    margin-bottom: 10px;
    font-family: var(--heading-font);
    text-transform: capitalize;
}

.vision-img-v1 h2>b {
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================== */
.services-section-cards {
    padding-top: 40px;
}

.services-section-cards {
    text-align: center;
}

.services-section-cards .col-md-4 {
    margin-bottom: 24px;
}

.services-section-heading p {
    margin-top: 20px;
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
}

.service-item {
    background-color: rgb(255 255 255 / 5%);
    border: 2px solid rgb(255 255 255 / 5%);
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    transition: all 0.4s ease-in-out;
    margin: 0 12px;
}

.service-item-content {
    text-align: left;
}

.services-section-heading {
    margin-bottom: 50px;
    margin-top: 30px;
}

.service-item-content h3 {
    margin-top: 0px;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.col-md-4:nth-child(2) .service-item-content h3,
.col-md-4:nth-child(3) .service-item-content h3 {
    min-height: 64px;
}

.services-section a.common-btn {
    margin-left: 0px;
}


.service-item-image {
    margin-bottom: 30px;
}

.service-item-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.service-item-content a {
    font-size: 18px;
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease-in-out;
}

.service-item-image img {
    width: 100px;
    border: 2px solid rgb(255 255 255 / 5%);
    border-radius: 24px;
    padding: 5px;
}

/* ================================= */
.services-banner {
    border-bottom: 0px;
}

.services-banner h2 {
    font-size: 44px;
    line-height: 1.2;
}

.services-banner p {
    font-size: 18px;
}

.inner-hero-banner a.common-btn {
    margin-left: 0;
    margin-top: 30px;
}

.service-into-section {
    padding-top: 30px;
    padding-bottom: 70px;
}

.service-intro-content {
    background-color: rgb(255 255 255 / 5%);
    border: 2px solid rgb(255 255 255 / 5%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
}

.service-intro-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.service-intro-content p {
    font-size: 20px;
    color: #fff;
    line-height: 1.4;
}

.services-inner-cards {
    padding-top: 90px;
}

.solutions-cards h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
    font-family: var(--heading-font);
}

.services-inner-cards .col-md-4:nth-child(3n + 2) .solutions-cards {
    transform: translateY(-50px) scaleY(0.99);
}

.solutions-cards {
    background-color: rgb(255 255 255 / 5%);
    border: 2px solid rgb(255 255 255 / 5%);
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    transition: all 0.4s ease-in-out;
    margin: 0 12px;
    min-height: 100%;
}

.solutions-cards p {
    text-align: left;
    color: #fff;
    line-height: 1.4;
    font-size: 18px;
}

.solutions-cards p strong {
    font-weight: 600;
    letter-spacing: 0.9px;
    color: #4EFFFF;
}

.solutions-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    border: 2px solid rgb(255 255 255 / 5%);
    padding: 6px;
    margin-top: -80px;
    background: #0b243e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-icon img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.services-inner-cards .col-12 {
    text-align: center;
    margin-bottom: 120px;
}

.services-inner-cards .col-md-4 {
    margin-bottom: 80px;
}

.solutions-cards span {
    display: inline-block;
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    width: 32px;
    height: 2px;
    margin-bottom: 10px;
}

.methodology-section {
    padding-top: 80px;
}

.methodology-heading {
    text-align: center;
}

.methodology-heading p {
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
}

.methodology-img {
    text-align: right;
    position: sticky;
    top: 100px;
}

.methodology-img img {
    width: 80%;
    border-radius: 24px;
    height: 650px;
    object-fit: cover;
}

.methodology-grid-list {
    margin-bottom: 30px;
    border: 1px solid #FFFFFF21;
    border-radius: 24px;
    padding: 30px;
    background: #0b243e;
    position: sticky;
    top: 100px;
}

.methodology-grid-list h3 {
    font-size: 26px;
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 20px;
    width: max-content;
}

.methodology-grid-list p {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}

.whychooes-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.whychooes-section .row {
    align-items: center;
}

.whychooes-content h2 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 20px;
}

.whychooes-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.whychooes-content ul {
    list-style: none;
    padding-left: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.whychooes-content li {
    position: relative;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    padding: 5px 0px;
    width: 48%;
}

.whychooes-content li::after {
    content: '';
    position: absolute;
    top: 8px;
    left: -35px;
    bottom: 0px;
    width: 25px;
    height: 25px;
    background-image: url(../images/icons/check-icon.png);
    background-size: contain;
    background-position: center;
}

.whychooes-content a {
    margin-left: 0px;
    margin-top: 40px;
}

.whychooes-img {
    padding-right: 80px;
    position: relative;
}

.whychooes-img img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.whychooes-img-card {
    padding: 30px;
    border-radius: 24px;
    background: var(--primary-blue-color);
    border: 2px solid var(--primary-blue-color);
    position: absolute;
    bottom: 20px;
    z-index: 11;
    width: 230px;
    left: 20px;
}

.whychooes-img-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/********** Faq Section *********/
.faq_with_img_v1 {
    padding: 50px 0px;
}

/* .faq_with_img_v1 .row {
    align-items: center;
} */

.faq_with_img_v1 h2 {
    font-size: 46px;
    margin-bottom: 30px;
}

/* section.faq_with_img_v1 .row {
    flex-direction: row-reverse;
} */

.faq-v1-img {
    padding-left: 80px;
}

.faq-v1-img img {
    width: 100%;
}

.faq-v1-img {
    display: block;
    position: sticky;
    top: 140px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 10px;
    padding: 25px 20px;
    box-shadow: 0px 4px 24px 0px #0000001A;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);
}

.faq-question {
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-family: var(--heading-font);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0px;
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-ans-card p {
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0px;
}

.faq-ans-card {
    margin-top: 30px;
}


.hiring-process-section {
    padding: 50px 0px;
    padding-bottom: 100px;
    text-align: center;
    color: #fff;
}

.hiring-process-section .heading {
    color: #fff;
    margin-bottom: 60px;
    margin-top: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;

}

.step-box:first-child,
.step-box:last-child {
    transform: translateY(50px);

}

.step-box:first-child::after {
    content: '';
    position: absolute;
    background-image: url(../images/icons/hiring-top-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 125px;
    right: -130px;
    bottom: 80px;
    height: 90px;
    transform: rotate(-18deg);
}

.step-box:nth-child(2)::after {
    content: '';
    position: absolute;
    background-image: url(../images/icons/hring-bottom-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 125px;
    right: -130px;
    bottom: 80px;
    height: 90px;
    /* transform: rotate(-18deg); */
}

.step-box {
    padding: 40px;
    padding-top: 20px;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    width: calc(100%/ 3 - 27px);
    text-align: left;
    height: auto;
    max-width: 357px;
    position: relative;
}

.step-number {
    background-image: url(../images/icons/step-grident-bg.png);
    font-weight: bold;
    font-size: 61px;
    line-height: 1.7;
    text-align: left;
    background-repeat: no-repeat;
    margin-bottom: 15px;
    height: 108px;
    width: 112px;
    background-size: contain;
    text-align: center;
    margin-left: -41px;
    font-family: var(--heading-font);
}

.step-title {
    font-weight: 500;
    font-size: 23px;
    line-height: 28px;
    color: #fff;
}

.step-box span {
    display: inline-block;
    background: linear-gradient(90deg, #50A0FF 0%, #4EFFFF 100%);
    width: 32px;
    height: 2px;
    margin-top: 20px;
    margin-bottom: 18px;

}

.step-desc {
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
}

.error-banner .row {
    align-items: center;
}

.error-banner {
    padding: 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-banner h2 {
    font-family: var(--heading-font);
    color: #fff;
    text-align: left;
    font-size: 44px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 25px;
}

.error-banner p {
    color: #fff;
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-banner .common-btn {
    margin-left: 0px;
}

.error-banner-content {
    padding-left: 40px;
}

/* ============================================== */
.case-study-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.case-study-section .col-md-4 {
    margin-bottom: 40px;
}

.casestudy-grid {
    margin: 0px 15px;
    height: 100%;
}

.casestudy-inner-content {
    align-items: center;
    padding: 1.25rem;
}

.case-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.case-heading h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.case-heading p {
    font-size: 20px;
    line-height: 1.2;
}

.casestudy-inner-content h3 {
    color: #fff;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: start;
    gap: 10px;
    font-family: var(--heading-font);
}

.casestudy-inner-content h3 img {
    width: 40px !important;
    min-width: 40px !important;
    margin-top: 5px;
    border-radius: 50%;
    object-fit: cover;
    height: 40px;
}

.casestudy-inner-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    min-height: 150px;
}

.casestudy-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.casestudy-inner-img:hover img {
    transform: scale(1.2);
}

.casestudy-inner-img {
    height: 350px;
    overflow: hidden;
}

.case-study-btn {
    padding: 12px 25px;
    font-size: 18px;
    line-height: 1.2;
    background-color: transparent;
    border-radius: 34px;
    margin-top: 5px;
    display: inline-block;
    border: 2px solid;
}

.case-study-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.casestudy-infor {
    width: 48%;
    margin-bottom: 25px;
}

.casestudy-infor strong {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.casestudy-inner h1.heading {
    font-size: 56px;
}

.casestudy-intor-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.casestudy-intor-card {
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    box-shadow: 0px 4px 24px 0px #0000001A;
    padding: 34px;
    background-color: #112f4a;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.casestudy-intor-content {
    width: 70%;
    padding-right: 50px;
}

.casestudy-intor-img {
    width: 28%;
    text-align: center;
}

.casestudy-intor-content h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.casestudy-intor-content h2>strong {
    font-weight: 600;
}

.casestudy-intor-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.casestudy-intor-img img {
    width: 90%;
}

.casestudy-intor-img strong {
    font-size: 22px;
    color: #fff;
    margin-top: 10px;
    font-weight: 500;
    display: block;
}

.casestudy-pro-solu {
    padding-top: 50px;
    padding-bottom: 50px;
}

.casestudy-pro-solu .row {
    align-items: center;
}

.casestudy-pro-solu .stroke-text {
    font-size: 100px;
}

.casestudy-pro-img {
    padding-left: 60px;
}

.casestudy-pro-img img {
    width: 100%;
}

.casestudy-pro-heading h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
    text-align: center;
}

.casestudy-pro-heading h2>strong,
.casestudy-pro-heading h2>b {
    font-weight: 600;
}

.casestudy-pro-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}

.casestudy-pro-content p strong {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 22px;
    display: block;
    margin-bottom: 15px;
}

.casestudy-pro-grid {
    display: flex;
    gap: 20px;
}

.casestudy-fisrt-grid {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
}

.casestudy-fisrt-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid #FFFFFF21;
}

.casestudy-inner-grid img {
    /* border-radius: 20px; */
    /* border: 5px solid #FFFFFF21; */
}

.casestudy-inner-grid {
    min-height: 100%;
    margin: 0 7px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 13%);
    box-shadow: 0px 4px 24px 0px #0000001A;
    border-radius: 24px !important;
    overflow: hidden;
}

.faq_without_img_v2 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.faq_without_img_v2 h2 {
    margin-bottom: 30px;
    text-align: center;
}

.faq_without_img_v2 .row {
    justify-content: center;
}

.faq_without_img_v2 h3 {
    font-size: 24px;
}

.casestudy-outcome {
    padding: 50px 0px;
}

.casestudy-outcome .row {
    align-items: center;
}

.casestudy-outcome-img {
    position: relative;
    width: 100%;
    padding-right: 70px;
}

.casestudy-outcome-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 34px;
}

.casestudy-outcome-content p {
    font-size: 22px;
    line-height: 1.6;
    color: #fff;
}

.casestudy-outcome-content p strong {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 22px;
    display: block;
    margin-bottom: 15px;
}

.clients-section {
    padding: 50px 0px;
}

.clients-section .item {
    height: 130px;
    display: flex;
    align-items: center;
    border: 2px solid #FFFFFF21;
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);
}

.clients-section h2 {
    /* margin-bottom: 40px; */
    /* text-align: center; */
}

.clients-slider {
    padding-left: 30px;
}

/* ===================== */
.policy-content {
    color: #fff;
    padding: 70px 49px;
    box-shadow: 0px 4px 24px 0px #0000001A;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);
}

.policy-heading h1 {
    font-size: 52px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 50px;
    position: relative;
    font-family: var(--heading-font);
}

.policy-heading h1:after,
.policy-heading h1:before {
    content: " ";
    position: absolute;
    width: 300px;
    height: 2px;
    left: 0;
    background-color: #4EFFFF;
    bottom: -20px;
}

.policy-heading h1:after {
    bottom: -30px;
    width: 250px;
}

.policy-content p {
    font-size: 18px;
    line-height: 1.4;
}

.policy-content h3,
.policy-content h4 {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 30px;
    font-size: 30px;
    margin-bottom: 10px;
    width: max-content;
    font-family: var(--heading-font);
}

.policy-content a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.policy-content ul,
.policy-content ol {
    padding-left: 40px;
}

.policy-content li {
    font-size: 18px;
    line-height: 1.4;
    padding-left: 10px;
}

/* Case Study page */
.inner-hero-badge {
    margin-top: 30px;
    border-top: 2px solid #FFFFFF21;
    padding-top: 40px;
}

.badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    display: inline-flex;
    width: max-content;
    padding: 10px 20px;
    color: #fff;
    border: 2px solid #FFFFFF21;
    background: #FFFFFF0D;
    backdrop-filter: blur(94px);
    box-shadow: 0px 4px 24px 0px #0000001A;
    border-radius: 30px;
    font-weight: 500;
}

.case-hero-content {
    padding-right: 50px;
}

.case-hero-img img {
    width: 100%;
    border-radius: 20px;
}

.case-study-info {
    padding: 50px 0px;
}

.case-study-client {
    padding-right: 60px;
    border-right: 2px solid #FFFFFF21;
}

.case-study-info h2 {
    font-weight: 500;
    font-size: 44px;
}

.case-study-client p {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 30px;
    margin-top: 10px;
}

.case-box-client {
    border: 2px solid #FFFFFF21;
    background: #FFFFFF0D;
    backdrop-filter: blur(94px);
    box-shadow: 0px 4px 24px 0px #0000001A;
    padding: 30px;
    border-radius: 30px;
    color: #fff;
}

.case-box-client em {
    font-size: 18px;
}

.case-box-client h3 {
    margin-top: 10px;
    font-size: 24px;
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
}

.case-study-right {
    padding-left: 60px;
}

.case-study-right ul {
    list-style: none;
    padding-left: 30px;
}

.case-study-right li {
    position: relative;
    font-size: 20px;
    color: #fff;
    padding: 10px 0px;
    line-height: 1.3;
}

.case-study-right li::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -35px;
    bottom: 0px;
    width: 25px;
    height: 25px;
    background-image: url(../images/icons/check-icon.png);
    background-size: contain;
    background-position: center;
}

.testimonial {
    border-left: 5px solid #50a5ff;
    padding: 20px;
    margin-top: 30px;
    font-style: italic;
    background: #FFFFFF0D;
    backdrop-filter: blur(94px);
    box-shadow: 0px 4px 24px 0px #0000001A;
    padding: 30px;
    border-radius: 5px;
}

.case-testimonial {
    padding: 50px 0px;
}

.case-testimonial h2 {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Case Study Solution */
.case-study-solution {
    padding: 50px 0px;
    background: #FFFFFF0D;
    backdrop-filter: blur(94px);
}

.solution-heading p {
    font-size: 22px;
    color: #fff;
    margin: 20px 0px;
    letter-spacing: 1px;
}

.case-study-inner-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.case-study-inner-content {
    padding-right: 40px;
}

.case-study-inner-content span.case-count {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 44px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.case-study-inner-content h3 {
    color: #fff;
    font-size: 34px;
    margin: 20px 0px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--heading-font);
}

.case-study-inner-content p {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #fff;
}

.case-study-inner-img::after {
    content: '';
    position: absolute;
    top: -30px;
    /* left: 0px; */
    right: -30px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #FFFFFF0D;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    border: 2px solid #FFFFFF21;
}

.case-study-inner-img img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    height: 450px;
    object-fit: cover;
}

.case-study-grid .row {
    padding: 50px 0px;
}

.case-study-grid .row:nth-child(even) .case-study-inner-img::after {
    right: auto;
    left: -30px;
}

.case-study-grid .row:nth-child(even) .case-study-inner-content {
    padding-left: 60px;
    padding-right: 0px;
}

.find-developer-list-v2 ul li a.active {
    font-weight: bold;
    color: #007bff;
}

.article-grid.item {
    width: 100%;
}

/* Case Study Slider */
.case-study-slider .owl-dots .owl-dot span {
    transition: all 0.3s ease-in-outs;
}

.case-study-slider .owl-dots .owl-dot.active span {
    width: 40px;
    background-image: var(--primary-grident) !important;
}

.case-study-slider .owl-nav button {
    background-image: var(--primary-grident) !important;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40%;
}

.case-study-slider .owl-nav button img {
    width: 20px;
}

.case-study-slider .owl-nav button.owl-prev {
    left: -30px;
}

.case-study-slider .owl-nav button.owl-next {
    right: -30px;
}

.case-study-slider .item .casestudy-grid {
    margin: 0px;
}


/* Blog Slider  */
.blog-listing .owl-nav button {
    background-image: var(--primary-grident) !important;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40%;
}

.blog-listing .owl-nav button img {
    width: 20px;
}

.blog-listing .owl-nav button.owl-prev {
    left: -30px;
}

.blog-listing .owl-nav button.owl-next {
    right: -30px;
}

.blog-listing .owl-dots .owl-dot span {
    transition: all 0.3s ease-in-outs;
}

.blog-listing .owl-dots .owl-dot.active span {
    width: 40px;
    background-image: var(--primary-grident) !important;
}

.service-intro-section {
    padding-top: 50px;
}

.home .casestudy-inner-content h3 {
    font-size: 24px;
}

/* Form */
.hire-new-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hire-new-points span {
    background-color: rgb(255 255 255 / 5%);
    border: 2px solid rgb(255 255 255 / 5%);
    border-radius: 08px;
    padding: 10px 17px;
    text-align: left;
    transition: all 0.4s ease-in-out;
    color: #ffff;
    font-size: 15px;
}

.hire-new-points span>b {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-weight: 600;
    padding-right: 5px;
    font-family: var(--heading-font);
}

/***** New Pricing Section *****/
.pricing-section {
    padding: 50px 0px;
}

.pricing-heading {
    margin-bottom: 40px;
}

.pricing-heading p {
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.4;
}

.pricing-table h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-table {
    margin: 20px;
    border: 2px solid #FFFFFF21;
    padding: 15px;
    /* border-radius: 15px; */
    backdrop-filter: blur(94px);
    -webkit-backdrop-filter: blur(94px);
    background-color: rgb(255 255 255 / 5%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-table table {
    border-collapse: collapse;
}

.pricing-table thead {
    background-color: var(--primary-blue-color);
}

.pricing-table thead th {
    padding: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    font-size: 18px;
    text-align: left;
}

.pricing-table tbody td {
    padding: 10px;
    color: #fff;
    font-size: 16px;
    border: 2px solid #FFFFFF21;
    white-space: nowrap;
}

.pricing-table-card-v2 .pricing-table {
    margin: 0px;
    border: 0px;
}

.pricing-table-card-v2 {
    width: 100%;
    margin-bottom: 30px;
}

.pricing-table-card-v2:nth-child(even) .row {
    flex-direction: row-reverse;
}

.faq-v1-form {
    padding-left: 40px;
    position: sticky;
    top: 150px;
    display: block;
}

.faq_with_img_v3 .heading {
    margin-bottom: 30px;
}

.section_simple_cta {
    margin: 50px 0px;
}

.section_simple_cta .container {
    padding: 70px;
    border: 1px solid #FFFFFF21;
    border-radius: 30px;
    backdrop-filter: blur(94px);
    box-shadow: 0px 4px 24px 0px #0000001A;
}

.section_simple_cta .row {
    align-items: center;
}

.section_simple_cta p {
    font-size: 22px;
    color: #fff;
    line-height: 1.5;
    margin-top: 30px;
}

.section_simple_cta .common-btn {
    font-size: 22px;
}

/* Skills */
.section-skills-v1 {
    padding: 50px 0px;
}

.skill-card {
    margin: 10px;
    padding: 30px;
    border: 1px solid #FFFFFF21;
    border-radius: 15px;
    backdrop-filter: blur(94px);
    box-shadow: 0px 4px 24px 0px #0000001A;
    min-height: 236px;
    background-color: rgb(255 255 255 / 5%);
    color: #fff;
}

.section-skills-v1 h2 {
    margin-bottom: 30px;
}

.skill-card h3 {
    background-image: var(--primary-grident);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.skill-card p {
    font-size: 18px;
/*     text-align: justify; */
    line-height: 1.4;
    margin-bottom: 0px;
}