/* Common Style starts */
:root {
    --page-primary-bg: #4285F5;
    --page-secondary-bg: #0E0E16;
    --page-fade: #EFF5FF;
    --page-theme: #30AD1C;
    --text-theme: #0B0C0D;
    --text-grey : #3F4751;
    --tick-icon: url(../images/google-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);
}

.theme-gradient {
    background: var(--theme-gradient);
}

.page-theme {
    background-color: var(--page-theme);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.highlight-text {
    color: var(--page-primary-bg) !important;
}

html body {
    color: var(--text-theme) !important;
}

.sections-wrapper h1,.sections-wrapper .h1,
.sections-wrapper h2,.sections-wrapper .h2,
.sections-wrapper h3,.sections-wrapper .h3,
.sections-wrapper h4,.sections-wrapper .h4,
.sections-wrapper h5,.sections-wrapper .h5,
.sections-wrapper h6,.sections-wrapper .h6 {
    color: var(--text-theme) !important;
}

.sections-wrapper .page-text {
    color: var(--page-primary-bg) !important;
}

.sections-wrapper .w-normal {
    font-weight: 400 !important;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background: var(--page-primary-bg) !important;
}

.highlight {
    color: var(--page-primary-bg) !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.z-1 {
    position: relative;
    z-index: 1;
}

@keyframes pulso {
    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, 255, 255, 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/google-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--white-color);
    text-align: left;
}

.check-list li {
    font-size: 20px;
    padding: 0 0 0 44px;
    position: relative;
}

.check-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 1px auto 0 0;
    width: 28px;
    height: 28px;
    background-size: 28px;
    background-repeat: no-repeat;
}

/* Counter */

.counter-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.counter-block {
    border-right: 1px solid #C2C0C0;
    padding: 12px 30px;
}

.counter-wrapper .counter-block:last-child {
    border: none;
}

/* About Intro */

.about-intro {
    background-color: var(--page-fade);
    padding: 40px 90px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-wrapper .highlight {
    color: var(--page-primary-bg) !important;
}

/* Service Block */

.service--cta {
    background-color: var(--page-primary-bg);
    border-radius: 30px;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.service--block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 30px;
    position: relative;
    border-radius: 20px;
    background-color: var(--page-secondary-bg);
    border: 1px solid transparent;
    transition: all 0.3s;
    z-index: 1;
}

.service---icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--page-fade);
    padding: 10px;
    border-radius: 10px;
}

.service--block::before {
    content: "";
    position: absolute;
    inset: -2px;
    padding: 1px;
    background: linear-gradient(180deg, #0e0e16 0%, #5C43D2 100%);
    border-radius: 20px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.service--block:hover {
    box-shadow: 0px 0px 25px 0px #4285F54D;
}

/* Solution Intro */

.solution-slider .swiper-slide,
.industry-slider .swiper-slide {
    height: auto !important;
}

.solution--block {
    height: 100%;
    border-radius: 10px 10px;
    transition: all 0.3s;
    cursor: none;
    background-color: var(--white-color);
}

.solution--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution--content {
    padding: 25px 25px;
}

.solution--block:hover {
    background-color: var(--page-secondary-bg);
}

.solution--block:hover h4,
.solution--block:hover p {
    color: var(--white-color) !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: white;
    font-size: 20px;
    font-weight: 600;
    background:var(--page-primary-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);
}

/* Power Intro */

.sticky-column {
    position: sticky;
    top: 160px;
}

.power-intro {
    background-image: url(../images/google-images/power-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.power-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.power-block {
    padding: 30px 30px;
    border-bottom: 1px solid var(--white-color);
    background-color: transparent;
    transition: all 0.3s;
}

.power-block:hover {
    background-color: #F3F0F759;
    transform: translateY(-10px);
}

/* Indutry Block */

.industry-listing {
    display: flex;
    flex-wrap: wrap;
}

.industry-listing .single-industry {
    width: 25%;
    flex-shrink: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
    text-align: center;
    padding: 10px;
}

.industry-listing .single-industry:nth-child(4n){
	border-right:hidden;
}

.industry-listing .single-industry:nth-last-child(1),
.industry-listing .single-industry:nth-last-child(2),
.industry-listing .single-industry:nth-last-child(3),
.industry-listing .single-industry:nth-last-child(4){
	border-bottom:hidden;
}

/* Team Block */

.team--block {
    padding: 30px 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s;
}

.team--icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--page-secondary-bg);
    transition: all 0.3s;
}

.team--block:hover {
    box-shadow: 0px 4px 30px 0px #4285F599;
    background-color: var(--page-secondary-bg);
}

.team--block:hover .team--icon {
    background-color: var(--white-color);
}

.team--block:hover .team--icon img {
    filter: invert();
}

.team--block:hover h4,
.team--block:hover p {
    color: var(--white-color) !important;
}


/* CTA Wrapper */

.cta-intro {
    background-image: url(../images/perplexity-images/cta-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-wrapper {
    background-color: var(--page-secondary-bg);
    padding: 20px 120px;
    border-radius: 30px;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 28px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

/* Responsive */

@media (max-width: 1599px) {

    .sections-wrapper .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 1399px) {

}

@media only screen and (max-width: 991px) {

    .check-list {
        margin-inline: auto;
        width: fit-content;
    }

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-wrapper .counter-block:nth-child(2) {
        border: none;
    }

    .counter-block {
        padding: 0 10px;
    }

    .about-intro {
        padding: 40px 20px;
    }

    .service--block {
        padding: 20px 20px;
    }

    .solution--content,
    .power-block,
    .team--block {
        padding: 20px 20px;
    }

    .industry-listing {
        gap: 20px;
        justify-content: space-between;
    }

    .industry-listing .single-industry {
        width: 46%;
        border: 1px solid #ddd !important;
        transition: all 0.3s;
    }

    .industry-listing .single-industry:hover {
        transform: translateY(-8px);
        border-color: var(--page-primary-bg) !important;
    }

    .industry-listing .single-industry h4 {
        word-break: break-all;
    }
}

@media only screen and (max-width: 767px) {

    .about-wrapper {
        gap: 10px;
        text-align: left;
    }
}