-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·765 lines (727 loc) · 30.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>CloudNinja - Your Personal Cloud Shinobi</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Icon -->
<link rel="stylesheet" href="assets/fonts/line-icons.css">
<!-- Owl carousel -->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/owl.theme.css">
<!-- Animate -->
<link rel="stylesheet" href="assets/css/animate.css">
<!-- Main Style -->
<link rel="stylesheet" href="assets/css/main.css">
<!-- Responsive Style -->
<link rel="stylesheet" href="assets/css/responsive.css">
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@2/dist/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init('user_jMTOCBdTTADmAyJry38Zy');
})();
</script>
<script type="text/javascript">
window.onload = function () {
document.getElementById('contact-form').addEventListener('submit', function (event) {
event.preventDefault();
// these IDs from the previous steps
emailjs.sendForm('contact_service', 'contact_form', this)
.then(function () {
console.log('SUCCESS!');
alert('Your message has been sent!');
document.getElementById('name').value = "";
document.getElementById('email').value = "";
document.getElementById('message').value = "";
document.getElementById('subject').value = "";
}, function (error) {
console.log('FAILED...', error);
alert('Message sent failed!');
});
});
}
</script>
</head>
<body>
<!-- Header Area wrapper Starts -->
<header id="header-wrap">
<!-- Navbar Start -->
<nav class="navbar navbar-expand-md bg-inverse fixed-top scrolling-navbar">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<a href="index.html" class="navbar-brand"><img src="assets/img/logo.png" alt=""></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="lni-menu"></i>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto w-100 justify-content-end clearfix">
<li class="nav-item active">
<a class="nav-link" href="#hero-area">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">
Services
</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="#team">
Team
</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="#pricing">
Get your team
</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="#testimonial">
Testimonial
</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="#contact">
Contact
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Hero Area Start -->
<div id="hero-area" class="hero-area-bg">
<div class="container">
<div class="row">
<div class="col-lg-7 col-md-12 col-sm-12 col-xs-12">
<div class="contents">
<h2 class="head-title">Mobile, Web & Cloud<br>Consultancy</h2>
<p>Our creative and technical teams can take enable your business to take that leap you want. We provide
top-notch services in area of mobile and web application development and cloud architecting services.
Blockchain & artifical intelligence services are our strongest suits.
</p>
<div class="header-button">
<a href="#services" class="btn btn-border">Learn More</i></a>
</div>
</div>
</div>
<div class="col-lg-5 col-md-12 col-sm-12 col-xs-12">
<div class="intro-img">
<img class="img-fluid" src="assets/img/intro-mobile.png" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- Hero Area End -->
</header>
<!-- Header Area wrapper End -->
<!-- Services Section Start -->
<section id="services" class="section-padding">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Our Services</h2>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<div class="row">
<!-- Services item -->
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="1.2s">
<div class="icon">
<i class="lni-layers"></i>
</div>
<div class="services-content">
<h3><a href="#">Cloud Consultancy</a></h3>
<p>Amazon (AWS), Microsoft Azure or Google (GCP) we help you design cost-effective and
efficient architectures for your products.
</p>
</div>
</div>
</div>
<!-- Services item -->
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="1.5s">
<div class="icon">
<i class="lni-mobile"></i>
</div>
<div class="services-content">
<h3><a href="#">Mobile App Development</a></h3>
<p>Cross-platform mobile applications based on react native is our speciality. We love to design & build
beautiful apps.
</p>
</div>
</div>
</div>
<!-- Services item -->
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="1.8s">
<div class="icon">
<i class="lni-rocket"></i>
</div>
<div class="services-content">
<h3><a href="#">Web Development</a></h3>
<p>Web applications and APIs to deliver scalable and robust services to your consumers is something feel
proud of.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section End -->
<!-- About Section start -->
<div class="about-area section-padding bg-gray">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12 col-xs-12 info">
<div class="about-wrapper wow fadeInLeft" data-wow-delay="0.3s">
<div>
<div class="site-heading">
<!-- <p class="mb-3">Manage Statistics</p> -->
<h2 class="section-title">We provide software engineering teams</h2>
</div>
<div class="content">
<p>
Just send us your team requirements and we will setup a meeting with you. Within 48 hours we can
allocate your resources and you can start working with the team. No hassle of recuirtment or
onboarding.
We manage payrolls, HR, workspace and everything in between so you can focus on whats more important,
Your ideas.
</p>
<a href="#pricing" class="btn btn-common mt-3">Find Out More</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-xs-12 wow fadeInRight" data-wow-delay="0.3s">
<img class="img-fluid" src="assets/img/about/img-1.png" alt="">
</div>
</div>
</div>
</div>
<!-- About Section End -->
<!-- Features Section Start -->
<!-- <section id="features" class="section-padding">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Awesome Features</h2>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<div class="row">
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12">
<div class="content-left">
<div class="box-item wow fadeInLeft" data-wow-delay="0.3s">
<span class="icon">
<i class="lni-rocket"></i>
</span>
<div class="text">
<h4>Bootstrap 4 Based</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
<div class="box-item wow fadeInLeft" data-wow-delay="0.6s">
<span class="icon">
<i class="lni-laptop-phone"></i>
</span>
<div class="text">
<h4>Fully Responsive</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
<div class="box-item wow fadeInLeft" data-wow-delay="0.9s">
<span class="icon">
<i class="lni-cog"></i>
</span>
<div class="text">
<h4>HTML5, CSS3 & SASS</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12">
<div class="show-box wow fadeInUp" data-wow-delay="0.3s">
<img src="assets/img/feature/intro-mobile.png" alt="">
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12">
<div class="content-right">
<div class="box-item wow fadeInRight" data-wow-delay="0.3s">
<span class="icon">
<i class="lni-leaf"></i>
</span>
<div class="text">
<h4>Modern Design</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
</div>
</div>
<div class="box-item wow fadeInRight" data-wow-delay="0.6s">
<span class="icon">
<i class="lni-layers"></i>
</span>
<div class="text">
<h4>Multi-purpose Template</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
<div class="box-item wow fadeInRight" data-wow-delay="0.9s">
<span class="icon">
<i class="lni-leaf"></i>
</span>
<div class="text">
<h4>Working Contact Form</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Features Section End -->
<!-- Team Section Start -->
<!-- <section id="team" class="section-padding bg-gray">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Meet our team</h2>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<div class="row">
<div class="col-lg-6 col-md-12 col-xs-12">
<div class="team-item wow fadeInRight" data-wow-delay="0.2s">
<div class="team-img">
<img class="img-fluid" src="assets/img/team/team-01.png" alt="">
</div>
<div class="contetn">
<div class="info-text">
<h3><a href="#">David Smith</a></h3>
<p>Front-end Developer</p>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod eos id officiis hic tenetur.</p>
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-instagram-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-xs-12">
<div class="team-item wow fadeInRight" data-wow-delay="0.4s">
<div class="team-img">
<img class="img-fluid" src="assets/img/team/team-02.png" alt="">
</div>
<div class="contetn">
<div class="info-text">
<h3><a href="#">ERIC PETERSON</a></h3>
<p>Product Designer</p>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod eos id officiis hic tenetur.</p>
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-instagram-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-xs-12">
<div class="team-item wow fadeInRight" data-wow-delay="0.6s">
<div class="team-img">
<img class="img-fluid" src="assets/img/team/team-03.png" alt="">
</div>
<div class="contetn">
<div class="info-text">
<h3><a href="#">DURWIN BABB</a></h3>
<p>Lead Designer</p>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod eos id officiis hic tenetur.</p>
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-instagram-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-xs-12">
<div class="team-item wow fadeInRight" data-wow-delay="0.8s">
<div class="team-img">
<img class="img-fluid" src="assets/img/team/team-04.png" alt="">
</div>
<div class="contetn">
<div class="info-text">
<h3><a href="#">MARIJN OTTE</a></h3>
<p>Lead Designer</p>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod eos id officiis hic tenetur.</p>
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-instagram-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Team Section End -->
<!-- Pricing section Start -->
<section id="pricing" class="section-padding">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Get your team</h2>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="table wow fadeInLeft" data-wow-delay="1.2s">
<div class="icon-box">
<i class="lni-package"></i>
</div>
<div class="pricing-header">
<!-- <p class="price-value">$10<span> /mo</span></p> -->
Suitable for
</div>
<div class="title">
<h3>Small Projects</h3>
</div>
<ul class="description">
<li>2 Software Engineers</li>
<li>1 Project Manager</li>
<li>Part-time or Full-time</li>
<li> </li>
</ul>
<!-- <a target="_blank" href="mailto:[email protected]?subject=Dev Team Request&body=Hi,
%0D%0AI would like to request a Small Project dev team">
<button class="btn btn-common">Request Now</button> </a> -->
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 active">
<div class="table wow fadeInUp" id="active-tb" data-wow-delay="1.2s">
<div class="icon-box">
<i class="lni-rocket"></i>
</div>
<div class="pricing-header">
Suitable for
</div>
<div class="title">
<h3>Startups</h3>
</div>
<ul class="description">
<li>2-4 Software Engineers</li>
<li>1 Software Architect</li>
<li>1 Test Engineer</li>
<li>1 Project Manager</li>
</ul>
<!-- <a target="_blank" href="mailto:[email protected]?subject=Dev Team Request&body=Hi,
%0D%0AI would like to request a Startup dev team">
<button class="btn btn-common">Request Now</button> </a> -->
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="table wow fadeInRight" data-wow-delay="1.2s">
<div class="icon-box">
<i class="lni-apartment"></i>
</div>
<div class="pricing-header">
We also provide for
</div>
<div class="title">
<h3>Corporates</h3>
</div>
<ul class="description">
<li>Domain Specialist Engineers</li>
<li>Enterprise Architects</li>
<li>Test Engineers</li>
<li>Project Managers</li>
</ul>
<!-- <a target="_blank" href="mailto:[email protected]?subject=Dev Team Request&body=Hi,
%0D%0AI would like to request an enterprise dev team"> -->
<!-- <button class="btn btn-common">Request Now</button>-->
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Table Section End -->
<!-- Testimonial Section Start -->
<!-- <section id="testimonial" class="testimonial section-padding">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div id="testimonials" class="owl-carousel wow fadeInUp" data-wow-delay="1.2s">
<div class="item">
<div class="testimonial-item">
<div class="img-thumb">
<img src="assets/img/testimonial/img1.jpg" alt="">
</div>
<div class="info">
<h2><a href="#">David Smith</a></h2>
<h3><a href="#">Creative Head</a></h3>
</div>
<div class="content">
<p class="description">Praesent cursus nulla non arcu tempor, ut egestas elit tempus. In ac ex
fermentum, gravida felis nec, tincidunt ligula.</p>
<div class="star-icon mt-3">
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-half"></i></span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="img-thumb">
<img src="assets/img/testimonial/img2.jpg" alt="">
</div>
<div class="info">
<h2><a href="#">Domeni GEsson</a></h2>
<h3><a href="#">Awesome Technology co.</a></h3>
</div>
<div class="content">
<p class="description">Praesent cursus nulla non arcu tempor, ut egestas elit tempus. In ac ex
fermentum, gravida felis nec, tincidunt ligula.</p>
<div class="star-icon mt-3">
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-half"></i></span>
<span><i class="lni-star-half"></i></span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="img-thumb">
<img src="assets/img/testimonial/img3.jpg" alt="">
</div>
<div class="info">
<h2><a href="#">Dommini Albert</a></h2>
<h3><a href="#">Nesnal Design co.</a></h3>
</div>
<div class="content">
<p class="description">Praesent cursus nulla non arcu tempor, ut egestas elit tempus. In ac ex
fermentum, gravida felis nec, tincidunt ligula.</p>
<div class="star-icon mt-3">
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-half"></i></span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="img-thumb">
<img src="assets/img/testimonial/img4.jpg" alt="">
</div>
<div class="info">
<h2><a href="#">Fernanda Anaya</a></h2>
<h3><a href="#">Developer</a></h3>
</div>
<div class="content">
<p class="description">Praesent cursus nulla non arcu tempor, ut egestas elit tempus. In ac ex
fermentum, gravida felis nec, tincidunt ligula.</p>
<div class="star-icon mt-3">
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-filled"></i></span>
<span><i class="lni-star-half"></i></span>
<span><i class="lni-star-half"></i></span>
<span><i class="lni-star-half"></i></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Testimonial Section End -->
<!-- Call To Action Section Start -->
<section id="cta" class="section-padding">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-xs-12 wow fadeInLeft" data-wow-delay="0.3s">
<div class="cta-text">
<h4>Get your dev team now!</h4>
<p>We assemble a team for your project within 48 hours and allocate your resources so can start working on
your big ideas. </p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-xs-12 text-right wow fadeInRight" data-wow-delay="0.3s">
</br><a target="_blank" href="mailto:[email protected]?subject=Dev Team Request&body=Hi,
%0D%0AI would like to request a dev team with the following details:%0D%0ANumber of resources: #
%0D%0A
%0D%0A
[Resource 1]%0D%0A
Competence and Skills: $ %0D%0A
Experience: # Year(s)%0D%0A
Required for how long: # Month(s)%0D%0A
%0D%0A
%0D%0A
[Resource 2]%0D%0A
Competence and Skills: $ %0D%0A
Experience: # Year(s)%0D%0A
Required for how long: # Month(s)%0D%0A
%0D%0A
*Edit and send this email according to your needs, someone from our team will get in touch with you soon. Thank you!%0D%0A
%0D%0A%0D%0ABest regards" class="btn btn-common">Request Now</a>
</div>
</div>
</div>
</section>
<!-- Call To Action Section Start -->
<!-- Contact Section Start -->
<section id="contact" class="section-padding bg-gray">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Contact Us</h2>
<div class="shape wow fadeInDown" data-wow-delay="0.3s"></div>
</div>
<div class="row contact-form-area wow fadeInUp" data-wow-delay="0.3s">
<div class="col-lg-7 col-md-12 col-sm-12">
<div class="contact-block">
<form id="contact-form">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" id="name" name="user_name" placeholder="Name" required
data-error="Please enter your name">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" placeholder="Email" id="email" class="form-control" name="user_email" required
data-error="Please enter your email">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<input type="text" placeholder="Subject" id="subject" name="subject" class="form-control" required
data-error="Please enter your subject">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea class="form-control" id="message" name="message" placeholder="Your Message" rows="7"
data-error="Write your message" required></textarea>
<div class="help-block with-errors"></div>
</div>
<div class="submit-button text-left">
<button class="btn btn-common" id="form-submit" type="submit">Send Message</button>
<div id="msgSubmit" class="h3 text-center hidden"></div>
<div class="clearfix"></div>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="col-lg-5 col-md-12 col-xs-12">
<div class="map">
<object style="border:0; height: 280px; width: 100%;"
data="https://maps.google.com/maps?q=Ravi%20Road%20Lahore&t=&z=13&ie=UTF8&iwloc=&output=embed"></object>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section End -->
<!-- Footer Section Start -->
<footer id="footer" class="footer-area section-padding">
<div class="container">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-6 col-mb-12">
<div class="widget">
<h3 class="footer-logo"><img src="assets/img/logo.png" alt=""></h3>
<div class="textwidget">
<p>CloudNinja provides IT consultancy services to global markets. It's working model is dynamic and
remote. Write us to get in touch with us!</p>
</div>
<div class="social-icon">
<a class="facebook" href="https://www.facebook.com/cloudninjaone/"><i
class="lni-facebook-filled"></i></a>
<a class="twitter" href="https://twitter.com/CloudNinjaOne"><i class="lni-twitter-filled"></i></a>
<!-- <a class="instagram" href="#"><i class="lni-instagram-filled"></i></a> -->
<a class="linkedin" href="https://www.linkedin.com/company/cloudninjaone/"><i
class="lni-linkedin-filled"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
</div>
<div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
</div>
<div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
<h3 class="footer-titel">Contact</h3>
<ul class="address">
<li>
<a href="#"><i class="lni-map-marker"></i> 48 C Model Town Bank - <br> Square Market, Lahore 54000</a>
</li>
<li>
<a href="#"><i class="lni-phone-handset"></i> P: +92 333 4674 399</a>
</li>
<li>
<a href="#"><i class="lni-envelope"></i> E: [email protected]</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="copyright">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="copyright-content">
<p>Copyright © 2021 CloudNinja, All Right Reserved</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer Section End -->
<!-- Go to Top Link -->
<a href="#" class="back-to-top">
<i class="lni-arrow-up"></i>
</a>
<!-- Preloader -->
<div id="preloader">
<div class="loader" id="loader-1"></div>
</div>
<!-- End Preloader -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="assets/js/jquery-min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/owl.carousel.min.js"></script>
<script src="assets/js/wow.js"></script>
<script src="assets/js/jquery.nav.js"></script>
<script src="assets/js/scrolling-nav.js"></script>
<script src="assets/js/jquery.easing.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/form-validator.min.js"></script>
<script src="assets/js/contact-form-script.min.js"></script>
</body>
</html>