Skip to content
🚚 ಬೇಗ ಬೇಕೇ? 🚚 3–4 ವ್ಯವಹಾರ ದಿನಗಳಲ್ಲಿ ಎಕ್ಸ್‌ಪ್ರೆಸ್ ಡೆಲಿವರಿ—ಚೆಕ್‌ಔಟ್‌ನಲ್ಲಿ ಆಯ್ಕೆಮಾಡಿ!
🚚 ಬೇಗ ಬೇಕೇ? 🚚 3–4 ವ್ಯವಹಾರ ದಿನಗಳಲ್ಲಿ ಎಕ್ಸ್‌ಪ್ರೆಸ್ ಡೆಲಿವರಿ—ಚೆಕ್‌ಔಟ್‌ನಲ್ಲಿ ಆಯ್ಕೆಮಾಡಿ!

ಸಂಪರ್ಕಿಸಿ

ಸಹಾಯ ಮಾಡಲು ನಾವು ಇಲ್ಲಿದ್ದೇವೆ! ವಿಚಾರಣೆಗಳು, ಬೆಂಬಲ ಅಥವಾ ಪ್ರತಿಕ್ರಿಯೆಗಾಗಿ, ದಯವಿಟ್ಟು ನಮ್ಮನ್ನು ಸಂಪರ್ಕಿಸಿ. ನಮ್ಮ ಸಮರ್ಪಿತ ತಂಡವು ತ್ವರಿತ ಮತ್ತು ವೃತ್ತಿಪರ ಸಹಾಯವನ್ನು ಒದಗಿಸಲು ಬದ್ಧವಾಗಿದೆ. ಡಾ. ಓಡಿನ್ ಅವರನ್ನು ಆಯ್ಕೆ ಮಾಡಿದ್ದಕ್ಕಾಗಿ ಧನ್ಯವಾದಗಳು!

ಮುಖ್ಯ ಕಚೇರಿ

ಓಡಿನ್ ಹೆಲ್ತ್‌ಕೇರ್ ಪ್ರೈವೇಟ್ ಲಿಮಿಟೆಡ್
ಪ್ಲಾಟ್ ಸಂಖ್ಯೆ 45, ಹಂತ 2, ಕೈಗಾರಿಕಾ ಪ್ರದೇಶ,
ಪಂಚಕುಲ, ಹರಿಯಾಣ 134113 ಭಾರತ
ಸೋಮವಾರದಿಂದ ಶನಿವಾರದವರೆಗೆ: ಬೆಳಿಗ್ಗೆ 10 ರಿಂದ ಸಂಜೆ 6 ರವರೆಗೆ

ಗೋದಾಮು

ನೆತ್ಜೆನ್ ವರ್ಲ್ಡ್
ಪ್ಲಾಟ್ ಸಂಖ್ಯೆ 186, ಹಂತ 2, ಕೈಗಾರಿಕಾ ಪ್ರದೇಶ,
ಚಂಡೀಗಢ 160002 ಭಾರತ
ಸೋಮವಾರದಿಂದ ಶನಿವಾರದವರೆಗೆ: ಬೆಳಿಗ್ಗೆ 10 ರಿಂದ ಸಂಜೆ 6 ರವರೆಗೆ

ದೂರವಾಣಿ: 18003093009
ಇಮೇಲ್: customercare@drodin.in
Google ಸ್ಥಳ: https://goo.gl/maps/Ea2nNLxygdHTmrXy9

document.addEventListener('DOMContentLoaded', function() { // Wait a bit for everything to load setTimeout(function() { initStickyGallery(); }, 100); }); function initStickyGallery() { const gallery = document.querySelector('.product-gallery'); const productMain = document.querySelector('.product-main'); // If elements don't exist, exit if (!gallery || !productMain) return; // Track if sticky is active let isStickyActive = true; function checkSticky() { // Only run on desktop if (window.innerWidth < 1024) { if (isStickyActive) { gallery.style.position = ''; gallery.classList.remove('sticky-ended'); isStickyActive = false; } return; } // Get positions const galleryRect = gallery.getBoundingClientRect(); const productMainRect = productMain.getBoundingClientRect(); const footer = document.querySelector('footer') || document.querySelector('.site-footer'); const footerRect = footer ? footer.getBoundingClientRect() : null; // Get the bottom of the right column content const rightColumnBottom = productMainRect.bottom; const viewportHeight = window.innerHeight; // Also check if gallery would hit the footer let galleryWouldHitFooter = false; if (footerRect) { const galleryBottomRelative = galleryRect.top + gallery.offsetHeight; if (galleryBottomRelative >= footerRect.top - 50) { galleryWouldHitFooter = true; } } // Condition to end sticky: // Either right column content is fully scrolled past viewport // OR gallery would overlap with footer if (rightColumnBottom <= viewportHeight + 100 || galleryWouldHitFooter) { if (isStickyActive) { gallery.style.position = 'relative'; gallery.classList.add('sticky-ended'); isStickyActive = false; } } else { if (!isStickyActive) { gallery.style.position = 'sticky'; gallery.style.top = '30px'; gallery.classList.remove('sticky-ended'); isStickyActive = true; } } } // Run on scroll and resize window.addEventListener('scroll', checkSticky); window.addEventListener('resize', checkSticky); // Initial check checkSticky(); }