.machines-slider {
  overflow: hidden;
  padding: 60px 20px;
}

.machines-slider .machine-box {
  display: block;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.machines-slider .machine-box:hover {
  transform: rotate(2deg) translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-color: #00aaff; /* Techy blue glow */
}

.simple-image-slider {
	overflow: hidden;
}

.machines-slider .machine-thumb {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.machines-slider .machine-box:hover .machine-thumb {
  transform: scale(1.08); /* Subtle zoom for image */
}

.machines-slider .machine-slider-content {
  padding: 15px;
  position: relative;
  transform: translateY(10px); /* Start slightly lower */
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.machines-slider .machine-box:hover .machine-slider-content {
  transform: translateY(0); /* Slide up on hover */
  opacity: 1;
}

.machines-slider .machine-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #333333;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.machines-slider .machine-box:hover .machine-title {
  color: #00aaff; /* Match border glow */
}

.machines-slider .machine-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #303030;
}