 .hero-video {
      position: relative;
      height: 40vh;
      overflow: hidden;
    }

    .hero-video video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 0;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      color: white;
      background-color: rgba(0, 0, 0, 0.5); /* semi transparan */
    }

    .hero-content h1 {
      font-size: 4rem;
      animation: fadeInDown 1s ease-out;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }