@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

span {
    display: inline-block;
}

ul {
    padding: 0px;
    margin: 0px;
}

img {
    width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

p {
    margin-bottom: 0px;
    font-weight: 400;
    color: var(--c4);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

:root {
    --c1: rgba(1, 137, 203, 1);
    --c2: rgba(35, 35, 35, 1);
    --c3: rgb(255, 255, 255);
    --c4: rgba(0, 0, 0, 1);
}

::selection {
    color: var(--c3);
    background: var(--c1);
}

::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 0;
}

.container-fluid {
    max-width: 1700px;
}

body {
    font-family: "Work Sans", sans-serif;
}

/* HEADER */

.top-header {
    background-color: var(--c2);
    color: var(--c3);
    padding: 10px 0px;
}

.head-left-links ul li a,
.head-right-links ul li a {
    color: inherit;
    transition: all .5s;
}

.head-left-links ul li a:hover,
.head-right-links ul li a:hover {
    color: var(--c1);
}

.process-title p {
    color: var(--c3);
    margin-top: 15px;
}

.head-left-links ul {
    display: flex;
    gap: 20px;
}

.head-left-links ul li a i {
    margin-right: 10px;
}

.head-right-links ul {
    display: flex;
    gap: 30px;
    justify-content: end;
}

.head-right-links ul li i {
    background-color: var(--c1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c3);
    font-size: 14px;
}

.head-right-links ul li a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-bar-main {
    display: flex;
    align-items: center;
    gap: 50px;
}

.head-menu ul {
    display: flex;
    gap: 40px;
}

.head-menu ul li a {
    color: var(--c4);
    font-weight: 500;
    transition: all .5s;
    position: relative;
}

.head-menu>ul>li>a::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--c1);
    border-radius: 50%;
    left: -15px;
    transition: all .5s;
    visibility: visible;
    opacity: 0;
}

.head-menu>ul>li>a:hover::before {
    visibility: visible;
    opacity: 1;
}

.head-menu ul>li>a:hover {
    color: var(--c1);
}

.web-btn {
    background-color: var(--c1);
    border-radius: 5px;
    padding: 14px 30px;
    color: var(--c3);
    font-weight: 500;
    transition: all .5s;
}

.web-btn i {
    margin-left: 10px;
    font-size: 14px;
    transform: rotate(-45deg);
    transition: all .5s;
}

.web-btn:hover {
    background-color: var(--c2);
    color: var(--c3);
}

.head-btn-main {
    text-align: end;
}

.main-header {}

.web-btn:hover i {
    transform: rotate(0deg);
}

/* SECTION MAIN BANNER */

.banner-content {
    text-align: center;
    padding: 90px 0px;
}

.banner-content h1 {
    font-family: Work Sans;
    font-weight: 600;
    font-size: 86px;
    line-height: 1.2;
    letter-spacing: -5px;
    color: var(--c4);
    margin-bottom: 25px;
}

.banner-content p {
    margin-bottom: 35px;
}

.bg-prop {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* SECTION TRUSTED */

.spacing {
    padding: 100px 0px;
}

.web-title h2 {
    font-weight: 600;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -2.75px;
    color: var(--c4);
}

.trusted-title {
    padding-right: 250px;
}

.trusted-item {
    border: 1px solid rgba(210, 210, 210, 1);
    transition: all .5s;
    height: 100%;
    padding: 20px;
}

.trusted-item img {
    height: 200px;
    object-fit: contain;
    transition: all .5s;
    filter: grayscale(1);
}

.trusted-sec .container-fluid .row:nth-child(2) .trusted-item {
    border-left: 0px;
}

.trusted-sec .container-fluid .row:nth-child(2) .col-lg-2:first-child .trusted-item {
    border-left: 1px solid rgba(210, 210, 210, 1);
}

.trusted-title {
    padding: 0px 180px 0px 50px;
}

.trusted-item:hover img {
    filter: grayscale(0);
}

.trusted-item:hover {
    box-shadow: 0px 0px 20px -10px;
}

/* SECTION FUTURE BANNER */

.future-bann-bg {
    padding: 80px 80px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.future-bann-cont h2 {
    color: var(--c3);
    font-size: 42px;
    font-weight: 600;
}

.future-bann-cont p {
    color: var(--c3);
    margin: 20px 0px 30px 0px;
    font-weight: 400;
}

.future-bann-bg::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, black, transparent);
    z-index: -1;
}

.future-btn-two {
    background: unset;
    padding: 0px;
}

.future-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.future-btn-two:hover {
    background: unset;
    color: var(--c1);
}

/* SECTION SERVICES */

.service-item a {
    padding: 40px 20px;
    border-radius: 20px;
    color: var(--c4);
    transition: all .5s;
    display: block;
    border: 1px solid rgba(210, 210, 210, 1);
}

.service-img img {
    width: 100px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--c4);
    margin: 30px 0px 15px 0px;
    transition: all .5s;
}

.service-item p {
    transition: all .5s;
}

.service-item a:hover {
    background-color: var(--c1);
    border-color: var(--c1);
}

.service-item a:hover h3 {
    color: var(--c3);
}

.service-item a:hover p {
    color: var(--c3);
}

.myService .swiper-slide-active .service-item a {
    background-color: var(--c1);
    border-color: var(--c1);
}

.myService .swiper-slide-active .service-item a h3 {
    color: var(--c3);
}

.myService .swiper-slide-active .service-item a p {
    color: var(--c3);
}

