:root {
    --page-primary-bg: #8A56B8;
    --page-secondary-bg: #141414;
    --page-fade: #FCFCFC;
    --text-theme: #1E1E1E;
    --text-grey: #2F2F2F;
    --tick-icon: url(../images/astro-img/list-icon.png);
}

body {
    color: #FFF;
    background-color: #000;
}

.text__primary {
    color: var(--page-primary-bg);
}

.bg__secondary {
    background-color: var(--page-secondary-bg) !important;
}

.rounded-20 {
    border-radius: 20px;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background-color: var(--page-primary-bg) !important;
    font-weight: 600 !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    border: 1px solid #ffffff;
    background-color: #ffffff30 !important;
    font-weight: 600 !important;
    backdrop-filter: blur(8px);
}

.astro-hero {
    background-image: url(../images/astro-img/astro-hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tick-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 15px;
}

.tick-list li {
    font-size: 19px;
    padding: 0 0 0 34px;
    position: relative;
    color: var(--white-color);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

.astro-why-img {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.process-sec,
.counter-bg,
.cta-3 .cta-block,
.cta-2 .cta-block,
.cta-1 .cta-block {
    background-image: url(../images/astro-img/astro-cta-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    position: relative;
}

.cta-2 .cta-block {
    background: radial-gradient(50% 50% at 50% 50%, #311936 0%, #060606 100%);
}

.cta-3 .cta-block {
    background-image: url(../images/astro-img/astro-cta-3.webp);
}

.counter-bg {
    background-image: url(../images/astro-img/astro-counter-bg.webp);
    border-radius: 0;
}

.process-sec {
    border-radius: 0;
    background-image: url(../images/astro-img/astro-process.webp);
}

:is(.cta-4, .industries-wrap) {
    position: relative;
}

:is(.cta-4, .industries-wrap)::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-image: url(../images/astro-img/astro-cta-4.webp);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.testimonial-card {
    padding-left: 30px;
}

.testimonial-quote {
    height: 87px;
    width: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    position: absolute;
    left: 0;
    top: 80px;
    border-radius: 50px;
}

.testimonial-content {
    padding: 0 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(100% - 30px);
    font-size: 20px;
}

.process-grid .process-card {
    position: relative;
}

/* .process-grid .process-card::before {
    content: '';
    position: absolute;
    top: -40px;
    height: 30px;
    width: 30px;
    background: #161616;
    box-shadow: 0px -3px 4px 0px #FFFFFF;
    border-radius: 50px;
    left: 50%;
    transform: translateX(-50%);
} */


/* Faq */

.new-faq .accordion-item {
    border-bottom: 1px solid #fff !important;
    padding: 28px 0px !important;
    background: transparent;
    color: var(--white-color);
}

.new-faq .accordion-item h2.accordion-header button {
    color: var(--white-color) !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.new-faq .accordion-button::after {
    filter: invert(1);
}

@media (min-width: 1200px) {
    .process-grid .process-card:nth-child(4n + 1) {
        margin-top: -170px;
    }

    .process-grid .process-card:nth-child(2n + 2) {
        margin-top: -20px;
    }

    .process-grid .process-card:nth-child(3) {
        margin-top: 20px;
    }
}

@media (min-width: 1600px) {
    .process-grid .process-card:nth-child(4n + 1) {
        margin-top: -240px;
    }

    .process-grid .process-card:nth-child(2n + 2) {
        margin-top: -30px;
    }
}

@media (min-width: 992px) {
    .industries-wrap .row-cols-lg-5 .col:nth-child(2n + 2) {
        margin-top: 100px;
    }

    .industries-wrap .row-cols-lg-5 .col:nth-child(3) {
        margin-top: 200px;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }

    .title-float {
        position: absolute;
        top: 190px;
        left: 50%;
        transform: translateX(-50%);
    }
}