# Fast Care Labs - cPanel Deployment Build

## Build Contents
- **HTML Files**: All main pages and package detail pages
- **CSS**: Optimized stylesheets
- **JavaScript**: Interactive functionality
- **Images**: All media assets
- **Packages**: 14 package detail pages
- **SEO Files**: sitemap.xml, robots.txt

## Deployment Instructions for cPanel

### 1. Upload Files
- Upload the entire `build` folder contents to your cPanel public_html directory
- Maintain the folder structure as-is

### 2. File Permissions
- HTML files: 644
- CSS files: 644
- JS files: 644
- Images: 644
- Folders: 755

### 3. Required cPanel Features
- Apache web server (recommended)
- PHP support (for any future dynamic features)
- SSL certificate (HTTPS)

### 4. Website Structure
```
public_html/
├── index.html (Homepage)
├── about.html
├── contact.html
├── services.html
├── packages.html
├── privacy.html
├── terms.html
├── robots.txt
├── sitemap.xml
├── css/
│   └── style.css
├── js/
│   └── script.js
├── images/
│   ├── logo.png
│   ├── home-hero.jpg
│   └── [other images]
└── packages/
    ├── periodic-checkup.html
    ├── comprehensive-plus.html
    ├── hair-loss-plus.html
    ├── diabetes-diagnosis.html
    ├── weight-loss.html
    ├── early-pregnancy.html
    ├── vitamins-minerals.html
    ├── hair-loss.html
    ├── pre-marriage-female.html
    ├── pre-marriage-male.html
    ├── comprehensive-mini.html
    ├── diabetes-3months.html
    ├── diabetes-yearly.html
    └── hypertension-followup.html
```

### 5. Post-Deployment Checklist
- [ ] Verify homepage loads correctly
- [ ] Test all navigation links
- [ ] Check package detail pages
- [ ] Test contact form functionality
- [ ] Verify mobile responsiveness
- [ ] Check SSL certificate (HTTPS)
- [ ] Test social media links
- [ ] Verify footer links

### 6. SEO Optimization
- Submit sitemap.xml to Google Search Console
- Verify robots.txt is accessible
- Check meta tags and descriptions
- Test page load speed

## Notes
- All paths are relative (no absolute paths)
- Images referenced as `images/filename.jpg`
- CSS and JS files properly linked
- RTL (Arabic) language support implemented
- Mobile-responsive design included

## Support
For any deployment issues, check:
1. File permissions
2. .htaccess configuration (if needed)
3. cPanel error logs
4. Browser developer console for errors
