The Azure Blob Storage lifecycle management does not allow you to schedule rule execution at a specific time of day. The lifecycle management runs in the background on a regular basis, and it usually takes effect within 24 hours of the specified condition being met.
In your case, the rule you've created will delete blobs 90 days after they've been modified. When a blob reaches this age, the lifecycle management process deletes it within the next 24 hours.
If you need more control over when the blobs are deleted, you can implement a custom solution using Azure Functions or Logic Apps, which can be scheduled to run at specific times. In this case, you'd need to create a script that lists the blobs, checks their ages, and deletes them if the specified ages are met. The script can then be scheduled for execution using the scheduling capabilities provided by Azure Functions or Logic Apps.