.technologies {
    background: linear-gradient(
        135deg,
        var(--light-blue) 0%,
        var(--light-purple) 100%
    );
}

.tech-category {
    margin-bottom: 50px;
}

.tech-category h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.tech-category.web h3 {
    color: var(--primary-blue);
}

.tech-category.mobile h3 {
    color: var(--accent-purple);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.tech-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-item.web .tech-icon {
    color: var(--primary-blue);
}

.tech-item.mobile .tech-icon {
    color: var(--accent-purple);
}

.tech-item h5 {
    font-size: 1rem;
    margin: 0;
}
