I'm just curious because I saw on Wikipedia a single polynomial time solution to any NP-hard problem would imply there are polynomial time solutions for every single NP problem.
Also I assume there are a lot of NP problems... So does that mean no one has ever been able to prove for any NP problem that no polynomial time algorithms exist? With how many NP problems there are it seems it would provide a lot of opportunities to try right? And a single proof for anyone of them would show $\mathbf{NP} ≠ \mathbf{P}$ right?
It is actually worse than that. If you can prove that any problem in NP lacks a polynomial time solution, then that by itself implies that $P \neq NP$, because the defining property of P is that all problems in P can be solved in polynomial time, and you would have a counterexample, a problem in NP that is not in P.
The real problem here is that lower bounds on complexity are generally hard to prove. The "easy" way to prove a lower bound is to establish that an algorithm must necessarily consider some set of data points or values, or else it cannot get the right answer. To use a simpler example, we can prove that any (correct) matrix multiplication algorithm, given two square $n \times n$ matrices, must take at least $\Omega(n^2)$ time to run, because you have to examine every entry in both matrices at least once.
At the same time, we don't actually know of any $\Theta(n^2)$ algorithm to multiply matrices, and it is suspected that no such algorithm exists. For a long time it was believed that the lower bound was $\Omega(n^3)$, which is the running time of the "textbook" algorithm that you would normally learn in introductory linear algebra, but then it was repeatedly demonstrated that faster algorithms exist. Currently, we don't know how fast you can multiply two matrices. NP problems are like that, but even harder to reason about.
In a typical NP-complete problem (such as the traveling salesman problem), you have a set of objects (here, cities or graph vertices, and roads or edges), and you can "verify" a given solution by some polynomial-time process (here, by verifying that all of the edges given as part of the solution form a valid Hamiltonian cycle, and then adding up their weights). In order to be correct, a TSP solution would at least need to examine all of the objects which are considered by that polynomial-time verification algorithm (all of the vertices and edges). But that just establishes that the solving algorithm can't be faster than the verification algorithm, which is not a particularly surprising or useful insight, because the verification algorithm is already polynomial-time.
NP-complete problems should be the hardest problems in NP, which is why we tend to focus on them. If you cannot prove that an NP-complete problem is not in P, then it's (probably) going to be even harder to prove that any random other problem in NP is not in P.