.tech-stack-section {
    text-align: center;
    padding: 50px 0;
    position: relative;
}

.tech-stack-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.cross-functional {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .tech-stack-container {
        gap: 15px;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
    }
} 