/* Section and Container */
.cert-section {
    padding: 4rem 0;
}
.banner-full img {
    /*width: 100%;*/
    height: auto;
    display: block;
}


/* Section Header */
.text-center {
    text-align: center;
}
.section-header {
    margin-bottom: 3rem;
}
.section-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: #E51ADB;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.section-description {
    font-size: 1rem;
    color: #E51ADB;
    max-width: 48rem;
    margin: 0 auto;
}

/* Certifications Grid */
.cert-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Card Styling */
.cert-card {
    background-color: #111827;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}
.cert-card:hover {
    transform: scale(1.05);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: flex-start;
    /*justify-content: space-between;*/
    margin-bottom: 1rem;
}
.card-tag-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tag-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
}
.tag-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
}
.level-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background-color: #1f2937;
    color: #d1d5db;
}

/* Logo Styling */
.card-logo {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.logo-text {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
}

/* Card Content */
.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
.card-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Certification Level Bar */
.level-bar-container {
    display: flex;
    flex-direction: column;
}
.level-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
}
.progress-bar {
    height: 0.25rem;
    border-radius: 9999px;
    background-color: #1f2937;
    margin-top: 0.5rem;
}
.progress-fill {
    height: 100%;
    border-radius: 9999px;
}

/* Specific Color Classes */
.bg-orange-400 { background-color: #fb923c; }
.bg-red-400 { background-color: #f87171; }
.bg-blue-400 { background-color: #60a5fa; }
.bg-purple-400 { background-color: #a78bfa; }
.bg-orange-500 { background-color: #f97316; }
.bg-red-600 { background-color: #dc2626; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-purple-600 { background-color: #9333ea; }
.w-3\/5 { width: 60%; }
.w-4\/5 { width: 80%; }
.w-2\/5 { width: 40%; }
.w-1\/5 { width: 20%; }

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .section-title {
        font-size: 3rem;
    }
    .section-description {
        font-size: 1.25rem;
    }
    .cert-section {
        padding: 6rem 0;
    }
}
@media (min-width: 1024px) {
    .cert-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
