I will give you 'help' as you you have asked.
This procedure might be a bit long but will be most rewarding as you are in the learning stage:
(i) To calculate $a^5 \pmod {14}$, you do not need to calculate 5th power and then divide by 14 for remainder. AT all intermediate stages of calculation you can reduce the intermediate answers modulo 14.
Example with $3^5$. Stop at $3^3=27$. This is one less than 28, and $28=0\pmod {14}$. So $3^3\equiv -1\pmod{14}$. Now $3^5= 3^3\times 3^2$ can be replaced by $-3^2\pmod{14}$, and this is $-9$ or $5$.
This way calculate $a^5$ for $a<8$. F0r $a=8,9,\ldots 13$, use $14-a = -a$. So, for example $11^5=- (3^5)-+9\pmod{14}$.
Now you can add up all $a^5$ for $a=0$ to 13. Call this sum $S$.
Now from 14 onwards use periodicity. That $(14+a)^5 = a^5\pmod{14}$. Now to sum up to $1080^5$ is same as checking how many times $S$ has to be added repeatedly. If $1080$ is not a multiple of $14$ (find out!) then finally a manual calculation for any leftover partial sum will do it.