.myService .serv-arrow {
    width: 70px;
    height: 70px;
    background-color: var(--c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c3);
    font-size: 30px;
    transition: all .5s;
}

.serv-arrow-btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.myService .serv-arrow:hover {
    background-color: var(--c2);
}

/* SECTION AI PROCESS */

.process-title h2 {
    color: var(--c3);
}

.process-item {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding: 50px 20px 0px 20px;
    transition: all .5s;
    position: relative;
}

.process-item-img img {
    height: 100%;
    object-fit: cover;
}

.process-item-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    transform: rotate(45deg);
    box-shadow: 0px 0px 21px 1px rgba(255, 255, 255, 0.4);
    margin: 0 auto 90px auto;
    transition: all .5s;
}

.process-item-content-icon {
    background-color: var(--c3);
    width: 80px;
    height: 80px;
    display: flex;
    border-radius: 50%;
    border: 8px solid var(--c2);
    margin: -70px auto 20px auto;
    justify-content: center;
    align-items: center;
}

.process-item-content {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 30px 50px 30px 50px;
    text-align: center;
    color: var(--c3);
    transition: all .5s;
}

.process-item-content h3 {
    font-size: 26px;
}

.process-item span {
    position: absolute;
    top: 0;
    left: 20px;
    color: var(--c3);
    opacity: 0.6;
    font-weight: 300;
    transition: all .5s;
}

.process-item:hover {
    border-color: var(--c3);
}

.process-item:hover .process-item-content {
    border-color: var(--c3);
}

.process-item:hover .process-item-img {
    visibility: visible;
    opacity: 1;
}

.process-item:hover span {
    opacity: 1;
}

.process-item-content-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.ai-process-gap {
    margin-bottom: 70px;
}

.process-item:hover .process-item-img {
    box-shadow: 0px 0px 21px 1px rgb(1 137 203);
}

/* SECTION TESTIMONIAL */

.testi-right-box {
    box-shadow: 0px 4px 13px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    overflow: hidden;
    padding: 70px;
}

.testi-icon {
    width: 40px;
    margin-bottom: 35px;
}

.testi-item p {
    font-weight: 400;
    font-size: 20px;
    color: rgba(30, 30, 30, 1);
    margin-bottom: 30px;
}

.testi-author-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testi-author h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--c4);
    margin-bottom: 5px;
}

.testi-author-logo {
    width: 150px;
}

.testi-left-box {
    background: rgba(248, 248, 251, 1);
    height: 100%;
    box-shadow: 0px 4px 13px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    text-align: center;
    padding: 0px 80px;
    display: flex;
    align-items: center;
}

.testi-left-box h3 {
    font-weight: 700;
    font-size: 100px;
    color: var(--c2);
}

.testi-left-box ul {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-bottom: 5px;
}

.testi-left-box ul li {
    font-size: 18px;
    color: rgba(255, 102, 0, 1);
}

.testi-left-box p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(30, 30, 30, 1);
    margin: 20px 0px 30px 0px;
}

.testi-arrow-btn .testi-arrow {
    border: 1px solid rgba(210, 210, 210, 1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .5s;
}

.testi-arrow-btn {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.testi-arrow-btn .testi-arrow:hover {
    background-color: var(--c1);
    border-color: var(--c1);
    color: var(--c3);
}

/* SECTION QUALITY */

.quality-title {
    color: var(--c3);
    padding-right: 120px;
}

.quality-title h2 {
    color: inherit;
    padding: 0px 0px 70px 140px;
}

.quality-title span {
    position: relative;
}

.quality-title span::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    border: 1px solid #ffffff;
    left: 110%;
}

.quality-title p {
    color: inherit;
    padding-left: 270px;
    font-weight: 300;
}

.quality-img {
    width: 250px;
    margin: 0 auto;
}

.quality-logo-box {
    backdrop-filter: blur(11px);
    background-color: #ffffff17;
    border: 1px solid var(--c3);
    border-radius: 20px;
    padding: 60px 60px;
    position: relative;
}

.quality-logo-img img {
    width: 100px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto;
}

.quality-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c3);
    font-size: 30px;
    transition: all .5s;
}

.quality-arrow:hover {
    color: var(--c1);
}

.quality-button-next {
    right: 30px;
}

.quality-button-prev {
    left: 30px;
}

/* SECTION PACKAGE */

.package-box {
    box-shadow: 0px 4px 13px 1px rgba(0, 0, 0, 0.07);
    padding: 40px 40px;
    position: relative;
    border-radius: 0px 10px 10px 0px;
}

.package-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--c1);
}

.package-boxes-main .package-box {
    margin-bottom: 30px;
}

.package-boxes-main .package-box:last-child {
    margin-bottom: 0px;
}

.package-content h3 {
    color: var(--c4);
    font-weight: 600;
}

.package-btn a {
    color: var(--c1);
    font-weight: 600;
    font-size: 18px;
    transition: all .5s;
    width: max-content;
    display: block;
    margin-left: auto;
    transition: all .5s;
}

.package-btn a i {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
}

.package-btn span {
    width: 60px;
    height: 60px;
    background-color: var(--c1);
    border-radius: 50%;
    justify-content: center;
    color: var(--c3);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-left: auto;
}

.package-btn a:hover {
    color: var(--c4);
}

.package-content P {
    font-weight: 400;
    margin: 10px 0px 30px 0px;
}

.package-content h4 {
    color: var(--c4);
    font-weight: 700;
    font-size: 32px;
}

.package-content h4 span {
    color: var(--c1);
    font-size: 18px;
    transform: translateY(-10px);
    display: inline-block;
    margin-right: 5px;
}

