Testimonials & Partners | Power Up Coaching body, html { height: 100%; margin: 0; overflow: hidden; background-color: #f4f4f4; } .paw-print-container { position: relative; height: 100%; width: 100%; } .paw-print { position: absolute; font-size: 24px; animation: fall 5s linear infinite; } @keyframes fall { 0% { top: -50px; } 100% { top: 100%; } }
top of page

Our Testimonials and Partners

At Power Up Coaching, we are committed to helping managers reach their full potential through our coaching programme. But don't just take our word for it. Take a look at what our clients have to say below, and see for yourself the impact our coaching can have on your enjoyment at work.

Q1 LOGO.jpeg

Working With the Best Partners

HA LOGO PARTNER .jpeg
thumbnail_FINAL LOGO G ICON.jpg
HR C LOGO ANGELA.jpeg

Testimonials

01

The Power Behind Power Up Coaching

"The Harrisons Assessment report blew my mind, as we went through the report the results felt astoundingly accurate, highlighting my good and not so good behaviors. It was uncanny and for a while I started to check rooms for Harrison spy cameras, for example, it showed that while I enjoy reflecting on different ideas and opinions but when under pressure, I may react dogmatically to protect myself from someone with strong opinions. And although I have intentions of self-improvement I am lacking in self-acceptance and am often self-critical and can make things difficult for myself and when under stress can flip and become defensive."

Office Meeting
Business Meeting

02

New Possibilities

‘Kelly was my leadership coach. She helped me to explore opportunities in a constructive and inspiring way by inviting me to check my own assumptions and to think big about what might be possible. This opened up new possibilities when considering my future.’

bottom of page
function createPawPrint() { const pawPrint = document.createElement('div'); pawPrint.classList.add('paw-print'); pawPrint.textContent = '🐾'; // Using the paw print emoji as the graphic pawPrint.style.left = Math.random() * 100 + 'vw'; pawPrint.style.animationDuration = Math.random() * 3 + 3 + 's'; // Random duration between 3 to 6 seconds document.querySelector('.paw-print-container').appendChild(pawPrint); // Remove the paw print after it falls off the screen setTimeout(() => { pawPrint.remove(); }, 5000); } // Create a new paw print every 300 milliseconds setInterval(createPawPrint, 300);