.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: max-content;
}

.carousel-image {
  width: 200px;
  height: 300px;
  margin: 0 10px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.carousel-image.active {
  transform: scale(1.2);
  border: 4px solid yellow;
}

.sideLineL,.sideLineR {
  height: 2px;
  background-color: black;
  width: 50px;
  border-radius: 50px;
}

.Certification-Div {
  border-radius: 15px;
  box-shadow: 2px 2px 10px #444444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.Certification-Div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cert-logo {
  max-height: 100px;
  object-fit: contain;
}