There are many ways you could handle this. You could process $var1 before the loop or add some condition like the following:
bash
handled_first=false
for arg in "$var1" "$var2" "$var3" "$varN" ; do
if ! $handled_first; then
# do stuff
handled_first=true
continue
fi
# other stuff
done