Hi,
In general, is not recommended to use PDF as viewer on mobile devices. This format is not Mobile friendly. That's why use download link under.
I can share an example, that may help you a little bit, but it's beyond JoomShaper support (!) Use it inside Raw HTML addon. BTW On iOS (Safari), PDF preview may be limited.
HTML Code
<div class="pdf-container">
<object
data="path/to-your-file.pdf#toolbar=0&navpanes=0"
type="application/pdf">
<p>Your browser does not support PDF preview.
<a href="/path/to-your-file.pdf">Download PDF file</a>.
</p>
</object>
</div>
CSS code (use it inside Page Settings > Page CSS > CSS or Template options > Custom code > Custom CSS)
.pdf-container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;}
object {
width: 100%;
height: 100%;
border: none;}