import React, { useState, useEffect } from 'react';
import {
Calculator,
MessageSquare,
ShieldCheck,
TrendingUp,
Clock,
Phone,
Mail,
Instagram,
Facebook,
Youtube,
X,
CheckCircle2,
ChevronRight,
Users,
BarChart3,
Search,
ArrowRight,
Menu,
Check,
Globe,
Award,
Zap,
Plus,
Minus,
Star,
Shield,
FileText,
Briefcase,
PieChart,
Linkedin,
Github
} from 'lucide-react';
const App = () => {
const [activeTab, setActiveTab] = useState('home');
const [showPopup, setShowPopup] = useState(false);
const [popupView, setPopupView] = useState('initial'); // 'initial' or 'form'
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
const [quoteStep, setQuoteStep] = useState(1);
const [isScrolled, setIsScrolled] = useState(false);
const [activeFaq, setActiveFaq] = useState(null);
// 10 Second Pop-up Logic
useEffect(() => {
const timer = setTimeout(() => {
setShowPopup(true);
}, 10000);
const handleScroll = () => {
setIsScrolled(window.scrollY > 50);
};
window.addEventListener('scroll', handleScroll);
return () => {
clearTimeout(timer);
window.removeEventListener('scroll', handleScroll);
};
}, []);
const openWhatsApp = () => {
const message = encodeURIComponent("Hello ApnaAccounting, I'd like to book a free consultation for my business.");
window.open(`https://wa.me/91XXXXXXXXXX?text=${message}`, '_blank');
};
const faqs = [
{ q: "Why should I outsource my accounting to ApnaAccounting?", a: "Outsourcing reduces overhead costs by up to 40% and ensures that your books are managed by specialized experts using the latest software, allowing you to focus purely on business growth." },
{ q: "Do you handle GST registration and monthly filings?", a: "Yes, we provide end-to-end GST management, from initial registration and monthly filings to annual reconciliation and representation during audits." },
{ q: "How do you ensure the security of my financial data?", a: "We use bank-grade encryption and secure cloud servers. Access is strictly controlled, and we sign comprehensive non-disclosure agreements with all our clients." },
{ q: "Can you help me legally minimize my tax liability?", a: "Absolutely. Our tax planning team analyzes your business structure and expenses to identify legal tax-saving opportunities and incentives applicable to your industry." },
{ q: "What is the typical turnaround time for MIS reports?", a: "We provide real-time updates through our portal, and customized monthly MIS reports are delivered within the first week of the subsequent month." },
{ q: "Do you provide support for Income Tax audits?", a: "Yes, we specialize in audit preparation and representation. We ensure all your documentation is 'audit-ready' throughout the year." }
];
// --- UI Components ---
const Navigation = () => (
);
const Marquee = () => (
{[...Array(2)].map((_, i) => (
500+ CORPORATE CLIENTS ISO 9001 CERTIFIED PAN INDIA PRESENCE 12+ YEARS MASTERY 40% AVG TAX SAVINGS
))}
);
const Hero = () => (
Premium Financial Architecture
Empowering Mumbai's Business Legacy.
At ApnaAccounting, we redefine compliance as a competitive advantage. Elite taxation, audit, and outsourced accounts for visionaries.
);
const WhyChooseUs = () => {
const reasons = [
{
title: "Expertise You Can Trust",
desc: "Seasoned accounting and tax professionals bringing years of experience across diverse industries. We stay updated with latest tax laws and regulations."
},
{
title: "Tailored Solutions",
desc: "Services customized to fit your specific needs—whether you're a startup, SME, or established enterprise."
},
{
title: "End-to-End Support",
desc: "From bookkeeping and tax filing to strategic financial planning, we provide comprehensive solutions under one roof."
},
{
title: "Transparent & Ethical",
desc: "Integrity is at our core. We ensure complete transparency in our processes with no hidden costs or surprises."
},
{
title: "Technology-Driven",
desc: "Leveraging modern accounting software and digital tools for faster, more accurate results and less paperwork."
},
{
title: "Client-Centric Approach",
desc: "Your success is our priority. We build long-term relationships through proactive advice and personalized attention."
}
];
return (
The APNA Advantage
Why Partner with Us?
{reasons.map((r, i) => (
{r.title}
{r.desc}
))}
);
};
const VisualServices = () => {
const services = [
{
title: "Outsourced Accounting",
desc: "Bookkeeping, Payroll processing, Financial reporting, and Cash flow management.",
img: "https://images.unsplash.com/photo-1454165833767-027ffeb99c1e?auto=format&fit=crop&w=600&q=80"
},
{
title: "GST & Income Tax",
desc: "End-to-end support for GST returns, IT filing, and audit assistance.",
img: "https://images.unsplash.com/photo-1586282391129-76a6df230234?auto=format&fit=crop&w=600&q=80"
},
{
title: "Business Registration",
desc: "Company incorporation, MSME, IEC, and Trademark registration services.",
img: "https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=600&q=80"
},
{
title: "Wealth Management",
desc: "Professional Mutual Fund advisory for long-term growth and stability.",
img: "https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=600&q=80"
}
];
return (
Core Competencies
Precision in Every Decimal. Excellence in Every Audit.
We deliver premium accounting infrastructure for businesses that refuse to settle for average.
Mutual funds pool money from many investors to buy a diversified portfolio. With thoughtful planning, they help achieve long-term goals while balancing risk and return.
{[
{ icon: Check, title: "Diversification", desc: "Across sectors and companies." },
{ icon: Briefcase, title: "Professional Management", desc: "Managed by market experts." },
{ icon: TrendingUp, title: "Liquidity", desc: "Flexibility in entry and exit." },
{ icon: Users, title: "Accessibility", desc: "For small and large investors." }
].map((feature, i) => {
const IconComp = feature.icon;
return (
{[
{ name: "Rajesh K. Singhania", role: "CEO, Singhania Textiles", text: "ApnaAccounting isn't just a service; they are our backbone. Their GST audit preparation saved us from major penalties last quarter." },
{ name: "Meera D'Souza", role: "Founder, Bloom Fashion", text: "As a fast-growing startup, we needed clarity. Their MIS reports are so detailed, I can make investment decisions in minutes." },
{ name: "Anil Ambani (SME)", role: "MD, Precision Tools India", text: "The tax optimization strategies suggested by the team helped us reinvest ₹15 Lakhs back into our machinery. Truly elite." }
].map((rev, i) => (