.package-content h4 sup {
    background-color: var(--c1);
    padding: 12px 8px;
    font-size: 14px;
    border-radius: 5px;
    color: var(--c3);
    transform: translateY(-10px) translateX(4px);
    display: inline-block;
}

.package-right-img {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.package-right-img img {
    height: 100%;
    object-fit: cover;
    transition: all .8s;
}

.package-right-img:hover img {
    transform: scale(1.1) rotate(-2deg);
}

/* SECTION FAQ */

.myFaq .swiper-slide {
    transition: transform 0.6s ease, opacity 0.6s ease, flex-basis 0.6s ease;
    transform: scale(0.85);
    opacity: 0.6;
    flex: 0 0 25%;
}

.myFaq .swiper-slide.active-slide {
    transform: scale(1.1);
    opacity: 1;
    flex: 0 0 50%;
    z-index: 3;
}

/* SECTION AI SAAS */

.ai-saas-item {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    background-color: #0d0d0d;
    color: var(--c3);
    transition: all .5s;
}

.ai-saas-icon img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin: 0 auto 40px auto;
}

.web-btn-track {
    margin-top: 50px;
}

.ai-saas-sec .row .col-lg-4:nth-child(1) .ai-saas-item {
    margin-right: 50px;
}

.ai-saas-sec .row .col-lg-4:nth-child(3) .ai-saas-item {
    margin-left: 50px;
}

.ai-saas-sec .row .col-lg-4:nth-child(2) .ai-saas-item {
    margin: 0px 25px;
    position: relative;
}

.ai-saas-title h2 {
    color: var(--c3);
    margin-bottom: 20px;
}

.ai-saas-title p {
    color: var(--c3);
}

.ai-saas-cont,
.ai-saas-icon {
    transition: all .5s;
    opacity: 0.6;
}

.ai-saas-item:hover {
    background-color: var(--c1);
    border-color: var(--c1);
}

.ai-saas-item:hover .ai-saas-icon,
.ai-saas-item:hover .ai-saas-cont {
    opacity: 1;
}

.ai-saas-sec .container-fluid .row:nth-child(2) {
    position: relative;
    z-index: 1;
}

.ai-saas-sec .container-fluid .row:nth-child(2)::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 2.5%;
    transform: translateY(-50%);
    width: 95%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: -1;
}

.ai-saas-sec .row .col-lg-4:nth-child(2) .ai-saas-item::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 51px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* SECTION CASE STUDIES */

.case-studies {
    position: relative;
    overflow: hidden;
}

.case-badge {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.case-badge span {
    padding: 6px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
}

.case-badge span:nth-child(2) {
    background: rgb(0 39 65 / 34%);
}

.case-badge span:nth-child(1) {
    background-color: rgb(1 137 203 / 56%);
}

.case-studies-content h2 {
    margin-bottom: 10px;
}

.case-studies-content p {
    font-weight: 400;
    margin-bottom: 25px;
}

.case-studies-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    color: var(--c4);
}

.case-studies-content ul {
    margin-bottom: 30px;
}

.case-studies-content ul li::before {
    position: absolute;
    content: "\f324";
    top: 1px;
    left: 0;
    color: var(--c1);
    font-family: "Font Awesome 5 Pro";
}

.case-studies-img {
    margin-right: 100px;
}

.case-title {
    position: relative;
    margin-bottom: 100px;
}

.case-title span {
    position: absolute;
    top: -25px;
    left: 0;
    font-weight: 700;
    font-size: 70px;
    color: #00000012;
    line-height: 1;
    z-index: -1;
}

.case-studies-box-inner:last-child {
    margin: 0;
}

.case-studies-box {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    will-change: transform;
    z-index: 1;
    padding-bottom: 100px;
    /* border-top: 1px solid var(--c1); */
}

.case-studies-boxes-main .case-studies-box:last-child {
    padding-bottom: 0px;
}

.case-studies-boxes-main .pin-spacer:nth-child(1) .case-studies-box {
    border-top: unset;
}

.case-studies-boxes-main .pin-spacer:nth-child(even) .case-studies-box .row {
    flex-direction: row-reverse;
}

.case-studies-boxes-main .case-studies-box:nth-child(even) .row .case-studies-img {
    margin-right: 0px;
    margin-left: 100px;
}

.case-studies-box .row {
    height: 100%;
}

.case-studies-boxes-main .case-studies-box:nth-child(even) .row {
    flex-direction: row-reverse;
}


/* FOOTER */

.footer-logo-gap {
    padding: 100px 70px 100px 0px;
}

.footer-bottom {
    border-top: 1px solid gray;
    padding: 20px 0px;
    text-align: center;
}

.footer-nav-gap {
    padding: 100px 0px 100px 90px;
    border-left: 1px solid gray;
}

