Convert csv having nested data in columns into JSON

Hi ,
I want to convert a csv file where one column contains multiple sub column data that needs to be convereted into json.
Example :
image

Need the above attached CSV in the below given Json format.
{
“Employee”: {
“Employee Name”: “Jennifer”,
“Id”: “2678902”,
“Employee Details”: [
{
“Address”: {
“Location”: “San Fransisco”
},
“pincode”: {
“text”: “138059”
},
“Blood Group”: “B+ve”
}
]
}
}