-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1015 lines (991 loc) · 44.2 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" />
<title>Vikalp Electronics - CCTV Camera</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon" />
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&family=Roboto:wght@500;700;900&display=swap"
rel="stylesheet"
/>
<!-- Icon Font Stylesheet -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css"
rel="stylesheet"
/>
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet" />
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<!-- Spinner Start -->
<div
id="spinner"
class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center"
>
<div
class="spinner-border text-primary"
style="width: 3rem; height: 3rem"
role="status"
>
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Topbar Start -->
<div class="container-fluid bg-dark px-5">
<div class="row gx-4 d-none d-lg-flex">
<div class="col-lg-6 text-start">
<div class="h-100 d-inline-flex align-items-center py-3 me-4">
<div class="btn-sm-square rounded-circle bg-primary me-2">
<small class="fa fa-map-marker-alt text-white"></small>
</div>
<small>
Gokul Nagar, Jamnagar-361004.
<a
href="https://www.google.com/maps/place/Vikalp+Electric+%26+Electronic/@22.4498898,70.0379789,805m/data=!3m1!1e3!4m14!1m7!3m6!1s0x395715fe5a235cab:0x253906ad36e95d77!2sVikalp+Electric+%26+Electronic!8m2!3d22.4498899!4d70.0428498!16s%2Fg%2F11h55nt32v!3m5!1s0x395715fe5a235cab:0x253906ad36e95d77!8m2!3d22.4498899!4d70.0428498!16s%2Fg%2F11h55nt32v?entry=ttu&g_ep=EgoyMDI0MTAyMC4xIKXMDSoASAFQAw%3D%3D"
target="_blank"
>View on Google Maps</a
>
</small>
</div>
<div class="h-100 d-inline-flex align-items-center py-3">
<div class="btn-sm-square rounded-circle bg-primary me-2">
<small class="fa fa-envelope-open text-white"></small>
</div>
<small>
<a href="mailto:vikalpelectronicsofficial@gmail.com"
>vikalpelectronicsofficial@gmail.com</a
>
</small>
</div>
</div>
<div class="col-lg-6 text-end">
<div class="h-100 d-inline-flex align-items-center py-3 me-4">
<div class="btn-sm-square rounded-circle bg-primary me-2">
<small class="fa fa-phone-alt text-white"></small>
</div>
<small>
<a href="tel:+919374170929">+91 93741 70929</a>
</small>
</div>
<div class="h-100 d-inline-flex align-items-center py-3">
<div class="btn-sm-square rounded-circle bg-primary me-2">
<small class="far fa-clock text-white"></small>
</div>
<small>Mon - Sat : 9AM - 10PM</small>
</div>
</div>
</div>
</div>
<!-- Topbar End -->
<!-- Navbar Start -->
<nav
class="navbar navbar-expand-lg bg-white navbar-light sticky-top p-0 px-4 px-lg-5"
>
<a href="index.html" class="navbar-brand d-flex align-items-center">
<h2 class="m-0 text-primary">Vikalp Electronics - Jamnagar.</h2>
</a>
<button
type="button"
class="navbar-toggler"
data-bs-toggle="collapse"
data-bs-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-4 py-lg-0">
<a href="./index.html" class="nav-item nav-link">Home</a>
<a href="./about.html" class="nav-item nav-link">About</a>
<a href="./service.html" class="nav-item nav-link">Service</a>
<a href="./feature.html" class="nav-item nav-link">Feature</a>
<a href="./contact.html" class="nav-item nav-link">Contact</a>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Carousel Start -->
<div class="container-fluid p-0 pb-5">
<div class="owl-carousel header-carousel position-relative">
<div class="owl-carousel-item position-relative">
<img class="img-fluid" src="img/carousel-1.jpg" alt="CCTVimage" />
<div class="carousel-inner">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-8 text-center">
<h1 class="display-3 text-white animated slideInDown mb-4">
Best CCTV & Security Solution For You
</h1>
<p class="fs-5 text-white mb-4 pb-2">
We provide high-quality CCTV camera services, including
professional installation, maintenance, and monitoring to
ensure your property is secure 24/7.
</p>
<a
href="./quote.html"
class="btn btn-light rounded-pill py-md-3 px-md-5 animated slideInRight"
>Free Quote</a
>
</div>
</div>
</div>
</div>
</div>
<div class="owl-carousel-item position-relative">
<img class="img-fluid" src="img/carousel-2.jpg" alt="Smart Security Solution" />
<div class="carousel-inner">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-8 text-center">
<h1 class="display-3 text-white animated slideInDown mb-4">
Smart Security Solution For All Business
</h1>
<p class="fs-5 text-white mb-4 pb-2">
Our skilled technicians offer seamless CCTV camera
installation tailored to meet the security needs of your
home or business.
</p>
<a
href="./quote.html"
class="btn btn-light rounded-pill py-md-3 px-md-5 animated slideInRight"
>Free Quote</a
>
</div>
</div>
</div>
</div>
</div>
<div class="owl-carousel-item position-relative">
<img class="img-fluid" src="img/carousel-3.jpg" alt="Security System" />
<div class="carousel-inner">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-8 text-center">
<h1 class="display-3 text-white animated slideInDown mb-4">
Innovative Solution For Security System
</h1>
<p class="fs-5 fw-medium text-white mb-4 pb-2">
We offer routine maintenance services to keep your CCTV
cameras functioning at their best, ensuring uninterrupted
security coverage.
</p>
<a
href="./quote.html"
class="btn btn-light rounded-pill py-md-3 px-md-5 animated slideInRight"
>Free Quote</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel End -->
<!-- Facts Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="row g-4">
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay="0.1s">
<div class="h-100 bg-dark p-4 p-xl-5">
<div
class="d-flex align-items-center justify-content-between mb-4"
>
<div
class="btn-square rounded-circle"
style="width: 64px; height: 64px; background: #000000"
>
<img class="img-fluid" src="img/icon/icon-3.png" alt="Icon" />
</div>
<h1 class="display-1 mb-0" style="color: #ffffff">01</h1>
</div>
<h5 class="text-white">Home Security</h5>
<hr class="w-25" />
<span
>Our advanced CCTV camera systems offer reliable home security,
keeping your family and property safe around the clock.</span
>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay="0.3s">
<div class="h-100 bg-dark p-4 p-xl-5">
<div
class="d-flex align-items-center justify-content-between mb-4"
>
<div
class="btn-square rounded-circle"
style="width: 64px; height: 64px; background: #000000"
>
<img class="img-fluid" src="img/icon/icon-4.png" alt="Icon" />
</div>
<h1 class="display-1 mb-0" style="color: #ffffff">02</h1>
</div>
<h5 class="text-white">Access Control</h5>
<hr class="w-25" />
<span
>Control who enters and exits your facility with our reliable
access control solutions, tailored to meet your specific
security requirements.</span
>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay="0.5s">
<div class="h-100 bg-dark p-4 p-xl-5">
<div
class="d-flex align-items-center justify-content-between mb-4"
>
<div
class="btn-square rounded-circle"
style="width: 64px; height: 64px; background: #000000"
>
<img class="img-fluid" src="img/icon/icon-2.png" alt="Icon" />
</div>
<h1 class="display-1 mb-0" style="color: #ffffff">03</h1>
</div>
<h5 class="text-white">24/7 Support</h5>
<hr class="w-25" />
<span
>With our 24/7 surveillance and access control solutions, you
can rest easy knowing your property is protected day and
night.</span
>
</div>
</div>
</div>
</div>
</div>
<!-- Facts Start -->
<!-- About Start -->
<div class="container-fluid bg-light overflow-hidden my-5 px-lg-0">
<div class="container about px-lg-0">
<div class="row g-0 mx-lg-0">
<div class="col-lg-6 ps-lg-0" style="min-height: 400px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/about.jpg"
style="object-fit: cover"
alt="CCTV"
/>
</div>
</div>
<div
class="col-lg-6 about-text py-5 wow fadeIn"
data-wow-delay="0.5s"
>
<div class="p-lg-5 pe-lg-0">
<div
class="bg-primary mb-3"
style="width: 60px; height: 2px"
></div>
<h1 class="display-5 mb-4">About Us</h1>
<p class="mb-4 pb-2">
Vikalp Electronics has been a trusted name in Jamnagar for over
15 years, providing expert services in CCTV installation,
maintenance, and security systems. Our long-standing presence in
the market is a testament to our commitment to quality and
customer satisfaction. With a strong focus on delivering
reliable and cutting-edge security solutions, we ensure that our
clients receive the best service to protect their homes and
businesses. Whether it’s installing a new system or maintaining
an existing one, Vikalp Electronics is dedicated to securing
what matters most to you.
</p>
<div class="row g-4 mb-4 pb-3">
<div class="col-sm-6 wow fadeIn" data-wow-delay="0.1s">
<div class="d-flex align-items-center">
<div
class="btn-square bg-white rounded-circle"
style="width: 64px; height: 64px"
>
<img
class="img-fluid"
src="img/icon/icon-1.png"
alt="Icon"
/>
</div>
<div class="ms-4">
<h2 class="mb-1" data-toggle="counter-up">234</h2>
<p class="fw-medium text-primary mb-0">Happy Clients</p>
</div>
</div>
</div>
<div class="col-sm-6 wow fadeIn" data-wow-delay="0.3s">
<div class="d-flex align-items-center">
<div
class="btn-square bg-white rounded-circle"
style="width: 64px; height: 64px"
>
<img
class="img-fluid"
src="img/icon/icon-5.png"
alt="Icon"
/>
</div>
<div class="ms-4">
<h2 class="mb-1" data-toggle="counter-up">200</h2>
<p class="fw-medium text-primary mb-0">Projects Done</p>
</div>
</div>
</div>
</div>
<!-- <a href="" class="btn btn-primary rounded-pill py-3 px-5">Explore More</a> -->
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Service Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="text-center">
<div
class="bg-primary mb-3 mx-auto"
style="width: 60px; height: 2px"
></div>
<h1 class="display-5 mb-5">Our Services</h1>
</div>
<div class="row g-0 service-row">
<div class="col-md-6 col-lg-3 wow fadeIn" data-wow-delay="0.1s">
<div class="service-item border h-100 p-5">
<div
class="btn-square bg-light rounded-circle mb-4"
style="width: 64px; height: 64px"
>
<img class="img-fluid" src="img/icon/icon-6.png" alt="Icon" />
</div>
<h4 class="mb-3">Commercial CCTV System</h4>
<p class="mb-4">
We provide top-tier Commercial CCTV System services, ensuring
24/7 security with expert installation and advanced surveillance
features
</p>
<!-- <a class="btn" href=""><i class="fa fa-arrow-right text-white me-3"></i>Read More</a> -->
</div>
</div>
<div class="col-md-6 col-lg-3 wow fadeIn" data-wow-delay="0.3s">
<div class="service-item border h-100 p-5">
<div
class="btn-square bg-light rounded-circle mb-4"
style="width: 64px; height: 64px"
>
<img class="img-fluid" src="img/icon/icon-8.png" alt="Icon" />
</div>
<h4 class="mb-3">Finger Print Access Service</h4>
<p class="mb-4">
We offer secure Fingerprint Access services, providing efficient
and reliable entry control with biometric technology.
</p>
<!-- <a class="btn" href=""><i class="fa fa-arrow-right text-white me-3"></i>Read More</a> -->
</div>
</div>
<div class="col-md-6 col-lg-3 wow fadeIn" data-wow-delay="0.5s">
<div class="service-item border h-100 p-5">
<div
class="btn-square bg-light rounded-circle mb-4"
style="width: 64px; height: 64px"
>
<img class="img-fluid" src="img/icon/icon-9.png" alt="Icon" />
</div>
<h4 class="mb-3">Fire Detection And Safety</h4>
<p class="mb-4">
We provide comprehensive Fire Detection and Safety services to
protect your property with advanced alarm systems and safety
solutions.
</p>
<!-- <a class="btn" href=""><i class="fa fa-arrow-right text-white me-3"></i>Read More</a> -->
</div>
</div>
<div class="col-md-6 col-lg-3 wow fadeIn" data-wow-delay="0.7s">
<div class="service-item border h-100 p-5">
<div
class="btn-square bg-light rounded-circle mb-4"
style="width: 64px; height: 64px"
>
<img class="img-fluid" src="img/icon/icon-3.png" alt="Icon" />
</div>
<h4 class="mb-3">Smart Home Security</h4>
<p class="mb-4">
We offer Smart Home Security services that integrate advanced
technology for seamless monitoring and control of your home’s
safety.
</p>
<!-- <a class="btn" href=""><i class="fa fa-arrow-right text-white me-3"></i>Read More</a> -->
</div>
</div>
</div>
</div>
</div>
<!-- Service End -->
<!-- Feature Start -->
<div class="container-fluid bg-light overflow-hidden my-5 px-lg-0">
<div class="container feature px-lg-0">
<div class="row g-0 mx-lg-0">
<div
class="col-lg-6 feature-text py-5 wow fadeIn"
data-wow-delay="0.5s"
>
<div class="p-lg-5 ps-lg-0">
<div
class="bg-primary mb-3"
style="width: 60px; height: 2px"
></div>
<h1 class="display-5 mb-5">Why Choose Us</h1>
<p class="mb-4 pb-2">
At Vikalp Electronics, we combine years of experience with a
commitment to quality service, ensuring reliable and effective
security solutions. Our team utilizes the latest technology to
deliver state-of-the-art systems tailored to your needs. With
24/7 support and maintenance, we ensure your security systems
operate smoothly. Our ability to customize services to meet your
unique requirements makes us the ideal choice for protecting
your home or business.
</p>
<div class="row g-4">
<div class="col-6">
<div class="d-flex align-items-center">
<div
class="btn-square bg-white rounded-circle"
style="width: 64px; height: 64px"
>
<img
class="img-fluid"
src="img/icon/icon-7.png"
alt="Icon"
/>
</div>
<div class="ms-4">
<p class="text-primary mb-2">Trusted</p>
<h5 class="mb-0">Security</h5>
</div>
</div>
</div>
<div class="col-6">
<div class="d-flex align-items-center">
<div
class="btn-square bg-white rounded-circle"
style="width: 64px; height: 64px"
>
<img
class="img-fluid"
src="img/icon/icon-10.png"
alt="Icon"
/>
</div>
<div class="ms-4">
<p class="text-primary mb-2">Quality</p>
<h5 class="mb-0">Services</h5>
</div>
</div>
</div>
<div class="col-6">
<div class="d-flex align-items-center">
<div
class="btn-square bg-white rounded-circle"
style="width: 64px; height: 64px"
>
<img
class="img-fluid"
src="img/icon/icon-3.png"
alt="Icon"
/>
</div>
<div class="ms-4">
<p class="text-primary mb-2">Smart</p>
<h5 class="mb-0">Systems</h5>
</div>
</div>
</div>
<div class="col-6">
<div class="d-flex align-items-center">
<div
class="btn-square bg-white rounded-circle"
style="width: 64px; height: 64px"
>
<img
class="img-fluid"
src="img/icon/icon-2.png"
alt="Icon"
/>
</div>
<div class="ms-4">
<p class="text-primary mb-2">24/7 Hours</p>
<h5 class="mb-0">Support</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 pe-lg-0" style="min-height: 400px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/feature.jpg"
style="object-fit: cover"
alt="CCTVService"
/>
</div>
</div>
</div>
</div>
</div>
<!-- Feature End -->
<!-- Projects Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="text-center wow fadeInUp" data-wow-delay="0.1s">
<div
class="bg-primary mb-3 mx-auto"
style="width: 60px; height: 2px"
></div>
<h1 class="display-5 mb-5">Our Projects</h1>
</div>
<div class="row mt-n2 wow fadeInUp" data-wow-delay="0.3s">
<div class="col-12 text-center">
<ul class="list-inline mb-5" id="portfolio-flters">
<li class="mx-2 active" data-filter="*">All</li>
<li class="mx-2" data-filter=".first">Complete Projects</li>
<li class="mx-2" data-filter=".second">Ongoing Projects</li>
</ul>
</div>
</div>
<div class="row g-4 portfolio-container">
<div
class="col-lg-4 col-md-6 portfolio-item first wow fadeInUp"
data-wow-delay="0.1s"
>
<div class="portfolio-inner">
<img class="img-fluid w-100" src="img/portfolio-1.jpg" alt="CCTVProjects" />
<div class="text-center p-4">
<p class="text-primary mb-2">Business Security</p>
<h5 class="lh-base mb-0">
Smart CCTV Security Systems That Fits Your Business
</h5>
</div>
<div class="portfolio-text text-center bg-white p-4">
<p class="text-primary mb-2">Business Security</p>
<h5 class="lh-base mb-3">
Smart CCTV Security Systems That Fits Your Business
</h5>
<div class="d-flex justify-content-center">
<!-- <a class="btn btn-square btn-primary rounded-circle mx-1" href="img/portfolio-1.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-square btn-primary rounded-circle mx-1" href=""><i class="fa fa-link"></i></a> -->
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item second wow fadeInUp"
data-wow-delay="0.3s"
>
<div class="portfolio-inner">
<img class="img-fluid w-100" src="img/portfolio-2.jpg" alt="CCTVProjects" />
<div class="text-center p-4">
<p class="text-primary mb-2">Fire Detection</p>
<h5 class="lh-base mb-0">
Smart CCTV Security Systems That Fits Your Business
</h5>
</div>
<div class="portfolio-text text-center bg-white p-4">
<p class="text-primary mb-2">Fire Detection</p>
<h5 class="lh-base mb-3">
Smart CCTV Security Systems That Fits Your Business
</h5>
<div class="d-flex justify-content-center">
<!-- <a class="btn btn-square btn-primary rounded-circle mx-1" href="img/portfolio-2.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-square btn-primary rounded-circle mx-1" href=""><i class="fa fa-link"></i></a> -->
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item first wow fadeInUp"
data-wow-delay="0.5s"
>
<div class="portfolio-inner">
<img class="img-fluid w-100" src="img/portfolio-3.jpg" alt="CCTVProjects" />
<div class="text-center p-4">
<p class="text-primary mb-2">Access Control</p>
<h5 class="lh-base mb-0">
Smart CCTV Security Systems That Fits Your Business
</h5>
</div>
<div class="portfolio-text text-center bg-white p-4">
<p class="text-primary mb-2">Access Control</p>
<h5 class="lh-base mb-3">
Smart CCTV Security Systems That Fits Your Business
</h5>
<div class="d-flex justify-content-center">
<!-- <a class="btn btn-square btn-primary rounded-circle mx-1" href="img/portfolio-3.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-square btn-primary rounded-circle mx-1" href=""><i class="fa fa-link"></i></a> -->
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item second wow fadeInUp"
data-wow-delay="0.1s"
>
<div class="portfolio-inner">
<img class="img-fluid w-100" src="img/portfolio-4.jpg" alt="CCTVProjects" />
<div class="text-center p-4">
<p class="text-primary mb-2">Alarm Systems</p>
<h5 class="lh-base mb-0">
Smart CCTV Security Systems That Fits Your Business
</h5>
</div>
<div class="portfolio-text text-center bg-white p-4">
<p class="text-primary mb-2">Alarm Systems</p>
<h5 class="lh-base mb-3">
Smart CCTV Security Systems That Fits Your Business
</h5>
<div class="d-flex justify-content-center">
<!-- <a class="btn btn-square btn-primary rounded-circle mx-1" href="img/portfolio-4.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-square btn-primary rounded-circle mx-1" href=""><i class="fa fa-link"></i></a> -->
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item first wow fadeInUp"
data-wow-delay="0.3s"
>
<div class="portfolio-inner">
<img class="img-fluid w-100" src="img/portfolio-5.jpg" alt="CCTVProjects" />
<div class="text-center p-4">
<p class="text-primary mb-2">CCTV & Video</p>
<h5 class="lh-base mb-0">
Smart CCTV Security Systems That Fits Your Business
</h5>
</div>
<div class="portfolio-text text-center bg-white p-4">
<p class="text-primary mb-2">CCTV & Video</p>
<h5 class="lh-base mb-3">
Smart CCTV Security Systems That Fits Your Business
</h5>
<div class="d-flex justify-content-center">
<!-- <a class="btn btn-square btn-primary rounded-circle mx-1" href="img/portfolio-5.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-square btn-primary rounded-circle mx-1" href=""><i class="fa fa-link"></i></a> -->
</div>
</div>
</div>
</div>
<div
class="col-lg-4 col-md-6 portfolio-item second wow fadeInUp"
data-wow-delay="0.5s"
>
<div class="portfolio-inner">
<img class="img-fluid w-100" src="img/portfolio-6.jpg" alt="CCTVProjects" />
<div class="text-center p-4">
<p class="text-primary mb-2">Smart Home</p>
<h5 class="lh-base mb-0">
Smart CCTV Security Systems That Fits Your Business
</h5>
</div>
<div class="portfolio-text text-center bg-white p-4">
<p class="text-primary mb-2">Smart Home</p>
<h5 class="lh-base mb-3">
Smart CCTV Security Systems That Fits Your Business
</h5>
<div class="d-flex justify-content-center">
<!-- <a class="btn btn-square btn-primary rounded-circle mx-1" href="img/portfolio-6.jpg" data-lightbox="portfolio"><i class="fa fa-eye"></i></a>
<a class="btn btn-square btn-primary rounded-circle mx-1" href=""><i class="fa fa-link"></i></a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Projects End -->
<!-- Quote Start -->
<div class="container-fluid bg-light overflow-hidden my-5 px-lg-0">
<div class="container quote px-lg-0">
<div class="row g-0 mx-lg-0">
<div class="col-lg-6 ps-lg-0" style="min-height: 400px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/quote.jpg"
style="object-fit: cover"
alt="CCTVQuote"
/>
</div>
</div>
<div
class="col-lg-6 quote-text py-5 wow fadeIn"
data-wow-delay="0.5s"
>
<div class="p-lg-5 pe-lg-0">
<div
class="bg-primary mb-3"
style="width: 60px; height: 2px"
></div>
<h1 class="display-5 mb-5">Free Quote</h1>
<p class="mb-4 pb-2">
Ready to enhance your security? Contact us today for a free
quote on our CCTV, access control, fire detection, and smart
home security services. Our team will assess your needs and
provide a customized solution that fits your budget. Fill out
the form below or call us directly to get started!
</p>
<form>
<div class="row g-3">
<div class="col-12 col-sm-6">
<input
type="text"
class="form-control border-0"
placeholder="Your Name"
style="height: 55px"
required
/>
</div>
<div class="col-12 col-sm-6">
<input
type="email"
class="form-control border-0"
placeholder="Your Email"
style="height: 55px"
/>
</div>
<div class="col-12 col-sm-6">
<input
type="text"
class="form-control border-0"
placeholder="Your Mobile"
style="height: 55px"
/>
</div>
<div class="col-12 col-sm-6">
<select class="form-select border-0" style="height: 55px">
<option selected>Select A Service</option>
<option value="1">Service 1</option>
<option value="2">Service 2</option>
<option value="3">Service 3</option>
</select>
</div>
<div class="col-12">
<textarea
class="form-control border-0"
placeholder="Special Note"
></textarea>
</div>
<div class="col-12">
<button class="btn btn-primary w-100 py-3" type="submit">
Get A Free Quote
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Quote End -->
<!-- Team Start -->
<!-- <div class="container-xxl py-5">
<div class="container">
<div class="text-center wow fadeInUp" data-wow-delay="0.1s">
<div class="bg-primary mb-3 mx-auto" style="width: 60px; height: 2px;"></div>
<h1 class="display-5 mb-5">Team Members</h1>
</div>
<div class="row g-4">
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="team-item">
<div class="overflow-hidden position-relative">
<img class="img-fluid" src="img/team-1.jpg" alt="">
<div class="team-social">
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="text-center p-4">
<h5 class="mb-0">Full Name</h5>
<span class="text-primary">Designation</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="team-item">
<div class="overflow-hidden position-relative">
<img class="img-fluid" src="img/team-2.jpg" alt="">
<div class="team-social">
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="text-center p-4">
<h5 class="mb-0">Full Name</h5>
<span class="text-primary">Designation</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="team-item">
<div class="overflow-hidden position-relative">
<img class="img-fluid" src="img/team-3.jpg" alt="">
<div class="team-social">
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="text-center p-4">
<h5 class="mb-0">Full Name</h5>
<span class="text-primary">Designation</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.7s">
<div class="team-item">
<div class="overflow-hidden position-relative">
<img class="img-fluid" src="img/team-4.jpg" alt="">
<div class="team-social">
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-dark rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="text-center p-4">
<h5 class="mb-0">Full Name</h5>
<span class="text-primary">Designation</span>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- Team End -->
<!-- Testimonial Start -->
<!-- <div class="container-xxl py-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="container">
<div class="text-center wow fadeInUp" data-wow-delay="0.1s">
<div class="bg-primary mb-3 mx-auto" style="width: 60px; height: 2px;"></div>
<h1 class="display-5 mb-5">Testimonial</h1>
</div>
<div class="owl-carousel testimonial-carousel wow fadeInUp" data-wow-delay="0.1s">
<div class="testimonial-item text-center" data-dot="<img class='img-fluid' src='img/testimonial-1.jpg' alt=''>">
<p class="fs-5">Clita clita tempor justo dolor ipsum amet kasd amet duo justo duo duo labore sed sed. Magna ut diam sit et amet stet eos sed clita erat magna elitr erat sit sit erat at rebum justo sea clita.</p>
<h4>Client Name</h4>
<span class="text-primary">Profession</span>
</div>
<div class="testimonial-item text-center" data-dot="<img class='img-fluid' src='img/testimonial-2.jpg' alt=''>">
<p class="fs-5">Clita clita tempor justo dolor ipsum amet kasd amet duo justo duo duo labore sed sed. Magna ut diam sit et amet stet eos sed clita erat magna elitr erat sit sit erat at rebum justo sea clita.</p>
<h4>Client Name</h4>
<span class="text-primary">Profession</span>
</div>
<div class="testimonial-item text-center" data-dot="<img class='img-fluid' src='img/testimonial-3.jpg' alt=''>">
<p class="fs-5">Clita clita tempor justo dolor ipsum amet kasd amet duo justo duo duo labore sed sed. Magna ut diam sit et amet stet eos sed clita erat magna elitr erat sit sit erat at rebum justo sea clita.</p>
<h4>Client Name</h4>
<span class="text-primary">Profession</span>
</div>
</div>
</div>
</div> -->
<!-- Testimonial End -->
<!-- Footer Start -->
<div
class="container-fluid bg-dark text-secondary footer mt-5 py-5 wow fadeIn"
data-wow-delay="0.1s"
>
<div class="container py-5">
<div class="row g-5">
<div class="col-lg-5 col-md-6">
<h5 class="text-light mb-4">Address</h5>
<p class="mb-2">
<i class="fa fa-map-marker-alt me-3"></i>
<a
href="https://www.google.com/maps/place/Vikalp+Electric+%26+Electronic/@22.4498898,70.0379789,805m/data=!3m1!1e3!4m14!1m7!3m6!1s0x395715fe5a235cab:0x253906ad36e95d77!2sVikalp+Electric+%26+Electronic!8m2!3d22.4498899!4d70.0428498!16s%2Fg%2F11h55nt32v!3m5!1s0x395715fe5a235cab:0x253906ad36e95d77!8m2!3d22.4498899!4d70.0428498!16s%2Fg%2F11h55nt32v?entry=ttu&g_ep=EgoyMDI0MTAyMC4xIKXMDSoASAFQAw%3D%3D"
target="_blank"
>Gokul Nagar, Jamnagar-361004.</a
>
</p>
<p class="mb-2">
<i class="fa fa-phone-alt me-3"></i>
<a href="tel:+919374170929">+91 93741 70929</a>
</p>
<p class="mb-2">
<i class="fa fa-envelope me-3"></i>
<a href="mailto:vikalpelectronicsofficial@gmail.com"
>vikalpelectronicsofficial@gmail.com</a
>
</p>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-light mb-4">Services</h5>
<a class="btn btn-link">Business Security</a>
<a class="btn btn-link">Fire Detection</a>
<a class="btn btn-link">Alarm Systems</a>
<a class="btn btn-link">CCTV & Video</a>
<a class="btn btn-link">Smart Home</a>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-light mb-4">Quick Links</h5>
<a class="btn btn-link" href="./index.html">Home</a>
<a class="btn btn-link" href="./about.html">About Us</a>
<a class="btn btn-link" href="./service.html">Service</a>
<a class="btn btn-link" href="./feature.html">Feature</a>
<a class="btn btn-link" href="./contact.html">Contact Us</a>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Copyright Start -->
<div class="container-fluid py-4" style="background: #000000">
<div class="container">
<div class="row">
<div class="col-md-6 text-center text-md-start mb-3 mb-md-0">
©
<a class="border-bottom" href="./index.html">Vikalp Electronics</a>,
All Right Reserved.
</div>
<div class="col-md-6 text-center text-md-end">
Designed By <a class="border-bottom">Madhav Graphics</a>
</div>
</div>
</div>
</div>
<!-- Copyright End -->
<!-- Back to Top -->
<a
href="#"
class="btn btn-lg btn-primary btn-lg-square rounded-circle back-to-top"
><i class="bi bi-arrow-up"></i
></a>