#tech-stack {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 12px;
    padding: 0;
}

.tech-row-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;
    row-gap: 47px;
}

#tech-stack .nav-link {
    padding: 10px 20px;
    border: 1px solid #151616;
    border-radius: 7px;
    font-size: 15px;
    line-height: 20px;
    color: var(--color-text-secondary);
    transition: 0.3s ease;
    font-weight: 500;
}

#tech-stack .nav-link.active,
#tech-stack .nav-link:hover {
    background-color: #F7F8F8;
    color: var(--color-text-dark);
}

.tech-logo-card {
    width: 103px;
    height: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(180deg, #212226 0%, #101012 100%);
    box-shadow: 0px 6.68px 3.86px 0px #00000040;
    border: 1px solid #292A2C;
    background: url(../../images/services/tech-stack/tech-stack-bg.png
) no-repeat center center;
    background-size: cover;
    box-shadow: 0px 6.68px 3.86px 0px #00000040;
}
.opacity-60 img{
    opacity: 65%;
}
@media screen and (max-width: 1399px) {

    .tech-row-flex {
        gap: 40px;
        row-gap: 35px;
    }
}

@media screen and (max-width: 991px) {
    .tech__stack--desc br {
        display: none;
    }

    #tech-stack .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }

    .tech-row-flex {
        gap: 30px;
        row-gap: 30px;
    }

    .tech-logo-card {
        width: 110px;
        height: 110px;
    }

}

@media screen and (max-width: 767px) {
    #tech-stack {
        flex-wrap: wrap;
    }

    .tech-row-flex {
        gap: 25px;
        row-gap: 25px;
    }
}
@media screen and (max-width: 575px) {
    #tech-stack .nav-link {
        padding: 8px 10px;
        font-size: 14px;
    }
        #tech-stack {
        margin-bottom: 25px;
    }
    }
@media screen and (max-width: 414px) {
    .tech-logo-card {
        width: 100px;
        height: 100px;
    }
}