pixelpodweb/
├── admin/
│ ├── css/admin.css
│ ├── js/admin.js
│ ├── includes/ (header, footer, sidebar)
│ ├── index.php ← Dashboard
│ ├── bookings.php ← Manage bookings
│ ├── services.php ← Manage packages
│ ├── customers.php ← View customers
│ ├── events.php ← Event calendar
│ ├── payments.php ← Payment tracking
│ ├── inquiries.php ← Contact messages
│ ├── analytics.php ← Charts & reports
│ └── settings.php ← Admin settings
├── api/
│ └── booking_status.php
├── config/
│ └── database.php ← DB settings
├── includes/
│ ├── auth.php
│ ├── header.php
│ └── footer.php
└── public/
├── css/style.css
├── js/main.js
├── index.php ← Home page
├── services.php ← Services
├── booking.php ← Book now
├── contact.php ← Contact
├── login.php
├── register.php
├── dashboard.php ← Customer portal
└── logout.php