// TESTIMONIALS function Testimonials() { const list = [ { name: "Sanket", role: "Founder · D2C Apparel", quote: "Walked in dependent on me for everything. Walked out with a 90-day operator plan.", video: "https://risewithbg.com/wp-content/uploads/2025/03/Testimonial-1.mp4", poster: "https://risewithbg.com/wp-content/uploads/2025/03/saket-agarwal.jpg", }, { name: "Shubham Gupta", role: "MD · Manufacturing", quote: "We restructured pricing the next Monday. EBITDA up 14% in two quarters.", video: "https://risewithbg.com/wp-content/uploads/2025/03/Testimonial-5.mp4", poster: "https://risewithbg.com/wp-content/uploads/2025/03/shubham-gupta.jpg", }, { name: "Himanshu", role: "CEO · SaaS", quote: "Best ₹4,999 I’ve spent. The IPO-readiness framework alone was worth 50×.", video: "https://risewithbg.com/wp-content/uploads/2025/03/Testimonial-10.mp4", poster: "https://risewithbg.com/wp-content/uploads/2025/03/himanshu.jpg", }, { name: "Ratandeep Chavan", role: "Co-founder · Logistics", quote: "Basesh doesn’t teach theory. He hands you the playbook he’s used 60 times.", video: "https://risewithbg.com/wp-content/uploads/2025/05/ratandeep-chauhan-horizontal-1.mp4", poster: "https://risewithbg.com/wp-content/uploads/2026/04/ratandip.jpg.jpeg", }, { name: "Pankaj Chaudhari", role: "Director · F&B Chain", quote: "I’ve done MBA, EO, YPO. This day was sharper than all of it. Period.", video: "https://risewithbg.com/wp-content/uploads/2025/03/Testimonial-6.mp4", poster: "https://risewithbg.com/wp-content/uploads/2025/03/pankaj.jpg", }, { name: "Jigesh Gandhi", role: "Founder · Fintech", quote: "We raised our pre-Series A six months later. The deck framework here was the unlock.", video: "https://risewithbg.com/wp-content/uploads/2025/03/Testimonial-3.mp4", poster: "https://risewithbg.com/wp-content/uploads/2025/03/jigesh.jpg", }, ]; return (
Social proof

Here’s what industry experts are saying.

{[0,1,2,3,4].map((i) => )} 4.9 / 5 across 1,800+ post-event surveys
{list.map((t, i) => )}
); } function TestimonialCard({ t }) { const [playing, setPlaying] = _useState(false); const videoRef = _useRef(null); function toggle() { const v = videoRef.current; if (!v) return; if (playing) { v.pause(); setPlaying(false); } else { v.play(); setPlaying(true); } } return (
{/* Video */}
); } window.Testimonials = Testimonials;