/* ============================================
   CERTIFICATIONS COMPONENT - Certifications & Accreditations
   ============================================ */

/* Certification logos styling */
.certification-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 150px;
}

.certification-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.certification-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.certification-logo .text-muted {
    color: #6c757d !important;
}
