OK I got it solved like this. I changed line
From this
<li class="page_item <?php if ( is_home() ) { ?>current_page_item<?php } ?>"><a>">Home</a>
To this
<li class="page_item <?php if ( is_home() ) { ?><?php } ?>"><a href="<?php bloginfo('url'); ?>">Home</a></li>
Seems to working for me.
Thank you for your support PAE
Pravin..