Gramstore calculator /* Import Plus Jakarta Sans */ @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap'); body { font-family: 'Plus Jakarta Sans', sans-serif !important; background-color: #F8FAFC !important; color: #0F172A !important; margin: 0; padding: 0; } /* Tabs Navigation Menu */ .vl-menu { display: flex; gap: 12px; list-style: none; padding: 0; margin: 0 0 30px 0; border-bottom: 1px solid #E2E8F0; padding-bottom: 16px; flex-wrap: wrap; } .vl-menu li a { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; color: #64748B; background-color: #F1F5F9; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .vl-menu li a:hover { color: #4F46E5; background-color: #EEF2F6; transform: translateY(-1px); } /* Active Menu Tab Styling */ .vl-menu li.active-tab a { background-color: #4F46E5 !important; color: #FFFFFF !important; box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25); } /* Container */ .nw-container { max-width: 1200px; margin: 0 auto; padding: 24px; } h3 { font-size: 26px; font-weight: 800; color: #0F172A; margin-bottom: 24px; letter-spacing: -0.5px; } .nw-row { display: flex; gap: 32px; align-items: flex-start; } @media (max-width: 991px) { .nw-row { flex-direction: column; } .calc-div { width: 100% !important; position: static !important; } } /* Tables Section */ .table { flex: 1; display: flex; flex-direction: column; gap: 20px; } /* Accordion Header */ .table-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background-color: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 12px; cursor: pointer; transition: all 0.25s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); } .table-header:hover { border-color: #CBD5E1; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); } .table-header.active { border-color: #4F46E5; background-color: #FFFFFF; border-bottom-left-radius: 0; border-bottom-right-radius: 0; box-shadow: 0 4px 16px rgba(79, 70, 229, 0.04); } .th-left { display: flex; align-items: center; gap: 16px; } .th-left img { width: 32px; height: 32px; object-fit: contain; } .th-left h4 { margin: 0; font-size: 16px; font-weight: 700; color: #1E293B; } .head-total { font-size: 16px; font-weight: 700; color: #10B981; margin-right: 12px; } .arrpw-ico { display: inline-flex; align-items: center; justify-content: center; color: #64748B; transition: transform 0.25s ease; } .table-header.active .arrpw-ico { transform: rotate(180deg); color: #4F46E5; } /* Tables Styling */ table { width: 100%; border-collapse: collapse; background-color: #FFFFFF; border: 1px solid #E2E8F0; border-top: none; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; overflow: hidden; display: none; } .table-header.active + table { display: table; } th { background-color: #F8FAFC; color: #475569; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; padding: 14px 24px; border-bottom: 1px solid #E2E8F0; } td { padding: 16px 24px; border-bottom: 1px solid #F1F5F9; color: #334155; vertical-align: middle; } tr:last-child td { border-bottom: none; } tr:hover td { background-color: #F8FAFC; } .nw-title { font-size: 15px; font-weight: 700; color: #0F172A; margin: 0 0 4px 0; } td p:not(.nw-title) { margin: 0; font-size: 13px; color: #64748B; } /* Form Fields */ .form-field { width: 80px; padding: 8px 12px; border: 1.5px solid #CBD5E1; border-radius: 8px; font-family: inherit; font-weight: 600; color: #0F172A; background-color: #FFFFFF; transition: all 0.2s ease; text-align: center; } .form-field:focus { outline: none; border-color: #4F46E5; box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15); } .cal-val { font-weight: 700; color: #0F172A; } /* Calculator Summary Box */ .calc-div { width: 380px; position: sticky; top: 24px; } .calc-box { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); color: #FFFFFF; border-radius: 20px; padding: 32px; box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.3); border: 1px solid rgba(255, 255, 255, 0.08); } .calc-box-1, .calc-box-2 { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 24px; margin-bottom: 24px; } .calc-1 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; } .calc-1 small { font-size: 11px; font-weight: 600; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.5px; } .calc-1 p { margin: 4px 0 0 0; font-size: 22px; font-weight: 700; } .calc-1 div:nth-child(2) { font-size: 14px; font-weight: 700; color: #64748B; background: rgba(255, 255, 255, 0.05); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; } .calc-box img { display: none; } .calc-2 { display: flex; flex-direction: column; gap: 4px; } .calc-2 small { font-size: 11px; font-weight: 600; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.5px; } .calc-2 p { margin: 0; font-size: 28px; font-weight: 800; color: #10B981; } /* Commission fields */ .commission-field { width: 70px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); color: #FFFFFF; padding: 6px; } .commission-field:focus { border-color: #10B981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25); } .cal-com { color: #FFFFFF; } .cal-com-total p { color: #6366F1; } /* Grand Total Box */ .calc-box-3 { text-align: center; background: rgba(255, 255, 255, 0.03); border-radius: 12px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.05); } .calc-box-3 h3 { font-size: 13px; font-weight: 700; color: #94A3B8; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; } .grand-total { margin: 0; font-size: 36px; font-weight: 900; color: #10B981; text-shadow: 0 0 20px rgba(16, 185, 129, 0.2); } @media (max-width: 767px) { .dt-row { display: none !important; } .dt-none { display: table-row !important; } .dt-none th { font-size: 12px; color: #64748B; text-align: center; background-color: #F8FAFC; } table, tbody, tr, td { display: block; width: 100%; } tr { border-bottom: 1px solid #E2E8F0; padding: 16px 0; } tr:last-child { border-bottom: none; } td { border: none; padding: 8px 24px; text-align: center; } .form-field { margin: 8px auto 0 auto; } }