.footer-logo a {
    display: block;
    width: 240px;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-sec {
    color: var(--c3);
}

.footer-sec p {
    color: inherit;
}

.footer-logo-about span,
.footer-title span {
    font-weight: 500;
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: inherit;
    transition: all .5s;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a:hover {
    color: var(--c1);
    padding-left: 10px;
}

.footer-nav-gap .row {
    row-gap: 50px;
}

.footer-socials ul {
    display: flex;
    gap: 20px;
}

.footer-socials ul li a {
    font-size: 20px;
    color: inherit;
    transition: all .5s;
}

.footer-socials ul li a:hover {
    color: var(--c1);
}

.footer-news form input {
    width: 100%;
    background: rgba(32, 32, 32, 1);
    border: 0;
    outline: 0;
    color: var(--c3);
    height: 45px;
    padding: 5px 20px;
}

.footer-news form {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.footer-news button {
    position: absolute;
    background: unset;
    border: 0;
    color: var(--c3);
    height: 100%;
    width: 50px;
    top: 0;
    right: 0;
    transition: all .5s;
}

.footer-news button:hover {
    background-color: var(--c1);
}

/* SECTION ABOUT US */

.about-client {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 30px 0px 50px 0px;
}

.about-client img {
    width: 130px;
}

.about-client h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--c4);
}

.count-numb h3 {
    font-weight: 900;
    font-size: 250px;
    color: var(--c2);
    line-height: 1;
}

.about-sec-left>span {
    font-weight: 600;
    font-size: 18px;
    color: var(--c4);
}

.count-numb {
    display: flex;
    gap: 50px;
    align-items: center;
}

.count-numb h4 {
    writing-mode: sideways-lr;
    height: 170px;
    text-align: end;
    font-weight: 600;
    color: var(--c4);
}

.about-accordion button.accordion-button {
    background: unset;
    color: var(--c4);
    font-weight: 600;
    font-size: 20px;
    box-shadow: unset;
}

.about-accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid rgba(210, 210, 210, 1);
    border-radius: 6px;
    overflow: hidden;
}

.about-accordion .accordion-item:last-child {
    margin-bottom: 0px;
}

.about-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--c1);
}

.about-accordion .accordion-button:not(.collapsed) {
    background-color: var(--c1);
    color: var(--c3);
}

.about-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

.about-accordion button.accordion-button::after {
    background-image: unset;
    content: "\f067";
    transform: unset;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.about-sec .container-fluid .row {
    border-top: 1px solid rgba(210, 210, 210, 1);
    position: relative;
}

.about-sec-left {
    padding-top: 50px;
}

.about-accordion {
    padding: 50px 0px 0px 50px;
}

.about-sec .container-fluid .row::before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    border: 1px solid rgba(210, 210, 210, 1);
}

/* QUERY FORM */

.query-form-sec {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c1);
    z-index: 99;
    padding: 50px 0px;
}

.query-cross a {
    color: var(--c3);
    width: 50px;
    height: 50px;
    border: 1px solid var(--c3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border-radius: 50%;
    font-size: 24px;
    transition: all .5s;
}

.query-cross a:hover {
    background-color: var(--c3);
    color: var(--c4);
}

.query-form-left h2 {
    font-weight: 700;
    font-size: 96px;
    color: var(--c3);
    position: relative;
}

.query-form-left h2 img {
    position: absolute;
    bottom: 20px;
    right: 50px;
    width: 70px;
}

.query-form-left p {
    color: var(--c3);
    margin: 15px 0px 30px 0px;
}

.query-phone-main {
    display: flex;
    gap: 50px;
}

.query-phone-box span {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--c3);
}

.query-phone-box a {
    color: var(--c3);
    transition: all .5s;
}

.query-phone-box a:hover {
    color: var(--c4);
}

.query-form-socials ul li a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--c3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c3);
    transition: all .5s;
    font-size: 20px;
}

.query-form-socials ul {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.query-form-socials ul li a:hover {
    background-color: var(--c3);
    color: var(--c4);
}

.query-form-item {
    border: 1px solid var(--c3);
    border-radius: 20px;
    padding: 40px;
}

.query-form-item h3 {
    font-weight: 600;
    color: var(--c3);
    margin-bottom: 20px;
}

.query-input-item input,
.query-input-item textarea {
    width: 100%;
    background: unset;
    border: 0;
    border-bottom: 1px solid var(--c3);
    transition: all .5s;
    padding: 10px 0px;
    outline: 0;
}

.query-input-item input::placeholder,
.query-input-item textarea::placeholder {
    color: var(--c3);
    transition: all .5s;
}

.query-input-item input:focus::placeholder,
.query-input-item textarea:focus::placeholder {
    visibility: hidden;
    opacity: 0;
}

.query-form-item form .row {
    row-gap: 30px;
}

.query-input-item input:focus,
.query-input-item textarea:focus {
    border-color: var(--c4);
}

.query-input-item textarea {
    height: 120px;
}

.query-check-item label {
    color: var(--c3);
}

.query-check-item input {
    width: 20px;
    height: 20px;
}

.query-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.query-submit-btn input {
    padding: 12px 30px;
    border: 0;
    color: var(--c1);
    font-weight: 500;
    border-radius: 6px;
    transition: all .5s;
}

.query-submit-btn input:hover {
    background-color: var(--c4);
    color: var(--c3);
}

.query-form-left {
    padding-right: 30px;
}

.cust-gap {
    row-gap: 24px;
}

/* RESPONSIVE MENU */

.ham-menu a {
    font-size: 26px;
    color: var(--c4);
}

.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    z-index: 99999;
    transition: all .5s;
}

.responsive-menu-inner {
    height: 100%;
    padding: 30px;
    position: relative;
    width: 80%;
    background-color: var(--c3);
    left: -100%;
}

.responsive-logo-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.respon-cross a,
.respon-cross a i {
    display: block;
}

.respon-cross a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--c2);
    transition: all .5s;
}

.respon-cross a:hover {
    transform: rotate(90deg);
    color: var(--c1);
    border-color: var(--c1);
}

.respon-logo a {
    display: block;
}

.respon-logo {
    width: 60px;
}

.responsive-links ul li a {
    color: var(--c4);
    transition: all .5s;
    font-size: 24px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid #80808047;
    padding: 10px 0px;
}

