#video-section{
background: linear-gradient(to bottom, #60d2d21a 0%, #f0f2f44d 50%, #fcfcfc 100%);
padding: 100px 0;
}
#video-section .card-header{
padding-bottom: 5rem;
}
#video-section .video-cover-wrapper {
  position: relative;
  display: inline-block;
  display: table;
  margin: auto;
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: #fff;
}
#video-section .video-cover-img {
  width: 100%;
  display: block;
  border-radius: 18px;
  cursor: pointer;
}
#video-section .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  z-index: 2;
  transition: transform 0.2s;
  background-color: rgb(36, 138, 157);
}
#video-section .video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
#video-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}
#video-modal.active {
  opacity: 1;
  pointer-events: auto;
}
#video-modal .video-modal-content {
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  max-width: 90vw;
  max-height: 80vh;
  width: 800px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s cubic-bezier(.4,0,.2,1);
}
#video-modal.active .video-modal-content {
  transform: scale(1);
  opacity: 1;
}
#video-modal .video-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  transition: background 0.2s;
}
#video-modal .video-modal-close:hover {
  background: rgb(36, 138, 157,0.7);
}
#video-modal video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  background: #000;
}

.video-decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.video-decoration--top-left {
  top: -40px;
  left: 140px;
}

.video-decoration--bottom-right {
  bottom: -40px;
  right: 150px;
}

.fill-primary\/40 {
  fill: #248a9d;
  opacity: 0.4;
}

/* Pulsing play button styles */
.video-play-pulse-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-play-pulse-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-pulse-wave1,
.video-play-pulse-wave2 {
  position: absolute;
  border-radius: 9999px;
  background: #248a9d; /* green for pulse */
  opacity: 0.18;
  filter: blur(2px);
  animation: play-pulse 2s cubic-bezier(0,0,0.2,1) infinite;
}
.video-play-pulse-wave1 {
  width: 120px;
  height: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video-play-pulse-wave2 {
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.10;
  animation-delay: 0.7s;
}
.video-play-pulse-blur {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  background: #248a9d; /* green */
  opacity: 0.18;
  filter: blur(12px);
}
.video-play-pulse-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: radial-gradient(circle at 60% 40%, #3fd0c9 60%, #2CA6A4 100%);
  box-shadow: 0 4px 24px 0 #2CA6A466;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
  outline: none;
}
.video-play-pulse-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px 0 #2CA6A488;
}
.video-play-pulse-btn svg {
  width: 32px;
  height: 32px;
  color: #fff;
  margin-left: 4px;
  filter: drop-shadow(0 2px 6px rgba(44,166,164,0.15));
}

@keyframes play-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

#video-section {
  position: relative;
}

@media (max-width: 900px) {
  .video-decoration--top-left,
  .video-decoration--bottom-right {
    display: none;
  }
}