condition: whitespace should not be counted & 0 is also content
<?php if(strlen(trim($service_category->description))> 0 ) {
echo $service_category->description;
} ?>
<?php if(strlen(trim($service_category->description))) {
echo $service_category->description;
} ?>