/* ========================================
   TECHNOLOGY STACK
======================================== */

/* Tabs override */
.tech-tabs {
    gap: 1rem;
    border-bottom: none;
    justify-content: center;
}

.tech-tabs .tab {
    border: none;
    background: #e5e7eb;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Active tab */
.tech-tabs .tab.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
}

/* Hover */
.tech-tabs .tab:hover {
    transform: translateY(-2px);
}

.mob-tech-card {
    background-color: #e8f2ff;
    padding: 17px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease-in;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    height: 111px;
}

/* IMAGE WRAPPER */
.mob-tech-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out 0.1s;
}

/* IMAGE */
.mob-tech-img img {
    max-width: 50px;
    object-fit: contain;
    padding-bottom: 5px;
}

/* TEXT */
.mob-tech-img p {
    font-size: 13px;
    margin: 0;
    text-align: center;
    font-weight: 300;
    color: #000;
    transition: all 0.3s ease-in-out;
}

/* HOVER EXACT COPY */
.mob-tech-card:hover {
    box-shadow: rgb(0 0 0 / .5) 20px 20px 30px;
    transform: scale(1.1);
}

.mob-tech-card:hover .mob-tech-img {
    transform: scale(1.5) translateY(-20px);
}

.mob-tech-card:hover .mob-tech-img img {
    animation: bouncing 0.5s 0.3s;
}

.mob-tech-card:hover .mob-tech-img p {
    font-size: 10px;
}

/* BOUNCING ANIMATION (EXACT) */
@keyframes bouncing {

    from,
    to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(.9, 1.1);
    }

    50% {
        transform: scale(1.1, .9);
    }

    75% {
        transform: scale(.95, 1.05);
    }
}
