.rounded-20 {
    border-radius: 20px;
}

.bg-theme {
    background: #3b6d2f;
}

.animation-img {
    animation: moveUpDown 2s ease-in-out infinite;
}

.box-shadow {
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

.text-space {
    letter-spacing: 2px;
}

.centric-card {
    padding: 20px;
    border-radius: 20px;
}

.w-fit {
    width: fit-content;
    max-width: fit-content;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card img {
    height: 240px;
    object-fit: contain;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.gradient-border.dark {
    background: #0A0511;
}

.swiper-wrapper {
    display: flex;
}

.swiper-wrapper .swiper-slide {
    height: auto;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Listing Wrapper */
.check-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.check-list li {
    font-size: 18px;
    padding: 0px 0 20px 35px;
    position: relative;
    z-index: 1;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    background: url('../images/list-check.svg') no-repeat center;
    z-index: -1;
    background-size: contain;
}

/* ── Feelings Section ──────────────────────────────────── */

.feeling-grid {
    display: grid;
    grid-template-areas:
        'one . three .'
        '. two . four';
}

.feeling-grid .feeling-card {
    padding: 40px 20px;
    height: 100%;
    background-color: #0A0511 !important;
}

.feeling-grid .feeling-card:nth-child(1) {
    grid-area: one;
}

.feeling-grid .feeling-card:nth-child(2) {
    grid-area: two;
}

.feeling-grid .feeling-card:nth-child(3) {
    grid-area: three;
}

.feeling-grid .feeling-card:nth-child(4) {
    grid-area: four;
}

/* accordion-wrapper */

.accordion-wrapper.active .accordion-content {
    visibility: visible;
    opacity: 1;
    display: flex;
}

.accordion-content {
    display: flex;
    align-items: center;
    width: 100% !important;
    /* height: 600px; */
}

.content-wrap__inner {
    padding-bottom: 50px;
}

.content-wrap {
    padding: 0;
    display: flex;
    align-items: end;
    gap: 30px;
    width: 100%;
}

.cta-1 .cta-block {
    background: #faf6ff url(../images/candy-ai/cta-bg.webp) no-repeat center center/cover;
}

.cta-block {
    border-radius: 20px;
    position: relative;
    height: 100%;
}

/* process card */
.process-card {
    background: #F1E7FF;
    padding: 86px 20px 20px;
    border-radius: 10px;
    position: relative;
    height: 100%;
}

.process-card .process-count {
    font-size: 15vw;
    position: absolute;
    top: 0;
    right: 12px;
    line-height: 1;
    font-weight: 500;
    font-family: 'media_sans';
    background: linear-gradient(180deg, rgba(127, 27, 255, 0.4) 15%, rgba(241, 231, 255, 0.4) 100%);
    background-clip: text;
    color: transparent;
}

.process-card :is(h3, p) {
    position: relative;
}

/* faq */

.new-faq {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}

.new-faq .accordion-item {
    border: none;
    border-bottom: 1px solid #BEDBE0;
    background: transparent;
    padding-bottom: 25px;
    width: 100%;
}

.new-faq .accordion-header .accordion-button {
    font-size: 22px !important;
    line-height: 140%;
    letter-spacing: 1px;
    height: fit-content;
    margin: 0 0 15px 0;
    color: #07191C;
    font-weight: 700;
    background: none !important;
    padding: 0px;
    box-shadow: none !important;
    font-family: 'Instrument Sans' !important;
}

.new-faq .accordion-body {
    padding: 0px;
    font-size: 20px;
    width: 100%;
}

.new-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.new-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40 ' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.new-faq .accordion-button::after {
    transition: all 0.5s;
    background-size: 40px;
    width: 40px;
    height: 40px;
}

.why-choose-image {
    width: 80px;
    max-width: 80px;
    flex: 0 0 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* functional-card */
.functional-card {
    width: 20%;
    max-width: 20%;
    flex: 0 0 20%;
}

.functional-card .functional-num {
    min-height: 280px;
    font-size: 8em;
    color: var(--primary-color) !important;
    font-weight: bold;
    background: #F0EDF4;
    border-radius: 100%;
    transition: 0.5s all ease;
    position: relative;
    z-index: 1;
}

.functional-card:not(:first-child) .functional-num::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55px;
    height: 80px;
    z-index: -1;
    background: url('../images/accelerate-app-creation-images/right-arrow.svg') no-repeat;
    background-size: contain;
    background-position: left center;
    margin: auto;
}

.functional-detail {
    background: #f0edf4;
    border-radius: 250px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s all ease;
}

.functional-detail h3 {
    font-size: 18px;
}

.functional-card.bg-clr {
    background: #f0edf4;
    border-radius: 200px;
    transition: 0.5s background ease;
}

.functional-card:hover {
    background: transparent;
}

.functional-card:hover .functional-num,
.functional-card:hover .functional-detail {
    background: var(--primary-color);
    color: #fff !important;
}

/* tech-main */
.tech-main .box:first-child::before {
    display: none;
}

.tech-main .box {
    min-width: 200px;
    text-align: center;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: initial;
    position: relative;
    max-width: 200px;
}

.tech-main .box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 200px;
    height: 2px;
    background: #3b6d2f;
    right: 200px;
    z-index: -1;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media only screen and (max-width: 1400px) {
    .tech-main {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        padding-left: 15px;
    }

    .tech-main .box.h5 {
        font-size: 18px;
        min-width: 200px;
    }
}

@media (max-width: 1200px) {
    .functional-card .functional-num {
        min-height: 200px;
        font-size: 4em;
    }
}

@media (max-width: 991px) {
    .position-sticky {
        position: static !important;
    }

    .feeling-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        grid-template-areas: unset;
    }

    .feeling-grid .feeling-card {
        grid-area: unset !important;
    }

    a.button.mobile-center {
        margin: auto;
    }

    .new-faq .accordion-header .accordion-button {
        font-size: 18px !important;
    }

    .check-list {
        width: fit-content;
        margin: auto;
    }

    .fun-app {
        overflow-x: scroll;
        padding-bottom: 40px;
    }

    .functional-card {
        width: 30%;
        max-width: 30%;
        flex: 0 0 30%;
    }

    .tech-main .box {
        min-width: 140px;
    }

    .tech-main .img-box>img {
        height: 40px;
        object-fit: contain;
    }
}

@media (max-width: 767px) {
    .centric-card {
        flex-wrap: wrap !important;
    }

    .feeling-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .process-card .process-count {
        top: 20px;
    }

    .why-choose-image {
        margin: auto;
    }

    .functional-card {
        width: 40%;
        max-width: 40%;
        flex: 0 0 40%;
    }
}

@media (max-width: 550px) {
    .functional-card {
        width: 60%;
        max-width: 60%;
        flex: 0 0 60%;
    }

    .functional-detail h3 {
        font-size: 14px;
    }
}