/* Common Style starts */
:root {
    --page-primary-bg: #6D56D8;
    --page-secondary-bg: #F3F0F7;
    --page-fade: #EBF2FC;
    --page-theme: #30AD1C;
    --text-theme: #0B0C0D;
    --text-grey : #3F4751;
    --tick-icon: url(../images/perplexity-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/perplexity-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-video {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.banner-video video {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    color: var(--white-color);
    text-align: left;
}

.check-list li {
    font-size: 20px;
    padding: 0 0 0 70px;
    position: relative;
}

.check-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 50px;
    height: 50px;
    background-size: 50px;
    background-repeat: no-repeat;
}

.banner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px solid var(--white-color);
    backdrop-filter: blur(12px);
    background: #FFFFFF59;
    padding: 20px 20px;
    border-radius: 70px;
    font-size: 50px;
    font-weight: 600;
    color: var(--white-color);
    width: fit-content;
    margin-inline: auto;
}

/* About Intro */

.about-wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 10px;
    background: #CEC3FF;
    border-radius: 30px;
    padding: 10px;
}

.about-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-content {
    background: var(--white-color);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* 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(--white-color);
    box-shadow: 0px 13px 14px 0px #5C43D214;
    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;
}

.service--block::before {
    content: "";
    position: absolute;
    inset: -2px;
    padding: 1px;
    background: linear-gradient(180deg, #f3f0f7 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: 0;
    transition: opacity 0.4s ease;
}

.service--block:hover::before {
    opacity: 1;
}

/* Solution Intro */

.solution-intro {
    background-image: url(../images/perplexity-images/solution-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.solution-intro::before {
    content: '';
    position: absolute;
    inset: auto 0 0;
    width: 100%;
    height: calc(100% - 500px);
    background-color: var(--white-color);
}

.solution-slider .swiper-slide,
.industry-slider .swiper-slide {
    height: auto !important;
}

.solution--block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: var(--white-color);
    padding: 30px 30px;
    box-shadow: 0px 4px 30px 0px #0B0C0D17;
    border-radius: 30px 30px;
    transition: all 0.3s;
    cursor: none;
}

.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 */

.power-intro {
    background-image: url(../images/perplexity-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);
}

/* industry Block */

.industry--block {
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 450px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s;
}

.industry--img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.industry--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-content {
    color: var(--white-color) !important;
    padding: 30px;
    width: 100%;
    z-index: 1;
    position: relative;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 10%) 0%, #000000 100%);
}

.industry-content h4 {
    transition: all 0.3s;
    transform: translateY(0);
}

.industry-content p {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    width: 100%;
    height: 100px;
    margin: auto;
    position: absolute;
    padding: 0 30px;
    bottom: -7rem;
    left: 50%;
    transform: translateX(-50%);
}

.industry--block:hover h4 {
    transform: translateY(100px);
}

.industry--block:hover p {
    opacity: 1;
    visibility: visible;
    bottom: 180px;
}

.slider-arrow {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.slide-next, .slide-prev {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #00000040;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all 0.3s;
}

.slider-arrow .slide-next:hover,
.slider-arrow .slide-prev:hover {
    background-color: var(--page-primary-bg);
    border: 1px solid var(--page-primary-bg);
    display: flex;
}

.slider-arrow .slide-next:hover svg path,
.slider-arrow .slide-prev:hover svg path {
    fill: var(--white-color);
}

/* Delivery Wrapper */

.delivery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery--block {
    display: grid;
    grid-template-columns: 300px 300px 300px auto;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #000000;
    padding: 20px 20px;
    background-color: transparent;
    transition: all 0.3s;
}

.delivery--block:hover {
    background-color: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
}

.delivery--block:hover h4,
.delivery--block:hover p {
    color: var(--white-color) !important;
}

.delivery--block:hover img {
    filter: invert();
}

/* 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) {
    .delivery--block {
        grid-template-columns: 70px 250px 250px auto;
    }
}

@media only screen and (max-width: 991px) {
    
    .order--1 {
        order: -1 !important;
    }

    .delivery--block {
        grid-template-columns: 50px 220px 220px auto;
    }

    .industry--block:hover h4 {
        transform: translateY(70px);
    }

    .industry--block:hover p {
        bottom: 210px;
    }

    .check-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .check-list li::before {
        inset: 0px auto 0 0;
        width: 24px;
        height: 24px;
        background-size: 24px;
    }

    .check-list li {
        padding: 0 0 0 38px;
    }

    .slider-arrow {
        justify-content: center;
    }

    .banner-badge {
        padding: 10px 20px;
        border-radius: 70px;
        font-size: 26px;
    }

    .banner-badge img {
        width: 100%;
        max-width: 40px;
    }
}

@media only screen and (max-width: 767px) {

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        border-radius: 20px;
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .service--block,
    .service--cta,
    .solution--block {
        padding: 20px 20px;
        border-radius: 20px;
    }

    .cta-wrapper {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .power-block,
    .industry-content {
        padding: 20px 20px;
    }

    .industry--block {
        height: 400px;
        border-radius: 20px;
    }

    .industry--block:hover h4 {
        transform: translateY(50px);
    }

    .industry--block:hover p {
        padding: 20px;
    }

    .delivery--block {
        grid-template-columns: 100%;
        gap: 30px;
    }
}