Push-down automaton works only in one direction. That is it cannot retrace its step or keep a count.
For example, if you want a formal language:
L = {1^n+0^m | n>m, m>0}
Here the no. of 1's are greater than no. of zeroes.
This problem is solvable by both DPDA and Turing Machine.
However if we add another condition, like:
L = {1^n.0^m.1^n | n>m, m>0}
Assuming that you know how to solve the above problem in Turing Machine, you would understand its not possible to solve it without back tracing the input tape.
Therefore there is no way you can make PDA as powerful as Turing Machine.
Here is link to Wiki for your more understanding :https://en.wikipedia.org/wiki/Chomsky_hierarchy