.responsive-links {
    margin-top: 50px;
    overflow-y: auto;
    height: calc(100vh - 232px);
}

.responsive-links ul li ul {
    display: none;
}

.responsive-links ul li a:hover {
    color: var(--c1);
}

.responsive-links ul li ul li a {
    padding-left: 40px;
    font-size: 18px;
}

.responsive-links ul li:has(ul)::before {
    position: absolute;
    content: "\f067";
    top: 16px;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    color: var(--c4);
}

.responsive-links ul li {
    position: relative;
}

.responsive-links ul li.active::before {
    content: "\f068";
    color: var(--c1);
}

.responsive-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--c1);
    padding: 12px 0px;
}

.responsive-socials ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.responsive-socials ul li a {
    color: var(--c3);
    font-size: 20px;
}

.responsive-menu.active {
    left: 0;
}

.responsive-menu.active .responsive-menu-inner {
    left: 0;
    transition-delay: .3s !important;
    transition: all .7s;
}

body.stop-scroll {
    overflow-y: hidden;
}

.main-wrapper {
    overflow: hidden;
}

/* contect-us */

.contect-form {
    background: #2a2d32;
}

.contect-form {
    background: rgba(248, 248, 251, 1);
    padding: 70px;
    border-radius: 10px;
    position: relative;
}

.socials-icon a:hover {
    background: var(--c1);
}

.icon i {
    font-size: 40px;
    color: var(--c1);
    transition: .5s;
    cursor: pointer;
}

.num {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location span {
    font-size: 18px;
    color: var(--c2);
    text-transform: uppercase;
    font-weight: 600;
}

.contect-num a {
    font-size: 25px;
    font-weight: 600;
    font-family: "Work Sans", sans-serif;
    color: var(--c2);
    transition: .5s;
}

.contect-num a:hover {
    color: var(--c1);
}

.icon i:hover {
    color: var(--c2);
}

.location p {
    font-size: 16px;
    color: var(--c2);
}

.location {
    margin-top: 30px;
}

.email {
    margin-top: 30px;
}

.email span {
    display: block;
    color: var(--c2);
    font-weight: 600;
    text-transform: uppercase;
}

.email a {
    color: var(--c2);
    transition: all .5s;
}

.socials-icon {
    margin-top: 40px;
    display: flex;
    gap: 10px;
}

.socials-icon a {
    background: var(--c2);
    border-radius: 30px;
}

.form-area span {
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 14px;
    background: var(--c1);
    color: var(--c3);
}

.form-area h1 {
    color: var(--c4);
    margin-bottom: 20px;
    font-weight: 600;
}

.input-type input.form-control {
    background: none;
    border: 0;
    border-bottom: 1px solid rgb(0 0 0 / 24%);
    border-radius: 0;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.text-area textarea.form-control {
    background: none;
    border: 0;
    border-bottom: 1px solid rgb(0 0 0 / 24%);
    margin-bottom: 40px;
    height: 150px;
    border-radius: 0px;
}

/* map-sec */
section.map-sec .container-fluid.m-0.p-0 {
    max-width: unset;
    margin-top: -80px;
}

.map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.socials-icon a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c3);
    transition: .5s;
}

.email a:hover {
    color: var(--c1);
}

.form-control:focus {
    box-shadow: none;
}

/* about */
.phone {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.num-phone {
    display: flex;
    gap: 20px;
    align-items: center;
}

.num-anc a {
    display: block;
    color: var(--c2);
}

/* Card-Sec */

section.Card-Sec {
    padding: 60px 0;
}

.card-inner {
    box-shadow: 0px 4px 13px 1px rgba(0, 0, 0, 0.07);
    padding: 40px 40px;
    position: relative;
    border-radius: 0px 10px 10px 0px;
    margin-bottom: 30px;
    border-left: 3px solid var(--c1);
}

.card-inner h2 {
    font-size: 20px;
    margin-bottom: 9px;
}

.card-inner i {
    font-size: 29px;
    margin-bottom: 30px;
    border: 1px solid;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
}

.about-image-main.about-sec-2 {
    justify-content: start;
}

/* vc-sec */

.vc-icon img {
    width: 60px;
    margin-bottom: 20px;
    transition: all .5s;
}

.vc-sec-card {
    box-shadow: 0px 4px 13px 1px rgba(0, 0, 0, 0.07);
    padding: 30px;
    position: relative;
    border-radius: 0px 10px 10px 0px;
    border-left: 3px solid var(--c1);
    display: flex;
    gap: 15px;
    transition: all .5s;
    cursor: pointer;
    height: 100%;
    background-color: var(--c3);
}

.vc-sec-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--c4);
    font-size: 22px;
}

/* service */

.banner-content.inner-banner-con h1 {
    padding: 0;
}

section.Service-Contect.spacing {
    background: #f0f2f8;
}

.service-card-box img {
    width: 70px;
    margin: auto;
    transition: .4s;
}

.service-card-box {
    background: var(--c3);
    padding: 54px;
    text-align: center;
    border-left: 3px solid var(--c1);
    cursor: pointer;
    transition: .7s;
}

/* faq */

.faq-section {
    position: relative;
    overflow: hidden;
    background: url(img/shape-bg.png) no-repeat top center;
    background-size: cover;
}

.faq-info .accordion-item {
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
    border: 0;
    border-radius: 10px;
    margin: 0 0 24px;
    padding: 24px;
}

.faq-info .accordion-item .accordion-body {
    padding: 15px 0 0 60px;
}

