/* Certification Logos Section Styles */
.certifications-section {
    background-color: #fff;
    padding: 30px 0;
}

.certifications-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 0;
}

.certification-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
    transition: transform 0.3s ease;
}

.certification-logo:hover {
    transform: scale(1.05);
}

.certification-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.certification-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .certifications-container {
        gap: 20px;
    }
    
    .certification-logo {
        max-width: 120px;
    }
    
    .certification-logo img {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .certifications-container {
        gap: 15px;
    }
    
    .certification-logo {
        max-width: 100px;
    }
    
    .certification-logo img {
        height: 70px;
    }
    
    .certification-logo span {
        font-size: 0.8rem;
    }
}
