-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1050 lines (1007 loc) · 49.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="Hostinger Website Builder">
<title>Expert Company Registration & Accounting Services|Ayyubi Accountants </title>
<!-- -->
<!-- Favicon -->
<link href="img/AA-logo final.png" rel="icon">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Lato&family=Oswald:wght@200;300;400&display=swap"
rel="stylesheet">
<!-- jquery -->
<!-- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> -->
<!-- animation -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script> -->
<!-- CSS Libraries -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<!-- -->
<meta name="description"
content="Discover professional company registration and accounting services with Ayyubi Accountants. Simplify your business setup and financial management with our trusted expertise.">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="apple-touch-icon" href="data:;base64,iVBORw0KGgo=">
<meta content="https://avrhconsulting.in/" property="og:url">
<link rel="canonical" href="https://avrhconsulting.in/">
<meta content="Ayyubi Accountants: Company Registration & Accounting | Ayyubi Accountants SERVICES"
property="og:title">
<meta name="twitter:title"
content="Ayyubi Accountants: Company Registration & Accounting | Ayyubi Accountants SERVICES">
<meta content="website" property="og:type">
<meta property="og:description"
content="Ayyubi Accountants Services offers comprehensive solutions for company registration, accounting services, and statutory compliance. Trust us for VAT registration, tax filings, audits, and more to ensure your business meets all regulatory requirements.">
<meta name="twitter:description"
content="Ayyubi Accountants Services offers comprehensive solutions for company registration, accounting services, and statutory compliance. Trust us for VAT registration, tax filings, audits, and more to ensure your business meets all regulatory requirements.">
<meta property="og:site_name" content="Ayyubi Accountants SERVICES">
<meta name="keywords" content="company registration, accounting services, statutory compliance">
<meta property="og:image">
<meta name="twitter:image">
<meta content="" property="og:image:alt">
<meta content="" name="twitter:image:alt">
<meta name="twitter:card" content="summary_large_image">
<meta name="robots" content="noindex">
<link rel="preconnect"><!----><!----><!----><!----><!--[-->
<link rel="alternate" hreflang="x-default" href="https://avrhconsulting.in/"><!--]-->
<link
href="https://cdn.zyrosite.com/u1/google-fonts/font-faces?family=Open+Sans:wght@400;500;600&family=Poppins:wght@400&display=swap"
rel="preconnect" crossorigin="true">
<link
href="https://cdn.zyrosite.com/u1/google-fonts/font-faces?family=Open+Sans:wght@400;500;600&family=Poppins:wght@400&display=swap"
rel="preload" as="style">
<link
href="https://cdn.zyrosite.com/u1/google-fonts/font-faces?family=Open+Sans:wght@400;500;600&family=Poppins:wght@400&display=swap"
rel="stylesheet" referrerpolicy="no-referrer"><!--]-->
<style></style>
<link rel="prefetch" href="https://assets.zyrosite.com/AoPvpgW0OKt4zOOO/traffic.txt">
<script>(function () {
const postDate = null;
const currentDate = new Date().setHours(0, 0, 0, 0);
const postPublishDate = new Date(postDate).setHours(0, 0, 0, 0);
if (postPublishDate && currentDate < postPublishDate) {
window.location.replace('/');
}
})();</script>
<link rel="stylesheet" href="/_astro-1735063201090/_slug_.Bk542pPL.css">
<style>
:root {
--color-meteorite-dark: #2f1c6a;
--color-meteorite-dark-2: #1F1346;
--color-meteorite: #8c85ff;
--color-meteorite-light: #d5dfff;
--color-primary-dark: #5025d1;
--color-primary: #673de6;
--color-primary-light: #ebe4ff;
--color-primary-charts: #B39EF3;
--color-danger-dark: #d63163;
--color-danger: #fc5185;
--color-danger-light: #ffe8ef;
--color-danger-charts: #FEA8C2;
--color-warning-dark: #fea419;
--color-warning-dark-2: #9F6000;
--color-warning-charts: #FFD28C;
--color-warning: #ffcd35;
--color-warning-light: #fff8e2;
--color-success-dark: #008361;
--color-success: #00b090;
--color-success-light: #def4f0;
--color-dark: #1d1e20;
--color-gray-dark: #36344d;
--color-gray: #727586;
--color-gray-border: #dadce0;
--color-gray-light: #f2f3f6;
--color-light: #fff;
--color-azure: #357df9;
--color-azure-light: #e3ebf9;
--color-azure-dark: #265ab2;
--color-indigo: #6366F1
}
.whats-app-bubble {
position: fixed;
right: 20px;
bottom: 24px;
z-index: 1000;
display: flex;
cursor: pointer;
border-radius: 100px;
box-shadow: #00000026 0 4px 12px
}
.globalClass_2ebe {
position: relative;
z-index: 17
}
#wtpQualitySign_fixedCSS,
#wtpQualitySign_popupCSS {
bottom: 10px !important
}
#wtpQualitySign_fixedCSS {
z-index: 17 !important
}
#wtpQualitySign_popupCSS {
z-index: 18 !important
}
</style>
<meta name="generator" content="Hostinger Website builder">
<script type="text/javascript" async=""
src="https://googleads.g.doubleclick.net/pagead/viewthroughconversion/16791339976/?random=1736311605933&cv=11&fst=1736311605933&bg=ffffff&guid=ON&async=1&gtm=45be4cc1v9202675470za200&gcd=13l3l3l3l1l1&dma=0&tag_exp=101925629~102067555~102067808~102081485~102198178&u_w=1366&u_h=768&url=https%3A%2F%2Favrhconsulting.in%2F%3Ffbclid%3DIwZXh0bgNhZW0CMTAAAR3KEf3SroAM0lZLQF_wHRkD3eIPfDGb8sf5qIB5eNrc3oANVyJmMjoBXm0_aem_L3QWrf554YaW_DSfwEvbMw&ref=https%3A%2F%2Fl.facebook.com%2F&hn=www.googleadservices.com&frm=0&tiba=AVRH%20Consulting%3A%20Company%20Registration%20%26%20Accounting%20%7C%20AVRH%20CONSULTING%20SERVICES&npa=0&auid=1165738291.1736309212&uaa=x86&uab=64&uafvl=Google%2520Chrome%3B131.0.6778.206%7CChromium%3B131.0.6778.206%7CNot_A%2520Brand%3B24.0.0.0&uamb=0&uam=&uap=Windows&uapv=15.0.0&uaw=0&fledge=1&data=event%3Dgtag.config&rfmt=3&fmt=4"></script>
</head>
<body>
<!-- dont copy thiss website bro design and developed by misba developer... -->
<!-- Top Bar Start -->
<div class="top-bar d-none d-md-block">
<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<div class="top-bar-left">
<div class="text">
<i class="far fa-clock"></i>
<h2>9:00 AM - 5:00 PM</h2>
<p>Mon - Fri</p>
</div>
<div class="text">
<i class="fa fa-phone-alt"></i>
<h2>074 0244 8109</h2>
<p>For Appointment</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="top-bar-right">
<div class="social">
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-facebook-f"></i></a>
<a href=""><i class="fab fa-linkedin-in"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Top Bar End -->
<!-- Nav Bar Start -->
<div class="navbar navbar-expand-lg bg-dark navbar-dark">
<div class="container-fluid">
<a href="" class="navbar-brand">
<img src="img/AA-logo final.png" alt=""></a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between" id="navbarCollapse">
<div class="navbar-nav ml-auto">
<a href="" class="nav-item nav-link active">Home</a>
<a href="About/" class="nav-item nav-link">About</a>
<div class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown">Service</a>
<div class="dropdown-menu">
<a href="Services/Limited-Company-Accounts-Preparation/" class="dropdown-item">Limited Company Accounts Preparation</a>
<a href="Services/Personal-Tax-Accountan/" class="dropdown-item">Personal Tax Accountan</a>
<a href="Services/Bookkeeping/" class="dropdown-item">Bookkeeping</a>
<a href="Services/VAT-Preparation/" class="dropdown-item">VAT Preparation</a>
<a href="Services/Payroll-Services/" class="dropdown-item">Payroll Services</a>
<a href="Services/Pension-Auto-Enrolment/" class="dropdown-item">Pension Auto Enrolment</a>
<a href="Services/Financial-Management-Accounting/" class="dropdown-item">Financial and Management Accounting</a>
<a href="Services/Corporation Tax and Personal-Tax-Preparation/" class="dropdown-item">Corporation Tax and Personal Tax Preparation</a>
<a href="Services/Self-Assessment/" class="dropdown-item">Self Assessment</a>
<a href="Services/Self-Employed-Registrations/" class="dropdown-item">Self Employed Registrations</a>
<a href="Services/Limited-Company-Setup/" class="dropdown-item">Limited Company Setup</a>
<a href="Services/Forensic-Accounting/" class="dropdown-item">Forensic Accounting</a>
<a href="Services/Tax-Investigations/" class="dropdown-item">Tax Investigations</a>
<a href="Services/Business-Development-Planning-Forecasting/" class="dropdown-item">Business Development Planning & Forecasting</a>
<a href="Services/Capital-Gains-Tax-Calculation/" class="dropdown-item">Capital Gains Tax Calculation</a>
<a href="Services/Inheritance-Tax-Planning/" class="dropdown-item">Inheritance Tax Planning</a>
</div>
</div>
<a href="Contact/" class="nav-item nav-link">Contact</a>
</div>
</div>
</div>
</div>
<!-- Nav Bar End -->
<div class="carousel" >
<div class="container-fluid">
<div class="owl-carousel">
<div class="carousel-item">
<div class="carousel-img">
<img src="img/main-img.webp" alt="Image">
</div>
<div class="carousel-text">
<h1>Tailored Business Support</h1>
<p>
Receive personalized support for your business registration, tailored to your specific
requirements.
</p>
<div class="carousel-btn">
<a class="btn scroll-link scroll-to-start" ><i class="fa fa-link"></i>Get Started</a>
<a class="btn scroll-to-contact" href=""><i class="fa fa-link"></i>Contact Us</a>
<!-- <a class="btn btn-play" data-toggle="modal"
data-src="" data-target="#videoModal"><i
class="fa fa-play"></i>Contact Us</a> -->
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-img">
<img src="img/carousel-2.jpg" alt="Image">
</div>
<div class="carousel-text">
<h1>Expert Registration Assistance</h1>
<p>
Get professional help with your business registration process and ensure compliance
effortlessly.
</p>
<div class="carousel-btn">
<a class="btn scroll-to-start" href=""><i class="fa fa-link"></i>Get Started</a>
<a class="btn scroll-to-contact" href="#"><i class="fa fa-link"></i>Contact Us</a>
<!-- <a class="btn btn-play" data-toggle="modal"
data-src="" data-target="#videoModal"><i
class="fa fa-play"></i>Contact Us</a> -->
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-img">
<img src="img/carousel-3.jpg" alt="Image">
</div>
<div class="carousel-text">
<h1>Fast Registration Solutions</h1>
<p>
Our team offers quick and efficient solutions for all your business registration needs.
</p>
<div class="carousel-btn ">
<a class="btn scroll-to-start" href="">
<i class="fa fa-link"></i>Get Started
</a>
<a class="btn scroll-to-contact">
<i class="fa fa-link"></i>Contact Us
</a>
<!-- <a class="btn btn-play" data-toggle="modal"
data-src="" data-target="#videoModal"><i
class="fa fa-play"></i>Contact Us</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel End -->
<!-- Video Modal Start-->
<div class="modal fade" id="videoModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="" id="video" allowscriptaccess="always"
allow="autoplay"></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Video Modal End -->
<!-- Fact Start -->
<div class="fact">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-3 col-md-6">
<div class="fact-item">
<img src="img/icon-4.png" alt="Icon">
<h2>Qualified Team</h2>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="fact-item">
<img src="img/icon-1.png" alt="Icon">
<h2>Individual Approach</h2>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="fact-item">
<img src="img/icon-8.png" alt="Icon">
<h2>100% Success</h2>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="fact-item">
<img src="img/icon-6.png" alt="Icon">
<h2>100% Satisfaction</h2>
</div>
</div>
</div>
</div>
</div>
<!-- Fact Start -->
<!-- About Start -->
<div class="about section" id="about-section">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<div class="about-img">
<div class="about-img-1">
<img src="img/about-4.jpg" alt="Image">
</div>
<div class="about-img-2">
<img src="img/about-5.jpg" alt="Image">
</div>
</div>
</div>
<div class="col-md-6">
<div class="section-header">
<p>Learn About Us</p>
<h2>Welcome to Ayyubi Accountants in London</h2>
</div>
<div class="about-text">
<p>
At Ayyubi Accountants, we understand that every business, whether large or small, has
critical legal responsibilities. From avoiding fines and penalties to maintaining accurate
and timely records, our comprehensive accounting and taxation services are here to support
you every step of the way.
</p>
<p>
With our thorough knowledge of statutory compliance, we guide you through VAT registration,
tax filings, audits, and much more. We understand the complexities of regulatory
requirements and are dedicated to ensuring your business remains compliant. Let Ayyubi
Accountants Services take the burden off your shoulders so you can focus on what you do
best—growing your business. Trust us to deliver reliable, efficient, and tailored solutions
that meet your specific needs.
</p>
<a class="btn" href="About/">Learn More</a>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Service Start -->
<div class="service">
<div class="container">
<div class="section-header">
<p>Consulting Services</p>
<h2>Our Best Consulting Services</h2>
</div>
<div class="row ">
<div class="col-lg-3 col-md-6">
<div class=" service-item">
<img src="img/icon-1.png" alt="Icon">
<h3>Limited Company Accounts Preparation</h3>
<p>
We prepare and file your company’s accounts accurately and on time, ensuring compliance with statutory requirements.
</p>
<a href="Services/Limited-Company-Accounts-Preparation/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class=" service-item">
<img src="img/icon-2.png" alt="Icon">
<h3>Personal Tax Accountant</h3>
<p>
Get personalized tax advice and preparation to optimize your tax position and ensure compliance with personal tax obligations.
</p>
<a href="Services/Personal-Tax-Accountan/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class=" service-item">
<img src="img/icon-10.png" alt="Icon">
<h3>Bookkeeping</h3>
<p>
Providing strategic insights to help your business grow and succeed.
</p>
<a href="Services/Bookkeeping/">Read More</a>
</div>
</div>
<!-- 2 -->
<div class="col-lg-3 col-md-6 ">
<div class=" service-item">
<img src="img/icon-5.png" alt="Icon">
<h3>VAT Preparation</h3>
<p>
We handle your VAT calculations and submissions, making sure you meet all HMRC deadlines and
requirements. </p>
<a href="Services/VAT-Preparation/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class="service-item hidden">
<img src="img/icon-6.png" alt="Icon">
<h3>Payroll Services</h3>
<p>
Our payroll services ensure your employees are paid correctly and on time, while also
managing
PAYE and National Insurance contributions. </p>
<a href="Services/Payroll-Services/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class=" service-item hidden">
<img src="img/icon-1.png" alt="Icon">
<h3>Pension Auto Enrolment</h3>
<p>
We assist with setting up and managing pension auto enrolment, keeping you compliant with UK
pension regulations.
</p>
<a href="Services/Pension-Auto-Enrolment/">Read More</a>
</div>
</div>
<!-- 3 -->
<div class="col-lg-3 col-md-6 ">
<div class="service-item hidden">
<img src="img/icon-4.png" alt="Icon">
<h3>Financial and Management Accounting</h3>
<p>
Gain insights into your business performance with our financial and management accounting
services, providing essential information for strategic decisions. </p>
<a href="Services/Financial-Management-Accounting/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class="service-item hidden">
<img src="img/icon-7.png" alt="Icon">
<h3>Corporation Tax and Personal Tax Preparation </h3>
<p>
Expert preparation of your corporation tax returns and personal tax filings, ensuring
you
meet
all your tax obligations efficiently.
</p>
<a href="Services/Corporation Tax and Personal-Tax-Preparation/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class="service-item hidden">
<img src="img/icon-8.png" alt="Icon">
<h3>Self Assessment</h3>
<p>
Simplify your self-assessment tax returns with our help, avoiding the stress of navigating
complex tax regulations on your own.
</p>
<a href="Services/Self-Assessment/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<!-- 4 -->
<div class=" service-item hidden">
<img src="img/icon-9.png" alt="Icon">
<h3>Self Employed Registrations</h3>
<p>
We guide you through the process of registering as self-employed, ensuring you start your
business journey on the right foot.
</p>
<a href="Services/Self-Employed-Registrations/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class="service-item hidden">
<img src="img/icon-4.png" alt="Icon">
<h3>Limited Company Setup</h3>
<p>
Let us handle the setup of your limited company, taking care of all the administrative and
legal
requirements.
</p>
<a href="Services/Limited-Company-Setup/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class=" service-item hidden">
<img src="img/icon-3.png" alt="Icon">
<h3>Forensic Accounting</h3>
<p>
Our forensic accounting services help you investigate and resolve financial discrepancies
and
fraud within your business.
</p>
<a href="Services/Forensic-Accounting/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<!-- 5 -->
<div class=" service-item hidden">
<img src="img/icon-8.png" alt="Icon">
<h3>Tax Investigations</h3>
<p>
We provide expert support during tax investigations, helping you manage and resolve any
issues
with HMRC.
</p>
<a href="Services/Tax-Investigations/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class="service-item hidden">
<img src="img/icon-10.png" alt="Icon">
<h3>Business Development Planning & Forecasting </h3>
<p>
Plan for the future with our business development and forecasting services, providing
strategic
insights to drive growth and success.
</p>
<a href="Services/Business-Development-Planning-Forecasting/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class=" service-item hidden">
<img src="img/icon-8.png" alt="Icon">
<h3>Capital Gains Tax Calculation</h3>
<p>
Accurately calculate your capital gains tax liabilities and receive advice on how to
minimize
your tax exposure.
</p>
<a href="Services/Capital-Gains-Tax-Calculation/">Read More</a>
</div>
</div>
<div class="col-lg-3 col-md-6 ">
<div class=" service-item hidden">
<img src="img/icon-2.png" alt="Icon">
<h3>Inheritance Tax Planning</h3>
<p>
Plan for the future with our inheritance tax planning services, helping you protect your
assets
and pass them on efficiently.
</p>
<a href="Services/Inheritance-Tax-Planning/">Read More</a>
</div>
</div>
</div>
</div>
<!-- View All Button -->
<div class="view-all-container">
<button id="viewAllBtn" class="btn">View All</button>
</div>
</div>
</div>
<!-- Service End -->
<!-- Feature Start -->
<div class="feature">
<div class="container">
<div class="row align-items-end">
<div class="col-md-6">
<div class="feature-img">
<img src="img/why.jpg" alt="Image">
</div>
</div>
<div class="col-md-6">
<div class="section-header">
<p>Our Feature</p>
<h2>Why Choose Us?</h2>
</div>
<p>
We are Financial Accountants and Public Accountants with elite credentials from the Institute of
Financial Accountants (IFA) and MIPA. These qualifications are among the most respected in the
accounting world, ensuring your business benefits from top-tier expertise.
</p>
<div class="row counters">
<div class="col-6">
<i class="fa fa-user"></i>
<div class="counters-text">
<h2 data-toggle="counter-up">100</h2>
<p>Our Staffs</p>
</div>
</div>
<div class="col-6">
<i class="fa fa-users"></i>
<div class="counters-text">
<h2 data-toggle="counter-up">200</h2>
<p>Our Clients</p>
</div>
</div>
<div class="col-6">
<i class="fa fa-check"></i>
<div class="counters-text">
<h2 data-toggle="counter-up">300</h2>
<p>Completed Projects</p>
</div>
</div>
<div class="col-6">
<i class="fa fa-running"></i>
<div class="counters-text">
<h2 data-toggle="counter-up">400</h2>
<p>Running Projects</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Feature End -->
<!-- Testimonial Start -->
<div class="testimonial">
<div class="container">
<div class="section-header">
<p>Testimonial Carousel</p>
<h2>100% Positive Customer Reviews</h2>
</div>
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<img src="img/profile.png" alt="Image">
<p>
The team was incredibly efficient in handling my accounts. They ensured all my financial records
were accurate and up-to-date. Their attention to detail and reliability give me peace of mind
year-round!
</p>
<h2>John Doe</h2>
<h3>Travel Agencies</h3>
</div>
<div class="testimonial-item">
<img src="img/profile.png" alt="Image">
<p>
"Tax season used to be so stressful until I started working with this team. They made the
process seamless and ensured I got all the deductions I was entitled to. Fantastic service
</p>
<h2>Ahmed</h2>
<h3>NGOs and Charities</h3>
</div>
<div class="testimonial-item">
<img src="img/profile.png" alt="Image">
<p>
Their personalized approach made me feel valued as a client. They tailored solutions to fit my
specific situation, and the results exceeded my expectations
</p>
<h2>Khan</h2>
<h3>E-commerce Businesses
</h3>
</div>
<div class="testimonial-item">
<img src="img/profile.png" alt="Image">
<p>
They are truly experts in their field. They helped me streamline my business operations and save
significantly on taxes. Highly recommend them for anyone looking for professional accounting
services
</p>
<h2>Jessica Brown</h2>
<h3>Entrepreneurs and Startup Founders</h3>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Team Start -->
<!-- <div class="team">
<div class="container">
<div class="section-header">
<p>Meet Our Advisors</p>
<h2>Our Professional Consulting Team</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="img/team-1.jpg" alt="Team Image">
</div>
<div class="team-text">
<h2>Donald John</h2>
<p>Founder & CEO</p>
<div class="team-social">
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-facebook-f"></i></a>
<a href=""><i class="fab fa-linkedin-in"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="img/team-2.jpg" alt="Team Image">
</div>
<div class="team-text">
<h2>Adam Phillips</h2>
<p>Chef Executive</p>
<div class="team-social">
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-facebook-f"></i></a>
<a href=""><i class="fab fa-linkedin-in"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="img/team-3.jpg" alt="Team Image">
</div>
<div class="team-text">
<h2>Thomas Olsen</h2>
<p>Chef Advisor</p>
<div class="team-social">
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-facebook-f"></i></a>
<a href=""><i class="fab fa-linkedin-in"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="img/team-4.jpg" alt="Team Image">
</div>
<div class="team-text">
<h2>James Alien</h2>
<p>Advisor</p>
<div class="team-social">
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-facebook-f"></i></a>
<a href=""><i class="fab fa-linkedin-in"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- Team End -->
<!-- Contact Start -->
<div class="contact" id="contact-section">
<div class="container">
<div class="section-header">
<p>Get In Touch</p>
<h2>Get In Touch For Any Query</h2>
</div>
<div class="row align-items-center">
<div class="col-md-5">
<div class="contact-info">
<div class="contact-icon">
<i class="fa fa-map-marker-alt"></i>
</div>
<div class="contact-text">
<h3>Our Head Office</h3>
<p> 149 Commercial Road, London, E1 1PX</p>
</div>
</div>
<div class="contact-info">
<div class="contact-icon">
<i class="fa fa-phone-alt"></i>
</div>
<div class="contact-text">
<h3>Call for Help</h3>
<p> 074 0244 8109</p>
</div>
</div>
<div class="contact-info">
<div class="contact-icon">
<i class="fa fa-envelope"></i>
</div>
<div class="contact-text">
<h3>Email for Information</h3>
<p> [email protected]</p>
</div>
</div>
</div>
<div class="col-md-7">
<div class="contact-form">
<div id="success"></div>
<form name="sentMessage" id="contactForm" novalidate="novalidate">
<div class="control-group">
<input type="text" class="form-control" id="name" placeholder="Your Name"
required="required" data-validation-required-message="Please enter your name" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<input type="email" class="form-control" id="email" placeholder="Your Email"
required="required" data-validation-required-message="Please enter your email" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<input type="text" class="form-control" id="subject" placeholder="Subject"
required="required" data-validation-required-message="Please enter a subject" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<textarea class="form-control" id="message" placeholder="Message" required="required"
data-validation-required-message="Please enter your message"></textarea>
<p class="help-block text-danger"></p>
</div>
<div>
<button class="btn" type="submit" id="sendMessageButton">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Contact End -->
<!-- Blog Start -->
<div class="blog">
<div class="container">
<div class="section-header">
<p>Consulting Blog</p>
<h2>Latest From Our Consulting Blog</h2>
</div>
<div class="owl-carousel blog-carousel">
<div class="blog-item">
<div class="blog-img">
<img src="img/blog-1.png" alt="Blog">
</div>
<div class="blog-content">
<h2 class="blog-title">Journal of Accountancy</h2>
<div class="blog-meta">
<i class="fa fa-list-alt"></i>
<a href="">Tax</a>
<i class="fa fa-calendar-alt"></i>
<p>01-Oct-2021</p>
</div>
<div class="blog-text">
<p>
Published by the American Institute of CPAs (AICPA), this blog covers a wide range of
topics, including tax, practice management, financial reporting, and auditing. It's a
comprehensive resource for accounting professionals seeking up-to-date information on
industry standards and regulations.
</p>
<!-- <a class="btn" href="">Read More</a> -->
</div>
</div>
</div>
<div class="blog-item">
<div class="blog-img">
<img src="img/blog-2.png" alt="Blog">
</div>
<div class="blog-content">
<h2 class="blog-title">Accounting Today</h2>
<div class="blog-meta">
<i class="fa fa-list-alt"></i>
<a href="">Opinion</a>
<i class="fa fa-calendar-alt"></i>
<p>31-May-2023</p>
</div>
<div class="blog-text">
<p>
A leading information resource for public accountants, Accounting Today offers news,
in-depth features, and insights on tax preparation, bookkeeping, auditing, financial
planning, and business advisory services. It's a go-to source for staying informed about
the latest developments in the accounting profession.
</p>
<!-- <a class="btn" href="">Read More</a> -->
</div>
</div>
</div>
<div class="blog-item">
<div class="blog-img">
<img src="img/blog-3.png" alt="Blog">
</div>
<div class="blog-content">
<h2 class="blog-title">CPA Practice Advisor</h2>
<div class="blog-meta">
<i class="fa fa-list-alt"></i>
<a href="">Firm Management</a>
<i class="fa fa-calendar-alt"></i>
<p>14-Jan-2025</p>
</div>
<div class="blog-text">
<p>
This platform provides technology and practice management resources for accounting and
tax professionals. It delivers content on various aspects of the profession, including
software reviews, best practices, and industry news, helping practitioners enhance their
services and efficiency.
</p>
<!-- <a class="btn" href="">Read More</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Blog End -->
<!-- Footer Start -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-lg-7">
<div class="row">
<div class="col-md-6">
<div class="footer-contact">
<h2>Our Head Office</h2>
<p><i class="fa fa-map-marker-alt"></i> 149 Commercial Road, London, E1 1PX</p>
<p><i class="fa fa-phone-alt"></i>074 0244 8109</p>
<p><i class="fa fa-envelope"></i>[email protected]</p>
<div class="footer-social">
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-facebook-f"></i></a>
<a href=""><i class="fab fa-youtube"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
<a href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="footer-link">
<h2>Quick Links</h2>
<a href="#">Home</a>
<a href="About/">About</a>
<a href="Contact/">Contact</a>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="footer-newsletter">
<h2>Newsletter</h2>
<p>
Whether you need assistance with day-to-day bookkeeping or complex tax planning updates,
Ayyubi Accountants is here to help. Subscribe now to discuss how our services can be
tailored to meet your specific business needs.
</p>
<div class="form">
<input class="form-control" placeholder="Email goes here">
<button class="btn">Submit</button>
</div>
</div>
</div>
</div>
</div>
<div class="container copyright">
<div class="row">
<div class="col-md-6">
<p> © <a href="">Ayyubi Accountants</a>, All Right Reserved.</p>
</div>
<div class="col-md-6">
<p>Designed By <a href="">Ahmed Code</a></p>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>