top of page

Contact

I'm always looking for new and exciting opportunities. Let's connect.

123-456-7890 

Svadhyay Privacy Policy

At Svadhyay, we value your privacy and are committed to protecting your personal information. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website and purchase our products.

1. Information we collect

We may collect personal information from you in various ways, including when you:

  • Create an account

  • Place an order

  • Subscribe to our newsletter

  • Contact customer service

  • Participate in surveys or promotions

​

The types of personal information we may collect include:

  • Name

  • Email address

  • Shipping and billing address

  • Phone number

  • Payment information (processed securely through our payment processor)

  • Any other information you provide to us

​

2. How we use your information

Svadhyay may use the information we collect for the following purposes:

  • To process and fulfill your orders

  • To communicate with you about your orders, inquiries, or account

  • To improve our products and services

  • To personalize your shopping experience

  • To send you marketing communications (with your consent)

  • To comply with legal obligations and protect our rights

​

3. Sharing your information

We do not sell, trade, or otherwise transfer your personal information to outside parties without your consent, except in the following circumstances:

  • Service Providers: We may share your information with third-party service providers who assist us in operating our website, conducting our business, or servicing you (e.g., shipping providers, payment processors).

  • Legal Compliance: We may disclose your information when required by law or to protect our rights, privacy, safety, or property, or that of others.

​

4. Data Security

We implement a variety of security measures to maintain the safety of your personal information. Your personal data is stored on secure servers, and we use encryption for sensitive information transmitted online. However, no method of transmission over the Internet or method of electronic storage is 100% secure, so we cannot guarantee absolute security.

​

5. Your Rights

You have the right to:

  • Access and request copies of your personal information

  • Request correction of any inaccuracies in your information

  • Withdraw consent to processing your personal information

  • Request deletion of your personal information, subject to certain exceptions

To exercise any of these rights, please contact us at service@svadhyay.in.

 

6. Cookies and Tracking Technologies

We may use cookies and similar tracking technologies to enhance your experience on our website. Cookies are small files stored on your device that help us analyze web traffic and customize your experience. You can choose to accept or decline cookies through your browser settings.

​

7. Changes to This Privacy Policy

Svadhyay reserves the right to update this Privacy Policy at any time. We will notify you of any significant changes via email or through a notice on our website. Your continued use of our website after any changes indicates your acceptance of the revised policy.

​

8. Contact Us

If you have any questions or concerns about this Privacy Policy or our practices regarding your personal information, please contact us at:

Email: service@svadhyay.in
 

bottom of page
// Initialize the Data Layer window.dataLayer = window.dataLayer || []; // Function to push events to the Data Layer function trackEvent(eventType, eventDetails) { window.dataLayer.push({ event: eventType, ...eventDetails // Add dynamic details for each event }); } // Helper function to extract product details dynamically function getProductDetails() { try { const productId = document.querySelector('[data-product-id]')?.getAttribute('data-product-id') || 'unknown'; const productName = document.querySelector('.product-name')?.innerText || 'Unknown Product'; const productPrice = parseFloat(document.querySelector('.product-price')?.innerText.replace(/[^0-9.]/g, '')) || 0; return { content_ids: [productId], content_name: productName, value: productPrice, currency: "INR" }; } catch (error) { console.error("Error fetching product details: ", error); return {}; } } // Helper function to extract checkout or purchase details function getCheckoutDetails() { try { const items = []; document.querySelectorAll('.cart-item').forEach(item => { const id = item.getAttribute('data-product-id'); const name = item.querySelector('.cart-item-name')?.innerText; const price = parseFloat(item.querySelector('.cart-item-price')?.innerText.replace(/[^0-9.]/g, '')) || 0; const quantity = parseInt(item.querySelector('.cart-item-quantity')?.innerText) || 1; items.push({ id, name, price, quantity }); }); const totalValue = items.reduce((sum, item) => sum + item.price * item.quantity, 0); return { content_ids: items.map(item => item.id), products: items, value: totalValue, currency: "INR" }; } catch (error) { console.error("Error fetching checkout details: ", error); return {}; } } // Dynamic tracking based on URL path (function() { const path = window.location.pathname; // Track PageView for every page trackEvent('PageView', { page_path: path }); // Home Page Tracking if (path === "/") { trackEvent('ViewContent', { page_type: "HomePage", currency: "INR" }); } // Product Page Tracking if (path.includes("product")) { const productDetails = getProductDetails(); trackEvent('ViewContent', { ...productDetails, content_type: "product" }); } // Add to Cart Tracking if (path.includes("cart")) { const cartDetails = getCheckoutDetails(); trackEvent('AddToCart', { ...cartDetails, quantity: 1 // Total cart quantity can be adjusted dynamically }); } // Initiate Checkout Tracking if (path.includes("checkout")) { const checkoutDetails = getCheckoutDetails(); trackEvent('InitiateCheckout', { ...checkoutDetails, content_type: "product" }); } // Purchase Tracking if (path.includes("thank-you")) { const purchaseDetails = getCheckoutDetails(); trackEvent('Purchase', { transaction_id: "ORDER_" + new Date().getTime(), // Replace with dynamic transaction ID if available ...purchaseDetails }); } })();