.faq-info .accordion-header {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
}

.faq-info .accordion-button {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.faq-info .accordion-button:hover {
    border: 0;
}

.faq-info .accordion-button span {
    font-size: 16px;
    font-weight: 400;
    background: var(--c1);
    color: var(--c3);
    border-radius: 50px;
    margin-right: 15px;
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
}

.faq-info .accordion-button.collapsed span {
    background: #EDEDED;
    color: var(--c4);
}

.faq-info .accordion-content p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 0;
}

.faq-view-all {
    padding-top: 50px;
}

.faq-view-all a {
    font-size: 16px;
    font-weight: 500;
    color: #FE0198;
}

.faq-view-all a:hover {
    color: #0D8ADA;
}

.faq-view-all a:hover span:after {
    background: #0D8ADA;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.faq-view-all a:hover i {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.faq-view-all a i {
    margin-left: 6px;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.faq-view-all a span {
    position: relative;
    display: inline-block;
}

.faq-view-all a span:after {
    content: "";
    height: 1.5px;
    width: 100%;
    background: #FE0198;
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    bottom: 0;
    left: 0;
}

.section-header-info h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px !important;
    padding-top: 10px;
}

.section-header-info h2 span {
    top: -25px;
    position: relative;
    z-index: -1;
    display: block;
    font-size: 90px;
    font-weight: 800;
    line-height: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #f0f0f0;
}

.our-product-section .section-header-info h2 span,
.award-section .section-header-info h2 span {
    z-index: 1;
}

.service-card-box span {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}

.service-card-box:hover img {
    filter: hue-rotate(200deg) saturate(3) brightness(1.1);
    transform: scale(1.05);
}

.service-card-box:hover {
    background-color: #f0f4ff;
    /* change color as desired */
}

/* Our-process-service */
section.card-stack-sec h1 {
    padding-top: 0;
    padding-bottom: 60px;
}

.our-process-div span {
    width: 70px;
    background: rgb(245 247 250);
    overflow: visible;
    border-radius: 70px;
    height: 70px;
    object-fit: cover;
    transition: .5s;
    cursor: pointer;
    font-size: 20px;
    line-height: 70px;
    text-align: center;
    font-weight: 600;
    border: 2px solid var(--c1);
}

.our-process-div h6 {
    font-size: 17px;
    text-align: center;
    margin-top: 30px;
}

.our-process-div span:hover {
    background: var(--c1);
    color: var(--c3);
}

.our-process-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row.process-row {
    position: relative;
}

.row.process-row:before {
    position: absolute;
    content: '';
    border: 1px solid var(--c1);
    width: 84%;
    top: 35px;
    left: 8%;
    z-index: -2;
}

.sub-heading h6 {
    font-size: 30px;
    text-align: center;
}

.vc-sec-card:hover {
    border-left: 3px solid var(--c2);
    box-shadow: 0px 0px 20px -10px;
    transform: translate(-4px, -10px);
}

.our-process-div img:hover {
    background: var(--c1);
}

/* key-feather-card */


.stand-box {
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .1);
    padding: 30px;
    border-radius: 10px;
    transition: all .5s;
    height: 100%;
    background: var(--c3);
}

.stand-icon {
    width: 90px;
}


.stand-box:hover {
    box-shadow: 0px 0px 20px -10px;
    transform: translate(-4px, -10px);
}

.stand-content h3 {
    margin: 20px 0px 10px 0px;
    font-weight: 600;
    color: var(--c4);
    font-size: 20px;
}

/* why-choose-sec */

.choose-box {
    background: rgb(245 247 250);
    padding: 35px 25px 35px 25px;
    margin-bottom: 20px;
    border-bottom: 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all .5s;
}

.choose-box img {
    width: 50%;
}

.cta-inner {
    background: linear-gradient(90deg, #025CA8 0%, #02A4E5 50%, #025CA8 100%);
    padding: 50px;
    border-radius: 20px;
    color: var(--c3);
    text-align: center;
}

.choose-box:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--c1);
    transform: scaleX(0);
    transition: .5s;
    cursor: pointer;
}

.choose-box:hover::before {
    transform: scaleX(1);
}

.cta-con h6 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-con p {
    font-size: 20px;
    color: var(--c3);
    line-height: 1.5;
    margin-bottom: 25px;
}

.cat-tag-list ul li {
    list-style: disc;
}

