.AppPreviewGallary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.AppPreviewGallary img {
  max-width: 200px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 80px 240px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}
.AppPreviewGallary img:hover {
  transform: scale(1.08);
}