    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">

    <script>
function previewFile(input, previewId) {
    const preview = document.getElementById(previewId);
    if (input.files && input.files[0]) {
        const file = input.files[0];
        const reader = new FileReader();
        const fileType = file.type;

        reader.onload = function(e) {
            preview.innerHTML = ''; // Clear previous content

            if (fileType.startsWith('image/')) {
                const img = document.createElement('img');
                img.src = e.target.result;
                img.className = 'img-fluid rounded shadow-sm';
                img.style.maxHeight = '250px';
                img.style.objectFit = 'contain';
                preview.appendChild(img);
            } 
            else if (fileType === 'application/pdf') {
                const iframe = document.createElement('iframe');
                iframe.src = e.target.result;
                iframe.style.width = '100%';
                iframe.style.height = '300px';
                iframe.style.border = 'none';
                iframe.className = 'rounded shadow-sm';
                preview.appendChild(iframe);
            } 
            else {
                preview.innerHTML = '<small class="text-warning">Preview not available for this file type.</small>';
            }

            // File info
            const info = document.createElement('div');
            info.className = 'mt-3';
            info.innerHTML = `
                <small class="text-info d-block">
                    <strong>New file selected:</strong> ${file.name}<br>
                    <em>Size: ${(file.size / (1024*1024)).toFixed(2)} MB</em>
                </small>
            `;
            preview.appendChild(info);
        }

        reader.readAsDataURL(file);
    }
}
</script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//jauharmedicalcollege.com/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://jauharmedicalcollege.com/page-sitemap.xml</loc>
		<lastmod>2026-05-17T17:47:03+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->