.icon {
    width: 100px;
    height: 100px;
    background: var(--c3);
    border-radius: 50%;
    box-shadow: 4px 4px 0px var(--c1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-box p {
    font-size: 18px;
    line-height: 1.3;
}

.choose-box.client-sucess h3 {
    font-weight: 600;
    color: var(--c4);
    font-size: 22px;
    text-align: center;
}

.choose-box.client-sucess p {
    font-size: 18px;
    padding-top: 10px;
}

.choose-box.client-sucess {
    height: 100%;
}

/* SECTION SERVICE PROCESS */

.service-process-item {
    border-right: 1px solid #8080804f;
    border-bottom: 1px solid #8080804f;
    padding: 30px;
    transition: all .5s;
    background-color: var(--c3);
    height: 100%;
}

.service-process-item img {
    width: 80px;
}

.service-process-item h3 {
    font-weight: 600;
    color: var(--c4);
    font-size: 22px;
    margin: 20px 0px 15px 0px;
}

.service-process-item ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
}

.service-process-item ul li::before {
    position: absolute;
    content: "\f324";
    top: 3px;
    left: 0;
    color: var(--c1);
    font-family: "Font Awesome 5 Pro";
    font-size: 14px;
}

.service-process-item ul li:last-child {
    margin-bottom: 0px;
}

.key-feature-title h2 {
    margin-bottom: 15px;
}

.service-process .row .col-lg-4:nth-child(4) .service-process-item,
.service-process .row .col-lg-4:nth-child(8) .service-process-item {
    border-right: 0;
}

.service-process .row .col-lg-4:nth-child(5) .service-process-item,
.service-process .row .col-lg-4:nth-child(6) .service-process-item,
.service-process .row .col-lg-4:nth-child(7) .service-process-item,
.service-process .row .col-lg-4:nth-child(8) .service-process-item {
    border-bottom: 0px;
}




.service-process-erp .row .col-lg-4:nth-child(5) .service-process-item,
.service-process-erp .row .col-lg-4:nth-child(6) .service-process-item,
.service-process-erp .row .col-lg-4:nth-child(7) .service-process-item,
.service-process-erp .row .col-lg-4:nth-child(8) .service-process-item {
    border-bottom: 1px solid #8080804f;
}


.service-process-item:hover {
    box-shadow: 0px 0px 20px -10px;
}


/* Process */

.process-items {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.process-items .process-box .process-icon {
    background: var(--c3);
    border-radius: 50%;
    padding: 40px;
    box-shadow: 0px 3px 13px 3px rgb(0 0 0 / 6%);
    transition: all .5s;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.ai-process-sec .process-icon img {
    width: 150px;
    margin-left: auto;
}

.process-box {
    padding: 0px 0px;
    position: relative;
    width: 16.66%;
}

.process-box:before {
    position: absolute;
    content: "\f30b";
    font-family: 'Font Awesome 5 Pro';
    top: 40%;
    transform: translateY(-50%);
    left: -40px;
    color: #dddcdc;
    font-weight: 800;
    font-size: 50px;
}

.process-no h3 {
    font-weight: 600;
    color: var(--c4);
    font-size: 22px;
    text-align: center;
    margin-bottom: 6px;
}

.process-no {
    margin-top: 20px;
    text-align: center;
}

.process-box:hover .process-icon img {
    filter: drop-shadow(2px 4px 6px black);
}

.process-box:hover .process-icon {
    background: var(--c1);
}

.our-process-sec .row:last-child .process-items .process-box:first-child:before {
    display: none;
}

.process-count span {
    position: absolute;
    top: 0;
    right: 50px;
    background: var(--c1);
    color: var(--c3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
}

.choose-box:hover {
    transform: translate(-4px, -10px);
}

.cust-bg {
    background-color: #8080800f;
}

.dark-bg-btn {
    background-color: var(--c2);
}

.dark-bg-btn:hover {
    background-color: var(--c3);
    color: var(--c4);
}

/* SERVICE BANNER CSS */

.inner-serv-banner .banner-content {
    text-align: left;
    color: var(--c3);
    padding-right: 30px;
}

.inner-serv-banner .banner-content h1 {
    font-size: 60px;
    letter-spacing: -2px;
    color: inherit;
}

.inner-serv-banner .banner-content p {
    color: inherit;
    font-size: 18px;
    font-weight: 500;
}

.inner-serv-banner .banner-content ul li {
    margin-bottom: 12px;
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}

.inner-serv-banner .banner-content ul {
    padding: 0px 0px 30px 0px;
}

.service-form {
    background: var(--c3);
    padding: 30px;
    box-shadow: 0px 0px 3px var(--c2);
    border: 1px solid rgb(35 35 35 / 26%);
    border-radius: 10px;
}

.service-form-item input,
.service-form-item textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #80808070;
    transition: all .5s;
    border-radius: 5px;
    padding: 12px 20px 12px 50px;
    outline: 0;
}

.service-form-item input:focus,
.service-form-item textarea:focus {
    border-color: var(--c1);
}

.service-form-item input:focus::placeholder,
.service-form-item textarea:focus::placeholder {
    visibility: hidden;
    opacity: 0;
}

.service-form-item input::placeholder,
.service-form-item textarea::placeholder {
    transition: all .5s;
}

.service-form-item {
    position: relative;
}

.service-form-item i {
    position: absolute;
    top: 15px;
    left: 18px;
    font-size: 18px;
    color: var(--c1);
}

.service-form form .row {
    row-gap: 20px;
}

.service-form-item textarea {
    height: 150px;
}

.service-form button {
    margin-top: 15px;
}

.inner-serv-banner {
    padding: 80px 0px;
}

.inner-serv-banner .banner-content ul li::before {
    position: absolute;
    content: "\f0a4";
    font-family: "Font Awesome 5 Pro";
    left: 0;
    top: 1px;
}
/* List Main */

.cat-sub-head {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--c4);
    font-size: 22px;
}

.list-main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.list-box {
    width: 32.5%;
}

.cat-tag-list i {
    width: 40px;
    height: 40px;
    color: rgb(24 24 24);
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
}

.cat-tag-list {
    margin-bottom: 10px;
}

.cat-tag-list img {
    width: auto;
    border-radius: 50%;
    height: 40px;
    max-height: 40px;
    object-fit: contain;
}

.cat-tag-list {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .1);
    padding: 10px;
    transition: all .5s;
}

.cat-tag-list:hover {
    box-shadow: 0px 0px 20px -10px;
    transform: translate(-4px, -4px);
}

.testi-left-box.testi-left-box-2 {
    display: block;
    align-items: unset;
    height: auto;
    padding: 50px;
}

.testi-item-2 {
    background: rgba(248, 248, 251, 1);
    padding: 35px;
    box-shadow: 0px 4px 13px 1px rgba(0, 0, 0, 0.07);
    height: auto;
    display: block;
    border-radius: 10px;
}

.develop-div.web-title {
    margin-bottom: 50px;
}

.mg-b50 {
    margin-bottom: 50px;
}

.case-studies-content h3 {
    font-size: 40px;
    font-weight: 600;
    color: var(--c4);
    margin-bottom: 10px;
}

.f-20 h2 {
    font-size: 45px;
}

/* AI Solutions */

.ai-solution-tabs ul {
    border-bottom: 0;
    gap: 10px;
    justify-content: space-between;
}

.ai-solution-tabs ul li button {
    width: 100%;
    padding: 0;
    border: 0 !important;
}

.ai-solution-tabs ul li button.active .button-box {
    background-color: var(--c1) !important;
    color: var(--c3) !important;
    border-color: var(--c1) !important;
}

.ai-solution-tabs ul li button .button-box:hover {
    background-color: var(--c1) !important;
    color: var(--c3) !important;
    border-color: var(--c1) !important;
}

.ai-overview h3 {
    color: var(--c4);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.ai-overview ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    color: var(--c4);
}

.ai-overview ul li:before {
    position: absolute;
    content: "\f324";
    top: 1px;
    left: 0;
    color: var(--c1);
    font-family: "Font Awesome 5 Pro";
}

.ai-overview p {
    margin-bottom: 20px;
}

.ai-overview ul li strong {
    color: var(--c4);
    font-weight: 600;
}

.ai-solution-content-box {
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 28%);
    padding: 30px;
    border-radius: 10px;
    transition: all .5s;
    height: 100%;
    background: var(--c3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ai-solution-content-box:hover {
    box-shadow: 0px 0px 20px -10px;
    transform: translate(-4px, -10px);
}

.ai-solution-title h2 {
    margin-bottom: 15px;
}


.ai-solution-content-box:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images/Vector.png");
    background-size: cover;
    bottom: 0;
    filter: drop-shadow(2px 4px 6px var(--c1));
    opacity: 0.5;
    z-index: -1;
}

.ai-solution-tabs ul li {
    width: 100%;
}

.button-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    border-radius: 6px !important;
    transition: all .5s;
    border: 1px solid rgb(167 167 167 / 34%) !important;
    width: 100%;
    background: var(--c3);
}

