/* ===== Section: Delhi-Specific Wedding Services ===== */

/* 1) Align video column to top & center */
.row.align-items-start > .col-video {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* 2) Video container: fixed 400×600 aspect ratio */
.video-container {
  position: relative;
  display: inline-block;
  max-width: 400px;
  aspect-ratio: 400 / 600;
}

/* 3) Video itself fills the container */
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* 4) Custom overlayed play button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5)
    url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">\
<polygon points="35,25 75,50 35,75" fill="%23fff"/></svg>')
    center center no-repeat;
  background-size: 50%;
  cursor: pointer;
  z-index: 10;
}
