.technology-showcase {
    background: #F5F5F5;
    padding: var(--section-padding) 0;
}

.technology-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.technology-showcase-card {
    border: 1px solid #D8D8D8;
    border-radius: 20px;
    background: #fff;
    padding: 30px 30px 0 30px;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 10px 40px 0px #00000014;
    border: 1px solid #CCCCCCB2;
}

.technology-showcase-title {
    font-family: var(--ff-heading);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 20px;
}

.technology-showcase-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 6px;
    background: var(--color-primary);
    color: var(--color-text);
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    padding: 7px 20px;
    margin-bottom: 20px;
    align-self: baseline;
}

.technology-showcase-text {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

.technology-showcase-points {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.technology-showcase-points li {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.4;
}

.technology-showcase-visual {
    margin-top: auto;
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    isolation: isolate;
}

.technology-showcase-visual::before {
    content: "";
    position: absolute;
    bottom: -130%;
    width: 115%;
    height: 200%;
    border-radius: 50%;
    background: #F7FDDB;
    z-index: -1;
}

.technology-showcase-image {
    max-width: 86%;
    max-height: 330px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.testimonials.tech{
    background: white;
}
.tech-main,.faq-section.tech{
    background: #f5f5f5;
}
@media (max-width: 1024px) {
    .technology-showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .technology-showcase {
        padding-bottom: var(--section-padding-sm);
    }

    .technology-showcase-card {
        min-height: 0;
    }

    .technology-showcase-visual {
        min-height: 170px;
    }

    .technology-showcase-visual::before {
        height: 150px;
    }

    .technology-showcase-image {
        max-height: 190px;
    }
    .technology-showcase-title{
        font-size: 25px;
    }
}