/* Common Style starts */
:root {
    --page-primary-bg: #7A58F6;
    --page-secondary-bg: #F5F2FF;
    --page-fade: #F4F8F7;
    --text-theme: #0B0C0D;
    --text-grey: #58646A;
    --tick-icon: url(../images/engine-images/check-icon.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-grey {
    color: var(--text-grey) !important;
}

.sections-wrapper .w-normal {
    font-weight: 500 !important;
}

.sections-wrapper .w-semibold {
    font-weight: 600 !important;
}

html,
body {
    color: var(--text-theme) !important;
}

.object-cover {
    object-fit: cover;
}

.button-primary, .button-primary:hover {
    color: var(--white-color);
    background: var(--page-primary-bg) !important;
    font-weight: 600 !important;
}

.button-secondary, .button-secondary:hover {
    color: var(--white-color);
    background: #FFFFFF33 !important;
    border: 1px solid #FFFFFF;
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.link-title,
.link-title:hover {
    text-decoration: underline !important;
    color: var(--text-theme) !important;
}


@keyframes pulso-effect {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 254, 254, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Hero Section */

.hero-section {
    background-image: url(../images/engine-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-shape {
    position: absolute;
    left: 0;
    top: 0;
}

.tick-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
    color: var(--text-theme);
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 38px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Counter Intro */

.counter {
    background-image: url(../images/engine-images/counter-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.counter-wrapper,
.counter-box,
.counter-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.counter-grid {
    height: 100%;
}

.counter-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.counter-block {
    background: #FFFFFF1C;
    backdrop-filter: blur(14px);
    padding: 30px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    height: 250px;
    color: var(--white-color);
}

.counter-box img {
    height: 100% !important;
    max-height: 520px;
    border-radius: 20px;
    object-fit: cover;
}

.counter-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

/* Brand Block */

.sticky-column {
    position: sticky;
    top: 180px;
}

.brand-listing {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brand-listing li {
    background-color: var(--white-color);
    color: var(--page-primary-bg) !important;
    padding: 24px 30px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
}

.brand-listing li:hover {
    background-color: var(--page-primary-bg);
    color: var(--white-color) !important;
    transform: translateY(-5px);
}

/* Business Block */

.service--block {
    background-color: var(--white-color);
    padding: 30px 30px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0px 10px 100px 0px #7A58F614;
}

.service--block:hover .service--icon img,
.business-block:hover img {
    filter: brightness(0) invert(1);
}

.service--block:hover,
.business-block:hover {
    background-color: var(--page-primary-bg);
}

.service--block:hover p,
.service--block:hover h4,
.business-block:hover p,
.business-block:hover h4,
.service--block:hover .link-title,
.business-block:hover .link-title {
    color: var(--white-color) !important;
}

/* Busniess Block */

.business-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.business-block {
    background-color: var(--white-color);
    padding: 40px 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.icon--block {
    width: 70px;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-block:hover {
    box-shadow: 0px 10px 40px 0px #7A58F659;
}

/* Marketing Intro */

.marketing-slider .swiper-slide {
    height: auto !important;
}

.cursor {
    position: fixed;
    left: var(--cursor-x);
    top: var(--cursor-y);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--text-theme);
    font-size: 20px;
    font-weight: 600;
    background:var(--page-secondary-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

body.show-custom-cursor .cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Glory Block */

.glory-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.glory-block {
    padding: 20px 20px;
    text-align: center;
}

/* Process Block */

.process-intro {
    background-image: url(../images/engine-images/process-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.process-slider .swiper-slide {
    height: auto !important;
}

.process-block {
    padding: 20px 50px 20px 20px;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #153f2a00;
    backdrop-filter: blur(12px);
    border-radius: 20px;
}

.process-slider .swiper-slide:last-child .process-block::before {
    content: unset !important;
}

.process-block:before {
    content: '';
    position: absolute;
    right: 0;
    border-right: 0.9px solid;
    border-image-source: linear-gradient(-80deg, rgba(30, 30, 30, 0) 0%, #ffffff73 50%, rgba(30, 30, 30, 0) 100%);
    border-image-slice: 1;
    width: 1%;
    height: 70%;
    margin: auto;
    top: 0;
    bottom: 0;
}

.process-count {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 130px;
    font-weight: bolder;
    line-height: 1;
    position: absolute;
    right: 80px;
    top: 0;
    z-index: -1;
}

/* Industry Grid */

.industry-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.industry-img {
    width: 100%;
    max-width: 220px;
    min-width: 220px;
    height: 220px;
    border-radius: 50%;
    margin-inline: auto;
}

.industry-block {
    text-align: center;
    padding: 20px;
}

/* Language Block */

.languages-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, 1fr);
}

.language-block img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 4px 25px 0px #00000026;
}

/* Choose Intro */

.choose-intro {
    background-image: url(../images/engine-images/counter-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.choose-block {
    width: 100%;
    background: #FFFFFF1C;
    backdrop-filter: blur(14px);
    padding: 30px 30px;
    border-radius: 10px;
    transition: all 0.3s;
}

.choose-block .tick-list {
    width: auto;
    margin-inline: unset;
}

.choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Wrapper */

.cta-wrapper {
    background-image: url(../images/engine-images/cta-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 90px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 8px 100px 0px #3415591A;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 32px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

/* Responsive */

@media only screen and (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }
    
    .padding-right {
        --page-width: 1200px !important;
        padding-right: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 991px) {

    .hero-section {
        padding: 80px 0 !important;
    }

    .tick-list {
        width: fit-content;
        margin-inline: auto;
    }

    .tick-list li::before {
        inset: 0px auto 0 0;
        width: 22px;
        height: 22px;
    }

    .counter-wrapper, .counter-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .counter-grid img,
    .counter-box img {
        display: none;
    }

    .counter-wrap {
        flex-direction: unset;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-block {
        height: 180px;
    }

    .brand-listing {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-listing li {
        padding: 18px 20px;
    }

    .service--block,
    .business-block {
        padding: 20px 20px;
    }

    .industry-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {

    .industry-img {
        max-width: 160px;
        min-width: 160px;
        height: 160px;
    }

    .glory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .new-faq .accordion-item {
        padding: 20px 0px !important;
    }

    .cta-wrapper {
        padding: 50px 20px;
    }

    .languages-wrapper {
        gap: 30px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 475px) {

    .industry-img {
        max-width: 220px;
        min-width: 220px;
        height: 220px;
    }

    .brand-listing,
    .industry-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}