* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #f6f8fa, #e2e8f0);
    color: #1a202c;
  }

  .hero {
    padding: 80px 20px 50px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    animation: fadeIn 1.2s ease-out;
  }

  .hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .tagline {
    margin-top: 30px;
    color: #e53e3e;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    animation: pulse 2s infinite;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 0.6;
    }
    50% {
      opacity: 1;
    }
  }

  .swiper-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
  }
  
  .swiper-slide {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
  }

      /* Move swiper pagination away from video controls */
    .swiper-pagination {
      position: relative;
      margin-top: 20px;
    }

  .video-carousel-container {
    position: relative;
    padding: 40px 20px;
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 100px;
    /*background: linear-gradient(135deg, #1a1a1a, #2e2e2e);*/
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
  }

  /* Subtle animated gradient overlay */
  .video-carousel-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 150, 0.08), transparent 60%),
                radial-gradient(circle, rgba(0, 200, 255, 0.08), transparent 60%);
    animation: floatEffect 15s infinite linear;
    z-index: 0;
  }

  /* Add fade background movement */
  @keyframes floatEffect {
    0% {
      transform: rotate(0deg) translate(0px, 0px);
    }
    100% {
      transform: rotate(360deg) translate(0px, 0px);
    }
  }

  /* Ensure content stays above background effect */
  .video-carousel-container > * {
    position: relative;
    z-index: 1;
  }

  video {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    border-radius: 12px;
    background-color: #000;
  }

  video::-webkit-media-text-track-display {
    display: none !important;
  }

  .plyr video {
    object-fit: contain;
  }

  /* Ensure poster covers the container before playback */
  .plyr__poster {
    background-size: cover !important;
    background-position: center !important;
  }

  .plyr--fullscreen video {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
  }

  body:fullscreen,
  html:fullscreen {
    background-color: #ffffff !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #ffffff;
    background: #e53e3e;
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .swiper-button-prev { left: 10px; }
  .swiper-button-next { right: 10px; }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: #c53030;
  }

  .swiper-pagination-bullet {
    background: #cbd5e0;
    opacity: 0.5;
  }

  .swiper-pagination-bullet-active {
    background: #3182ce;
    opacity: 1;
  }

  @media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: none !important;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }
  }

  body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a; /* rich dark blue-gray */
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' opacity='0.08' font-size='26'%3E%3Ctext x='15' y='35'%3E📈%3C/text%3E%3Ctext x='90' y='40'%3E💼%3C/text%3E%3Ctext x='40' y='90'%3E📣%3C/text%3E%3Ctext x='110' y='110'%3E📊%3C/text%3E%3Ctext x='25' y='135'%3E💡%3C/text%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 160px 160px;
  }