/* FAQ Accordion */
.wptb-item--content {
    display: none;
    padding: 15px 20px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    color: #444;
}

.wptb--item {
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}

.wptb-item-accordion {
    margin: 0;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wptb-item-accordion i {
    transition: transform 0.3s ease;
}

/* Active state */
.wptb--item.active .wptb-item--content {
    display: block;
}

.wptb--item.active .wptb-item-accordion i {
    transform: rotate(180deg);
}


.tech-card {
    background: #fff;
    height: 90px;
    /* controls card size */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.tech-card img {
    max-height: 42px;
    /* controls logo size */
    max-width: 80%;
    object-fit: contain;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.tech-section {
    background: linear-gradient(135deg, #b266ff, #a855f7);
}