ASSOCIATE INCOME CALCULATOR

Neo Banking Services

Neo Banking Services

Neo Banking Services No. of Daily Transactions Transactions
Neo Banking Services
No. of Daily Transactions
Transactions

Bank Account Opening

Avg transaction of *

32

Cash Deposit

Avg transaction of 100-2500

4

Cash withdrawal

Avg transaction of 100-2500

0.4

Money Transfer - Banking

Avg transaction of 2000-2500

4

Micro ATM Services - Card swiping

Avg transaction of 3000-4000

8

AEPS (Aadhar Enabled Payment System)

Avg transaction of 2500-3000

7.2

Domestic Money Transfer - Using AEPS

Avg transaction of 2000-3000

8
BBPS

BBPS

<!-- -->
BBPS No. of Daily Transactions Transactions
BBPS
No. of Daily Transactions
Transactions

Electricity

Avg transaction of 500

1.4

Gas/LPG

Avg transaction of 1000

2.8

Water

Avg transaction of 500

1.4

Broadband

Avg transaction of 2000-2500

5

Fastag

Avg transaction of 500

1.4

EMI Collection

Avg transaction of 2000

5.6
DTH Recharge

Recharge Services
(DTH)

Recharge Services
(DTH)
No. of Daily Transactions Transactions
Recharge Services (DTH)
No. of Daily Transactions
Transactions

Airtel Digital TV

Avg transaction of 259

6.216

Dish TV

Avg transaction of 211

6.32

Reliance Digital Big TV

Avg transaction of 398

9.52

Sun Direct

Avg transaction of 189

5.6

Tata Sky (Tata Play)

Avg transaction of 334

10
Mobile Phone Recharge

Recharge Services
(Mobile Phone Recharge)

Recharge Services
(Mobile Phone Recharge)
No. of Daily Transactions Transactions
Recharge Services (Mobile Phone Recharge)
No. of Daily Transactions
Transactions

Airtel

Avg transaction of 299

7.176

Jio

Avg transaction of 249

5.976

BSNL

Avg transaction of 108

3.456
INSURANCE

INSURANCE

INSURANCE No. of Weekly Transactions Transactions
INSURANCE
No. of Weekly Transactions
Transactions

Two wheeler

Avg transaction of 1500

84

Four wheeler

Avg transaction of 7000

336

Commercial vechicle

Avg transaction of 8000

320

Health Insurance

Avg transaction of 1000

160

Life insurance Traditional policy

Avg transaction of 1000

200

Non traditional policy

Avg transaction of 1000

80
TRAVEL SERVICES

TRAVEL SERVICES

TRAVEL SERVICES No. of Weekly Transactions Transactions
TRAVEL SERVICES
No. of Weekly Transactions
Transactions

Bus

Avg transaction of 500

20

Train

Avg transaction of 500

20

Hotel

Avg transaction of 1000

40
E- GOVERNANCE

E- GOVERNANCE

E- GOVERNANCE No. of Daily Transactions Transactions
E- GOVERNANCE
No. of Daily Transactions
Transactions

Adhaar card services

Avg transaction of 1

60

PAN Card Services

Avg transaction of 1

80

GST Application

Avg transaction of 1

200
Income per day

X
No. of days

30

Total Income

<!--

Gowri

But effective testimonials go beyond a simple quote that proclaims your greatness.

Vikram

But effective testimonials go beyond a simple quote that proclaims your greatness.

Raj

But effective testimonials go beyond a simple quote that proclaims your greatness.

-->

Get a clear path to your  goals

Company

Gram Store 2024. All Rights Reserved.

Gram Store form