.video-title {
  text-align: center;
  margin-top: 2.75rem;
  margin-bottom: 2.5rem;
}
p.mrbahmed-plan-description {
  padding: 0% 1.5rem;
  font-weight: 600;
}
.the-gift-container {
  display: flex;
  justify-content: start;
  align-items: center;
  /* flex-direction: column; */
  margin-top: 2.5rem;
}
.plan-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 default */
  height: 0;
  overflow: hidden;
  width: 60%;
  max-width: 800px;
  /* margin: 0 auto; */
}
.cta-container {
  text-align: center;
  margin-top: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #0030a8;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite ease-in-out;
  transition: transform 0.3s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 25px #01206d;
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .plan-video-container {
    padding-bottom: 100%;
    max-width: 100%;
  }

  .the-gift-container {
    flex-direction: column;
  }
}

/* Modal Styles */
.cg-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.cg-modal {
  background: #fff;
  border-radius: 10px;
  max-width: 480px;
  width: 94%;
  padding: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.cg-modal h3 {
  margin: 0 0 8px;
}
.cg-modal input {
  width: 100%;
  padding: 8px;
  margin: 6px 0;
  box-sizing: border-box;
  text-align: right;
}
.cg-modal .actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cg-modal .btn {
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}
.cg-modal .btn-primary {
  background: #1f6feb;
  color: white;
}
.cg-modal .btn-ghost {
  background: transparent;
  border: 1px solid #ddd;
}

/* overlay for each Vimeo iframe (transparent but catches clicks) */
.vimeo-capture-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  cursor: pointer;
  background: transparent;
}

/* Ensure video container parents are positioned so overlay aligns */
.plan-video-container,
.video-wrapper {
  position: relative;
  min-height: 180px; /* adjust as needed */
}
