-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1185 lines (1048 loc) · 60.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>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QNHPV2KG80"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-QNHPV2KG80');
</script>
<title>GPS Tracker for Car, Bike, Trucks and Kids | GPS Tracking Software | Free White Label GPS Tracking Platform |
Vehicle Tracking System in Harare | Personal GPS Tracker | HYDALEYE GPS</title>
<!-- <meta name="google-site-verification" content="FGo5Qw4Q3E_on9ampMcEnHOk3BgNHA0z873gmFXRArg" /> -->
<meta name="description"
content="HYDALE FLEET SOLUTIONS is specialized in providing Highly Available, Secure White Label GPS tracking Software with multiple GPS device protocols supported.
We do provide the complete white label GPS Tracking Platform with latest technologies and framework as per your requirements. We are one stop solution for all kinds of GPS Vehicle Tracking System and GPS Software solution provider in Harare.">
<meta name="keywords"
content="Zimbabwe's best gps tracking company, hydaleye gps software,fleet management, gps tracking, gps, gps trackers, gps tracking devices, car tracker, gps car tracking, vehicle tracking, GPS vehicle trackers, bike tracker, children tracker, GPS tracking system, HYDALEYE gps tracking device, gps tracker devices, gps tracking device in Zimbabwe, gps device tracker, best gps tracker in Zimbabwe, gps tracking device, fleet vehicles tracker, VehicleTracker,Personal GPS Vehicle tracker, Vehicle Tracking Software in Harare, RFID Tracker, Cloud GPS Software, WebSite design and hosting in Harare, Cloud Solution Providers in Harare,top gps tracking company in harare, best gps tracking device provider company,Tracking Application, real time tracking, online free live gps tracking demo in Zimbabwe, car trackers, bike tracker, truck tracker, personal tracker, school bus tracker, vehicle tracker, child tracker, asset tracker, vehicle tracking devices for cars, Static Website Design Companies in Harare, Website Design Companies,Cloud Software providers,Cloud Software providers in Harare, IOT device, IOT GPS device, GPS device manufacturers, Migrate website to cloud, Low cost website design and hosting, Application Development, Android Application development in Harare, iOS Application development in Harare, Best Android Application development in Harare, AWS Cloud solution Consultancy, AWS Cloud solution Consultancy in Harare, Static Website development, Laravel project development, PHP Laravel Development in Harare, PHP website development, Cloud Server hosting in Harare, AWS cloud software development in Harare, SMS API in Harare, SMS Marketing software, Email Marketing Software, Whatsapp Marketing software in Harare, Whatsapp alerts API, Customize GPS tracker in Harare, Car GPS Tracker in Bulawayo, GPS Tracking device,GPS Service Providers,vehicle recovery services in Zimbabwe,Whitelabel gps software, temperature management GPS tracker in Zimbabwe,fuel management providers in harare,Fleet management platform in Zimbabwe,Vehicle Tracking System in Harare, Vehicle Tracking Dealers in Harare, GPS Device manufacturer in Harare, GPS tracker system, Kids Tracker system,Top GPS Companies, Whitelabel GPS Software,White Label GPS Tracking Platform,White Label GPS Tracking Platform in Harare,GPS services in Harare,GPS tracking systems in harare,Vehicle tracking system in harare,GPS services in Zimbabwe,Bharat 101 supplier in Harare,Fuel Sensor suppliers in harare,GPS software services in harare,Zimbabwen GPS in Harare,Hydaleye GPS in harare,Hydaleye services in harare,Zimbabwen GPS products in harare,GPS suppliers in harare,GPS distributors in harare,GPS suppliers in Bulawayo,GPS distributors in Bulawayo,GPS distributors in Zimbabwe,On time GPS services in harare,real time GPS services in harare,GPS alert services in harare,Gps Vehicle Tracking System Dealers In Harare,Gps Vehicle Tracking System Dealers In Zimbabwe,Gps Vehicle Tracking System Dealers" />
<!-- Primary Meta Tags -->
<meta name="title"
content="GPS Tracker for Car, Bike, Trucks and Kids | GPS Tracking Software | Free White Label GPS Tracking Platform | Vehicle Tracking System in Harare | Personal GPS Tracker | HYDALEYE GPS">
<meta property="description"
content="HYDALE FLEET SOLUTIONS is specialized in providing Highly Available, Secure White Label GPS tracking Software with multiple GPS device protocols supported.
We do provide the complete white label GPS Tracking Platform with latest technologies and framework as per your requirements. We are one stop solution for all kinds of GPS Vehicle Tracking System and GPS Software solution provider in Harare.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="index.html">
<meta property="og:title"
content="GPS Tracker for Car, Bike, Trucks and Kids | GPS Tracking Software | Free White Label GPS Tracking Platform | Vehicle Tracking System in Harare | Personal GPS Tracker | HYDALEYE GPS">
<meta property="og:description"
content="HYDALE FLEET SOLUTIONS is specialized in providing Highly Available, Secure White Label GPS tracking Software with multiple GPS device protocols supported.
We do provide the complete white label GPS Tracking Platform with latest technologies and framework as per your requirements. We are one stop solution for all kinds of GPS Vehicle Tracking System and GPS Software solution provider in Harare.">
<meta property="og:image" content="assets/img/hydaleye-logo.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="index.html">
<meta property="twitter:title"
content="GPS Tracker for Car, Bike, Trucks and Kids | GPS Tracking Software | Free White Label GPS Tracking Platform | Vehicle Tracking System in Harare | Personal GPS Tracker | HYDALEYE GPS">
<meta property="twitter:description"
content="HYDALE FLEET SOLUTIONS is specialized in providing Highly Available, Secure White Label GPS tracking Software with multiple GPS device protocols supported.
We do provide the complete white label GPS Tracking Platform with latest technologies and framework as per your requirements. We are one stop solution for all kinds of GPS Vehicle Tracking System and GPS Software solution provider in Harare.">
<meta property="twitter:image" content="assets/img/hydaleye-logo.png">
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://www.google.com/recaptcha/enterprise.js?render=6LdzZ_8pAAAAANoNFSHQVesYmtEybG_c5czjzXl2"></script>
<!-- =======================================================
* Template Name: Bootslander
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex align-items-center justify-content-between">
<div class="logo">
<h1><a href="index.html"><span>Hydaleye GPS</span></a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/hydaleye-logo.png" alt="" class="img-fluid"></a> -->
</div>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#features">Features</a></li>
<li><a class="nav-link scrollto" href="#gallery">Gallery</a></li>
<li><a class="nav-link scrollto" href="#team">Team</a></li>
<!-- <li><a class="nav-link scrollto" href="#pricing">Pricing</a></li> -->
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li><a class="nav-link scrollto" target="_blank" href="https://track.hydale.co.zw">Track Now</a></li>
<li><a class="nav-link scrollto" target="_blank" download
href="https://www.hydale.co.zw/hydaleye.apk">Download APP</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-7 pt-5 pt-lg-0 order-2 order-lg-1 d-flex align-items-center">
<div data-aos="zoom-out">
<h1>Complete Fleet Management Services by <span>HYDALEYE GPS</span></h1>
<h2>We provide high quality and customized fleet, asset & personal tracking services. </h2>
<div class="text-center text-lg-start">
<a href="#contact" class="btn-get-started scrollto">Book Your Demo</a>
</div>
</div>
</div>
<div class="col-lg-4 order-1 order-lg-2 hero-img" data-aos="zoom-out" data-aos-delay="300">
<img src="assets/img/hero-img.png" class="img-fluid animated" alt="">
</div>
</div>
</div>
<svg class="hero-waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 24 150 28 " preserveAspectRatio="none">
<defs>
<path id="wave-path" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z">
</defs>
<g class="wave1">
<use xlink:href="#wave-path" x="50" y="3" fill="rgba(255,255,255, .1)">
</g>
<g class="wave2">
<use xlink:href="#wave-path" x="50" y="0" fill="rgba(255,255,255, .2)">
</g>
<g class="wave3">
<use xlink:href="#wave-path" x="50" y="9" fill="#fff">
</g>
</svg>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container-fluid">
<div class="row">
<div class="col-xl-5 col-lg-6 video-box d-flex justify-content-center align-items-stretch"
data-aos="fade-right">
<!-- <a href="https://www.youtube.com/watch?v=StpBR2W8G5A" class="glightbox play-btn mb-4"></a> -->
</div>
<div
class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5"
data-aos="fade-left">
<h3>Hydale Fleet Solutions: Leading GPS Tracking Innovators</h3>
<p>Welcome to Hydale Fleet Solutions, your premier partner in advanced GPS tracking and fleet management,
headquartered
in Harare, Zimbabwe. Since our inception, we've been at the forefront of GPS software development,
providing innovative,
user-friendly, and mobile-friendly solutions for diverse tracking needs.</p>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<div class="icon"><i class="bx bx-shape-square"></i></div>
<h4 class="title"><a href="">Comprehensive Solutions</a></h4>
<p class="description">Our services cover end-to-end fleet management, school bus tracking, personal
tracking for kids
and elders, cargo and logistics tracking, and specialized solutions for cold chain trucks and pet
tracking.</p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<div class="icon"><i class="bx bx-bot"></i></div>
<h4 class="title"><a href="">Cutting-Edge Technology</a></h4>
<p class="description">We leverage the latest advancements in machine learning and AI to enhance our GPS
tracking systems,
ensuring high efficiency and reliability.</p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<div class="icon"><i class="bx bx-car"></i></div>
<h4 class="title"><a href="">Real-Time Monitoring</a></h4>
<p class="description">Our GPS Vehicle Tracking System offers real-time location updates, advanced alert
triggering via SMS,
Email, Notifications, Calls, and WhatsApp, ensuring optimal fleet management and cost savings.</p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<div class="icon"><i class="bx bx-mobile"></i></div>
<h4 class="title"><a href="">User-Friendly Interface</a></h4>
<p class="description">Designed for ease of use, our platform supports a wide variety of GPS devices,
including smartphones and
tablets, and provides an intuitive admin dashboard for fleet owners.</p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<div class="icon"><i class="bx bx-bulb"></i></div>
<h4 class="title"><a href="">Versatile Applications</a></h4>
<p class="description">Suitable for any type of vehicle—cars, trucks, containers, ambulances, trailers—our
robust system ensures
efficient tracking and management for all.</p>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Features</h2>
<p>Check The Features</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="50">
<i class="bx bxs-map-pin" style="color: #ffbb2c;"></i>
<h3><a href="">Live Tracking</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<i class="bx bxs-map-alt" style="color: #5578ff;"></i>
<h3><a href="">History Playback</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="150">
<i class="ri-calendar-todo-line" style="color: #e80368;"></i>
<h3><a href="">Daily Travel Report</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<i class="ri-paint-brush-line" style="color: #e361ff;"></i>
<h3><a href="">Overspeed Alerts</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="250">
<i class="ri-database-2-line" style="color: #47aeff;"></i>
<h3><a href="">Share Live Location</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<i class="ri-gradienter-line" style="color: #ffa76e;"></i>
<h3><a href="">1 Year Data Storage</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="350">
<i class="ri-file-list-3-line" style="color: #11dbcf;"></i>
<h3><a href="">Ignition ON/OFF Alerts</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="400">
<i class="ri-price-tag-2-line" style="color: #4233ff;"></i>
<h3><a href="">Email/SMS Alerts</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="450">
<i class="ri-anchor-line" style="color: #b2904f;"></i>
<h3><a href="">Admin Access</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="500">
<i class="ri-disc-line" style="color: #b20969;"></i>
<h3><a href="">Multi User Support</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="550">
<i class="ri-base-station-line" style="color: #ff5828;"></i>
<h3><a href="">Remote Immobilization</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="600">
<i class="ri-fingerprint-line" style="color: #29cc61;"></i>
<h3><a href="">Strong Security</a></h3>
</div>
</div>
</div>
</div>
</section><!-- End Features Section -->
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts">
<div class="container">
<div class="row" data-aos="fade-up">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-emoji-smile"></i>
<span data-purecounter-start="0" data-purecounter-end="150" data-purecounter-duration="1"
class="purecounter"></span>
<p>Happy Clients</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<span data-purecounter-start="0" data-purecounter-end="318" data-purecounter-duration="1"
class="purecounter"></span>
<p>Projects</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bx bx-car"></i>
<span data-purecounter-start="0" data-purecounter-end="20000" data-purecounter-duration="1"
class="purecounter"></span>
<p>Live Vehicles</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-people"></i>
<span data-purecounter-start="0" data-purecounter-end="75" data-purecounter-duration="1"
class="purecounter"></span>
<p>Partners</p>
</div>
</div>
</div>
</div>
</section><!-- End Counts Section -->
<!-- ======= Details Section ======= -->
<section id="details" class="details">
<div class="container">
<div id="fuel" class="row content d-flex align-items-center">
<div class="col-md-4 order-1 order-md-2" data-aos="fade-left">
<img src="assets/img/details-1.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-5 order-2 order-md-1" data-aos="fade-up">
<h3>Advanced Fuel Management Services</h3>
<p class="fst-italic">
Hydeleye GPS is proud to offer comprehensive Fuel Management Services designed to optimize fuel usage,
reduce costs, and
improve the efficiency of fleet operations. Our advanced systems provide real-time insights and control
over fuel consumption,
making fleet management more effective and economical.
</p>
<ul>
<li><i class="bi bi-check"></i> <strong>Fuel Monitoring:</strong> Track fuel levels, consumption, and
refueling activities in real-time to maintain optimal fuel use.</li>
<li><i class="bi bi-check"></i> <strong>Fuel Usage Reports:</strong> Generate detailed reports on fuel
usage, enabling data-driven decisions to enhance efficiency.</li>
<li><i class="bi bi-check"></i> <strong>Leak and Theft Detection:</strong> Instantly detect fuel leaks or
theft, ensuring your resources are protected.</li>
<li><i class="bi bi-check"></i> <strong>Fuel Cost Analysis:</strong> Monitor fuel costs and identify areas
for potential savings with comprehensive analysis tools.</li>
<li><i class="bi bi-check"></i> <strong>Integration with GPS Tracking:</strong> Seamlessly integrate fuel
management with our GPS tracking systems for complete oversight.</li>
<li><i class="bi bi-check"></i> <strong>User-Friendly Interface:</strong> Enjoy a clean, intuitive
dashboard that simplifies fuel management tasks.</li>
<li><i class="bi bi-check"></i> <strong>Mobile Access:</strong> Manage and monitor fuel consumption from
anywhere with our mobile-friendly platform.</li>
<li><i class="bi bi-check"></i> <strong>24/7 Customer Support:</strong> Access round-the-clock support to
resolve any issues and ensure smooth operation.</li>
</ul>
</div>
</div>
<div id="personal" class="row content d-flex align-items-center">
<div class="col-md-4 " data-aos="fade-right">
<img src="assets/img/personal-tracking.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-5" data-aos="fade-up">
<h3>Personal Tracking Services with Our World Class GPS Technology</h3>
<p>Hydaleye GPS offers advanced personal tracking services using state-of-the-art GPS technology. Whether
you need to ensure
the safety of your loved ones, monitor the whereabouts of children and elders, or keep track of personal
assets, our GPS
tracking solutions are designed to provide peace of mind and real-time visibility.</p>
<ul>
<li><i class="bi bi-check"></i> <strong>Real-Time Location Tracking:</strong> Keep an eye on the exact
location of your loved ones and assets with precise, real-time updates.</li>
<li><i class="bi bi-check"></i> <strong>Emergency SOS Alerts:</strong> Instantly receive notifications
when the SOS button is pressed, ensuring swift response in emergencies.</li>
<li><i class="bi bi-check"></i> <strong>Geofencing:</strong> Set safe zones and receive alerts when these
boundaries are crossed, providing added security.</li>
<li><i class="bi bi-check"></i> <strong>User-Friendly Mobile App:</strong> Access tracking information
through an intuitive and easy-to-use mobile app, available on both Android and iOS.</li>
<li><i class="bi bi-check"></i> <strong>Historical Route Playback:</strong> Review past movements and
routes to ensure comprehensive monitoring.</li>
<li><i class="bi bi-check"></i> <strong>Battery Life Notifications:</strong> Stay informed about the
battery status of your tracking devices, ensuring continuous operation.</li>
<li><i class="bi bi-check"></i> <strong>Compact and Discreet Devices:</strong> Our GPS trackers are small,
portable, and easy to conceal, making them ideal for personal use.</li>
</ul>
<p>
we are providing reliable and user-friendly personal tracking services that help you keep your loved ones
and valuable assets safe. Experience the confidence and security
of knowing you can track and monitor what matters most, anytime and anywhere.
</p>
</div>
</div>
<div id="video" class="row content d-flex align-items-center">
<div class="col-md-4 order-1 order-md-2" data-aos="fade-left">
<img src="assets/img/wd02-dashcam.jpg" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-5 order-2 order-md-1" data-aos="fade-up">
<h3>Advanced Video Telematics with AI Integration</h3>
<p class="fst-italic">
At Hydale Fleet Solutions in Harare, Zimbabwe, we bring you cutting-edge Video Telematics services
enhanced with Artificial Intelligence,
Driver Monitoring Systems (DMS), and Blind Spot Detection (BDS). Our technology provides unparalleled
safety and efficiency for fleet management
and personal use, ensuring real-time insights and proactive monitoring.
</p>
<ul>
<li><i class="bi bi-check"></i> <strong>AI-Enhanced Monitoring:</strong> Utilize advanced AI to monitor
driver behavior, detect drowsiness, distraction, and ensure compliance with safety protocols.</li>
<li><i class="bi bi-check"></i> <strong>Driver Monitoring Systems (DMS):</strong> Real-time monitoring of
driver alertness and attention to promote safe driving practices.</li>
<li><i class="bi bi-check"></i> <strong>Blind Spot Detection (BDS):</strong> Enhanced safety features to
alert drivers of vehicles or objects in their blind spots, reducing accident risks.</li>
<li><i class="bi bi-check"></i> <strong>Live Video Streaming:</strong> Access real-time video feeds from
your vehicles to monitor driving conditions and driver behavior directly.</li>
<li><i class="bi bi-check"></i> <strong>Historical Video Playback:</strong> Review recorded footage of
past trips to analyze incidents, training, and compliance.</li>
<li><i class="bi bi-check"></i> <strong>Event-Based Recording:</strong> Capture and store video footage
triggered by specific events such as sudden braking, collisions, or lane departure.</li>
<li><i class="bi bi-check"></i> <strong>Robust and Durable Design:</strong> Our devices are built to
withstand harsh conditions, ensuring consistent performance and reliability.</li>
<li><i class="bi bi-check"></i> <strong>Training & Support: </strong> Dedicated support to assist with
setup, troubleshooting, and maximizing the benefits of our telematics solutions.</li>
</ul>
<p>
Our advanced Video Telematics services are designed to enhance safety, improve operational efficiency, and
provide peace of mind through continuous monitoring and AI-driven insights. Join us in embracing
the future of fleet management and personal security with our unique solutions.
</p>
</div>
</div>
<div id="software" class="row content d-flex align-items-center">
<div class="col-md-4" data-aos="fade-right">
<img src="assets/img/details-12.png" class="img-fluid" alt="Hydaleye GPS Software">
</div>
<div class="col-md-8 pt-4" data-aos="fade-up">
<h3>Hydaleye GPS: Cutting-Edge GPS Tracking and Fleet Management Software</h3>
<p class="fst-italic">
Hydaleye GPS specialize in state-of-the-art GPS tracking and fleet management software and applications.
Our innovative solutions are designed to provide ultimate convenience, enhanced security, and a seamless
user experience, catering to a variety of tracking needs for businesses and individuals alike.
</p>
<ul>
<li><i class="bi bi-check"></i> Monitor the real-time location of your vehicles and assets with precision.
</li>
<li><i class="bi bi-check"></i> Access detailed route histories to analyze past trips and optimize future
routes.</li>
<li><i class="bi bi-check"></i> Generate and view extensive reports on mileage, idling times, fuel
consumption, and more.</li>
<li><i class="bi bi-check"></i> Receive immediate notifications for critical events such as speeding,
unauthorized movements, or prolonged idling.
<li><i class="bi bi-check"></i> Create virtual boundaries and get instant alerts when these are breached,
ensuring added security.
<li><i class="bi bi-check"></i> Stay informed with personalized alerts tailored to your specific needs and
preferences.
<li><i class="bi bi-check"></i> Navigate our intuitive and clean design with ease, making monitoring and
management straightforward.
<li><i class="bi bi-check"></i> Track multiple vehicles or assets from a single, unified account across
various devices.
<li><i class="bi bi-check"></i> Benefit from round-the-clock assistance to resolve any issues and ensure
smooth operation.
</li>
</ul>
<p>
We are dedicated to delivering reliable, user-centric software solutions that enhance the efficiency and
security of your fleet management operations. Experience peace of mind and operational excellence with our
advanced GPS tracking and
fleet management software, perfectly suited for both personal and business use.
</p>
</div>
</div>
</div>
</section><!-- End Details Section -->
<!-- ======= Gallery Section ======= -->
<section id="gallery" class="gallery">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Software</h2>
<p>Check our software</p>
</div>
<div class="row g-0" data-aos="fade-left">
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="100">
<a href="assets/img/gallery/hydaleye-GPS-software-1.png" class="gallery-lightbox">
<img src="assets/img/gallery/hydaleye-GPS-software-1.png" alt="hydaleye-GPS-software-1"
class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="150">
<a href="assets/img/gallery/hydaleye-GPS-software-2.png" class="gallery-lightbox">
<img src="assets/img/gallery/hydaleye-GPS-software-2.png" alt="hydaleye-GPS-software-2"
class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="200">
<a href="assets/img/gallery/hydaleye-GPS-software-3.png" class="gallery-lightbox">
<img src="assets/img/gallery/hydaleye-GPS-software-3.png" alt="hydaleye-GPS-software-3"
class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="250">
<a href="assets/img/gallery/hydaleye-GPS-software-4.png" class="gallery-lightbox">
<img src="assets/img/gallery/hydaleye-GPS-software-4.png" alt="hydaleye-GPS-software-4"
class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="250">
<a href="assets/img/gallery/hydaleye-GPS-software-5.png" class="gallery-lightbox">
<img src="assets/img/gallery/hydaleye-GPS-software-5.png" alt="hydaleye-GPS-software-5"
class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="250">
<a href="assets/img/gallery/hydaleye-GPS-software-6.png" class="gallery-lightbox">
<img src="assets/img/gallery/hydaleye-GPS-software-6.png" alt="hydaleye-GPS-software-6"
class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="250">
<a href="assets/img/gallery/hydaleye-GPS-software-7.png" class="gallery-lightbox">
<img src="assets/img/gallery/hydaleye-GPS-software-7.png" alt="hydaleye-GPS-software-7"
class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="250">
<a href="assets/img/gallery/hydaleye-GPS-software-8.png" class="gallery-lightbox">
<img src="assets/img/gallery/hydaleye-GPS-software-8.png" alt="hydaleye-GPS-software-8"
class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</section><!-- End Gallery Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container">
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="Ishmael Sakarombe">
<h3>Ishmael Sakarombe</h3>
<h4>Car Rental</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I use Hydale GPS to keep track of my elderly parents and it has been a lifesaver. The SOS alerts and
real-time tracking
give me peace of mind knowing they are safe. The app is easy to use and very reliable.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="Praise Chikwadze">
<h3>Praise Chikwadze</h3>
<h4>Fleet Manager</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Switching to Hydale GPS for our fleet management was the best decision we made. The real-time tracking
and detailed reports have significantly improved our operational efficiency. The customer support is
fantastic,
always there when we need them.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="Netsai Banda">
<h3>Netsai Banda</h3>
<h4>School Administrator</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hydale GPS has made our school bus tracking so much easier. Parents feel more secure with real-time
pickup and drop-off alerts. The system is reliable and very user-friendly. Highly recommend it for any
school.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="Simbarashe Chipanda">
<h3>Simbarashe Chipanda</h3>
<h4>Logistics Manager</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Hydale GPS has transformed the way we manage our logistics. The AI-enhanced video telematics ensure
our drivers
are always alert and safe. The detailed reports and alerts help us stay on top of everything. It's a
game-changer!
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="Takudzwa Kadungure">
<h3>Takudzwa Kadungure</h3>
<h4>Mining Engineer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
The quality of Hydale GPS devices is perfect for our mining vehicles. The fuel management system
has helped
us cut costs significantly. The seamless integration with our existing software makes it very
convenient. Couldn't be happier with the service!
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Team</h2>
<p>Our Great Team</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/team/team-1.jpg" class="img-fluid" alt="Denis Mbudzi"></div>
<div class="member-info">
<h4>Denis Mbudzi</h4>
<span>Fleet Management Consultant</span>
<!-- <div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/denis.mbudzi"><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/denis-mbudzi-23153665/"><i class="bi bi-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="member" data-aos="zoom-in" data-aos-delay="200">
<div class="pic"><img src="assets/img/team/team-2.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Irene Mbudzi</h4>
<span>Sales and Marketing</span>
<!-- <div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="300">
<div class="pic"><img src="assets/img/team/team-3.jpg" class="img-fluid" alt="Clever Mutokwa"></div>
<div class="member-info">
<h4>Clever Mutokwa</h4>
<span>Lead Technician</span>
<!-- <div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="400">
<div class="pic"><img src="assets/img/team/team-4.jpg" class="img-fluid" alt="Tanaka Mbudzi"></div>
<div class="member-info">
<h4>Tanaka Mbudzi</h4>
<span>Systems Support</span>
<!-- <div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div> -->
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Pricing Section ======= -->
<!-- <section id="pricing" class="pricing">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Pricing</h2>
<p>Check our Pricing</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6">
<div class="box" data-aos="zoom-in" data-aos-delay="100">
<h3>Free</h3>
<h4><sup>$</sup>0<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li class="na">Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box featured" data-aos="zoom-in" data-aos-delay="200">
<h3>Business</h3>
<h4><sup>$</sup>19<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="300">
<h3>Developer</h3>
<h4><sup>$</sup>29<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="400">
<span class="advanced">Advanced</span>
<h3>Ultimate</h3>
<h4><sup>$</sup>49<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Pricing Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>F.A.Q</h2>
<p>Frequently Asked Questions</p>
</div>
<div class="faq-list">
<ul>
<li data-aos="fade-up">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" class="collapse"
data-bs-target="#faq-list-1">What is a GPS tracker and how does it work? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-bs-parent=".faq-list">
<p>
A GPS tracker is a device that uses the Global Positioning System to determine and track its precise
location.
This information is then sent to a central server via cellular networks, allowing you to monitor the
location
in real-time on your computer or smartphone. It’s like having a digital map that shows you exactly
where your assets or vehicles are at all times.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-2"
class="collapsed">How can GPS tracking improve my fleet management? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-2" class="collapse" data-bs-parent=".faq-list">
<p>
GPS tracking can revolutionize the way you manage your fleet by providing real-time data on vehicle
locations, routes,
and driver behaviors. This helps you optimize routes, reduce fuel consumption, monitor driving habits,
and enhance overall
efficiency. Plus, it adds a layer of security by allowing you to quickly locate and recover stolen
vehicles.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-3"
class="collapsed">Is it difficult to install and use a GPS tracker? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-bs-parent=".faq-list">
<p>
Not at all! Most GPS trackers are designed to be user-friendly. Installation can vary from plugging a
device into the OBD
port to simply attaching a magnetic tracker to a vehicle. Once installed, using the tracking software
is straightforward,
with intuitive interfaces that make monitoring and managing your fleet easy.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-4"
class="collapsed">Can GPS trackers help in emergency situations? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-bs-parent=".faq-list">
<p>
Absolutely. Many GPS trackers come with features like SOS buttons and emergency alerts. If a vehicle
breaks down or is involved in
an accident, the driver can quickly send an alert, allowing for immediate assistance. Some trackers
also have built-in microphones for
direct communication.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-5"
class="collapsed">What kind of reports can I get from a GPS tracking system? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-5" class="collapse" data-bs-parent=".faq-list">
<p>
GPS tracking systems provide a wide range of reports, including real-time location data, route
history, mileage, fuel consumption,
idling times, and driver behavior analytics. These reports help you gain insights into your fleet’s
performance, identify areas for
improvement, and make data-driven decisions to boost efficiency and reduce costs.
</p>
</div>
</li>
</ul>
</div>
</div>
</section><!-- End F.A.Q Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Contact</h2>
<p>Contact Us</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right" data-aos-delay="100">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>35 Houghton Park Road, Houghton Park, Harare, Zimbabwe</p>
</div>
<div class="email">