.service_sec+.cta_sec {
    background-color: var(--sectionBG);
}

.service_sec+.cta_sec .qanda-cta-green {
    background: linear-gradient(-74.49deg, rgba(12, 126, 232, 0.35) 0%, rgba(3, 27, 53, 0) 48%), linear-gradient(115.59deg, rgba(12, 126, 232, 0.35) 0%, rgba(3, 27, 53, 0) 42%), #031B35;
    color: var(--white);
    border: 3px solid var(--orange);
}

.service_sec+.cta_sec .qanda-cta-green::after {
    opacity: 0;
}

.service_sec {
    background: var(--sectionBG);
    position: relative;
    z-index: 0;
}

/* .service_sec::before { */
/* position: absolute; */
/* content: ''; */
/* width: 100%; */
/* aspect-ratio: 16 / 9; */
/* top: 0; */
/* right: 0; */
/* background-image: url(https://images.esparkinfo.com/wp-media-folder-esparkbiz/wp-content/uploads/2026/07/shape_deco-w.png); */
/* z-index: -1; */
/* filter: brightness(0) opacity(0.4); */
/* background-repeat: repeat-x; */
/* } */

.section-title h2 span {
    color: var(--orange);
}

.section-title h2::before {
    display: none;
}

.section-title h2 {
    padding-bottom: 0;
}

.service_sec .section-title .desc {
    /* color: #00040BB2; */
}

.service_sec .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* .service_sec .grid:has(.card:hover) .card {
    transform: scale(0.98);
} */

.service_sec .grid:hover .card:hover {
    /* transform: scale(1); */
}

.service_sec .card {
    border: 1px solid #CBD5E1;
    padding: 30px 24px;
    background: #FFFFFFE5;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 12px;
    transition: all 0.3s linear;
}

.service_sec .card:hover {
    border-color: var(--orange);
    box-shadow: rgb(12 126 232 / 9%) 0px 10px 15px -3px, rgb(12 126 232 / 0%) 0px 4px 6px -2px;
    transform: scale(1.01) translateY(-10px);
}

.service_sec .card .card_img {
    width: 64px;
    height: 64px;
}

.service_sec .card .card_img img {
    width: 100%;
    height: 100%;
}

.service_sec .card .content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service_sec .card .content .sub_title {
    font-size: 85%;
    color: var(--orange);
    font-weight: 600;
}

.service_sec .card .content .title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}

.service_sec .card .content .desc {
    /* color: #475569; */
}

.service_sec .card .badge_group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service_sec .card .badge_group .badge {
    border: 1px solid var(--orange);
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s linear;
}

.service_sec .card .badge_group .badge:hover {
    background-color: var(--orange);
    color: var(--white);
}

@media (max-width: 1280px) {
    .service_sec .card {
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .service_sec .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .service_sec .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .service_sec .card {
        gap: 20px
    }

    .service_sec .card .card_img {
        width: 48px;
        height: 48px;
    }

    .service_sec .card .badge_group .badge {
        font-size: 14px;
    }
}