/* Technologies Section Styles */
.technologies-content {
    max-width: 1200px;
    margin: 0 auto;
}

.technologies-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.tech-categories {
    display: grid;
    gap: 50px;
}

.tech-category h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.tech-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

.tech-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    transition: transform 0.3s ease;
}

.tech-icon-item:hover {
    transform: translateY(-5px);
}

.tech-icon-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: white;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tech-icon-item img:hover {
    transform: scale(1.1);
}

.tech-icon-item span {
    font-size: 0.9rem;
    text-align: center;
}
