/* Certificates Section */
.certificates {
  display: flex;
  align-items: center;
}

.recognition-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.badge-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  display: inline-block;
}

.badge-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 10%;
  border: 3px solid var(--primary-text);
  padding: 10px;
  box-shadow: 0.5rem 0.5rem var(--primary-text);
  transition: all 0.3s ease;
  cursor: pointer;

}

.badge-image:hover {
  transform: scale(1.05);
  box-shadow: 0.8rem 0.8rem var(--primary-text);
}

.badge-in-progress {
  filter: grayscale(100%) brightness(0.6) opacity(0.5) blur(0.5px);
  position: relative;
  pointer-events: none;
  box-shadow: none;
  border-style: dashed;
  border-color: #aaa;
  background: repeating-linear-gradient(135deg, #eee 0 10px, #ccc 10px 20px);
}

.badge-wip-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #444;
  color: #fff;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 12px;
  opacity: 0.95;
  pointer-events: none;
  z-index: 3;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-transform: uppercase;
}

.badge-item a {
  display: inline-block;
  text-decoration: none;
}

.certifacte-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-text);
}

.certifacte-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
}