Removing ForAll from inside Reduce leads to a clear answer:
Reduce[0 < x < \[Pi]/2 &&
2 a Sin[a x] >= 0 &&
0 <= a x <= 2 Pi,
{a, x}]
You can reintroduce ForAll to scan the answer:
red = Reduce[0 < x < \[Pi]/2 &&
2 a Sin[a x] >= 0 &&
0 <= a x <= 2 Pi,
{a, x}]
Map[Reduce[ForAll[x, 0 < x < \[Pi]/2, #]] &,
List @@ red]