  
    .carousel-container {
      font-family: 'Inter', sans-serif ;
      font-display: 'Oswald', sans-serif;
      background-color: #ffffff;
      margin: 0;
      padding: 60px 20px;
      color: #333;
    }
    .showcase-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px auto;
      color:#ffffff
    }

    .showcase-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 15px;
      color: #ffffff;
    }

    .showcase-header p {
      font-size: 1.125rem;
      color: #a1a1aa;
      line-height: 1.6;
    }

    /* Carousel Layout */
    .carousel-container {
      position: relative;
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      align-items: center;
    }

    .carousel-track {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 20px 10px 40px 10px;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE/Edge */
    }

    .carousel-track::-webkit-scrollbar {
      display: none; /* Chrome/Safari */
    }

    .carousel-slide {
      flex: 0 0 calc(100% - 20px);
      scroll-snap-align: center;
      background: var(--card-bg);
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 35px;
      transition: transform 0.3s ease;
    }

    @media (min-width: 768px) {
      .carousel-slide {
        flex: 0 0 calc(50% - 15px);
      }
    }

    @media (min-width: 1024px) {
      .carousel-slide {
        flex: 0 0 calc(33.333% - 20px);
      }
    }

    /* Overlapping Device Mockups */
    .mockup-wrapper {
      position: relative;
      width: 100%;
      max-width: 450px;
      margin: 0 auto;
    }

    .desktop-mockup {
      width: 85%;
      border-radius: 8px 8px 0 0;
      border: 8px solid #2a2a2a;
      border-bottom-width: 14px;
      background: #2a2a2a;
      box-shadow: 0 12px 24px rgba(0,0,0,0.1);
      overflow: hidden;
      aspect-ratio: 16/10;
      position: relative;
    }

    .desktop-mockup img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }

    .mobile-mockup {
      position: absolute;
      bottom: -20px;
      right: 0;
      width: 30%;
      border-radius: 16px;
      border: 6px solid #1a1a1a;
      background: #1a1a1a;
      box-shadow: -8px 8px 25px rgba(0,0,0,0.25);
      overflow: hidden;
      aspect-ratio: 9/19;
      z-index: 2;
    }

    .mobile-mockup img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }

    /* Content & Typography */
    .slide-info {
      text-align: center;
      width: 100%;
    }

    .slide-info h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin: 0 0 12px 0;
      color: #111;
    }

    .slide-info p {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 24px 0;
    }

    .view-btn {
      display: inline-block;
      padding: 12px 28px;
      background-color: var(--color-gray);
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 50px; 
      transition: all 0.2s ease;
    }

    .view-btn:hover {
      background-color: var(--color-orange);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    /* Navigation Arrows */
    .nav-btn {
      background: #fff;
      border: 1px solid #eaeaea;
      border-radius: 50%;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      font-size: 1.5rem;
      color: #111;
      transition: all 0.2s ease;
    }

    .nav-btn:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    .prev-btn { left: -27px; }
    .next-btn { right: -27px; }

    @media (max-width: 800px) {
      /* Rely entirely on native swipe for mobile devices */
      .nav-btn { display: none; }
      .carousel-container { padding: 0; }
    }
