-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
1606 lines (1569 loc) · 74.3 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>
<title>Trackyo | Smart traffic management for Geo-fenced areas</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="index, follow">
<meta name="author" content="Vishal Sanghai">
<meta name="description" content="Trackyo employs connected vehicle technology for smart traffic/ asset management at geo-fenced regions (gated communities such as residential townships, airports, business centres etc.).">
<meta name="keywords" content="Trackyo, Trackyotech, Yash Agarwal,Automotive IOT solutions, Smart asset management, Smart fleet management, Automotive tech startups, Connected technology startups, Connected car startups, Smart city startup, Smart traffic management, security and surveillance at gated communities, home security, real-time vehicle tracking, real-time emergency service facilitation, connected vehicle startups, V2V communication, driver behaviour analysis, driver behaviour solutions, road safety, real-time parking assistance, intelligent transportation, traffic monitoring in Geo-fenced areas">
<meta property="og:title" content="Trackyo">
<meta property="og:description" content="Trackyo employs connected vehicle technology for smart traffic/ asset management at geo-fenced regions.">
<meta property="og:image" content="http://trackyotech.com/media/Trackyo-og.png">
<meta property="og:url" content="https://www.trackyotech.com/">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link href="css/fonts.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<link rel="stylesheet" href="css/video.css">
<!--<link rel="stylesheet" href="css/circle.css">-->
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/progressbar.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="icon" href="media/trackyoLogoTransparent.png" type="image/gif" sizes="16x16">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,500,700" rel="stylesheet">
<script type="text/javascript">
let x=0;
document.fonts.load("AndaleMono").then(x=1);
</script>
<script src="https://use.fontawesome.com/e9de4e82e4.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-56286897-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-56286897-6');
</script>
<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/16c0c49455c4da40b285d614e/1e0dcfec08d4833f57f74e75d.js");</script>
</head>
<body>
<div class="hameid-loader-overlay" style="display: flex; justify-content: center; align-items: center;">
<div class="logoLoader">
trac<span class="logoLargeLoader">kyo</span><span class="TM">™</span>
</div>
<div class="cs-loader">
<div class="cs-loader-inner">
<label> ●</label>
<label> ●</label>
<label> ●</label>
<label> ●</label>
<label> ●</label>
<label> ●</label>
</div>
</div>
</div>
<section id="intro">
<video poster="media/bg.jpg" class="homeVideo" id="bgvid" playsinline autoplay muted loop style="position:absolute;">
<source class="homeMediaSource" src="media/try2a.webm" type="video/webm">
<source class="homeMediaSource" src="media/try2.m4v" type="video/m4v">
<source class="homeMediaSource" src="media/try2.mp4" type="video/mp4">
</video >
<nav id="header" class="navbar navbar-expand-md">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="logo navbar-brand">
<a href="#intro">
trac<span class="logoLarge">kyo</span><span class="TM">™</span>
</a>
</div>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto">
<li id="menu-home" class="nav-item active menuItem">
<a class="nav-link" href="#">Home</a>
</li>
<li id="menu-features" class="nav-item menuItem">
<a class="nav-link" href="#features">Product</a>
</li>
<li id="menu-team" class="nav-item menuItem">
<a class="nav-link" href="#team">About</a>
</li>
<li id="menu-blog" class="nav-item menuItem">
<a class="nav-link" href="#blog">Blog</a>
</li>
<li id="menu-contact" class="nav-item menuItem">
<a class="nav-link" href="" data-toggle="modal" data-target="#contactModal">Contact Us</a>
<!--<a class="nav-link" href="#contact">Contact Us</a>-->
<!--<a class="nav-link typeform-share link" href="https://trackyo.typeform.com/to/xW0IrH" data-mode="popup" target="_blank">Contact Us </a>
<script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })()
</script>-->
</li>
</ul>
<div class="col-sm-auto social">
<a href="https://www.facebook.com/trackyo/" target="_blank" class="socialIcons">
<img src="media/social/facebook.png"/>
</a>
<a href="http://www.twitter.com/trackyotpl" target="_blank" class="socialIcons">
<img src="media/social/twitter.png"/>
</a>
<a href="https://www.linkedin.com/company/trackyotech-private-limited" target="_blank" class="socialIcons">
<img src="media/social/linkedin.png"/>
</a>
</div>
</div>
</nav>
<!--<nav id="header">
<div class="container-fluid">
<div class="row">
<div class="col-sm-auto logo">
<a href="#intro">
trac<span class="logoLarge">kyo</span><span class="TM">™</span>
</a>
</div>
<div id="menu-home" class="col-sm-auto ml-md-auto menuItem">
<ul>
<a href="#">Home</a>
</ul>
</div>
<div id="menu-features" class="col-sm-auto menuItem">
<ul>
<a href="#features">Product</a>
</ul>
</div>
<div id="menu-team" class="col-sm-auto menuItem">
<ul>
<a href="#team">About</a>
</ul>
</div>
<div class="col-sm-auto contactItem">
<ul>
<a href="https://trackyo.typeform.com/to/xW0IrH" target="_blank">Contact Us</a>
</ul>
</div>
<div id="menu-blog" class="col-sm-auto menuItem">
<ul>
<a href="#blog">Blog</a>
</ul>
</div>
<div class="col-sm-auto social">
<a href="https://www.facebook.com/trackyo/" target="_blank" class="socialIcons">
<img src="media/social/facebook.png"/>
</a>
<a href="http://www.twitter.com/trackyotpl" target="_blank" class="socialIcons">
<img src="media/social/twitter.png"/>
</a>
<a href="https://www.linkedin.com/company/trackyotech-private-limited" target="_blank" class="socialIcons">
<img src="media/social/linkedin.png"/>
</a>
</div>
</div>
</div>
</nav>-->
<div class="container-fluid" >
<div class="row align-items-center" id="introContent">
<div class="col" id="introContentCol">
<div id="heading">
<h1>trackyo</h1>
<h2>Smart Traffic Management for Geo-fenced areas</h2>
<div class="vpop" data-type="youtube" data-id="hah1ET9hQoE" data-autoplay='true'>Watch Video   <i class="fa fa-long-arrow-right" aria-hidden="true"></i></div>
<div class="learnMore">
<span>
<a href="#features" class="page-scroll">
Learn More<br>
<i class="fa fa-long-arrow-down fa-2x" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="video-popup-overlay"></div>
<div id="video-popup-container">
<div id="video-popup-close" class="fade">✖</div>
<div id="video-popup-iframe-container">
<iframe id="video-popup-iframe" src="" width="100%" height="100%" frameborder="0"></iframe>
</div>
</div>
<section class="features" id="features">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-auto">
<div class="howItWorks">
How it works
</div>
</div>
</div>
</div>
<div class="f1">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-12 order-md-1 order-sm-1" style="padding-left: 0px; padding-right: 0px;" >
<div class="graphics">
<!--<img id="featuresImage" src="media/iPad2.png" >-->
<video class="video" poster="media/features/G1.jpg" preload="auto" autoplay>
<source src="media/product1.webm" type="video/webm">
<source src="media/features/product1.webm" type="video/webm">
<source src="media/product1.m4v" type="video/m4v">
<source src="media/product1.mkv" type="video/mkv">
<source src="media/product1.mp4" type="video/mp4">
Sorry, your browser doesn't support embedded videos, but don't worry, you can <a href="media/product1.webm">download it</a> and watch it with your favorite video player!
</video>
</div>
</div>
<div class="col-md-6 col-sm-12 order-md-2 order-sm-2" style="padding-left: 0px; padding-right: 0px;" >
<div class="text t1">
<div class="featuresHeading">Vehicle arrives at gate</div>
<div class="featuresText">Security guard scans the vehicle number plate and hands over a uniquely mapped Trackyo unit to the vehicle driver</div>
</div>
</div>
</div>
</div>
</div>
<div class="f2">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-12 order-md-2 order-sm-1" style="padding-left: 0px; padding-right: 0px;" >
<div class="graphics">
<video class="video" poster="media/features/G2a.jpg" preload="auto" autoplay>
<source src="media/product2.webm" type="video/webm">
<source src="media/features/product2.webm" type="video/webm">
<source src="media/product2.m4v" type="video/m4v">
<source src="media/product2.mp4" type="video/mp4">
Sorry, your browser doesn't support embedded videos, but don't worry, you can <a href="media/product2.webm">download it</a> and watch it with your favorite video player!
</video>
</div>
</div>
<div class="col-md-6 col-sm-12 order-md-1 order-sm-2" style="padding-left: 0px; padding-right: 0px;" >
<div class="text t2">
<div class="featuresHeading">Vehicle is tracked</div>
<div class="featuresText">Real-time speed and location tracking of the vehicle is done through the Trackyo unit. Driver gets feedback and real-time audio visual alerts during violations and critical situations</div>
</div>
</div>
</div>
</div>
</div>
<div class="f3">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-12 order-md-1 order-sm-1" style="padding-left: 0px; padding-right: 0px;" >
<div class="graphics">
<video class="video" poster="media/features/G3.jpg" preload="auto">
<source src="media/product3.webm" type="video/webm">
<source src="media/features/product3.webm" type="video/webm">
<source src="media/product3.m4v" type="video/m4v">
<source src="media/product3.mp4" type="video/mp4">
Sorry, your browser doesn't support embedded videos, but don't worry, you can <a href="media/product3.webm">download it</a> and watch it with your favorite video player!
</video>
</div>
</div>
<div class="col-md-6 col-sm-12 order-md-2 order-sm-2" style="padding-left: 0px; padding-right: 0px;" >
<div class="text t1">
<div class="featuresHeading">In case of critical situations</div>
<div class="featuresText">Security guard connects with the nearest emergency service providers (hospitals, police, fire station) just by the press of a button using our realtime platform</div>
</div>
</div>
</div>
</div>
</div>
<div class="f4">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-12 order-md-2 order-sm-1" style="padding-left: 0px; padding-right: 0px;" >
<div class="graphics">
<video class="video" poster="media/features/G4.jpg" preload="auto">
<source src="media/product4.webm" type="video/webm">
<source src="media/features/product4.webm" type="video/webm">
<source src="media/product4.m4v" type="video/m4v">
<source src="media/product4.mp4" type="video/mp4">
Sorry, your browser doesn't support embedded videos, but don't worry, you can <a href="media/product4.webm">download it</a> and watch it with your favorite video player!
</video>
</div>
</div>
<div class="col-md-6 col-sm-12 order-md-1 order-sm-2" style="padding-left: 0px; padding-right: 0px;" >
<div class="text t2">
<div class="featuresHeading">At the exit point</div>
<div class="featuresText">The device is recovered by the security guard and the driver gets a ticket for violation/ incentives for next visit</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="innovation">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-sm-12 col-md-10 col-lg-9">
<div class="innovationIntro">
<div class="innovationHeading">
Innovation
</div>
<div class="innovationAbout">
The Trackyo solution employs a novel framework of turning a particular area to a connected vehicle area for implementing safety applications. Trackyo has a potential to reduce the possibility of human errors by 90% and reduce the costs by 25% in 3 months from implementation.
</div>
<div class="innovationReasons">
Here are a few value additions from Trackyo that make it a revolutionary solution for bringing smart safety to geo-fenced areas
</div>
</div>
</div>
</div>
<div class="row align-items-center justify-content-center align-self-center minHeight">
<div class="col-sm-12 col-md-4 col-lg-4 ml-lg-auto order-sm-1 order-lg-1">
<div class="innovationImage giveBorder">
<i class="flaticon-wifi"></i>
</div>
</div>
<div class="col-sm-12 col-md-8 col-lg-4 order-sm-1 order-lg-2">
<div class="innovationContent">
<div class="innovationContentHeader">
Trackyo <span class="dark">is connected</span>
</div>
<div class="innovationContentText">
We develop state of the art connected vehicle technology and equip Trackyo with that in a minimum package.
</div>
</div>
</div>
</div>
<div class="row align-items-center justify-content-center minHeight">
<div class="col-sm-12 col-md-4 col-lg-4 mr-lg-auto order-sm-1 order-lg-2">
<div class="innovationImage giveBorder">
<i class="flaticon-high-volume"></i>
</div>
</div>
<div class="col-sm-12 col-md-8 col-lg-4 order-sm-1 order-lg-1">
<div class="innovationContent2">
<div class="innovationContentHeader">
Trackyo <span class="dark">is responsive</span>
</div>
<div class="innovationContentText">
Trackyo senses the driver’s behaviour and gives audio-visual alerts to establish a safe and secure environment for the residents.
</div>
</div>
</div>
</div>
<div class="row align-items-center justify-content-center align-self-center minHeight">
<div class="col-sm-12 col-md-4 col-lg-4 ml-lg-auto order-sm-1 order-lg-1">
<div class="innovationImage giveBorder">
<i class="flaticon-battery"></i>
</div>
</div>
<div class="col-sm-12 col-md-8 col-lg-4 order-sm-1 order-lg-2">
<div class="innovationContent">
<div class="innovationContentHeader">
Trackyo <span class="dark">is mobile</span>
</div>
<div class="innovationContentText">
It has a long lasting rechargeable battery. Each Trackyo unit communicates with each other and the data finally reaches the central monitoring server.
</div>
</div>
</div>
</div>
<div class="row align-items-center justify-content-center minHeight">
<div class="col-sm-12 col-md-4 col-lg-4 mr-lg-auto order-sm-1 order-lg-2">
<div class="innovationImage giveBorder">
<i class="flaticon-computer"></i>
</div>
</div>
<div class="col-sm-12 col-md-8 col-lg-4 order-sm-1 order-lg-1">
<div class="innovationContent2">
<div class="innovationContentHeader">
Trackyo <span class="dark">is wireless</span>
</div>
<div class="innovationContentText">
It uses state-of- the art technology to send real-time alerts during violations and critical situations.
</div>
</div>
</div>
</div>
<div class="row align-items-center justify-content-center align-self-center minHeight">
<div class="col-sm-12 col-md-4 col-lg-4 ml-lg-auto order-sm-1 order-lg-1">
<div class="innovationImage giveBorder">
<i class="flaticon-solution"></i>
</div>
</div>
<div class="col-sm-12 col-md-8 col-lg-4 order-sm-1 order-lg-2">
<div class="innovationContent">
<div class="innovationContentHeader">
Trackyo <span class="dark">is feasible</span>
</div>
<div class="innovationContentText">
We solve a huge problem by reducing the scope only to focus on geo-fenced regions. Other solutions that work on connected tech are having hard time dealing with the huge infrastructure needs.
</div>
</div>
</div>
</div>
<div class="row align-items-center justify-content-center minHeight">
<div class="col-sm-12 col-md-4 col-lg-4 mr-lg-auto order-sm-1 order-lg-2">
<div class="innovationImage giveBorder">
<i class="flaticon-warming-up"></i>
</div>
</div>
<div class="col-sm-12 col-md-8 col-lg-4 order-sm-1 order-lg-1">
<div class="innovationContent2">
<div class="innovationContentHeader">
Trackyo <span class="dark">is adaptable</span>
</div>
<div class="innovationContentText">
It can be reprogrammed for speed limits, changing traffic rules in the geo-fenced region.
</div>
</div>
</div>
</div>
<div class="row align-items-center justify-content-center align-self-center minHeight">
<div class="col-sm-12 col-md-4 col-lg-4 ml-lg-auto order-sm-1 order-lg-1">
<div class="innovationImage giveBorder">
<i class="flaticon-trophy"></i>
</div>
</div>
<div class="col-sm-12 col-md-8 col-lg-4 order-sm-1 order-lg-2">
<div class="innovationContent">
<div class="innovationContentHeader">
Trackyo <span class="dark">is rewarding</span>
</div>
<div class="innovationContentText">
Trackyo rewards the good drivers with parking space, etc.
</div>
</div>
</div>
</div>
</div>
</section>
<section id="videos">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-sm-auto">
<div class="videosSectionTitle">
Got a minute? Check these videos on how Trackyo works:
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-12 col-md-3">
<div class="videosElement">
<img src="media/videos/p6.png" class="pop" data-type="youtube" data-id="MIZeoa-zIaU" data-autoplay='true'>
</div>
</div>
<!--<div class="col-sm-12 col-md-3">
<div class="videosElement">
<img src="media/videos/p1b.png" class="pop" data-type="youtube" data-id="hah1ET9hQoE" data-autoplay='true'>
</div>
</div>-->
<div class="col-sm-12 col-md-3">
<div class="videosElement">
<img src="media/videos/p3D.png" class="pop" data-type="youtube" data-id="qT-Gfpms9zs" data-autoplay='true'>
</div>
</div>
<div class="col-sm-12 col-md-3">
<div class="videosElement">
<img src="media/videos/p4.png" class="pop" data-type="youtube" data-id="-LYiv6nKs7A" data-autoplay='true'>
</div>
</div>
</div>
</div>
</section>
<section id="alternative">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-sm-auto">
<div class="aa">
<div>
Why choose Trackyo?
</div>
<div class="smaller">Our connected vehicle technology platform has proven to be
<p>much more effective than the currently used alternative solutions</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-lg-4 center">
<div class="iprogress-bar" data-percent="8" data-duration="497" data-abc="RoadSafetyMirror.jpg"></div>
<div class="alternatives">
<span class="percentage">8% </span><br>Road Safety Mirrors
</div>
</div>
<div class="col-sm-12 col-lg-4">
<div class="iprogress-bar" data-percent="8" data-duration="498" data-abc="cctv.jpg"></div>
<div class="alternatives">
<span class="percentage">8% </span><br>CCTV Surveillance
</div>
</div>
<div class="col-sm-12 col-lg-4">
<div class="iprogress-bar" data-percent="12" data-duration="499" data-abc="ManualMonitoring.jpg"></div>
<div class="alternatives">
<span class="percentage">12% </span><br>Manual Monitoring
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-4 ml-md-auto">
<div class="iprogress-bar1" data-percent="20" data-duration="500" data-abc="SpeedBreakers.png"></div>
<div class="alternatives">
<span class="percentage">20% </span><br>Speed Breakers
</div>
</div>
<div class="col-sm-12 col-md-4 mr-md-auto">
<div class="iprogress-bar1" data-percent="65" data-duration="501" data-abc="Trackyo.jpg"></div>
<div class="alternatives">
<span class="percentage">65% </span><br>Trackyo
</div>
</div>
</div>
<!--<div class="row">
<div class="col-sm-12 col-md-4">
<div class="c100 p8 med center">
<span>8%</span>
<div class="slice">
<div class="bar"></div>
<div class="fill"></div>
</div>
</div>
<div class="alternatives">Road Safety Mirrors</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="c100 p8 med center">
<span>8%</span>
<div class="slice">
<div class="bar"></div>
<div class="fill"></div>
</div>
</div>
<div class="alternatives">CCTV Surveillance</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="c100 p12 med center">
<span>12%</span>
<div class="slice">
<div class="bar"></div>
<div class="fill"></div>
</div>
</div>
<div class="alternatives">Manual Monitoring</div>
</div>
</div>-->
<!--<div class="row">
<div class="col-sm-12 col-md-4 ml-md-auto">
<div class="c100 p20 med center">
<span>20%</span>
<div class="slice">
<div class="bar"></div>
<div class="fill"></div>
</div>
</div>
<div class="alternatives">Speed Breakers</div>
</div>
<div class="col-sm-12 col-md-4 mr-md-auto">
<div class="c100 green p65 med center">
<span>65%</span>
<div class="slice">
<div class="bar"></div>
<div class="fill"></div>
</div>
</div>
<div class="alternatives">Trackyo</div>
</div>
</div>-->
<div class="row align-items-center justify-content-center">
<div class="col-sm-12 col-md-11 col-lg-10">
<div class="formWant">
Have an experience at a geo-fenced region to share with us, follow this link and fill-up the form.
</div>
</div>
<div class="row">
<div class="col-auto">
<div class="formContainer">
<a class="form" href="https://goo.gl/forms/4ZVfXTF2E1HPUtmC2">Fill form</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="recognition">
<div class="container">
<div class="row justify-content-center">
<div class="col-sm-12 col-md-6">
<div class="recognitionContent">
<img id="StartupIndia" src="media/StartupIndia.png">
<p>Recognised as a startup by the Department of Industrial Policy and Promotion (DIPP) under the Start-up India Scheme by the Govt. of India.</p>
</div>
</div>
<div class="col-sm-12 col-md-6">
<div class="recognitionContent">
<img id="avpn" src="media/follow/avpn.png">
<p>Recognised as a social impact startup by the AVPN Asia.</p>
</div>
</div>
</div>
</div>
</section>
<section id="follow" style="padding-bottom: 50px;">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-sm-auto">
<div class="sectionTitle">
Find and follow us on
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="followElement">
<a href="https://avpn.asia/deals/trackyotech/" target="_blank">
<img src="media/follow/avpn.png" id="avpnFollow" style="width: 180px;">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="followElement">
<a href="https://www.f6s.com/trackyo" target="_blank">
<img src="media/follow/f6s.png">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="followElement">
<a href="https://www.startany.com/trackyo" target="_blank">
<img src="media/follow/startany.png" style="">
</a>
</div>
</div>
</div>
</div>
</section>
<section id="team">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-sm-auto">
<div class="teamTitle">
Meet our team
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="member-box">
<div class="memberTop">
<div class="memberImage">
<img src="media/team/Yash2.jpg">
</div>
<div class="memberText">
<div class="memberName">Yash Agarwal</div>
<div class="memberTitle">Founder & CEO</div>
</div>
</div>
<div class="teamSocial member">
<a href="https://www.linkedin.com/in/yash-agarwal-18864360/" class="socialIcons">
<img id="linkedin" src="media/social/linkedin3.png" onmouseover="hover(this);" onmouseout="unhover(this);" width="20px" />
</a>
</div>
<div class="memberAboutContainer">
<div class="memberAbout" class="scrollbar" id="style-7">
Yash received his bachelor degree in Electronics and Communications Engineering from NIIT University in India. Later on, he worked as a research engineer at Carnegie Mellon University's Joint Research Institute and at the Laboratory for Intelligent Vehicles and Energy Systems (LIVES). He has been intensively researching and developing safety applications employing connected vehicles, vehicular communications and embedded systems. Yash believes that Trackyo's tech-driven, connected platform will revolutionise traffic management, asset tracking, security and surveillance at Geo-fenced regions.
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="member-box">
<div class="memberTop">
<div class="memberImage">
<img src="media/team/Kritika2.png">
</div>
<div class="memberText">
<div class="memberName">Kritika Jain</div>
<div class="memberTitle">Co-Founder & CTO</div>
</div>
</div>
<div class="teamSocial member">
<a href="https://www.linkedin.com/in/kritika-jain-78975560/" class="socialIcons">
<img id="linkedin" src="media/social/linkedin3.png" onmouseover="hover(this);" onmouseout="unhover(this);" width="20px" />
</a>
</div>
<div class="memberAboutContainer">
<div class="memberAbout" class="scrollbar" id="style-7">
Kritika received her bachelor degree in Electronics and Communications Engineering from NIIT University in India. Prior to laying the founding stone of Trackyo, she developed algorithms for localisation techniques, positioning moving objects, safety applications for autonomous transportation, optimal design of electric vehicles etc. at the Carnegie Mellon University's Joint Institute of Engineering. She was appointed as a research assistant at the Laboratory for Intelligent Vehicles and Energy Systems (LIVES).
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 ml-md-auto mr-md-auto">
<div class="member-box">
<div class="memberTop">
<div class="memberImage">
<img src="media/team/Orkun.jpg">
</div>
<div class="memberText">
<div class="memberName">Dr. Orkun Karabasoglu</div>
<div class="memberTitle">Co-Founder</div>
</div>
</div>
<div class="teamSocial member">
<a href="https://linkedin.com/in/orkunkarabasoglu" class="socialIcons">
<img id="linkedin" src="media/social/linkedin3.png" onmouseover="hover(this);" onmouseout="unhover(this);" width="20px" />
</a>
<a href="http://www.karabasoglu.com/" class="socialIcons">
<img src="media/social/web3.png"/>
</a>
</div>
<div class="memberAboutContainer">
<div class="memberAbout" class="scrollbar" id="style-7">
Dr. Karabasoglu received his PhD and M.Sc. in Mechanical engineering from Carnegie Mellon University (CMU) in 2013. Later on, he worked as a postdoctoral research associate in the Mechatronics Research Laboratory at Massachusetts Institute of Technology (MIT). He is the Founder and Director of The Laboratory for Intelligent Vehicles and Energy Systems (LIVES) which is an externally funded research program. Dr. Karabasoglu is currently affiliated with the Yasar University as an Assistant Professor in Industrial Engineering.
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-auto">
<div class="teamTitle">
Advisory Board
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-4">
<div class="member-box">
<div class="memberTop">
<div class="memberImage">
<img src="media/team/Prahlad.jpg">
</div>
<div class="memberText">
<div class="advisoryName">Dr. Prahlad G. Menon</div>
<div class="memberTitle"></div>
</div>
</div>
<div class="teamSocial advisory">
<a href="https://www.linkedin.com/in/prahladmenon/" class="socialIcons">
<img src="media/social/linkedin3.png" width="20px" />
</a>
<a href="http://www.justcallharry.com/" class="socialIcons">
<img src="media/social/web3.png"/>
</a>
</div>
<div class="memberAboutContainer">
<div class="memberAbout" class="scrollbar" id="style-7">
Dr. Menon is an engineering professor and data scientist, with teaching and research experience in biomedical, mechanical and computer engineering at the undergraduate & graduate levels, involved with a wide range of computational projects ranging from patient-specific medical imaging diagnostics and minimally invasive surgical navigation to financial modeling for algorithmic trading and assessing derailment risk for the railroads. Dr. Menon is currently affiliated with a tenure track professor appointment at Duquesne University (dept of biomedical engineering) with adjunct appointments at University of Pittsburgh (dept of bioengineering) and University of Texas at San Antonio (dept of biomedical engineering). Dr. Menon was formerly assistant professor of electrical & computer engineering at Carnegie Mellon (until May 2015).
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="member-box">
<div class="memberTop">
<div class="memberImage">
<img src="media/team/Ravi.jpg">
</div>
<div class="memberText">
<div class="advisoryName">Ravi S GSR</div>
<div class="memberTitle"></div>
</div>
</div>
<div class="teamSocial advisory">
<a href="https://www.linkedin.com/in/ravisekhar/" class="socialIcons">
<img src="media/social/linkedin3.png" width="20px" />
</a>
<a href="http://www.cocreationconsulting.com/" class="socialIcons">
<img src="media/social/web3.png"/>
</a>
</div>
<div class="memberAboutContainer">
<div class="memberAbout" class="scrollbar" id="style-7">
Ravi has over 15 years’ experience at responsible positions across sectors that honed his business prowess, exposure to newer areas in M&A, Venture Building, Strategic & Operations Management interventions and benefit the organizations he was associated with. With his Entrepreneurial stint, committed/determined to make the world a better place and his passion towards his work - trailblazing, venture building with motivated, passionate businesses/people, realize their ideas & help find that situation (impact) where they can really be along the way.
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="member-box">
<div class="memberTop">
<div class="memberImage">
<img src="media/team/Sridhar.jpeg">
</div>
<div class="memberText">
<div class="advisoryName">Sridhar Lanka</div>
<div class="memberTitle"></div>
</div>
</div>
<div class="teamSocial advisory">
<a href="https://www.linkedin.com/in/sridharlanka/" class="socialIcons">
<img src="media/social/linkedin3.png" width="20px" />
</a>
<a href="http://www.cocreationconsulting.com/" class="socialIcons">
<img src="media/social/web3.png"/>
</a>
</div>
<div class="memberAboutContainer">
<div class="memberAbout" class="scrollbar" id="style-7">
Sridhar has about 18 years of experience in technology and management in telecommunications, e-governance, manufacturing and e-commerce. Identifying market segments, innovating and delivering solutions for those opportunities have been his expertise over the years. Sridhar's broad geographical experience and regional insights drive in this endeavor. Throughout his career, Sridhar was instrumental in innovation, pitching and selling technology, realization of ideas and commercialization of technology. Formal training Sridhar acquired (in his MBA days) on delivering value through application of technology drives these.
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 ml-md-auto">
<div class="member-box" >
<div class="memberTop">
<div class="memberImage">
<img src="media/team/Gurendra.jpg">
</div>
<div class="memberText">
<div class="advisoryName">Dr. Gurendra Nath Bhardwaj</div>
<div class="memberTitle"></div>
</div>
</div>
<div class="teamSocial advisory">
<a href="https://www.linkedin.com/in/dr-gurendra-bhardwaj-10aa4425/" class="socialIcons">
<img src="media/social/linkedin3.png" width="20px" />
</a>
<a href="https://www.niituniversity.in/faculty/gurendra-nath-bhardwaj" class="socialIcons">
<img src="media/social/web3.png"/>
</a>
</div>
<div class="memberAboutContainer">
<div class="memberAbout" class="scrollbar" id="style-7">
Dr. Bhardwaj received his Ph. D. from Department of Applied Economics, University of Lucknow. Currently, Dr. Bhardwaj is appointed as an Associate Professor & Deputy Registrar (Academic Operations) at NIIT University, Neemrana India. He has been actively involved in teaching at UG and PG level for more than 16 years. During his teaching career, Dr. Bhardwaj was Associate Professor of Finance at IILM Graduate School of Management, Greater Noida & also worked at Amity Business School, Noida, Institute of Productivity and Management, Meerut and Lucknow University. Dr. Bhardwaj has presented and published more than 70 research papers in the conference and journals of national and international repute. He has also contributed chapters in the books published by leading publisher like Excel, McMilan and Oxford Publication.
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 mr-md-auto">
<div class="member-box" >
<div class="memberTop">
<div class="memberImage">
<img src="media/team/Prakash.jpg">
</div>
<div class="memberText">
<div class="advisoryName">Prakash Sharma</div>
<div class="memberTitle"></div>
</div>
</div>
<div class="teamSocial advisory">
<a href="https://www.linkedin.com/in/dr-prakash-sharma-330743a3/" class="socialIcons">
<img src="media/social/linkedin3.png" width="20px" />
</a>
<a href="https://www.autonebula.com/" class="socialIcons">
<img src="media/social/web3.png"/>
</a>
</div>
<div class="memberAboutContainer">
<div class="memberAbout" class="scrollbar" id="style-7">
Prakash has over 26 years of experience in the IT industry with multi-domain functional knowledge and hands-on experience in product delivery, business analysis, design, development of large integrated ERP applications and NGO project implementations. He’s been part of the core PMI team, defining Project Management Competency Development Framework, Standard Portfolio Management and a range of certifications. Prakash has scaled startups and built ODC for Info Electronic Systems and Shell Information Technologies, delivered high tech projects for Furnace Automation, Engine Monitoring, ARDE Bombshell Automation, Weather Protocol Implementation for airport applications, a weather monitoring System for IMD, Integrated Watershed Management and Rural Applications. He’s also conducted vulnerability assessments for various telecom, banking and legal applications.
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="partners">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-sm-auto">
<div class="sectionTitle">
Our Partners
</div>
</div>
</div>
<div class="row justify-content-center align-items-center">
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="partnerElement">
<a href="https://www.cmu.edu/" target="_blank">
<img src="media/partners/CMU.png" style="width:100px;">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="partnerElement">
<a href="https://www.cocreationconsulting.com" target="_blank">
<img src="media/partners/CoCreationConsulting.png">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="partnerElement">
<a href="https://www.autonebula.com/" target="_blank">
<img id="nebula" src="media/partners/AutoNebula.png">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="partnerElement">
<a href="https://www.t-hub.co" target="_blank">
<img src="media/partners/THub2.png" style="width:130px;">
</a>
</div>
</div>
<div class="w-100"></div>
<div class="col-sm-12 col-md-4 col-lg-3 offset-lg-3">
<div class="partnerElement">
<a href="https://www.yasar.edu.tr/en/" target="_blank">
<img src="media/partners/yasar.png" style="top:5px;">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-3 offset-lg-3">
<div class="partnerElement">
<a href="http://mgmotor.co.in" target="_blank">
<img src="media/partners/MorrisGarages.png" >
</a>
</div>
</div>
</div>
</div>
</section>
<section id="featured">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-sm-auto">
<div class="sectionTitle">
Featured on
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-12 col-md-4 col-lg-2">
<div class="featuredElement">
<a href="https://goo.gl/lDFmzX" target="_blank">
<img src="media/featured/TNews.png" id="TNews" style="width:100px;">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="featuredElement">
<a href="https://goo.gl/2tCVto" target="_blank">
<img src="media/featured/TelanganaTodayTransparent.png" id="Telangana" style="top:22px;">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="featuredElement">
<a href="https://goo.gl/jzVyFz" target="_blank">
<img src="media/featured/TheNEWSMinute.png" id="TheNewsMinute" style="top:33px;">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="featuredElement">
<a href="https://goo.gl/OZrdbP" target="_blank">
<img src="media/featured/StartupHyderabadTransparent.png" id="StartupHyderabad" style="top:17px;">
</a>
</div>
</div>
<div class="w-100"></div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="featuredElement">
<a href="https://goo.gl/lBrIoK" target="_blank">
<img src="media/featured/StartupSimbaTransparent.png" id="StartupSimba" style="bottom:5px;">
</a>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-auto">
<div class="featuredElement">
<a href="https://indianceo.in/startup-directory/trackyo/" target="_blank">
<img src="media/featured/IndianCEO.png" id="IndianCEO">
</a>
</div>
</div>
</div>
</div>
</section>
<section id="blog">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-auto">
<div class="sectionTitle" style="padding-bottom: 0px;">
Our Blog
</div>
</div>
</div>
<div class="row justify-content-center blogPost">
<div class="col-sm-12 col-md-2">
<div class="date">
<div class="day">
02
<span class="year">2017</span>
</div>
<div class="month">November</div>
</div>
</div>
<div class="col-sm-12 col-md-6">
<div class="article">
<div class="title">
Trackyo for gated communities
</div>