Write a bash script that takes a single argument and uses a case statement to perform different actions based on the value of the argument. The script should:
$ ./case.sh red
You chose the red pill. Welcome to the Matrix!
$ ./case.sh blue
You chose the blue pill. Enjoy your reality!
$ ./case.sh green
You chose the green pill. Time to go green!
$ ./case.sh yellow
Invalid choice. Please choose red, blue, or green.