Limited slots · Book now

Let's talk about
what matters.

Deep 1:1 sessions on life, philosophy, creativity & filmmaking. Real conversations. No fluff.

Sessions done
45 min
Deep dive
4
Topics
Avg rating
1
Pick your topic
Choose from 4 session themes.
2
Pick a slot
Booked slots are greyed out automatically.
3
Pay & get a Meet link
Razorpay → instant email confirmation.
What people say
Reviews
Loading reviews...
Loading...
Had a session? Leave a review
Your feedback helps others decide.
Before we talk
A few honest questions first.
I read every single one of these myself. Answer like no one's watching — that's how I know it's worth both our time.
Already applied? Check your status →

Got it. Reviewing now.

I personally read every application. If it feels right, I'll approve you and you can come back here to pick a time. No bots, no auto-approval — just me.

Check back in a day or two — or come straight here:
🔎

Check your status

Enter the email you applied with.

Step 1 of 3
What do you want to talk about?
🔥
Life Hustle & Passion
Clarity on purpose, drive, and building something that truly matters.
Mindset
🕉️
Gita Concepts & Karma
Deep dive into dharma, karma, detachment, and ancient wisdom today.
Philosophy
✍️
Content Creation
Strategy, storytelling, and finding your authentic voice online.
Creator
🎬
Filmmaking
Cinematography, storytelling, production — from idea to finished frame.
Visual Art
Step 2 of 3
Pick a date & time
Only open slots are shown. Booked ones are crossed out.
Select date
Available time slots
← Pick a date
Step 3 of 3
Your details & payment
1:1 Session fee
45 min · Google Meet
₹999
one-time
🔒 Secured by Razorpay · 100% safe

You're all set! 🎉

Payment confirmed. Check your email for the Google Meet link.

🔐

Admin access

Enter your password to manage bookings and settings.


Wrong password. Try again.

Dashboard

Total bookings
Revenue
Reviews
Avg rating
Loading applications...
Loading bookings from Google Sheets...
Loading reviews...
Days of the week
Time window
Session price (₹)
Amount charged via Razorpay
Duration (minutes)
Shown on booking form
Your name
Shown in nav and page title
Razorpay key ID
From Razorpay dashboard → API Keys
Google Sheets Script URL
Paste your Apps Script web app URL
Accept bookings
Toggle off to pause new bookings
📌 One-time setup — takes ~10 minutes Follow these steps once. After this, every booking and review saves automatically to your Google Sheet and you can see it anytime.
Step 1 — Create a Google Sheet
Go to sheets.google.com → create a new sheet. Name it "Session Bookings". Make two tabs: Bookings and Reviews.
Step 2 — Open Apps Script
In your Sheet → Extensions → Apps Script. Delete any existing code. Paste this entire script:
function doPost(e) { const data = JSON.parse(e.postData.contents); const ss = SpreadsheetApp.getActiveSpreadsheet(); if (data.type === 'booking') { const sheet = ss.getSheetByName('Bookings'); if (sheet.getLastRow() === 0) { sheet.appendRow(['Timestamp','Name','Email','Phone', 'Theme','Date','Time','Payment ID','Amount','Notes']); } sheet.appendRow([ new Date().toLocaleString('en-IN'), data.name, data.email, data.phone || '', data.theme, data.date, data.time, data.paymentId, data.amount, data.notes || '' ]); } if (data.type === 'review') { const sheet = ss.getSheetByName('Reviews'); if (sheet.getLastRow() === 0) { sheet.appendRow(['Timestamp','Name','Topic','Stars','Review','Approved']); } sheet.appendRow([ new Date().toLocaleString('en-IN'), data.name, data.topic, data.stars, data.review, 'yes' ]); } return ContentService .createTextOutput(JSON.stringify({status:'ok'})) .setMimeType(ContentService.MimeType.JSON); } function doGet(e) { const ss = SpreadsheetApp.getActiveSpreadsheet(); const type = e.parameter.type; if (type === 'bookings') { const sheet = ss.getSheetByName('Bookings'); const rows = sheet.getDataRange().getValues(); return ContentService .createTextOutput(JSON.stringify(rows)) .setMimeType(ContentService.MimeType.JSON); } if (type === 'reviews') { const sheet = ss.getSheetByName('Reviews'); const rows = sheet.getDataRange().getValues(); return ContentService .createTextOutput(JSON.stringify(rows)) .setMimeType(ContentService.MimeType.JSON); } if (type === 'booked_slots') { const sheet = ss.getSheetByName('Bookings'); const rows = sheet.getDataRange().getValues().slice(1); const slots = rows.map(r => r[5] + '|' + r[6]); return ContentService .createTextOutput(JSON.stringify(slots)) .setMimeType(ContentService.MimeType.JSON); } }
Step 3 — Deploy as web app
Click Deploy → New deployment
Type: Web app
Execute as: Me
Who has access: Anyone
Click Deploy → copy the URL shown
Step 4 — Paste URL here
Go to the Settings tab above → paste the URL into "Google Sheets Script URL" → Save. That's it! Every booking and review will now appear in your Google Sheet live.