Modular arithmetic appears in cryptography (RSA encryption), hash functions, checksums, random number generators, and distributed systems (consistent hashing).
It also helps in game development (wrapping coordinates on a grid), scheduling (round-robin assignments), and anywhere you need cyclic behavior.
Understanding mod makes you a better programmer across many domains.