/* =========================================================
   testimonial.css
   Page-specific styles for /testimonial
   Split out of the old monolithic style.css. Rule order is
   unchanged from the original file.
   ========================================================= */

.texti-video-thumb {
  position: relative;
  cursor: pointer;
}
.texti-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #fff;
  background: rgba(0,0,0,0.7);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
}
.texti-video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}
.texti-video-modal-content {
  position: relative;
  max-width: 800px;
  margin: 8% auto;
}
.texti-video-modal video {
  width: 100%;
  border-radius: 10px;
}
.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}
.texti-video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  animation: fadeIn 0.4s ease;
}
.texti-video-modal-content {
  position: relative;
  max-width: 800px;
  margin: 8% auto;
  transform: scale(0.7);
  animation: zoomIn 0.4s ease forwards;
}