.button-text span {
    color: var(--c4);
    font-weight: 500;
    transition: all .5s;
}

.ai-solution-tabs ul li button.active .button-text span,
.ai-solution-tabs ul li button:hover .button-text span {
    color: var(--c3);
}

.button-image {
    width: 40px;
}

.tab-content-main-title {
    margin-bottom: 40px;
}

.tab-content-main-title h2 {
    font-size: 40px;
}

.ai-overview ul li ul {
    margin-top: 20px;
}

.process-no p {
    line-height: 19px;
    font-size: 16px;
}

.case-studies-content.web-title p strong {
    display: block;
}

.other-box .process-box {
    width: unset;
}

.process-items.other-box-item {
    flex-wrap: wrap;
    row-gap: 50px;
}

.process-items.other-box-item .process-box:nth-child(6)::before {
    visibility: hidden;
}

.f-20 {
    padding-top: 40px;
}


/* Mega Menu */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: var(--c3);
    padding: 10px;
    gap: 20px;
    transition: all .4s;
    transform: scaleY(0);
    transform-origin: top;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0px 4px 13px 1px rgba(0, 0, 0, 0.07);
}


.mega-item-content h4 {
    color: var(--c4);
    text-transform: capitalize;
    font-size: 14px;
    margin-bottom: 4px;
}

.mega-item-content p {
    font-size: 13px;
    color: #786c6c;
}

.mega-item-img {
    width: 100px;
}


.head-menu ul li:hover .mega-menu {
    transform: scaleY(1);
}

.mega-menu-item {
    display: flex;
    gap: 20px;
    /* align-items: center; */
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.07);
    padding: 20px;
    border-radius: 10px;
    transition: all .5s;
}

.mega-menu-main-box {
    position: relative;
}

.mega-item-img a {
    display: block !important;
}

.sub-main-menu-title h3 {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: var(--c4);
    font-size: 20px;
    font-weight: 600;
}

.mega-menu-box {
    margin: 0px 30px 10px 0px;
}

.sub-menu-upper-content h4 {
    color: var(--c1);
    font-weight: 600;
    font-size: 30px;
}

.sub-menu-upper-content a {
    color: var(--c3) !important;
}

.head-menu > ul > li {
    padding: 30px 0px;
}

.mega-menu-item:hover {
    box-shadow: 0px 0px 20px -10px;
    transform: translate(-4px, -10px);
}

.sub-menu-upper-content p {
    padding: 20px 0px;
    font-size: 15px;
}

.responsive-links>ul>li>i {
    cursor: pointer;
    transition: transform .3s;
    position: absolute;
    right: 0;
    top: 20px;
    color: var(--c1);
}

.sub-menu-upper-content {
    padding: 30px;
}

.mega-item-box a {
    display: block;
}

.head-gap h2 {
    margin-bottom: 15px;
}
.title-gap {
    margin-bottom: 70px;
}

/*PRIVACY POLICY CSS*/

.pri-term-content h2 {
    font-weight: 600;
    color: var(--c4);
    margin-bottom: 20px;
}
.pri-term-content p {
    margin-bottom: 20px;
}