The 3c^4 ≡ 6 (mod 15) line is missing parentheses... As written, it means 3 * (c^4) ≡ 6 (mod 15), which is demonstrably false (e.g. 3 * (4^4) = 768 ≡ 3 (mod 15)).
In general (ab) mod n == (a mod n)(b mod n) mod n
In the case of (3*c)^4, 3^4 mod 15 -> 108 mod 15 -> 3.