/* Technologies Section Styles */
#technologies {
    padding: 2rem 0;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.technology-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.technology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.technology-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.technology-item h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .technologies-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .technology-item {
        padding: 1.5rem;
    }

    .technology-icon {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }

    .technology-item h3 {
        font-size: 1rem;
    }
}
