            .product-png {
       position: absolute;
       bottom: 10px;
       left: 50%;
       transform: translateX(-50%);
       width: 80%;
       /* size adjust karo */
       height: auto;
       max-width: 250px;
       z-index: 2;
     }
       
        /* Back to Home Button */
        .back-home {
          text-align: center;
          padding: 3rem 0;
        }
        
        .btn {
          display: inline-block;
          padding: 1rem 2.5rem;
          background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
          color: white;
          text-decoration: none;
          border-radius: 50px;
          font-size: 1.1rem;
          font-weight: 600;
          transition: all 0.3s ease;
          box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
          border: none;
          cursor: pointer;
        }
        
        .btn:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6);
          color: white;
          text-decoration: none;
        }