Using WP_Query for categories instead of get_terms

$category_detail=get_the_category(get_the_ID());//$post->ID
foreach($category_detail as $cd)
{
    $name_cat=$cd->cat_name;
    $id_cat=$cd->term_id;
}

try now this code