.sty-sub-h1 {
  display: block;
  font-size: var(--h2-font-size);
  font-family: var(--h2-font-family);
  margin-bottom: 1rem;
  margin-top: 1rem;
  color:var(--secondary-color);
}

.video-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: pointer;
}

.video-wrap video {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  height: auto;
  display: block;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-play-btn i {
  font-size: 2rem;
  color: #fff;
  background: rgb(221 221 221 / 13%);
  backdrop-filter: blur(10px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
  animation: pulse 1.8s infinite;
}

.video-wrap.playing .video-play-btn i {
  opacity: 0;
  transform: scale(0.6);
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.video-caption {
  margin: 0;
  display: flex;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
  justify-content: center;
}

.video-caption p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
}

/*
--- About ---
==================================*/
.sty-feature-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.sty-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.sty-feature-card h3 {
  padding: 0;
  margin: 0;
}

.sty-feature-card p {
  text-align: center;
  line-height: 1.8;
}

.sty-feature-card .icon-box {
  width: 100px;
  height: 90px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.sty-feature-card .icon-primary {
  background: rgba(27, 183, 208, 0.1);
  color: var(--primary-color);
}

.sty-feature-card .icon-secondary {
  background: rgba(255, 214, 19, 0.1);
  color: var(--secondary-color);
}

/*
Style For Responsive
===================================================*/
/* Desktop (769px and up) */
@media (min-width: 769px) {
  .sty-card {
    padding: 1rem;
    margin-bottom: 0;
  }

  .sty-card > video {
    border-radius: 1rem;
  }

  .video-play-btn {
    display: flex;
  }

  .video-caption {
    gap: 0.5rem;
    margin-top: 0.3rem;
  }

  .sty-floater-1 {
    top: 10%;
    right: -40px;
  }

  .sty-floater-2 {
    bottom: 10%;
    right: -30px;
  }

  .sty-about {
    border-bottom-right-radius: 6rem;
    overflow: visible;
    padding: 0.5rem;
  }

  .sty-about .sty-img-about {
    border-radius: 1rem;
    border-bottom-right-radius: 5rem;
  }
}
