I solved the above recurrence using master theorem and applied case $2$ to solve it.
However in the final answer I have $T(n) = \Theta(\log^{(k+1)} n)$ . what should happen to $k+1$? because the final answer is $T(n) = \Theta(\log n)$
If someone has a different approach, please do share.