/* technologies.css */

.technologies-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    width: 100%;
}

.technologies-section h2 {
    font-size: 60px;
    text-align: center; 

    margin-bottom: 40px;
}

.technologies-subsection {
    text-align: center; 

    margin-bottom: 40px;
}

.technologies-subsection h3 {
    font-size: 28px;
    text-align: center; 

    margin-bottom: 20px;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.technology-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-size: 18px;
    text-align: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
