
.web-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.custom-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.link-icon {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.link-icon:hover {
  transform: scale(1.1);
}

.tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background:#333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.custom-link:hover .tooltip {
  opacity: 1;
}
