Privacy Policy - Motiram & Co
Privacy Policy
Last Updated: 24-November-2025
The Information We Collect
Motiram & Company Pte Limited does not collect personal information unless voluntarily provided.
- Name
- Email address
- Phone number
- Mailing address
- Delivery instructions
- Payment information
- Username and password (if creating an account)
We may also automatically collect technical and usage information such as IP address, browser type, and pages visited.
How We Use the Information
- Fulfil your orders and process payments
- Deliver products efficiently
- Answer questions and requests
- Improve website and user experience
- Send newsletters/marketing communications (if opted in)
- Comply with legal obligations
Email and Mobile Communication
Information Sharing
- With payment processors to complete transactions
- With shipping/delivery services to fulfill orders
- With marketing or analytics partners to optimize campaigns
- With legal authorities if required
- During mergers, acquisitions, or corporate restructuring
- For debt collection if account defaults
Data Retention
We retain personal information indefinitely unless you request deletion.
Managing Your Information
Security
- SSL encryption for all transactions
- Secure storage of account info and passwords
- Staff access controls for authorized personnel only
Children’s Privacy
Our services are available to all users regardless of age.
Changes to This Policy
Motiram & Company Pte Limited may update this Privacy Policy periodically.
Address: Lot 47 Industrial St, Namaka, Nadi
function toggleAccordion(element, id) {
const content = document.getElementById(id);
element.classList.toggle('active');
if (content.style.maxHeight) {
content.style.maxHeight = null;
content.classList.remove('show');
} else {
content.style.maxHeight = content.scrollHeight + "px";
content.classList.add('show');
}
}
function expandAll() {
const headings = document.querySelectorAll('.policy-page h2');
headings.forEach(h => {
const id = h.getAttribute('onclick').match(/'([^']+)'/)[1];
const content = document.getElementById(id);
h.classList.add('active');
content.classList.add('show');
content.style.maxHeight = content.scrollHeight + "px";
});
}
function closeAll() {
const headings = document.querySelectorAll('.policy-page h2');
headings.forEach(h => {
const id = h.getAttribute('onclick').match(/'([^']+)'/)[1];
const content = document.getElementById(id);
h.classList.remove('active');
content.classList.remove('show');
content.style.maxHeight = null;
});
}