
    .carousel-container {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .carousel-inner .carousel-item {
      position: relative;
    }

    .carousel-inner .carousel-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* black overlay */
      z-index: 1;
    }

    .carousel-inner img {
      height: 100vh;
      width: 100%;
      object-fit: cover;
      transition: transform 1.5s ease, opacity 1.5s ease;
    }

    .carousel-item.active img {
      transform: scale(1.05);
      opacity: 1;
    }

    .carousel-caption {
      position: absolute;
      z-index: 2;
      bottom: 20%;
      text-align: center;
      animation: fadeUp 1.5s ease-in-out both;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
      font-size: 4vw;
      font-weight: 700;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s ease forwards;
      animation-delay: 0.5s;
    }

    .carousel-caption h2 {
      animation-delay: 0.8s;
    }

    .carousel-caption p {
      font-size: 1.2vw;
      margin: 20px 0;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s ease forwards;
      animation-delay: 1.1s;
    }

    .carousel-caption button {
      animation: fadeUp 1s ease forwards;
      animation-delay: 1.4s;
      opacity: 0;
      transform: translateY(30px);
    }

    .btn-beet {
      padding: 10px 30px;
      font-weight: 600;
      border: 2px solid #fff;
      background: transparent;
      color: #fff;
      border-radius: 30px;
      transition: all 0.4s ease;
    }

    .btn-beet:hover {
      background-color: #ff0055;
      border-color: #ff0055;
      color: #fff;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .carousel-caption h1,
      .carousel-caption h2 {
        font-size: 6vw;
      }

      .carousel-caption p {
        font-size: 3.5vw;
      }

      .carousel-caption {
        bottom: 10%;
      }
    }