Why wp_enqueue_style() not working?

Are you sure you theme is active?

If you see your style.css code it should not have only the CSS code but also the Theme defination at header of your style.css.

Please make sure if your theme is active.

The above code for loading CSS file looks good and should work if your theme is active.

Update :

Have you added wp_head() and wp_footer() in header.php and footer.php respectively?

wp_head() should be added before </head> tag in your HTML and wp_footer() should be added before </body> tag in HTML.