.phone-container {
  position: relative;
  width: 300px; /* Adjust to your phone image */
  margin: auto;
}

.phone-image {
  width: 100%;
  display: block;
}

.phone-video {
  position: absolute;
  top: 14.5%;   /* Adjust depending on screen size of image */
  left: 11%;
  width: 78%;
  height: 72%;
  border-radius: 20px; /* optional: make it rounded to match phone */
  object-fit: cover;
  pointer-events: none; /* so the video doesn't capture clicks */
}