-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·681 lines (658 loc) · 37.7 KB
/
Copy pathindex.html
File metadata and controls
executable file
·681 lines (658 loc) · 37.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="google-site-verification" content="Pp2arq6CeiVr8tHP2JImd3PiiC4yQ92hTNNlxg0NEeo" />
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>Carator</title>
<!-- Favicon -->
<link rel="icon" href="img/core-img/favicon.ico">
<!-- Core Stylesheet -->
<link href="style.css" rel="stylesheet">
<!-- Responsive CSS -->
<link href="css/responsive.css" rel="stylesheet">
<script>
function script(){
document.getElementById("firstbox").style.display = "none"
document.getElementById("firstrless").style.display = "none"
document.getElementById("secondbox").style.display = "none"
document.getElementById("secondrless").style.display = "none"
document.getElementById("thirdbox").style.display = "none"
document.getElementById("thirdrless").style.display = "none"
document.getElementById("fourthbox").style.display = "none"
document.getElementById("fourthrless").style.display = "none"
}
function firstFunction() {
var x = document.getElementById("firstbox");
var y = document.getElementById("firstrless");
var z = document.getElementById("firstrmore");
if (x.style.display === "none") {
x.style.display = "block";
y.style.display = "block";
z.style.display = "none";
} else {
x.style.display = "none";
y.style.display = "none";
z.style.display = "block";
}
}
function secondFunction() {
var x = document.getElementById("secondbox");
var y = document.getElementById("secondrless");
var z = document.getElementById("secondrmore");
if (x.style.display === "none") {
x.style.display = "block";
y.style.display = "block";
z.style.display = "none";
} else {
x.style.display = "none";
y.style.display = "none";
z.style.display = "block";
}
}
function thirdFunction() {
var x = document.getElementById("thirdbox");
var y = document.getElementById("thirdrless");
var z = document.getElementById("thirdrmore");
if (x.style.display === "none") {
x.style.display = "block";
y.style.display = "block";
z.style.display = "none";
} else {
x.style.display = "none";
y.style.display = "none";
z.style.display = "block";
}
}
function fourthFunction() {
var x = document.getElementById("fourthbox");
var y = document.getElementById("fourthrless");
var z = document.getElementById("fourthrmore");
if (x.style.display === "none") {
x.style.display = "block";
y.style.display = "block";
z.style.display = "none";
} else {
x.style.display = "none";
y.style.display = "none";
z.style.display = "block";
}
}
</script>
</head>
<body onload="script();">
<!-- Preloader Start -->
<div id="preloader">
<div class="colorlib-load"></div>
</div>
<!-- ***** Header Area Start ***** -->
<header class="header_area animated">
<div class="container-fluid">
<div class="row align-items-center">
<!-- Menu Area Start -->
<div class="col-12 col-lg-12 ">
<div class="menu_area">
<nav class="navbar navbar-expand-lg navbar-light">
<!-- Logo -->
<a class="navbar-brand" href="#">Carator</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ca-navbar" aria-controls="ca-navbar" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<!-- Menu Area -->
<div class="collapse navbar-collapse" id="ca-navbar">
<ul class="navbar-nav ml-auto" id="nav">
<li class="nav-item active"><a class="nav-link" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="https://blog.carator.in">Blog</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#services">Services</a></li>
<li class="nav-item"><a class="nav-link" href="#carrers">Careers</a></li>
<li class="nav-item"><a class="nav-link" href="#team">Team</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</header>
<!-- ***** Header Area End ***** -->
<!-- ***** Wellcome Area Start ***** -->
<section class="wellcome_area clearfix" id="home">
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-12 col-md">
<div class="wellcome-heading">
<h2>Your Accounting Professionals</h2>
<h3>CA</h3>
<p>Carator specializes in a variety of accounting services with outstanding support. We understand how busy you are, and with our expertise we can take care of your accounting needs quickly and effectively. We are equipped to handle the books for you, leaving you to worry less and live more.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Wellcome Area End ***** -->
<!-- ***** Special Area Start ***** -->
<section class="special-area bg-white section_padding_100" id="about">
<div class="container">
<div class="row">
<div class="col-12">
<!-- Section Heading Area -->
<div class="section-heading text-center">
<h2>About Us</h2>
<div class="line-shape"></div>
</div>
</div>
</div>
<div class="row">
<!-- Single Special Area -->
<div class="col-12 col-md-4">
<div class="single-special text-center wow fadeInUp" data-wow-delay="0.2s">
<div class="single-icon">
<i class="ti-mobile" aria-hidden="true"></i>
</div>
<h4>Flexible Assistance.</h4>
<p>Unlike traditional businesses with rigid timings, we attend you all time round the clock with friendly assistance.</p>
</div>
</div>
<!-- Single Special Area -->
<div class="col-12 col-md-4">
<div class="single-special text-center wow fadeInUp" data-wow-delay="0.4s">
<div class="single-icon">
<i class="ti-ruler-pencil" aria-hidden="true"></i>
</div>
<h4>Strong Expertise</h4>
<p>We are young and strong team with expertise in various fields in accounting, taxation and other business needs.</p>
</div>
</div>
<!-- Single Special Area -->
<div class="col-12 col-md-4">
<div class="single-special text-center wow fadeInUp" data-wow-delay="0.6s">
<div class="single-icon">
<i class="ti-settings" aria-hidden="true"></i>
</div>
<h4>Quality and commitment</h4>
<p>We enjoy doing business only on by looking at your happy face. We are passionately committed to deliver quality in providing all our services.</p>
</div>
</div>
</div>
<div class="row single-special">
<p>Carator is a leading network of independent accounting and consulting firms with offices in over many major business centres.
Our services and teams are tailored to suit the culture of each client including publicly listed corporations, large and medium-sized
companies, privately owned businesses, not-for-profit and public organisations.</p>
<h4 style="padding-top:20px">PROFESSIONALISM, QUALITY, INTEGRITY, INNOVATION</h4>
<p>Our values are echoed everywhere we provide service to you. We understand that business people
need a wide range of services and knowledge of local conditions to help them create, operate and
dispose of ventures across the globe. We were formed in response to the needs of our clients; our
relationships have come to define the next level of service that our clients have earned and expect.</p>
<br>
<p>
Carator is a cohesive network of independent member firms providing audit, accounting, tax and business advisory services.
Our member firms share our clients’ aspirations and staff are approachable and down-to-earth individuals, delivering customised,
innovative and practical solutions to help you make the right business decisions.
</p>
<br>
<p>
Our commitment to quality is one of our main values – because it is so important to us, we strive to achieve this in everything
we do. We offer same high-quality professional standards in all areas we serve.
</p>
<br>
<p>
We offer an exceptional competitive advantage – national capabilities enhanced by global resources and attentive personal service.
Our people pride themselves on their ability to combine local knowledge with regional, national and international skill sets.
</p>
<br>
<p>
We have the depth and breadth to help your business compete effectively and successfully. Our drive for professionalism,
quality, integrity and innovation has realised substantial growth for both clients and member firms.
</p>
</div>
</div>
<!-- Special Description Area -->
<div class="special_description_area mt-150">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="special_description_img">
<img src="img/bg-img/special.png" alt="">
</div>
</div>
<div class="col-lg-6 col-xl-5 ml-xl-auto">
<div class="special_description_content">
<h2>The Accountants You Can Trust</h2>
<p>Carator has been specializing in personalized taxation and accounting services. In addition to our certified accountants, we have the skills, knowledge and charisma to handle all of your accounting needs. We are ready to tackle any financial challenges that you may have as your trusted tax planner and financial advisor.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="awesome-feature-area bg-white section_padding_0_50 clearfix" id="services">
<div class = "container">
<div class = "row">
<div class="col-12">
<div class="section-heading text-center">
<h2>Services we offer</h2>
<div class="line-shape"></div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="special_description_img">
<img src="img/bg-img/special1.png" alt="">
</div>
</div>
<div class="col-lg-6 col-xl-5 ml-xl-auto">
<div class="special_description_content">
<h2>Audit and Assurance</h2>
<p>Independent audit and assurance are not just about good governance but valuable tools for
benchmarking and improving business performance.</p>
<p>The breadth of knowledge and experience across industries and sectors ensures our member firms
to provide audit and assurance services tailored to the unique needs of your business.</p>
<a id="firstrmore" onclick="firstFunction()" href="#"> Read more </a>
<a id="firstrless" onclick="firstFunction()" href="#"> Read less </a>
</div>
</div>
<div id ="firstbox" class = "row" style="padding-top:40px">
<div class ="single-special">
<p>As well as meeting internal reporting requirements and statutory obligations, a robust annual audit
identifies both threats and opportunities to your business or organisation. Intelligent insight is
provided and practical recommendations are made.</p>
<p style="padding-top:20px">In addition to carrying out audit and assurance services for individual businesses and organisations,
our member firms frequently conduct audits on behalf of parent companies, managing and co-
ordinating the audit process across an entire corporate group</p>
<h4 style="padding-top:20px">OUR AUDIT AND ASSURANCE SERVICES INCLUDE:</h4>
<ul class="list-group">
<li class="list-group-item">Statutory audits.</li>
<li class="list-group-item">Internal Audits involving review of internal controls and Risk management systems.</li>
<li class="list-group-item">Consolidation of financial statements and other financial reports.</li>
<li class="list-group-item">Due Diligence Audits.</li>
<li class="list-group-item">Special purpose audits.</li>
<li class="list-group-item">Concurrent Audits.</li>
</ul>
</div>
</div>
</div>
<div class="row" style="padding-top:30px">
<div class="col-lg-6">
<div class="special_description_img">
<img src="img/bg-img/special5.png" alt="">
</div>
</div>
<div class="col-lg-6 col-xl-5 ml-xl-auto">
<div class="special_description_content">
<h2>Business Advisory and Accounting</h2>
<p>Business is not just about the numbers.</p>
<p>Developing a real understanding of your business and the market you operate in, enables experts
from our member firms to proactively help you drive greater efficiency and increase profitability.</p>
<a id = "secondrmore" onclick="secondFunction()" href="#"> Read more </a>
<a id = "secondrless" onclick="secondFunction()" href="#"> Read less </a>
</div>
</div>
<div id ="secondbox" class = "row" style="padding-top:40px">
<div class ="single-special">
<p>It can help you take advantage of opportunities, whether through identifying new investors and
partners or developing and executing an acquisition strategy.</p>
<p style="padding-top:20px">Business advisory services provided by us include year-end accounts
preparation, management account reviews and assistance in preparing budgets and financial
projections.</p>
<p style="padding-top:20px">Carator helps in developing or reviewing business plans and carry out
independent business reviews and valuations for lenders and investors. Our services aid to
expansion into new markets, develop cross-border joint ventures or outsource business processes
to lower cost locations.</p>
<h4 style="padding-top:20px">OUR BUSINESS ADVISORY AND ACCOUNTING SERVICE INCLUDE:</h4>
<ul class="list-group">
<li class="list-group-item" >Accounting and Book-keeping outsourcing.</li>
<li class="list-group-item" >Budgeting, Financial planning and outsourcing.</li>
<li class="list-group-item">Cash flow and profit projections.</li>
<li class="list-group-item">Business plans and independent business reviews.</li>
<li class="list-group-item">Business Valuations.</li>
<li class="list-group-item">Company formations and company secretarial services including appropriate tax-efficient and commercials and tax-efficient structures.</li>
<li class="list-group-item">Review of Management review systems.</li>
<li class="list-group-item">Payroll administration and company administrative systems.</li>
</ul>
</div>
</div>
</div>
<div class="row" style="padding-top:30px">
<div class="col-lg-6">
<div class="special_description_img">
<img src="img/bg-img/special3.png" alt="">
</div>
</div>
<div class="col-lg-6 col-xl-5 ml-xl-auto">
<div class="special_description_content">
<h2>Taxation</h2>
<p>In an increasingly complex tax environment, having a strategy in place is vital for even the most
straightforward of businesses. Taking advantage of opportunities to minimise tax liabilities can
deliver significant financial benefits for your business.</p>
<p>We provide corporate tax services to clients ranging from major internationals to sole traders.</p>
<a id="thirdrmore" onclick="thirdFunction()" href="#"> Read more </a>
<a id="thirdrless" onclick="thirdFunction()" href="#"> Read less </a>
</div>
</div>
<div id ="thirdbox" class = "row" style="padding-top:40px">
<div class ="single-special">
<p>In-depth knowledge and understanding of areas, such as treatment of capital allowances and
utilising R&D credits, can ensure your business is able to invest for growth in the most
tax-efficient way.Advice on methods for deferring tax can also help prevent or deal with
cash-flow issues.</p>
<h4 style="padding-top:20px">OUR TAXATION SERVICE INCLUDE: </h4>
<ul class="list-group">
<li class="list-group-item">Transfer Pricing Study.</li>
<li class="list-group-item">Income Tax Representation and Litigation support services before Tax authorities.</li>
<li class="list-group-item">Advisory on Investments for efficient tax planning.</li>
<li class="list-group-item">Preparation and Computation of Tax Liabilities.</li>
<li class="list-group-item">Structuring of pay for minimisation of tax on employee salaries.</li>
<li class="list-group-item">Filing of Tax Returns.</li>
<li class="list-group-item">Preparation of Tax Estimates for Annual discharge of tax liability.</li>
<li class="list-group-item">EXPAT and NRI taxation Services.</li>
<li class="list-group-item">Advisory on Double Taxation Advisory Agreements with various countries.</li>
</ul>
</div>
</div>
</div>
<div class="row" style="padding-top:30px">
<div class="col-lg-6">
<div class="special_description_img">
<img src="img/bg-img/special4.png" alt="">
</div>
</div>
<div class="col-lg-6 col-xl-5 ml-xl-auto">
<div class="special_description_content">
<h2>Virtual CFO</h2>
<p>The concept of Virtual CFO (VCFO) is emerging very quick in the recent times. This is part
of our Business Advisory and Accounting services. With increasing compliance costs, it is
very much pertinent to adopt professional guidance in managing the day to day operations
of the entities which shall cost a lot to small corporates. There evolved this concept of
Virtual CFO where we, professionals, guide you in handling the end to end support services
through outsourcing many activities.</p>
<a id="fourthrmore"onclick="fourthFunction()" href="#"> Read more </a>
<a id="fourthrless"onclick="fourthFunction()" href="#"> Read less </a>
</div>
</div>
<div id ="fourthbox" class = "row" style="padding-top:40px">
<div class ="single-special">
<p>This concept helps in procuring higher quality with reduced costs, better risk management,
focus on core business activities, effective spend on capital budgets, staffing flexibility
and firm hand on growth metrics.</p>
<h4 style="padding-top:20px">OUR VIRTUAL CFO SERVICE INCLUDE: </h4>
<ul class="list-group">
<li class="list-group-item">Accounting</li>
<li class="list-group-item">Statutory Compliance</li>
<li class="list-group-item">Process Management</li>
<li class="list-group-item">AP and AR Management</li>
<li class="list-group-item">Secretarial Works</li>
<li class="list-group-item">Reporting of key metrics</li>
<li class="list-group-item">Analytics and forecasting</li>
</ul>
<p style="padding-top:20px"> Businesses and organisations are expected to comply with increasingly stringent governance not
only to satisfy regulators but to demonstrate a commitment to best practice to wider stakeholders
and investors. Outsourcing your governance and secretarial administration to us benefits from direct
access to professional advisers, increased efficiency and cost savings.</p>
<p style="padding-top:20px" > Working with specialists in the field also enables you to focus your efforts on developing your
business with the assurance that your statutory obligations are being complied with.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Video Area Start ***** -->
<div class="video-section">
<div class="container">
<div class="row">
<div class="col-12">
<!-- Video Area Start -->
<div class="video-area" style="background-image: url(img/bg-img/video.jpg);">
<!-- <div class="video-play-btn">
<a href="https://www.youtube.com/watch?v=f5BBJ4ySgpo" class="video_btn"><i class="fa fa-play" aria-hidden="true"></i></a>
</div> -->
</div>
</div>
</div>
</div>
</div>
<!-- ***** Video Area End ***** -->
<!-- ***** Cool Facts Area Start ***** -->
<section class="cool_facts_area clearfix">
<div class="container">
<div class="row">
<!-- Single Cool Fact-->
<div class="col-12 col-md-4 col-lg-4">
<div class="single-cool-fact d-flex justify-content-center wow fadeInUp" data-wow-delay="0.6s">
<div class="counter-area">
<h3><span class="counter">50</span></h3>
</div>
<div class="cool-facts-content">
<i class="ion-person"></i>
<p>+ ACTIVE <br>CLIENTS</p>
</div>
</div>
</div>
<!-- Single Cool Fact-->
<div class="col-12 col-md-4 col-lg-4">
<div class="single-cool-fact d-flex justify-content-center wow fadeInUp" data-wow-delay="0.8s">
<div class="counter-area">
<h3><span class="counter">5</span></h3>
</div>
<div class="cool-facts-content">
<i class="ion-ios-star-outline"></i>
<p>STAR <br>RATINGS</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 col-lg-4">
<div class="single-cool-fact d-flex justify-content-center wow fadeInUp" data-wow-delay="0.4s">
<div class="cool-facts-content">
<i class="ion-happy-outline"></i>
<p>Unlimited <br>Smilies</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Cool Facts Area End ***** -->
<!-- ***** CTA Area Start ***** -->
<section class="our-monthly-membership section_padding_50 clearfix" id="carrers">
<div class="container">
<div class="row align-items-center">
<div class="col-md-8">
<div class="membership-description">
<h2>Recuritment Handling</h2>
<p>We match the jobseekers profile with the recruiter's requirement and bring you a chance to attain your dream job. For employment related queries, reach us at info@carator.in</p>
</div>
</div>
<div class="col-md-4">
<div class="get-started-button wow bounceInDown" data-wow-delay="0.5s">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdDRRWxBAgyrNUkcRwDcLvhBCwpAIQHuISBZM-klIU1IgCQDQ/formrestricted">Upload your resume</a>
</div>
</div>
</div>
</div>
</section>
<!-- ***** CTA Area End ***** -->
<!-- ***** Client Feedback Area Start ***** -->
<section class="clients-feedback-area bg-white section_padding_100 clearfix" id="team">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<!-- Heading Text -->
<div class="section-heading">
<h2>Our Team</h2>
<div class="line-shape"></div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<div class="slider slider-for">
<!-- Client Feedback Text -->
<div class="client-feedback-text text-center">
<div class="client">
<i class="fa fa-quote-left" aria-hidden="true"></i>
</div>
<div class="client-description text-center">
<p>“ It is our view that many business ideas in India are suppressed due to high compliances and fulfilment of various statutory requirements.We at, Carator is to deliver such services which are mostly the supporting pillars which the businesses are standing on.”</p>
</div>
<div class="star-icon text-center">
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
</div>
<div class="client-name text-center">
<h5>Ananth</h5>
<p>Founder</p>
</div>
</div>
<!-- Client Feedback Text -->
<div class="client-feedback-text text-center">
<div class="client">
<i class="fa fa-quote-left" aria-hidden="true"></i>
</div>
<div class="client-description text-center">
<p>“ I am passionate to showcase my skills that could bring a real time benefit and add on support to take up issues at rapid speed. I love working with the team!”</p>
</div>
<div class="star-icon text-center">
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
</div>
<div class="client-name text-center">
<h5>Abhishek Bvs</h5>
<p>Developer / Techincal Support</p>
</div>
</div>
</div>
</div>
<!-- Client Thumbnail Area -->
<div class="col-12 col-md-6 col-lg-5">
<div class="slider slider-nav">
<div class="client-thumbnail">
<img src="img/bg-img/client-1.jpg" alt="">
</div>
<div class="client-thumbnail">
<img src="img/bg-img/client-2.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Client Feedback Area End ***** -->
<!-- ***** Contact Us Area Start ***** -->
<section class="footer-contact-area section_padding_100 clearfix" id="contact">
<div class="container">
<div class="row">
<div class="col-md-6">
<!-- Heading Text -->
<div class="section-heading">
<h2>Get in touch with us!</h2>
<div class="line-shape"></div>
</div>
<div class="footer-text">
<p>Better step for your taxation and accounting needs</p>
<p>We are here to provide the best accounting services for our clients, giving them long-term strategies for financial success. Contact us today.</p>
</div>
<div class="address-text">
<p><span>Address:</span> Hyderabad,India</p>
</div>
<div class="phone-text">
<p><span>Phone:</span> +91 8008887733</p>
</div>
<div class="email-text">
<p><span>Email:</span> info@carator.in</p>
</div>
</div>
<div class="col-md-6">
<!-- Form Start-->
<div class="contact_from">
<form action="https://formspree.io/info@carator.in" method="post">
<!-- Message Input Area Start -->
<div class="contact_input_area">
<div class="row">
<!-- Single Input Area Start -->
<div class="col-md-12">
<div class="form-group">
<input type="text" class="form-control" name="name" id="name" placeholder="Your Name" required>
</div>
</div>
<!-- Single Input Area Start -->
<div class="col-md-12">
<div class="form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your E-mail" required>
</div>
</div>
<!-- Single Input Area Start -->
<div class="col-12">
<div class="form-group">
<textarea name="message" class="form-control" id="message" cols="30" rows="4" placeholder="Your Message *" required></textarea>
</div>
</div>
<!-- Single Input Area Start -->
<div class="col-12">
<button type="submit" class="btn submit-btn">Send Now</button>
</div>
</div>
</div>
<!-- Message Input Area End -->
</form>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Contact Us Area End ***** -->
<!-- ***** Footer Area Start ***** -->
<footer class="footer-social-icon text-center section_padding_70 clearfix">
<!-- footer logo -->
<div class="footer-text">
<img src= "img/bg-img/logo.jpg">
<h2>Carator</h2>
</div>
<!-- social icon-->
<div class="footer-social-icon">
<a href="https://www.facebook.com/carator.in"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://twitter.com/carator_in"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/company/carator-in/"> <i class="fa fa-linkedin" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
</div>
<div class="footer-menu">
<nav>
<ul>
<li><a href="https://carator357.workplace.com/" target="_blank">Workspace Login</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
<!-- Foooter Text-->
<div class="copyright-text">
<!-- ***** Removing this text is now allowed! This template is licensed under CC BY 3.0 ***** -->
<p>Copyright ©2019 Carator, Maintained by <a href="https://github.com/abhishekbvs" target="_blank">Abhishek Bvs</a>, Design from Colorlib </p>
</div>
</footer>
<!-- ***** Footer Area Start ***** -->
<!-- Jquery-2.2.4 JS -->
<script src="js/jquery-2.2.4.min.js"></script>
<!-- Popper js -->
<script src="js/popper.min.js"></script>
<!-- Bootstrap-4 Beta JS -->
<script src="js/bootstrap.min.js"></script>
<!-- All Plugins JS -->
<script src="js/plugins.js"></script>
<!-- Slick Slider Js-->
<script src="js/slick.min.js"></script>
<!-- Footer Reveal JS -->
<script src="js/footer-reveal.min.js"></script>
<!-- Active JS -->
<script src="js/active.js"></script>
</body>
</html>