html { scroll-behavior: smooth; }
body { background: var(—bg); color: var(—ink); font-family: var(—body); font-size: 17px; line-height: 1.8; -webkit-font-smoothing: antialiased; }
/* ── HEADER ── */ .site-header { background: var(—surface); border-bottom: 1px solid var(—border); padding: 0 2rem; position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; height: 56px; } .site-header .logo { font-family: var(—sans); font-size: 14px; font-weight: 600; color: var(—accent); letter-spacing: 0.04em; text-decoration: none; } .header-meta { font-family: var(—sans); font-size: 12px; color: var(—ink-muted); }
/* ── LAYOUT ── */ .page-wrap { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
/* ── SIDEBAR TOC ── */ .toc { position: sticky; top: 72px; padding: 1.5rem 0; } .toc-title { font-family: var(—sans); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(—ink-muted); margin-bottom: 1rem; } .toc ol { list-style: none; padding: 0; } .toc ol li { margin-bottom: 2px; } .toc ol li a { font-family: var(—sans); font-size: 13px; color: var(—ink-soft); text-decoration: none; display: block; padding: 5px 10px; border-radius: 6px; border-left: 2px solid transparent; transition: all 0.15s ease; line-height: 1.4; } .toc ol li a:hover { color: var(—accent); border-left-color: var(—accent); background: var(—accent-light); }
/* ── ARTICLE ── */ .article { padding: 3rem 0 5rem; min-width: 0; }
/* Hero */ .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(—sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(—accent); background: var(—accent-light); padding: 5px 14px; border-radius: 20px; margin-bottom: 1.5rem; } .hero-title { font-family: var(—serif); font-size: clamp(34px, 5vw, 52px); font-weight: 900; line-height: 1.1; color: var(—ink); margin-bottom: 1rem; letter-spacing: -0.02em; } .hero-title em { font-style: italic; color: var(—accent); } .hero-sub { font-size: 19px; color: var(—ink-soft); font-weight: 300; font-style: italic; margin-bottom: 1rem; line-height: 1.5; } .hero-meta { font-family: var(—sans); font-size: 13px; color: var(—ink-muted); display: flex; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid var(—border); margin-bottom: 3rem; } .hero-meta span::before { content: ”· ”; } .hero-meta span:first-child::before { content: ""; }
/* Sections */ .section { margin-bottom: 3.5rem; }
.section-label { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.75rem; } .section-num { font-family: var(—serif); font-size: 13px; font-weight: 700; color: var(—accent-mid); min-width: 28px; } .section-title { font-family: var(—serif); font-size: 28px; font-weight: 700; color: var(—ink); line-height: 1.2; padding-bottom: 0.6rem; border-bottom: 2px solid var(—accent-light); }
h3 { font-family: var(—sans); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(—ink-muted); margin: 1.75rem 0 0.6rem; }
p { margin-bottom: 1rem; color: var(—ink-soft); } p strong { color: var(—ink); font-weight: 600; }
/* Callouts */ .callout { border-left: 3px solid var(—info-border); background: var(—info-bg); padding: 1rem 1.25rem; border-radius: 0 8px 8px 0; margin: 1.25rem 0; font-size: 15px; color: var(—ink-soft); line-height: 1.7; } .callout.warn { border-left-color: var(—warn-border); background: var(—warn-bg); } .callout.success { border-left-color: var(—success-border); background: var(—success-bg); } .callout strong { color: var(—ink); }
/* Tables */ .table-wrap { overflow-x: auto; margin: 1.25rem 0 1.75rem; border-radius: 10px; border: 1px solid var(—border); } table { width: 100%; border-collapse: collapse; font-family: var(—sans); font-size: 14px; } thead tr { background: var(—accent-light); } th { padding: 11px 14px; text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(—accent); white-space: nowrap; } td { padding: 11px 14px; border-top: 1px solid var(—border); color: var(—ink-soft); line-height: 1.5; } tbody tr:hover { background: #f8f8fc; } .nil { color: #27ae60; font-weight: 600; } .amount { font-weight: 600; color: var(—ink); }
/* Lists */ ul.styled { list-style: none; padding: 0; margin: 0.75rem 0 1.25rem; } ul.styled li { padding: 6px 0 6px 28px; position: relative; color: var(—ink-soft); font-size: 16px; border-bottom: 1px solid #f0f0f5; line-height: 1.6; } ul.styled li:last-child { border-bottom: none; } ul.styled li::before { content: ”→”; position: absolute; left: 0; color: var(—accent-mid); font-weight: 600; font-family: var(—sans); } ul.styled li strong { color: var(—ink); font-weight: 600; }
/* Two column cards */ .card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0; } .card { background: var(—surface); border: 1px solid var(—border); border-radius: 12px; padding: 1.25rem; } .card-type { font-family: var(—sans); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem; } .card-type.blue { color: var(—accent); } .card-type.green { color: #27ae60; } .card h4 { font-family: var(—serif); font-size: 20px; font-weight: 700; color: var(—ink); margin-bottom: 0.5rem; } .card p { font-family: var(—sans); font-size: 13px; margin-bottom: 0.4rem; color: var(—ink-muted); line-height: 1.5; } .card p strong { color: var(—ink-soft); } .card .tagline { font-style: italic; font-family: var(—body); font-size: 14px; color: var(—ink-muted); margin-top: 0.5rem; }
/* Stat blocks */ .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.25rem 0; } .stat-block { background: var(—surface); border: 1px solid var(—border); border-radius: 10px; padding: 1rem 1.25rem; text-align: center; } .stat-label { font-family: var(—sans); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(—ink-muted); margin-bottom: 0.25rem; } .stat-value { font-family: var(—serif); font-size: 30px; font-weight: 900; color: var(—warn-border); line-height: 1.1; } .stat-desc { font-family: var(—sans); font-size: 12px; color: var(—ink-muted); margin-top: 0.25rem; }
/* FAQ */ .faq-item { border-bottom: 1px solid var(—border); padding: 0; } .faq-item:last-child { border-bottom: none; } .faq-q { width: 100%; background: none; border: none; text-align: left; cursor: pointer; padding: 1.1rem 0; font-family: var(—sans); font-size: 15px; font-weight: 500; color: var(—ink); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; } .faq-q:hover { color: var(—accent); } .faq-num { font-family: var(—serif); font-size: 14px; font-weight: 700; color: var(—accent); min-width: 22px; margin-top: 1px; } .faq-chevron { margin-left: auto; font-size: 18px; color: var(—ink-muted); transition: transform 0.2s ease; flex-shrink: 0; } .faq-item.open .faq-chevron { transform: rotate(180deg); } .faq-a { display: none; padding: 0 0 1.25rem 32px; font-family: var(—sans); font-size: 14px; color: var(—ink-muted); line-height: 1.7; } .faq-item.open .faq-a { display: block; }
/* Disclaimer */ .disclaimer { background: var(—surface); border: 1px solid var(—border); border-radius: 10px; padding: 1.25rem 1.5rem; text-align: center; font-family: var(—sans); font-size: 13px; color: var(—ink-muted); margin-top: 3rem; line-height: 1.7; }
/* Summary box */ .summary-box { background: var(—accent); color: #fff; border-radius: 12px; padding: 1.5rem 1.75rem; margin: 2rem 0; } .summary-box h4 { font-family: var(—sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-bottom: 0.75rem; } .summary-box p { color: rgba(255,255,255,0.92); font-size: 15px; margin: 0; line-height: 1.75; } .summary-box strong { color: #fff; }
/* Responsive */ @media (max-width: 860px) { .page-wrap { grid-template-columns: 1fr; } .toc { display: none; } .card-grid { grid-template-columns: 1fr; } .stat-grid { grid-template-columns: 1fr 1fr; } .article { padding: 2rem 0 4rem; } } @media (max-width: 500px) { .stat-grid { grid-template-columns: 1fr; } body { font-size: 16px; } .hero-title { font-size: 30px; } }
/* Scroll reveal animation */ .section { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; } .section.visible { opacity: 1; transform: none; }
<!-- HERO -->
<div class="section visible">
<div class="hero-eyebrow">Gujarat Tax Guide · FY 2025–26</div>
<h1 class="hero-title">Professional Tax<br/>in <em>Gujarat</em></h1>
<p class="hero-sub">Everything businesses, employers, and professionals need to know — in plain language.</p>
<div class="hero-meta">
<span>Updated for FY 2025–26</span>
<span>PTEC & PTRC covered</span>
<span>Slabs, penalties & FAQs</span>
<span>~8 min read</span>
</div>
</div>
<!-- S1 -->
<div class="section" id="s1">
<div class="section-label">
<span class="section-num">01</span>
<h2 class="section-title">What is Professional Tax?</h2>
</div>
<p>Professional Tax (PT) is a state-level tax levied by the Government of Gujarat on individuals and entities engaged in any profession, trade, calling, or employment. It is governed by the <strong>Gujarat Panchayats, Municipalities, Municipal Corporations and State Tax on Professions, Trades, Callings and Employments Act, 1976.</strong></p>
<p>Simply put: if you earn money in Gujarat — whether as a salaried employee, a freelancer, a business owner, or a company — the state expects a small annual contribution. <strong>The maximum anyone pays is ₹2,500 per year.</strong> It is not optional.</p>
<div class="callout">
Professional Tax is collected by <strong>Designated Authorities</strong> — Municipal Corporations, Municipalities, or Panchayats — depending on where your place of business is located. The State appoints a <strong>Commissioner of Profession Tax</strong> for overall enforcement.
</div>
</div>
<!-- S2 -->
<div class="section" id="s2">
<div class="section-label">
<span class="section-num">02</span>
<h2 class="section-title">Two Types of Registration</h2>
</div>
<p>Gujarat Professional Tax has two distinct registrations. Most businesses need both.</p>
<div class="card-grid">
<div class="card">
<div class="card-type blue">PTEC</div>
<h4>Enrolment Certificate</h4>
<p><strong>Section 5(2)</strong> of the Act</p>
<p>For <strong>your business entity itself</strong> — paid on your own profession, trade, or business.</p>
<p class="tagline">"The entity's own tax."</p>
</div>
<div class="card">
<div class="card-type green">PTRC</div>
<h4>Registration Certificate</h4>
<p><strong>Section 5(1)</strong> of the Act</p>
<p>For <strong>employers who have employees</strong> — to deduct and remit tax on behalf of staff.</p>
<p class="tagline">"The employer's deduction duty."</p>
</div>
</div>
<div class="callout warn">
<strong>⚠ Common Mistake:</strong> Many businesses think having PTRC (employee deductions) covers everything. It doesn't. Your business entity also needs its own PTEC. Both can — and often do — apply simultaneously.
</div>
</div>
<!-- S3 -->
<div class="section" id="s3">
<div class="section-label">
<span class="section-num">03</span>
<h2 class="section-title">PTEC — Explained in Detail</h2>
</div>
<h3>Who Needs PTEC?</h3>
<ul class="styled">
<li>Doctors, lawyers, Chartered Accountants, architects, engineers, IT consultants, agents, tutors</li>
<li>Private Limited Companies, Public Limited Companies, Banking Companies</li>
<li>Partnership Firms, Co-operative Societies, Clubs, Associations</li>
<li>Contractors, brokers, tour operators, courier services, marriage halls, advertising agencies</li>
<li>Any GST-registered dealer with annual turnover above ₹5 lakh</li>
<li>Any employer having more than 5 employees on an average per day</li>
</ul>
<h3>Govt Fees — PTEC Slab Rates</h3>
<div class="table-wrap">
<table>
<thead><tr><th>Category</th><th>Annual Tax</th></tr></thead>
<tbody>
<tr><td>Professionals (Doctors, CAs, Lawyers, Engineers, Consultants, Agents)</td><td class="amount">₹1,000</td></tr>
<tr><td>Companies (Pvt Ltd, Ltd, Banking), Firms, Societies, Clubs</td><td class="amount">₹1,000</td></tr>
<tr><td>Specific Businesses (Contractors, Brokers, Tour Operators, Courier, etc.)</td><td class="amount">₹1,000</td></tr>
<tr><td>Employers with more than 5 employees/day (average)</td><td class="amount">₹1,000</td></tr>
<tr><td>GST Dealer: Turnover up to ₹5,00,000</td><td class="nil">Nil</td></tr>
<tr><td>GST Dealer: Turnover ₹5L–₹10L (GST Registered)</td><td class="amount">₹1,250</td></tr>
<tr><td>GST Dealer: Turnover above ₹10,00,000</td><td class="amount">₹2,400</td></tr>
</tbody>
</table>
</div>
<div class="callout">
<strong>Multiple Entries Rule:</strong> If you fall under more than one category (e.g., a CA who is also a GST dealer with ₹12L turnover), you pay only the <strong>highest applicable rate</strong> — ₹2,400 in this example, not the sum.
</div>
<div class="callout warn">
<strong>⚠ Branch Rule:</strong> Every branch of a firm or company is deemed a <strong>separate assessee</strong>. A company with 3 branches in Gujarat must obtain 3 separate PTECs and pay 3 times. One certificate does not cover the whole state.
</div>
</div>
<!-- S4 -->
<div class="section" id="s4">
<div class="section-label">
<span class="section-num">04</span>
<h2 class="section-title">PTEC Payment Due Dates</h2>
</div>
<p>PTEC is a simple annual payment — no monthly returns, no complex compliance. The rules are straightforward:</p>
<div class="table-wrap">
<table>
<thead><tr><th>Enrolment Date</th><th>Payment Due</th></tr></thead>
<tbody>
<tr><td>Enrolled on or before August 31st</td><td class="amount">September 30th of that year</td></tr>
<tr><td>Enrolled after August 31st</td><td class="amount">Within one month of enrolment</td></tr>
<tr><td>Subsequent years (every year)</td><td class="amount">September 30th every year</td></tr>
</tbody>
</table>
</div>
<div class="callout warn">
<strong>⚠ Important:</strong> PTEC is charged for the <strong>full year</strong> even if you started your business mid-year. There is no pro-rata for enrolled persons (Entries 2 to 10 of the schedule). Pay it in full regardless of when you enrolled.
</div>
</div>
<!-- S5 -->
<div class="section" id="s5">
<div class="section-label">
<span class="section-num">05</span>
<h2 class="section-title">Late Registration Penalty</h2>
</div>
<p>Registration must be completed within <strong>60 days</strong> from the date you become liable. Miss this window and the penalty clock starts immediately.</p>
<div class="stat-grid">
<div class="stat-block">
<div class="stat-label">PTRC — Employers</div>
<div class="stat-value">₹20</div>
<div class="stat-desc">per day of delay</div>
</div>
<div class="stat-block">
<div class="stat-label">PTEC — Professionals</div>
<div class="stat-value">₹10</div>
<div class="stat-desc">per day of delay</div>
</div>
<div class="stat-block">
<div class="stat-label">False Information</div>
<div class="stat-value">₹1K</div>
<div class="stat-desc">flat penalty</div>
</div>
</div>
<p style="font-family:var(--sans);font-size:14px;color:var(--ink-muted);"><strong>Example:</strong> An employer who forgets to register for 180 days faces ₹20 × 180 = <strong>₹3,600</strong> in late registration penalty alone — before any tax or interest.</p>
</div>
<!-- S6 -->
<div class="section" id="s6">
<div class="section-label">
<span class="section-num">06</span>
<h2 class="section-title">Registered but Not Paid?</h2>
</div>
<p>Getting enrolled is only step one. If you enrol but fail to pay the annual tax by the due date, the consequences stack up quickly:</p>
<ul class="styled">
<li><strong>Interest:</strong> 1.5% per month (simple) on the unpaid amount from the due date — Section 9(1)</li>
<li><strong>Penalty:</strong> Up to 50% of the unpaid tax amount — Section 10</li>
<li><strong>Best Judgement Assessment:</strong> The authority estimates your liability under Section 7/7A and raises a demand without your input</li>
<li><strong>15-day deadline:</strong> You have only 15 days to pay post-demand notice</li>
<li><strong>Land Revenue Recovery:</strong> Arrears recovered under Section 11 using coercive state methods</li>
</ul>
<div class="callout warn">
<strong>Section 17 — Special Recovery:</strong> The Commissioner can directly freeze and recover funds from your bank, debtors, or any third party holding money on your behalf — <strong>without going to court first.</strong>
</div>
</div>
<!-- S7 -->
<div class="section" id="s7">
<div class="section-label">
<span class="section-num">07</span>
<h2 class="section-title">PTRC — Defined</h2>
</div>
<p>PTRC (Professional Tax Registration Certificate) is the mechanism by which employers collect Professional Tax from their employees' salaries and deposit it with the government. <strong>The employer acts as a collecting agent of the state.</strong></p>
<p>The relevant form is <strong>Form 1</strong> for registration, and the certificate issued is in <strong>Form 2</strong>. Tax is deposited using <strong>Form 10</strong> (Treasury Challan). Monthly returns are filed using <strong>Form 5</strong>.</p>
</div>
<!-- S8 -->
<div class="section" id="s8">
<div class="section-label">
<span class="section-num">08</span>
<h2 class="section-title">Who Needs PTRC & How Much?</h2>
</div>
<h3>Who Needs It?</h3>
<p>Any employer (other than a government officer) who pays a regular salary or wage to employees exceeding <strong>₹12,000 per month</strong> must obtain PTRC and deduct Professional Tax.</p>
<div class="callout success">
<strong>Salary definition includes:</strong> Basic pay, dearness allowance, perquisites, and profits in lieu of salary (as per Section 17 of the Income Tax Act). It <strong>excludes</strong> bonus and gratuity.
</div>
<h3>PTRC Slab — How Much to Deduct?</h3>
<div class="table-wrap">
<table>
<thead><tr><th>Monthly Salary</th><th>Tax Deduction</th></tr></thead>
<tbody>
<tr><td>Up to ₹12,000 per month</td><td class="nil">Nil — No deduction</td></tr>
<tr><td>More than ₹12,000 per month</td><td class="amount">₹200 per month</td></tr>
</tbody>
</table>
</div>
<p style="font-family:var(--sans);font-size:14px;color:var(--ink-muted);">Maximum annual deduction per employee: ₹200 × 12 = <strong>₹2,400</strong>. (Statutory cap under Section 3(2) is ₹2,500/year per person.)</p>
<div class="callout warn">
<strong>⚠ Critical:</strong> If you forget to deduct but pay the salary, the obligation does not vanish. <em>You, the employer, remain personally liable</em> to pay the tax plus 1.5% monthly interest plus up to 50% penalty — even if you never recovered it from the employee (Section 4).
</div>
</div>
<!-- S9 -->
<div class="section" id="s9">
<div class="section-label">
<span class="section-num">09</span>
<h2 class="section-title">Return Filing Info</h2>
</div>
<h3>Standard Monthly Filing (Default)</h3>
<ul class="styled">
<li>File <strong>Form 5</strong> (Monthly Return) and deposit tax within <strong>15 days</strong> of the end of the previous month</li>
<li>Example: For April salaries, return + payment due by <strong>May 15th</strong></li>
</ul>
<h3>Annual Return Option — 20 or Fewer Employees</h3>
<ul class="styled">
<li>Apply for permission using <strong>Form 5B</strong></li>
<li>File Annual Return in <strong>Form 5AA</strong> by <strong>April 15th</strong></li>
<li>Tax must still be paid <strong>quarterly</strong> — within 15 days of each quarter ending</li>
</ul>
<div class="table-wrap">
<table>
<thead><tr><th>Quarter</th><th>Months Covered</th><th>Tax Payment Due</th></tr></thead>
<tbody>
<tr><td>Q1</td><td>April – June</td><td class="amount">July 15</td></tr>
<tr><td>Q2</td><td>July – September</td><td class="amount">October 15</td></tr>
<tr><td>Q3</td><td>October – December</td><td class="amount">January 15</td></tr>
<tr><td>Q4</td><td>January – March</td><td class="amount">April 15</td></tr>
</tbody>
</table>
</div>
</div>
<!-- S10 -->
<div class="section" id="s10">
<div class="section-label">
<span class="section-num">10</span>
<h2 class="section-title">Interest & Penalty</h2>
</div>
<div class="table-wrap">
<table>
<thead><tr><th>Situation</th><th>Consequence</th><th>Legal Section</th></tr></thead>
<tbody>
<tr><td>Late registration — Employer</td><td class="amount">₹20/day of delay</td><td>Sec 5(5)</td></tr>
<tr><td>Late registration — Professional</td><td class="amount">₹10/day of delay</td><td>Sec 5(5)</td></tr>
<tr><td>Late return filing</td><td class="amount">₹10/day of delay</td><td>Sec 6(3)</td></tr>
<tr><td>Late / non-payment of tax</td><td class="amount">Up to 50% of tax due</td><td>Sec 10</td></tr>
<tr><td>Interest on unpaid tax</td><td class="amount">1.5% per month (simple)</td><td>Sec 9(1)</td></tr>
<tr><td>False information in forms</td><td class="amount">₹1,000 flat</td><td>Sec 5(5)</td></tr>
</tbody>
</table>
</div>
</div>
<!-- S11 -->
<div class="section" id="s11">
<div class="section-label">
<span class="section-num">11</span>
<h2 class="section-title">Documents Required</h2>
</div>
<ul class="styled">
<li>Name and complete address of the applicant or entity</li>
<li>Legal status (Proprietor, Partner, Director, etc.)</li>
<li>GST / VAT Registration Number and Certificate</li>
<li>PAN of the entity / individual</li>
<li>Addresses of all branches in Gujarat (each needs its own registration)</li>
<li>Details of employees and their salary ranges (for PTRC)</li>
<li>Date of commencement of business or date liability arose</li>
<li>Bank account details for challan payments</li>
</ul>
</div>
<!-- S12 -->
<div class="section" id="s12">
<div class="section-label">
<span class="section-num">12</span>
<h2 class="section-title">Consequences of Not Registering</h2>
</div>
<p>Ignoring Professional Tax is not a viable strategy. Here is the escalation path:</p>
<ul class="styled">
<li>Immediate daily penalty from <strong>Day 61</strong> onwards (₹10–₹20 per day)</li>
<li>Notice under <strong>Section 7(2)(a)</strong> in Form 6 or Form 8 for failure to file</li>
<li><strong>Best Judgement Assessment</strong> — authority estimates and raises a demand without your input</li>
<li>Only <strong>15 days</strong> to comply post-demand; failure leads to coercive recovery</li>
<li>Arrears recovered as <strong>Arrears of Land Revenue</strong> (Sec 11)</li>
<li><strong>Section 17 Bank Freeze:</strong> Commissioner can recover dues directly from your bank without court involvement</li>
</ul>
<div class="callout warn">
<strong>Real Cost Example:</strong> A ₹2,400 PTEC ignored for 2 years = ₹2,400 tax + ₹864 interest + up to ₹1,200 penalty + ~₹7,300 late registration penalty. <strong>A ₹2,400 liability can become ₹11,000+ very quickly.</strong>
</div>
</div>
<!-- S13 -->
<div class="section" id="s13">
<div class="section-label">
<span class="section-num">13</span>
<h2 class="section-title">Exemptions</h2>
</div>
<div class="table-wrap">
<table>
<thead><tr><th>Category</th><th>Exemption</th></tr></thead>
<tbody>
<tr><td>Salaried employees earning ≤ ₹12,000/month</td><td class="nil">Nil tax — no deduction</td></tr>
<tr><td>Members of Armed Forces (Army, Navy, Air Force)</td><td class="nil">Fully Exempt</td></tr>
<tr><td>Persons with disabilities (physically disabled)</td><td class="nil">Fully Exempt</td></tr>
<tr><td>GST Dealers with turnover ≤ ₹5,00,000/year</td><td class="nil">Nil rate</td></tr>
<tr><td>Casual wage earners</td><td class="nil">Not "Employees" — excluded</td></tr>
<tr><td>Salary paid for a partial month</td><td>Tax reduced proportionally</td></tr>
</tbody>
</table>
</div>
</div>
<!-- S14 FAQs -->
<div class="section" id="s14">
<div class="section-label">
<span class="section-num">14</span>
<h2 class="section-title">Frequently Asked Questions</h2>
</div>
<div class="faq-list">
<div class="faq-item">
<button class="faq-q" onclick="toggleFaq(this)">
<span class="faq-num">Q1</span>
If I start a business in January, do I pay PTEC for the full year or only 3 months?
<span class="faq-chevron">›</span>
</button>
<div class="faq-a">You pay for the full year. PTEC liability is not pro-rated. Enrolled persons under Schedule Entries 2–10 owe the full annual amount regardless of when in the year they began. Since January is after August 31st, payment is due within one month of enrolment.</div>
</div>
<div class="faq-item">
<button class="faq-q" onclick="toggleFaq(this)">
<span class="faq-num">Q2</span>
My company has offices in Ahmedabad and Surat. Do I need two PTECs?
<span class="faq-chevron">›</span>
</button>
<div class="faq-a">Yes, absolutely. Every branch is deemed a separate assessee under the Act. You need a PTEC for each location, registered with the respective local designated authority. The same rule applies to PTRC.</div>
</div>
<div class="faq-item">
<button class="faq-q" onclick="toggleFaq(this)">
<span class="faq-num">Q3</span>
I am a Director of a company. Do I personally need PTEC?
<span class="faq-chevron">›</span>
</button>
<div class="faq-a">Generally yes, if you are functioning in a professional/executive capacity. If the company pays you a salary above ₹12,000/month (including perquisites), the company must also deduct ₹200/month as PTRC. The company itself separately owes PTEC of ₹1,000/year.</div>
</div>
<div class="faq-item">
<button class="faq-q" onclick="toggleFaq(this)">
<span class="faq-num">Q4</span>
My employee works two jobs. Which employer deducts PTRC?
<span class="faq-chevron">›</span>
</button>
<div class="faq-a">The employee must submit Form 4A to inform one employer of tax being deducted by the other. Without this, both employers may independently deduct — leading to double payment. The responsibility to submit Form 4A rests with the employee.</div>
</div>
<div class="faq-item">
<button class="faq-q" onclick="toggleFaq(this)">
<span class="faq-num">Q5</span>
I forgot to deduct PT from an employee's salary. Can I recover it next month?
<span class="faq-chevron">›</span>
</button>
<div class="faq-a">You can correct deductions going forward, but the obligation to deposit was not extinguished. Interest at 1.5% per month has already started accruing. Deposit the arrears with interest as soon as possible to limit further penalty exposure.</div>
</div>
<div class="faq-item">
<button class="faq-q" onclick="toggleFaq(this)">
<span class="faq-num">Q6</span>
Is Professional Tax deductible as a business expense?
<span class="faq-chevron">›</span>
</button>
<div class="faq-a">Yes. PTEC paid by a business is an allowable deduction under business expenses. For employees, PT deducted from salary is deductible under Section 16(iii) of the Income Tax Act when computing taxable salary income.</div>
</div>
<div class="faq-item">
<button class="faq-q" onclick="toggleFaq(this)">
<span class="faq-num">Q7</span>
I'm a freelance IT consultant with no employees and GST turnover of ₹8L. What do I owe?
<span class="faq-chevron">›</span>
</button>
<div class="faq-a">You need PTEC under two entries: as a Professional Consultant (₹1,000/yr) and as a GST Dealer with turnover ₹5L–₹10L (₹1,250/yr). Since you fall under multiple entries, you pay only the higher rate — ₹1,250/year. No PTRC is needed as you have no employees.</div>
</div>
<div class="faq-item">
<button class="faq-q" onclick="toggleFaq(this)">
<span class="faq-num">Q8</span>
What is Form 5B and when should I file it?
<span class="faq-chevron">›</span>
</button>
<div class="faq-a">Form 5B is an application seeking permission to file an Annual Return (Form 5AA) instead of monthly returns. It is available only to employers with 20 or fewer employees. File it at the start of the year or at registration. Even with this permission, quarterly tax payments are still mandatory.</div>
</div>
</div>
</div>
<!-- SUMMARY BOX -->
<div class="section visible">
<div class="summary-box">
<h4>Quick Compliance Recap</h4>
<p><strong>Register within 60 days</strong> of commencement · <strong>Pay PTEC by Sept 30</strong> each year · Deduct <strong>₹200/month</strong> from employees earning >₹12K · File PTRC returns by the <strong>15th of each month</strong> · Each branch needs <strong>its own registration</strong> · Ignoring it costs far more than complying.</p>
</div>
</div>
<!-- DISCLAIMER -->
<div class="disclaimer">
This guide is for informational purposes only and is based on the Gujarat Professions Tax Act, 1976.<br/>
For jurisdiction-specific advice and registration assistance, please consult a qualified Chartered Accountant or tax professional in Gujarat.
</div>