Without seeing any code, you probably want to flip your loop:
for(int i = 0; i < cards.Count; i++)
to
for(int i = (cards.Count - 1); i >= 0; i--)
But please share some code, so we can help.
Edit: Corrected Loop.
4
solved Right to left letters in cards Unity