/* Certification List */
.cert-list {
  list-style: none;
  padding-left: 0;
  max-width: 720px;
  margin: 0 auto;
}

.cert-list li {
  background: transparent; /* removed background to shift effect to <a> */
  padding: 0;              /* removed padding */
  margin-bottom: 22px;
  border-left: 8px solid #005bb5;
  border-radius: 18px;
  color: #375a8c;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cert-list li a {
  color: #375a8c;
  text-decoration: none;
  display: block;
  padding: 26px 32px; /* moved padding here */
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 91, 181, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.cert-list li a:hover {
  transform: scale(1.09);
  box-shadow: 0 20px 52px rgba(0, 91, 181, 0.45);
}
