.tool-cards {
  min-height: 100vh; 
    background: url(https://d2q4gipm2ebkzp.cloudfront.net/img/tools/tools-card.svg);

}

.tool-card {
  background: #fff;
  border: 1px solid #AEB9C4;
      border-radius: 16px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 25.7px rgba(216, 239, 255, 0.63) inset;
}

.tool-card:hover {
  border-color: #C6E7FF;
  transform: translateY(-4px);
}

.tool-card:hover .tool-icon {
  transform: translateY(-2px);
}

.tool-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}



