-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebdev.html
More file actions
1329 lines (1169 loc) · 53.1 KB
/
webdev.html
File metadata and controls
1329 lines (1169 loc) · 53.1 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
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 class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Create website for business</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/services_base.css">
<link rel="stylesheet" href="css/services_vendor.css">
<link rel="stylesheet" href="css/services_main.css">
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="stylesheet" href="css/icomoon.css">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<link rel="icon" href="favicon.png" type="image/x-icon">
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js" data-auto-replace-svg="nest"></script>
<script type="text/javascript">
function myFunction() {
var x = document.getElementById('ftco-nav');
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
window.onscroll = () => {
const nav1 = document.querySelector('#nav_bar');
if(this.scrollY <= 10) {
nav1.className = 'navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light';
}
else {
nav1.className = 'nav_scroll navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light';
}
};
</script>
<!-- Crisp chatbot plugin -->
<script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID="825c6884-f378-4893-8ac1-4e9bef8499ba";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>
<!-- Crisp end -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-162129849-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-162129849-1');
</script>
<!-- Google analytics end -->
</head>
</head>
<body id="top">
<!-- preloader
================================================== -->
<!-- <div id="preloader">
<div id="loader" class="dots-jump">
<div></div>
<div></div>
<div></div>
</div>
</div> --><!-- removed inbuilt preloader -->
<style type="text/css">
.navbar-brand {
position:relative;
left:-10%;
}
@media screen and (max-width: 995px) {
.ftco-footer {
font-size: 16px;
padding: 5em 0;
padding-bottom: 5em;
padding-bottom: 3em;
background: #421b9b;
position: relative;
height: max-content;
display: inline-table;
}
#navbar-toggler:active,#navbar-toggler:focus,#navbar-toggler:focus:active {
background-image: none !important;
outline: 0 !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
background-color: transparent !important;
}
.navbar-brand {
position:relative;
left:2px;
}
#nav_bar > .container {
width: 100%;
}
#menu_btn {
display: absolute;
right: 2px;
}
#nav_bar {
padding-top: 1.5px !important;
padding-bottom: 1.5px !important;
}
#ul_l {
left: 0% !important;
margin-left: 0px !important;
}
#ul_l > li > a{
font-weight: 500 !important;
letter-spacing: 1px !important;
font-family: "Work Sans", Arial, sans-serif !important;
font-size: 13px !important;
}
#get_quote {
letter-spacing: 1px;
padding: 1rem 1.5rem;
font-weight: 500;
color: #fff;
border: 1px solid #6927ff;
margin-top: 4px;
background: #6927ff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
}
.ftco-navbar-light .navbar-nav > .nav-item.cta > a span {
display: inline-block;
color: #fff;
width: 92%;
}
</style>
<!-- navbar -->
<nav id="nav_bar" style="display: flex !important;
justify-content: center !important;" class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar" >
<div class="container">
<a class="navbar-brand" href="index.html"> <img style="height: 3rem; padding: 0px !important; margin: 0px !important;" src="images/logos/LogoTransparent.png"> </a>
<button class="navbar-toggler noscroll" id="navbar-toggler" type="button" onclick="myFunction();" data-toggle="collapse" data-target="#ftco-nav" id="menu_btn" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation" style="border: none !important; ">
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" style="display: none;" id="ftco-nav">
<ul class="navbar-nav ml-auto" id="ul_l" style="position: relative; left: 15%;">
<li class="nav-item"><a href="index.html" class="nav-link noscroll">Home</a></li>
<li class="nav-item option1">
<div class="dropdown">
<a href="service.html" onmouseover="document.getElementById('hidden').style.display='block';" style="text-transform: uppercase; font-size: 13px; margin-bottom:-1px; padding-top: 0.9rem; padding-left: 20px; letter-spacing: 1px; font-weight: 500; padding-right: 20px; padding-bottom: 0.9rem; color:#6927ff !important;" class="nav-link dropdown-toggle" data-hover="dropdown">Services <i style=" vertical-align: super; border: solid #6927ff; border-width: 0 3px 3px 0; display: inline-block; padding: 2px;transform: rotate(45deg); -webkit-transform: rotate(45deg);"></i></a>
<ul class="dropdown-menu" id="hidden" onmouseover="document.getElementById('hidden').style.display='block';" onmouseout="document.getElementById('hidden').style.display='none';" style="list-style: none; display: none; margin-top: 1rem;" >
<li><a href="#" class="dropdown-item" style="" >Web Development</a></li>
<li><a href="digitalmarketing.html" class="dropdown-item" >Digital Marketing</a></li>
<li><a href="apidev.html" class="dropdown-item" >API Development</a></li>
<li><a href="solutions.html" class="dropdown-item" >Solutions</a></li>
</ul>
</div>
</li>
<li class="nav-item option2"><a href="service.html" style="color:#6927ff !important;" id="1" class="nav-link noscroll">Services</a></li>
<li class="nav-item"><a href="whyus.html" class="nav-link noscroll">Why Us?</a></li>
<li class="nav-item"><a class="nav-link noscroll" href="pricing.html">Pricing</a></li>
<li class="nav-item"><a href="aboutus.html"class="nav-link noscroll">About Us</a></li>
<li class="nav-item"><a href="blog.html" class="noscroll nav-link">Blog</a></li>
<li class="nav-item cta" ><a id="get_quote" href="estimateprice.html" class="nav-link" style="letter-spacing: 1px; padding: 1rem 1.5rem; font-weight: 500;"><span>Get Quote?</span></a></li>
</ul>
</div>
</div>
</nav>
<style type="text/css">
.container_footer {
max-width: 1140px;
}
.container_footer {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.col-md {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
position: relative;
width: 100%;
padding-right: 15px;
padding-left: 15px;
}
body {
font-family: "Work Sans", Arial, sans-serif;
}
.mb-5, .my-5 {
margin-bottom: 3rem !important;
}
.navbar-brand {
display: inline-block;
padding-top: 0.3125rem;
padding-bottom: 0.3125rem;
margin-right: 1rem;
font-size: 2rem;
font-weight: 900 !important;
line-height: inherit;
white-space: nowrap;
}
.dropdown-item {
display: block;
width: 100%;
padding: 0.25rem 1.5rem;
clear: both;
font-weight: 400;
color: #212529;
text-align: inherit;
white-space: nowrap;
background-color: transparent;
border: 0;
}
li {
padding: 0px !important;
}
a {
-webkit-transition: .3s all ease;
-o-transition: .3s all ease;
transition: .3s all ease;
color: #6927ff;
}
a {
color: #007bff;
text-decoration: none;
background-color: transparent;
}
.ftco-navbar-light {
background: transparent !important;
position: absolute;
top: 20px;
left: 0;
right: 0;
z-index: 3;
}
.navbar-expand-lg {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar {
position: fixed !important;
top:0px !important;
background: transparent !important;
z-index: 3;
padding-top: 4.5rem !important;
padding-bottom: 1rem !important;
padding-left: 1rem !important;
padding-right: 1rem !important;
}
.dropdown:hover .dropdown-menu {
display: block;
margin-top: 0;
}
.nav_scroll {
background: white !important;
padding-top: 2.5rem !important;
}
.nav_scroll > .container > .noscroll {
color: black !important;
}
.nav_scroll > .container > .noscroll {
color: black !important;
}
.nav_scroll > .container > .collapse > .navbar-nav > .nav-item > .noscroll {
color: black !important;
}
.nav_scroll > .container > .collapse > .navbar-nav > .nav-item > .dropdown > .noscroll {
color: black !important;
}
.nav_scroll > .container > .noscroll {
color: black !important;
}
.noscroll {
color: white !important;
}
@media screen and (max-width: 1200px) {
.one-third {
opacity: 0.2;
}
}
@media screen and (min-width: 995px) {
.d-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.row_footer {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.option2 {
display: none;
}
.option1 {
display: block;
}
}
@media screen and (max-width: 995px) {
.col-md-6 {
max-width: 100% !important;
}
.d-flex {
display: block !important;
}
.option2 {
display: block;
}
.option1 {
display: none;
}
}
.nav-link {
font-weight: bolder !important;
}
.nav-link:hover {
color: #6927ff !important;
}
.dropdown-item:hover {
color: white;
background-color: #6927ff;
}
</style>
<!--alter header
================================================== -->
<!-- <header class="s-header">
<div class="row">
<div class="header-logo">
<a class="site-logo" href="index.html"><img src="images/logo.svg" alt="Homepage"></a>
</div>
<nav class="header-nav-wrap">
<ul class="header-nav">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#services" title="services">Services</a></li>
<li><a class="smoothscroll" href="#works" title="works">Works</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
</nav>
<a class="header-menu-toggle" href="#0">
<span class="header-menu-icon"></span>
</a>
</div>
</header>
-->
<!-- home
================================================== -->
<section id="home" class="s-home page-hero target-section" data-parallax="scroll" data-image-src="images/webdev.jpg" data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h1>
A Website Promotes you 24/7 <br>
No Employee will do that <br>
Ever !
</h1>
<div class="home-content__button">
<a onclick="javascript:location.href='contact.html'" style=" vertical-align: middle; font-weight: 500; font-size: large; line-height: 4rem; letter-spacing: 0.5rem; padding: 1rem 7rem;" class="smoothscroll btn btn-animatedbg">
Contact Us
</a>
</div>
<div class="home-content__video">
<a class="video-link" href="https://player.vimeo.com/video/117310401?color=01aef0&title=0&byline=0&portrait=0" data-lity>
<span class="video-icon"></span>
<span class="video-text">Play Video</span>
</a>
</div>
</div> <!-- end home-content__main -->
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
Scroll
</a>
</div>
</div> <!-- end home-content -->
<ul class="home-social">
<li>
<a href="https://www.facebook.com/Chillitray-Technologies-105353097798969/"><i class="fab fa-facebook-f" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="https://twitter.com/chillitray"><i class="fab fa-twitter" aria-hidden="true"></i><span>Twitter</span></a>
</li>
<li>
<a href="https://www.instagram.com/chillitray/"><i class="fab fa-instagram" aria-hidden="true"></i><span>Instagram</span></a>
</li>
<li>
<a href="#0"><i class="fab fa-linkedin" aria-hidden="true"></i><span>LinkedIn</span></a>
</li>
<li>
<a href="#0"><i class="fab fa-pinterest" aria-hidden="true"></i><span>Pinterest</span></a>
</li>
</ul> <!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 data-num="01" class="subhead">What would We Provide?</h3>
<h1 class="display-1">
We at Chillitray are determined to not just develop a platform but design a whole new experience for our customers.
</h1>
<p class="lead">
With growing scope of the internet and everything being bought online, even local stores are moving to digital markets where they can cater to customers 24/7 and we don't want you to remain behind!
</p>
</div>
</div>
<div class="row about-process block-1-2 block-tab-full">
<div class="col-block item-process" data-aos="fade-up">
<div class="item-process__header">
<h3><i style="font-size: 50px; color: #6927ff; margin-right: 2rem;" class="fas fa-city"></i>Business Website</h3>
</div>
<p>
Be it E-commerce, Branding, Travels, Business portfolio, Sales or any requirement for your business to take online, We'd do it for you. Be it static or Dynamic or CMS website, you can always rely upon us.
</p>
</div>
<div class="col-block item-process" data-aos="fade-up">
<div class="item-process__header">
<h3><i style="font-size: 50px; color: #6927ff; margin-right: 2rem;" class="fas fa-user-tie"></i>Personal Branding</h3>
</div>
<p>
Are you an Influencer? Business person? Actor? Politician? Model? Photographer? Important person? ! Establish yourself as a brand, make yourself reachable professionally. We'd build a personal or Portfolio website for you.!
</p>
</div>
<div class="col-block item-process" data-aos="fade-up">
<div class="item-process__header">
<h3><i style="font-size: 50px; color: #6927ff; margin-right: 2rem;" class="fas fa-school"></i>Educational Institutions & NGOs</h3>
</div>
<p>
We'd Create a portal for your NGO / Non-profit Organizations to empower your community to have better and larger outreach towards needs. As Educational Institutions, looking for School Branding? Learning Platform? We'd Build it with you, For you.
</p>
</div>
<div class="col-block item-process" data-aos="fade-up">
<div class="item-process__header">
<h3><i style="font-size: 50px; color: #6927ff; margin-right: 2rem;" class="fas fa-gifts"></i>eGiftX</h3>
</div>
<p>
eGiftX is Exclusive service by us, to Gift Experiences to your loved Ones. Gift them a platform of memories, unique gifting ranges just by us. Be it Birthdays, Anniversaries or Important dates, we're keen to make it special for you. Contact us to learn more, you'd not regret it. Promise.!
</p>
</div>
</div> <!-- end about-process -->
</section> <!-- end s-about -->
<style type="text/css">
.about-process h3 {
margin-left: 0rem !important;
}
</style>
<!-- services
================================================== -->
<section id="services" class="s-services target-section">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 data-num="02" class="subhead">Complimentary Inclusions</h3>
<h1 class="display-1 display-1--light">
Our services are tailored to make your business grow and stand out.
</h1>
<p class="lead lead-light">
The services below could be Free complimentary inclusions by us for your Portal, with Pay as you go.
</p>
</div>
</div>
<div class="row services-list block-1-3 block-m-1-2 block-tab-full">
<div class="col-block item-service" data-aos="fade-up">
<h4>Analytics Support</h4>
<p>
We would enable complete analytics support for your portal to track & strategise based on number of users landing on the platform with demographic, timely and frequency insights. Which helps to better understand website traffic and boost it's growth.
</p>
</div>
<div class="col-block item-service" data-aos="fade-up">
<h4>AI Based Chatbot Integration</h4>
<p>
Providing third party chatbots on your website for better engagement of customers landing on your page and enhance conversion ratio. Feautres such as auto reply, Magic screen and reply from Android/Ios Supported.
</p>
</div>
<div class="col-block item-service" data-aos="fade-up">
<h4>Free SEO Solutions</h4>
<p>
For Everything we develop, We ensure to provide SEO solutions for long term traction of your platform, It helps maintain our standards and your growth. The entire process of development is done with keeping your reachability in our minds.
</p>
</div>
<div class="col-block item-service" data-aos="fade-up">
<h4>Free Maintainence*</h4>
<p>
Even after development period ends, we'd handle entire maintainence upto a certain count for upto 5+ years for free of cost for every development work we do. Keeping website updated is our Number one priority.
</p>
</div>
<div class="col-block item-service" data-aos="fade-up">
<h4>Free MailBox Integration</h4>
<p>
Based on business requirements, we would help you create easy-to-use and secure email domains for your platform, for ultimate professional needs of your platform.
</p>
</div>
<div class="col-block item-service" data-aos="fade-up">
<h4>Free Security</h4>
<p>
For every website we develop, we ensure that it remains safe from hackers and other elements via which it can be misused. We provide free security solutons and consultancy for everything we develop. Effortlessly.
</p>
</div>
</div> <!-- end services-list -->
</section> <!-- end s-services -->
<!-- works
================================================== -->
<section id="works" class="s-works target-section">
<!-- <div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 data-num="03" class="subhead">Recent Works</h3>
<h1 class="display-1">
Here are some of our favorite projects we have
done lately. Feel free to check them out.
</h1>
</div>
</div>
<div class="portfolio block-1-4 block-m-1-3 block-tab-1-2 collapse">
<div class="col-block item-folio" data-aos="fade-up">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-lamp.jpg" class="thumb-link" title="Lamp" data-size="1050x700">
<img src="images/portfolio/lamp.jpg"
srcset="images/portfolio/lamp.jpg 1x, images/portfolio/lamp@2x.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Lamp
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
Project Link
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio -->
<!-- <div class="col-block item-folio" data-aos="fade-up">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-fuji.jpg" class="thumb-link" title="Fuji" data-size="1050x700">
<img src="images/portfolio/fuji.jpg"
srcset="images/portfolio/fuji.jpg 1x, images/portfolio/fuji@2x.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Fuji
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
Project Link
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio -->
<!-- <div class="col-block item-folio" data-aos="fade-up">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-woodcraft.jpg" class="thumb-link" title="Woodcraft" data-size="1050x700">
<img src="images/portfolio/woodcraft.jpg"
srcset="images/portfolio/woodcraft.jpg 1x, images/portfolio/woodcraft@2x.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Woodcraft
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
Project Link
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio -->
<!-- <div class="col-block item-folio" data-aos="fade-up">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-droplet.jpg" class="thumb-link" title="Droplet" data-size="1050x700">
<img src="images/portfolio/droplet.jpg"
srcset="images/portfolio/droplet.jpg 1x, images/portfolio/droplet@2x.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Droplet
</h3>
<p class="item-folio__cat">
Web Development
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
Project Link
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio -->
<!-- <div class="col-block item-folio" data-aos="fade-up">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-shutterbug.jpg" class="thumb-link" title="Shutterbug" data-size="1050x700">
<img src="images/portfolio/shutterbug.jpg"
srcset="images/portfolio/shutterbug.jpg 1x, images/portfolio/shutterbug@2x.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Shutterbug
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
Project Link
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio -->
<!-- <div class="col-block item-folio" data-aos="fade-up">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-minimalismo.jpg" class="thumb-link" title="Minimalismo" data-size="1050x700">
<img src="images/portfolio/minimalismo.jpg"
srcset="images/portfolio/minimalismo.jpg 1x, images/portfolio/minimalismo@2x.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Minimalismo
</h3>
<p class="item-folio__cat">
UX Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
Project Link
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio -->
<!-- <div class="col-block item-folio" data-aos="fade-up">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-film.jpg" class="thumb-link" title="Film" data-size="1050x700">
<img src="images/portfolio/film.jpg"
srcset="images/portfolio/film.jpg 1x, images/portfolio/film@2x.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Film
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
Project Link
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio -->
<!-- <div class="col-block item-folio" data-aos="fade-up">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-skaterboy.jpg" class="thumb-link" title="Skaterboy" data-size="1050x700">
<img src="images/portfolio/skaterboy.jpg"
srcset="images/portfolio/skaterboy.jpg 1x, images/portfolio/skaterboy@2x.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Skaterboy
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
Project Link
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> <!-- end item-folio -->
<!-- </div> <!-- end portfolio -->
<div class="testimonials-wrap" data-aos="fade-up">
<div class="row">
<div class="col-full testimonials-header">
<h2 class="h1">What Clients Are Saying...</h2>
</div>
</div>
<div class="row testimonials">
<div class="col-full testimonials__slider">
<div class="testimonials__slide">
<span class="testimonials__icon"></span>
<p>We were looking for a reasonably priced design team to help us bring to life the website we had in mind. They not only created our vision but provided guidance and insight throughout, leaving us with a highly qualified product better than we had hoped.</p>
<div class="testimonials__author">
<img src="images/testimonial/afsal.jpg" alt="Author image" class="testimonials__avatar">
<span class="testimonials__name">Afsal Armin</span>
<span class="testimonials__position">Yathir International</span>
</div>
</div> <!-- end testimonials__slide -->
<div class="testimonials__slide">
<span class="testimonials__icon"></span>
<p>These are one of most experienced professionals we have worked with. They helped us build a digital presence and scale up digitally. I highly recommend their services.</p>
<div class="testimonials__author">
<img src="images/testimonial/annaiah.jpeg" alt="Author image" class="testimonials__avatar">
<span class="testimonials__name">Annaiah B</span>
<span class="testimonials__position">Nagar Nirmalya Foundation</span>
</div>
</div> <!-- end testimonials__slide -->
<div class="testimonials__slide">
<span class="testimonials__icon"></span>
<p>Chillitray technologies was a right answer to our business technology needs. They were extremely cordial understanding towards our requirements. Thanks to chillitray.</p>
<div class="testimonials__author">
<img src="images/testimonial/naveen.jpeg" alt="Author image" class="testimonials__avatar">
<span class="testimonials__name">Naveen kumar</span>
<span class="testimonials__position">Shuchi International</span>
</div>
</div> <!-- end testimonials__slide -->
</div> <!-- end testimonials__slider -->
</div> <!-- end testimonials -->
</div> <!-- end testimonials-wrap -->
</section> <!-- end s-works -->
<!-- clients
================================================== -->
<!-- <section id="clients" class="s-clients target-section">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 data-num="04" class="subhead">Selected Clients</h3>
<h1 class="display-1 display-1--light">Here are some of the brands we have had the priviledge to work with.</h1>
</div>
</div>
<div class="row clients-list block-1-4 block-tab-1-3 block-mob-1-2" data-aos="fade-up">
<div class="col-block item-client">
<a href="#0">
<img src="images/clients/icon-atom.svg" alt="">
</a>
</div>
<div class="col-block item-client">
<a href="#0">
<img src="images/clients/icon-dropbox.svg" alt="">
</a>
</div>
<div class="col-block item-client">
<a href="#0">
<img src="images/clients/icon-firefox.svg" alt="">
</a>
</div>
<div class="col-block item-client">
<a href="#0">
<img src="images/clients/icon-github.svg" alt="">
</a>
</div>
<div class="col-block item-client">
<a href="#0">
<img src="images/clients/icon-mozilla.svg" alt="">
</a>
</div>
<div class="col-block item-client">
<a href="#0">
<img src="images/clients/icon-linux.svg" alt="">
</a>
</div>
<div class="col-block item-client">
<a href="#0">
<img src="images/clients/icon-ubuntu.svg" alt="">
</a>
</div>
<div class="col-block item-client">
<a href="#0">
<img src="images/clients/icon-sass.svg" alt="">
</a>
</div>
</div> <!-- clients-list -->
<!-- </section> <!-- end s-clients -->
<!-- stats
================================================== -->
<!-- <section id="stats" class="s-stats">
<div class="row stats-block block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block item-stats ">
<div class="item-stats__count">213</div>
<h5>Projects Completed</h5>
</div>
<div class="col-block item-stats">
<div class="item-stats__count">179</div>
<h5>Happy Clients</h5>
</div>
<div class="col-block item-stats">
<div class="item-stats__count">35</div>
<h5>Awards Received</h5>
</div>
<div class="col-block item-stats">
<div class="item-stats__count">2319</div>
<h5>Cups of Coffee</h5>
</div>
</div> <!-- end stats -->
<!-- </section> <!-- end s-stats -->
<style type="text/css">
.col-md-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
margin-bottom: 3rem !important;
}
.align-items-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
align-items: center !important;
}
</style>
<!-- Footer Begins -->
<footer class="ftco-footer ftco-bg-dark ftco-section" >
<div class="container_footer">
<div class="row_footer mb-5 pb-5 align-items-center d-flex">
<div class="col-md-6 ftco-animate fadeInUp ftco-animated" style="" data-aos="fade-up" data-aos-delay="100">
<div class="heading-section heading-section-white ftco-animate">
<span style="color: white; text-transform: uppercase; padding: 0px !important;" class="subheading">Get an easy quote from Us</span>
<font style="font-size: 30px; font-weight: 700; color: white; padding: 0px !important;">Propel your Business!</font>
</div>
</div>
<!-- <div class="col-md-3 ftco-animate">
<div class="price">
<span class="subheading">Starting at Only</span>