

.tech-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tab {
    font-size: 1.3rem;
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    background: none;
    outline: none;
    margin-bottom: 50px;
    color: #ffffff;
}

.tab.active {
    color: #f37c20;
    font-weight: 600;
    border-bottom: 2px solid #f37c20;
}

.content {
    display: none;
    text-align: center;
}

.content.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.tech-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    /* transition: box-shadow 0.3s ease; */
}


.tech-box:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #e2dad4;
}

.tech-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.tech-box span {
    font-size: 1rem;
    font-weight: 500;
}