/* How to Order Section */
#how-to-order-section {
    padding: 50px 0;
    background-color: #f9f9f9;
  }
  
  #how-to-order-section .title {
    text-align: center;
    margin-bottom: 30px;
  }
  
  #how-to-order-section .text-center {
    margin-bottom: 30px;
  }
  
  #how-to-order-section h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
  }
  
  #how-to-order-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
  }
  
  /* Step Image Styling */
  .step-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
  }
  
  /* Hover Effect */
  .step-image:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: rgb(102, 140, 255);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Bounce Animation on Click */
  @keyframes bounceCombo {
    0%, 20%, 50%, 80%, 100% {
      transform: scale(1) rotate(0deg) translateY(0);
    }
    40% {
      transform: scale(1.1) rotate(3deg) translateY(-20px);
    }
    60% {
      transform: scale(1.05) rotate(-2deg) translateY(-10px);
    }
  }
  
  .bounce-on-click.clicked {
    animation: bounceCombo 0.6s ease-in-out;
  }
  
  /* Responsive for Tablet Screens */
  @media (min-width: 768px) and (max-width: 992px) {
    .step-image {
      width: 200px;
      height: 200px;
    }
  }
  

  #video-text-section {
    background-color: #343434;
  }
  
  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  
  .text-content {
    flex: 1 1 45%;
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical center */
    align-items: center;     /* Center the block itself */
    text-align: left;        /* Keep inner text left-aligned */
  }
  
  .text-content > * {
    width: 100%; /* Ensures h2 and ul stretch to full width inside the centered block */
    max-width: 500px; /* Optional: limits line length for better readability */
  }
  
  
  .video-container {
    flex: 1 1 50%;
    position: relative;
    /* border-radius: 10px; */
    overflow: hidden;
    max-height: 900px;
  }
  
  /* Video still visible under overlay */
  .dimmed-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* border-radius: 10px; */
  }
  
  /* Dotted 45° overlay */
  .video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(#4d4d4d 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.4;
    /* transform: rotate(-45deg); */
  }
  