/* Certificates Section */
#certificates {
  padding: 20px 15px;
  max-width: 100%;
  min-height:100vh;
  margin: 0 auto 40px;
  color: white;
  text-align: center;
    background-color: #0f172a;
}

#certificates h3 {
  font-weight: 900;
  color: hotpink;
  font-size: 2rem;
  margin-bottom: 15px;
}

.certificatesflex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cf {
  width: 230px;
  border-radius: 10px;
  box-shadow: 0 0 10px #0f172a;
  transition: transform 0.3s ease;
}

.cf img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.cf:hover {
  transform: scale(1.05);
}

/* Responsive certificates */
@media (max-width: 768px) {
  .cf {
    width: 80vw; 
  }
}
