Showing the single result

  • Placeholder

    Instant Free Kundli Analysis & Prediction

    INR149.00

    Ask Your Life Question — Get Instant Prediction

    Male Female Other
    English বাংলা (Bengali) हिन्दी (Hindi) मराठी (Marathi) ગુજરાતી (Gujarati) தமிழ் (Tamil) తెలుగు (Telugu) ಕನ್ನಡ (Kannada) മലയാളം (Malayalam) ਪੰਜਾਬੀ (Punjabi) ଓଡ଼ିଆ (Odia) Español (Spanish) Français (French) Deutsch (German) Русский (Russian) العربية (Arabic) 日本語 (Japanese)
    jQuery(document).ready(function($) { let questionCount = 0; const maxFreeQuestions = 2; const ajaxUrl = 'https://www.vedicrajastrology.com/wp-admin/admin-ajax.php'; const nonce = '7a25922cb2'; // Global City Autocomplete Engine let debounceTimer; $('#vra_pob').on('input', function() { clearTimeout(debounceTimer); const query = $(this).val().trim(); const dropdown = $('#vra_places_dropdown'); if (query.length 0) { data.results.forEach(function(item) { const admin = item.admin1 ? item.admin1 + ', ' : ''; const placeName = `${item.name}, ${admin}${item.country}`; const option = $(`
    ${placeName}
    `); option.on('click', function() { $('#vra_pob').val(placeName); $('#vra_lat').val(item.latitude); $('#vra_lng').val(item.longitude); dropdown.hide().empty(); }); option.hover( function() { $(this).css('background', '#f5f5f5'); }, function() { $(this).css('background', '#fff'); } ); dropdown.append(option); }); dropdown.show(); } else { dropdown.hide(); } } }); }, 300); }); $(document).on('click', function(e) { if (!$(e.target).closest('#vra_pob, #vra_places_dropdown').length) { $('#vra_places_dropdown').hide(); } }); const i18n = { 'Bengali': { heading: 'আপনার ফ্রি প্রশ্ন শেষ', sub: 'প্রতি প্রশ্নে মাত্র ₹১৩-১৫ থেকে শুরু', b1: '১০টি প্রশ্ন', b2: '৩০টি প্রশ্ন', disc: 'শুধুমাত্র সরাসরি ও নির্দিষ্ট প্রশ্নের জন্য। গভীর D9/D10/D30/D60 বা অন্য যেকোনো বর্গ ছক বিশ্লেষণ, বহু-বছরের ভবিষ্যৎ গণনা বা ব্যক্তিগত প্রতিকারের জন্য, অনুগ্রহ করে নিচের Premium Consultation দেখুন।' }, 'Hindi': { heading: 'आपका निःशुल्क प्रश्न समाप्त हुआ', sub: 'मात्र ₹13-15 प्रति प्रश्न से शुरू', b1: '10 प्रश्न', b2: '30 प्रश्न', disc: 'केवल सीधे और विशिष्ट प्रश्नों के लिए। गहन D9/D10/D30/D60 या अन्य किसी भी वर्ग कुंडली विश्लेषण, बहु-वर्षीय भविष्यवाणियों या व्यक्तिगत वैदिक उपायों के लिए, कृपया नीचे Premium Consultation देखें।' }, 'English': { heading: 'Your Free Questions Are Used Up', sub: 'Starting from only $0.33 / ₹13 per question', b1: '10 Questions', b2: '30 Questions', disc: 'Best for single, direct questions. For in-depth D9/D10/D30/D60/Other any divisional chart, multi-year timelines, or personalized remedies, please explore Premium Consultations below.' } }; $('#vra-kundli-form').on('submit', function(e) { e.preventDefault(); const btn = $('#vra_submit_btn'); btn.text('Calculating Birth Chart & Generating Prediction...').prop('disabled', true); const data = { action: 'vra_ask_gemini', nonce: nonce, name: $('#vra_name').val(), gender: $('#vra_gender').val(), dob: $('#vra_dob').val(), tob: $('#vra_tob').val(), pob: $('#vra_pob').val(), lat: $('#vra_lat').val(), lng: $('#vra_lng').val(), lang: $('#vra_lang').val(), question: $('#vra_question').val() }; $.post(ajaxUrl, data, function(res) { btn.text('Get Instant Prediction').prop('disabled', false); if(res.success) { $('#vra-kundli-form').slideUp(); $('#vra_chat_box').slideDown(); appendMessage('User', data.question); if (res.data.chart_svg) { $('#vra_chat_history').append(res.data.chart_svg); } appendMessage('Astrologer Raj Assistant', res.data.reply); questionCount++; } else { $('#vra-kundli-form').slideUp(); $('#vra_chat_box').slideDown(); appendMessage('User', data.question); appendMessage('Astrologer Raj Assistant', 'Error: ' + (res.data.message || 'Unable to connect.')); } }); }); $('#vra_followup_btn').on('click', function() { if (questionCount >= maxFreeQuestions) { showPaywall(); return; } const q = $('#vra_followup_input').val().trim(); if(!q) return; appendMessage('User', q); $('#vra_followup_input').val(''); $('#vra_followup_btn').text('...').prop('disabled', true); const data = { action: 'vra_ask_gemini', nonce: nonce, name: $('#vra_name').val(), gender: $('#vra_gender').val(), dob: $('#vra_dob').val(), tob: $('#vra_tob').val(), pob: $('#vra_pob').val(), lat: $('#vra_lat').val(), lng: $('#vra_lng').val(), lang: $('#vra_lang').val(), question: q }; $.post(ajaxUrl, data, function(res) { $('#vra_followup_btn').text('Send').prop('disabled', false); if(res.success) { appendMessage('Astrologer Raj Assistant', res.data.reply); questionCount++; if(questionCount >= maxFreeQuestions) { showPaywall(); } } else { appendMessage('Astrologer Raj Assistant', 'Error: ' + (res.data.message || 'Unable to connect.')); } }); }); function appendMessage(sender, text) { const isUser = sender === 'User'; const bubble = `
    ${sender}:
    ${text}
    `; $('#vra_chat_history').append(bubble); $('#vra_chat_history').scrollTop($('#vra_chat_history')[0].scrollHeight); } function showPaywall() { $('#vra_followup_container').hide(); const lang = $('#vra_lang').val(); const content = i18n[lang] || i18n['English']; $('#pw_heading').text(content.heading); $('#pw_subheading').text(content.sub); $('#pw_b1_title').text(content.b1); $('#pw_b2_title').text(content.b2); $('#pw_disclaimer').text(content.disc); $('#vra_paywall_box').fadeIn(); } });

    Ask your urgent life question and get an instant Vedic birth chart analysis and root-cause obstacle scan & prediction

    • ✔️ Instant D1 Kundli Generation: Birth chart planetary alignment mapping.
    • ✔️ Root-Cause Obstacle Finder: Identifies active Mahadasha/Antardasha/Pratyantardasha pressures and 6th, 8th, 12th house blocks.
    • ✔️ Single-Topic Clarity: Direct insights for Career, Marriage, Finance, or Life Direction.
    • 🎁 Free Access: First 2 questions are 100% free to get you started.

    Note: For deep divisional charts (D9 Navamsha/D10 Dashamsha / D30 /D60 / Other any divisional chart) or multi-year timelines or personalized Gemstone & Crystal remedies or any personalized remedies, please explore our Premium Consultation tiers.