Pricingย Policy

Pricing Information for TalktoAchrya


Price Range

At TalktoAchrya, we offer personalized pricing tailored to the specific Vedic rituals and pujas that best suit your spiritual needs. The costs for each service are determined based on the complexity, duration, and type of ritual performed. Generally, the transaction range for our services on both Android and iOS platforms spans from INR 500 to INR 1500 per session.


Payment Schedule

Some services at TalktoAchrya are available for fixed durations, which will be clearly mentioned in the service descriptions. These durations typically range from 1 month to 6 months, depending on the nature of the ritual and the intended effects.


Price Matching

We are committed to providing the best value for our clients. If you find a comparable Vedic service offered at a lower price by a competitor, we will gladly match the price, provided the service aligns with our standards of professionalism and features. Our pricing remains stable and is not subject to market fluctuations or competitor pricing.


Sale Adjustments

Once a service is purchased, we are unable to adjust the sale price if it is reduced within one week of the booking date. Additionally, once a session or slot is booked, rescheduling to a different date is generally not permitted, which may result in the cancellation of the booking. For detailed information, please refer to our Cancellation Policy.


Pricing Errors

Despite our best efforts to maintain accurate pricing, errors may occasionally occur. If a service’s price is incorrectly displayed as higher than intended, we will cancel the booking and promptly inform you of the cancellation.


Terms and Conditions

TalktoAchrya services are provided by TalktoAchrya Services, and we reserve the right to refuse service if we believe the service is being misused.


For any inquiries or further assistance, please contact us at info@talktoachrya.in.


Thank you for choosing TalktoAchrya.
We look forward to supporting your spiritual journey with our dedicated Vedic rituals and pujas.

Found it โ€” the bug is a timing issue with hidden elements, and it explains why local "looks perfect" while live doesn't (timing is non-deterministic, so it's really just luck either way). Root cause javascript This runs initGoogleAuthButton() the moment the Google script finishes loading โ€” which is almost immediately on page load, before the user has even opened the login modal. But your modal starts hidden: css .modal-overlay { display: none; ... } An element with display: none (or a hidden ancestor) always reports offsetWidth = 0. So: javascript width: container.offsetWidth, // reads 0 when the modal hasn't been opened yet Google then falls back to its own default minimum button width instead of matching your container โ€” which is exactly the shrunk-looking button you're seeing. On local it likely "worked" purely by coincidence of load timing, network speed, or you happening to open the modal slowly enough for something to re-trigger โ€” not because the code was actually correct. Fix โ€” render the Google button only when the modal is actually opened, not on page load Since showLoginModal() lives in auth_system.js (which you haven't shared), the safest fix that doesn't require touching that file is to watch for the modal's active class being added, and render the button at that moment โ€” when its real width is available. Replace your current Google script block with this: html