.feature-title {
  margin-bottom: 10px;
}

.feature-desc {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Hover Video Box */
.hover-video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}

/* Video hidden initially */
.hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Thumbnail visible initially */
.hover-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Hover Effect */
.hover-video-box:hover .hover-thumb {
  opacity: 0;
}

.hover-video-box:hover .hover-video {
  opacity: 1;
}
