.winning-recipe-section3 {
    padding: 5rem 0;
    background: transparent;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.winning-recipe-heading3 {
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: normal;
  color: transparent;
  background: linear-gradient(to right, #6268AA 23.51%, #8F98FF 43%, #9A4281 55%, #AC134B 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.winning-recipe-heading3::after {
    content: '';
    display: block;
    margin: 0.5rem auto 0;
    width: 480px;
    height: 6px;
    background-image: url('https://res.cloudinary.com/dvabb4elb/image/upload/v1750871772/client-Line_swpeyd.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.steps-wrapper3 {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.step-card3 {
    background-color: #8F98FF;
    color: #000;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    width: 300px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card3:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.step-title3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-video3 {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.step-video3 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 468px) {
  .winning-recipe-heading3 {
    font-size: 28px;
  }

  .winning-recipe-heading3::after {
    width: 310px;
  }

  .steps-wrapper3 {
    min-height: 290px;
    all: unset;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 20px 18px;
    gap: 16px;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE/Edge */
  }

  .steps-wrapper3::-webkit-scrollbar {
    display: none;               /* Chrome, Safari */
  }

  .step-card3 {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border-radius: 16px;
  }

  .winning-recipe-section3 .winning-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 8px;
  }

  .winning-recipe-section3 .winning-dots .winning.dot {
    width: 8px;
    height: 8px;
    background: #aaa;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
  }

  .winning-recipe-section3 .winning-dots .winning-dot.dot.active {
    background: #6268AA;
    transform: scale(1.2);
  }
}





