-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1889 lines (1695 loc) · 118 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" class="scroll-smooth" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ItEthik - An It Ethnicity</title>
<link rel="shortcut icon" type="image/x-icon" href="https://ik.imagekit.io/hk376cwka/images/monogram__1_.png?updatedAt=1685287408855>
<link rel="">
<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=Heebo:wght@300;400;500;600;700;800;900&family=Rubik:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap"
rel="stylesheet">
<!-- Plugins css -->
<link rel="stylesheet" href="./assets/css/mobilemenu.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css" />
<!-- Tailwind css -->
<link rel="stylesheet" href="./assets/css/styles.css" />
<script>
// On page load, set the dark theme
document.documentElement.classList.add("dark");
document.getElementById("light__to--dark")?.classList.add("dark--version");
</script>
</head>
<body class="font-rubik dark:bg-dark_primary_bg">
<!-- Preloader start -->
<div id="preloader">
<div class="loader--border"></div>
</div>
<!-- Preloader end -->
<!-- Header area start -->
<header class="absolute w-full left-0 top-0">
<div class="header__sticky py-5">
<div class="container mx-auto">
<div class="flex justify-between items-center">
<div class="logo">
<a href="./index.html">
<img class="hidden dark:block" src="assets/images/blue-logo-border.png" loading="lazy" width="120"
height="30" alt="ItEthik" loading="lazy">
</a>
</div>
<div class="flex items-center md:hidden">
<nav>
<ul class="flex items-center">
<li>
<a href="#home"
class="text-[17px] xl:text-[19px] text-accent1 dark:text-orange font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300 relative after:absolute after:content-[''] after:h-[2px] after:w-0 after:bottom-[3px] ltr:after:left-0 rtl:after:right-0 after:transition-[.5s] after:bg-accent1 py-[8px] hover:after:w-full">Home</a>
</li>
<li>
<a href="#about"
class="text-[17px] xl:text-[19px] text-primary dark:text-white font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300 ltr:ml-[26px] ltr:xl:ml-[44px] rtl:mr-[26px] rtl:xl:mr-[44px] relative after:absolute after:content-[''] after:h-[2px] after:w-0 after:bottom-[3px] ltr:after:left-0 rtl:after:right-0 after:transition-[.5s] after:bg-accent1 py-[8px] hover:after:w-full">About</a>
</li>
</li>
<li>
<a href="#services"
class="text-[17px] xl:text-[19px] text-primary dark:text-white font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300 ltr:ml-[26px] ltr:xl:ml-[44px] rtl:mr-[26px] rtl:xl:mr-[44px] relative after:absolute after:content-[''] after:h-[2px] after:w-0 after:bottom-[3px] ltr:after:left-0 rtl:after:right-0 after:transition-[.5s] after:bg-accent1 py-[8px] hover:after:w-full">Services</a>
</li>
<li>
<a href="#portfolio"
class="text-[17px] xl:text-[19px] text-primary dark:text-white font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300 ltr:ml-[26px] ltr:xl:ml-[44px] rtl:mr-[26px] rtl:xl:mr-[44px] relative after:absolute after:content-[''] after:h-[2px] after:w-0 after:bottom-[3px] ltr:after:left-0 rtl:after:right-0 after:transition-[.5s] after:bg-accent1 py-[8px] hover:after:w-full">Projects</a>
</li>
<li>
<a href="#blog"
class="text-[17px] xl:text-[19px] text-primary dark:text-white font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300 ltr:ml-[26px] ltr:xl:ml-[44px] rtl:mr-[26px] rtl:xl:mr-[44px] relative after:absolute after:content-[''] after:h-[2px] after:w-0 after:bottom-[3px] ltr:after:left-0 rtl:after:right-0 after:transition-[.5s] after:bg-accent1 py-[8px] hover:after:w-full">Blog</a>
</li>
<li><a href="#contact"
class="text-[17px] xl:text-[19px] text-primary dark:text-white font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300 ltr:ml-[26px] ltr:xl:ml-[44px] rtl:mr-[26px] rtl:xl:mr-[44px] relative after:absolute after:content-[''] after:h-[2px] after:w-0 after:bottom-[3px] ltr:after:left-0 rtl:after:right-0 after:transition-[.5s] after:bg-accent1 py-[8px] hover:after:w-full">Contact</a>
</li>
</ul>
</nav>
<a href="login.html">
<button
class="flex bg-accent1 lg:px-[15px] px-[12px] xl:py-[12px] py-[10px] rounded-[2rem] text-[16px] xl:text-[18px] font-medium text-white items-center ltr:ml-[32px] rtl:mr-[32px] transition duration-300 relative after:absolute :after:content-[''] after:bg-primary after:h-full after:w-full after:bottom-0 after:left-0 after:rounded-[2rem] after:trasition after:duration-300 after:opacity-0 hover:after:opacity-[1]">
<span
class="icon bg-[#EFEBEB] text-accent1 w-[34px] h-[34px] rounded-full flex items-center justify-center ltr:xl:mr-[15px] ltr:mr-[10px] rtl:xl:ml-[15px] rtl:ml-[10px] relative z-[8] flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-activity">
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path>
<circle cx="9" cy="7" r="4"></circle>
<path d="M23 21v-2a4 4 0 0 0-3-3.87"></path>
<path d="M16 3.13a4 4 0 0 1 0 7.75"></path>
</svg>
</span>
<span
class="ltr:xl:pr-[5px] ltr:lg:pr-[5px] rtl:xl:pl-[5px] rtl:lg:pl-[5px] relative z-[8] flex-shrink-0">Sign-in</span>
</button>
</a>
</div>
<div class="lg:hidden">
<button class="offcanvas__header--menu__open--btn text-primary dark:text-white " data-offcanvas>
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-menu">
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
</div>
</div>
</div>
<!-- Start Offcanvas header menu -->
<div class="offcanvas__header lg:hidden dark:bg-gray-800">
<div class="offcanvas__inner">
<div class="offcanvas__logo">
<a class="offcanvas__logo_link" href="index.html">
<img class="hidden dark:block" src="assets/images/blue-logo-border.png" loading="lazy" alt="ItEthik"
width="158" height="36">
</a>
<button class="offcanvas__close--btn dark:text-white" data-offcanvas>close</button>
</div>
<nav class="offcanvas__menu">
<ul class="offcanvas__menu_ul">
<li class="offcanvas__menu_li">
<a class="offcanvas__menu_item dark:text-orange" href="#home">Home</a>
</li>
<li class="offcanvas__menu_li"><a class="offcanvas__menu_item dark:text-white" href="about.html">About</a>
</li>
<li class="offcanvas__menu_li"><a class="offcanvas__menu_item dark:text-white"
href="services.html">Services</a></li>
<li class="offcanvas__menu_li"><a class="offcanvas__menu_item dark:text-white"
href="portfolio.html">Portfolio</a></li>
<li class="offcanvas__menu_li"><a class="offcanvas__menu_item dark:text-white" href="blog.html">Blog</a>
</li>
<li class="offcanvas__menu_li"><a class="offcanvas__menu_item dark:text-white"
href="contact.html">Contact</a></li>
</ul>
<a href="login.html">
<button
class="flex mx-auto bg-accent1 lg:px-[15px] px-[12px] xl:py-[12px] py-[10px] rounded-[2rem] text-[16px] xl:text-[18px] font-medium text-white items-center transition duration-300 relative after:absolute :after:content-[''] after:bg-primary after:h-full after:w-full after:bottom-0 after:left-0 after:rounded-[2rem] after:trasition after:duration-300 after:opacity-0 hover:after:opacity-[1] mt-[30px]">
<span
class="icon bg-[#EFEBEB] text-accent1 w-[34px] h-[34px] rounded-full flex items-center justify-center ltr:xl:mr-[15px] ltr:mr-[10px] rtl:xl:ml-[15px] rtl:ml-[10px] relative z-[8] flex-shrink-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-activity">
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path>
<circle cx="9" cy="7" r="4"></circle>
<path d="M23 21v-2a4 4 0 0 0-3-3.87"></path>
<path d="M16 3.13a4 4 0 0 1 0 7.75"></path>
</svg>
</span>
<span
class="ltr:xl:pr-[5px] ltr:lg:pr-[5px] rtl:xl:pl-[5px] rtl:lg:pl-[5px] relative z-[8] flex-shrink-0">Sign-in</span>
</button>
</a>
</nav>
</div>
</div>
<!-- End Offcanvas header menu -->
</div>
</header>
<!-- Header area end -->
<!-- Main wrapper start -->
<main>
<!-- Hero section start -->
<section
class="bg-cover bg-no-repeat bg-center sm:h-full only-md:h-screen lg:min-h-screen flex justify-center items-center overflow-hidden bg-[url('..home2-hero-bg-dark.png')] bg-[#DAEEF1] dark:bg-[url('../images/home2-hero-bg-dark.png')] dark:bg-dark_primary_bg dark:border-b dark:border-dark_accent1"
id="home">
<div
class="container mx-auto flex sm:flex-col items-center justify-center lg:mt-[40px] only-md:mt-[40px] sm:pt-[100px] sm:pb-[70px]">
<div class="lg:max-w-[40%] sm:max-w-[60%] xs:max-w-[85%] only-md:max-w-[40%] flex justify-end">
<div class="relative only-xl:max-w-[70%]">
<img class="hidden dark:block" src="https://cdn.vibox.co.uk/uploads/178/conversions/obs_amd_lgpu-large.png"
alt="" loading="lazy">
<a href="https://goo.gl/maps/jjK3LvA1LwoZFWHX6?coh=178572&entry=tt" target="_blank"
class="absolute top-[100px] lg:top-[210px] right-[-20px] only-md:right-[-10px] only-xl:max-w-[65px] lg:max-w-[80px] xl:max-w-[105px] sm:max-w-[50px] only-md:max-w-[70px] animateUpDown">
<img src="https://www.transparentpng.com/thumb/google-logo/google-logo-png-icon-free-download-SUF63j.png"
alt="google logo" width="70" height="70" loading="lazy">
</a>
<a href="https://www.justdial.com/Mumbai/Itethik-Near-Radcliffe-School-Ulwe/022PXX22-XX22-190416133035-B6N6_BZDET"
target="_blank"
class="absolute top-[80px] left-[210px] md:left-[-10px] only-xl:max-w-[65px] lg:max-w-[80px] xl:max-w-[105px] sm:max-w-[50px] only-md:max-w-[70px] animateUpDown">
<img src="https://ik.imagekit.io/hk376cwka/images/justdial.png?updatedAt=1685287408807" width="50"
height="50" alt="justdial logo" loading="lazy">
</a>
<a href="#">
<div
class="flex items-center absolute bottom-0 right-0 bg-white dark:bg-dark_accent1 rounded-[50px] px-[15px] py-[15px] shadow-[0_0_50px_0_rgba(196,206,213,0.2)] dark:shadow-[0_0_50px_0_rgba(0,0,0,0.2)]">
<div class="text-accent1 w-[45px]">
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-check-circle">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<div class="pl-[10px] pr-[15px]">
<span
class="block text-[20px] lg:text-[26px] font-bold text-primary dark:text-white font-heebo leading-[1]">800+</span>
<span class="block text-paragraph dark:text-slate-200 text-[17px]">Projects Completed</span>
</div>
</div>
</a>
</div>
</div>
<div
class="ltr:xl:pl-[95px] ltr:lg:pl-[50px] ltr:only-md:pl-[40px] rtl:xl:pr-[95px] rtl:lg:pr-[50px] rtl:only-md:pr-[40px] flex-grow sm:mt-[30px] sm:text-center">
<span class="text-accent1 text-[24px] font-semibold italic pb-[5px]">With ItEthik</span>
<h2
class="lg:text-[60px] only-md:text-[40px] sm:text-[28px] font-bold font-heebo text-heading dark:text-white">
Simplify Your IT Needs. </h2>
<h3 class="font-heebo font-normal text-primary dark:text-white"> </h3>
<p class="lg:text-[20px] md:text-[16px] text-paragraph dark:text-slate-200 lg:mt-[18px] md:mt-[15px]">Your
expert partner for computer, laptop/mac repairs, CCTV, intercoms, biometrics, and servers.</p>
<div class="flex items-center gap-[18px] flex-wrap mt-[30px] sm:justify-center">
<a href="#" class="btn outline-btn text-accent1 shrink-0">Book Now</a>
<div class="flex items-center flex-wrap gap-[15px] sm:justify-center">
<span
class="font-heebo lg:text-[22px] md:text-[18px] font-semibold shrink-0 text-primary dark:text-white">Follow
us: </span>
<div class="flex items-center">
<a href="https://www.facebook.com/profile.php?id=100076832234885" target="_blank"
class="w-[30px] h-[30px] flex items-center justify-center text-accent1 border border-accent1 transition duration-300 hover:bg-accent1 hover:text-white rounded-full">
<svg fill="currentColor" stroke="currentColor" width="13" height="14"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
<path
d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" />
</svg>
</a>
<a href="https://www.youtube.com/channel/UCh3-ExRE1XhEf-A6FJQQJLw" target="_blank"
class="w-[30px] h-[30px] flex items-center justify-center text-accent1 border border-accent1 transition duration-300 hover:bg-accent1 hover:text-white rounded-full ltr:ml-[10px] rtl:mr-[10px]">
<svg fill="currentColor" stroke="currentColor" width="13" height="14"
xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 24 24" id="youtube">
<path
d="M23,9.71a8.5,8.5,0,0,0-.91-4.13,2.92,2.92,0,0,0-1.72-1A78.36,78.36,0,0,0,12,4.27a78.45,78.45,0,0,0-8.34.3,2.87,2.87,0,0,0-1.46.74c-.9.83-1,2.25-1.1,3.45a48.29,48.29,0,0,0,0,6.48,9.55,9.55,0,0,0,.3,2,3.14,3.14,0,0,0,.71,1.36,2.86,2.86,0,0,0,1.49.78,45.18,45.18,0,0,0,6.5.33c3.5.05,6.57,0,10.2-.28a2.88,2.88,0,0,0,1.53-.78,2.49,2.49,0,0,0,.61-1,10.58,10.58,0,0,0,.52-3.4C23,13.69,23,10.31,23,9.71ZM9.74,14.85V8.66l5.92,3.11C14,12.69,11.81,13.73,9.74,14.85Z">
</path>
</svg>
</a>
<a href="https://twitter.com/ITEthik" target="_blank"
class="w-[30px] h-[30px] flex items-center justify-center text-accent1 border border-accent1 transition duration-300 hover:bg-accent1 hover:text-white rounded-full ltr:ml-[10px] rtl:mr-[10px]">
<svg fill="currentColor" stroke="currentColor" width="13" height="14"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path
d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" />
</svg>
</a>
<a href="https://www.instagram.com/_itethik_/" target="_blank"
class="w-[30px] h-[30px] flex items-center justify-center text-accent1 border border-accent1 transition duration-300 hover:bg-accent1 hover:text-white rounded-full ltr:ml-[10px] rtl:mr-[10px]">
<svg fill="currentColor" stroke="currentColor" width="13" height="14"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" />
</svg>
<a href="https://www.reddit.com/user/ITETHIK/" target="_blank"
class="w-[30px] h-[30px] flex items-center justify-center text-accent1 border border-accent1 transition duration-300 hover:bg-accent1 hover:text-white rounded-full ltr:ml-[10px] rtl:mr-[10px]">
<svg fill="currentColor" stroke="currentColor" width="13" height="14"
xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 24 24" id="reddit">
<path
d="M14.41016,16.86719A3.375,3.375,0,0,1,12.042,17.5a3.36829,3.36829,0,0,1-2.36523-.63184,1.00059,1.00059,0,0,0-1.416,1.41407A5.11054,5.11054,0,0,0,12.042,19.5a5.12,5.12,0,0,0,3.78223-1.2168,1.00058,1.00058,0,1,0-1.41406-1.416ZM9.2005,15.00165a1,1,0,1,0-1.0003-.9997A1.00079,1.00079,0,0,0,9.2005,15.00165Zm6-2a1,1,0,1,0,.9997,1.0003A1.00138,1.00138,0,0,0,15.2005,13.00165ZM23,11.78027a3.77157,3.77157,0,0,0-6.794-2.26471,16.50461,16.50461,0,0,0-3.05005-.47851l.85578-5.705,2.08752.70984a2.99694,2.99694,0,0,0,5.99353-.06433V3.95508a3.02886,3.02886,0,0,0-3-2.95508,2.97689,2.97689,0,0,0-2.33209,1.155L13.52246,1.05371a.999.999,0,0,0-1.31152.79785L11.13446,9.027A16.66426,16.66426,0,0,0,7.794,9.51556a3.76753,3.76753,0,0,0-6.22492,4.23487A4.86206,4.86206,0,0,0,1,16c0,3.9248,4.832,7,11,7s11-3.0752,11-7a4.86217,4.86217,0,0,0-.56866-2.2489A3.78344,3.78344,0,0,0,23,11.78027ZM19.09277,3a1,1,0,1,1-1,1A1.01672,1.01672,0,0,1,19.09277,3ZM4.78027,10a1.75976,1.75976,0,0,1,.88172.24951A9.97889,9.97889,0,0,0,3.0141,11.9234c-.004-.04785-.0141-.095-.0141-.14313A1.78255,1.78255,0,0,1,4.78027,10ZM12,21c-4.87891,0-9-2.29-9-5s4.12109-5,9-5,9,2.29,9,5S16.87891,21,12,21Zm8.9859-9.07654A9.97805,9.97805,0,0,0,18.338,10.24951,1.75993,1.75993,0,0,1,19.21973,10,1.78255,1.78255,0,0,1,21,11.78027C21,11.82837,20.98993,11.87561,20.9859,11.92346Z">
</path>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Hero section end -->
<!-- ################################################################################### -->
<!-- About me section start -->
<section
class="bg-cover bg-no-repeat bg-center bg-[url('https://ik.imagekit.io/hk376cwka/images/about-me-bg.png?updatedAt=1685287405206')] bg-[#ECF1F6] dark:bg-dark_primary_bg dark:bg-none py-[70px] lg:py-[100px] dark:border-t dark:border-b dark:border-dark_accent1 "
id="about">
<div class="container mx-auto">
<div class="flex justify-between sm:flex-wrap sm:flex-col-reverse">
<div class="w-full lg:max-w-[550px]">
<div>
<span class="text-accent1 text-[20px] lg:text-[15px] font-medium mb-[10px] lg:mb-[5px]">Why Chosse
Us?</span>
<h2
class="text-[24px] only-md:text-[32px] lg:text-[48px] font-bold font-heebo leading-[36px] lg:leading-[58px] text-[#000248] dark:text-white ltr:lg:pr-[50px] rtl:lg:pl-[50px]">
Top choice for Mac, desktop, and laptop repairs / upgrades.
</h2>
</div>
<div class="mt-[30px]">
<h3 class="text-accent1 text-[20px] lg:text-[24px] font-medium ">Key Points:</h3>
<ul class="flex justify-between flex-wrap mt-[18px]">
<li
class="text-paragraph dark:text-slate-200 w-full xs:max-w-[100%] max-w-[50%] ltr:pl-[18px] rtl:pr-[18px] my-[10px] relative before:absolute before:content-[''] before:bg-accent1 before:w-[6px] before:h-[6px] ltr:before:left-0 rtl:before:right-0 before:top-[8px] before:rounded-full after:absolute after::content-[''] after:w-4 after:h-4 after:border-2 after:border-accent1 ltr:after:left-[-5px] rtl:after:right-[-5px] after:top-[3px] after:border-solid after:rounded-full text-[17px]">
Pre-informed about cost, time</li>
<li
class="text-paragraph dark:text-slate-200 w-full xs:max-w-[100%] max-w-[50%] ltr:pl-[18px] rtl:pr-[18px] my-[10px] relative before:absolute before:content-[''] before:bg-accent1 before:w-[6px] before:h-[6px] ltr:before:left-0 rtl:before:right-0 before:top-[8px] before:rounded-full after:absolute after::content-[''] after:w-4 after:h-4 after:border-2 after:border-accent1 ltr:after:left-[-5px] rtl:after:right-[-5px] after:top-[3px] after:border-solid after:rounded-full text-[17px]">
Device Security and transparent process</li>
<li
class="text-paragraph dark:text-slate-200 w-full xs:max-w-[100%] max-w-[50%] ltr:pl-[18px] rtl:pr-[18px] my-[10px] relative before:absolute before:content-[''] before:bg-accent1 before:w-[6px] before:h-[6px] ltr:before:left-0 rtl:before:right-0 before:top-[8px] before:rounded-full after:absolute after::content-[''] after:w-4 after:h-4 after:border-2 after:border-accent1 ltr:after:left-[-5px] rtl:after:right-[-5px] after:top-[3px] after:border-solid after:rounded-full text-[17px]">
Urgent Repair Services</li>
<li
class="text-paragraph dark:text-slate-200 w-full xs:max-w-[100%] max-w-[50%] ltr:pl-[18px] rtl:pr-[18px] my-[10px] relative before:absolute before:content-[''] before:bg-accent1 before:w-[6px] before:h-[6px] ltr:before:left-0 rtl:before:right-0 before:top-[8px] before:rounded-full after:absolute after::content-[''] after:w-4 after:h-4 after:border-2 after:border-accent1 ltr:after:left-[-5px] rtl:after:right-[-5px] after:top-[3px] after:border-solid after:rounded-full text-[17px]">
Expert and Trained technician</li>
</ul>
<a href="#about" class="btn solid-btn text-accent1 mt-[35px] inline-block">Contact Us</a>
</div>
</div>
<div class="sm:mb-[50px]">
<div class="relative">
<img class="relative z-10 sm:mx-auto" src="assets/images/1.png" width="535" height="549" alt=""
loading="lazy">
<span
class="absolute sm:w-[100px] sm:h-[100px] only-md:w-[150px] only-md:h-[150px] lg:w-[200px] lg:h-[200px] xl:w-[250px] xl:h-[250px] border-[8px] lg:border-[13px] border-accent1 rounded-full xs:bottom-[-25%] sm:bottom-[-12%] bottom-[-18%] ltr:sm:left-[3%] ltr:left-[-18%] rtl:sm:right-[3%] rtl:right-[-18%] animateUpDown"></span>
</div>
<div class="text-center mt-[30px]">
<h4 class="font-heebo text-[50px] lg:text-[80px] font-bold leading-[1] text-white title-stroke">500+</h4>
<span
class="font-bold sm:text-[20px] only-md:text-[24px] lg:text-[30px] font-heebo text-primary dark:text-white">Services
Attended
</span>
</div>
</div>
</div>
</div>
</section>
<!-- About me section end -->
<!-- ################################################################################### -->
<!-- OUR SERVICE section start -->
<section class="lg:py-[100px] md:py-[70px]" id="services">
<div class="container mx-auto">
<!-- Section title start -->
<div class="flex justify-between items-center gap-[20px] lg:gap-[30px] mb-[55px] md:flex-wrap md:text-center">
<div class="max-w-full lg:max-w-[580px] w-full">
<span class="text-accent1 text-[20px] lg:text-[24px] font-medium mb-[10px] lg:mb-[5px]">OUR SERVICE</span>
<h2
class="text:[28px] lg:text-[48px] font-bold font-heebo leading-[36x] lg:leading-[58px] text-[#000248] dark:text-white">
We are here to help with your IT Problems.</h2>
</div>
<div class="md:grow">
<p class="text-[#636363] text-[17px] leading-[28px] lg:max-w-[472px] w-full dark:text-slate-200">We
specialize in providing desktop and laptop repair services, along with maintenance and AMC services for
CCTV, biometric, and intercom systems.</p>
</div>
</div>
<!-- Section title end -->
<!-- Services list start -->
<div class="grid gap-[30px] lg:grid-cols-3 grid-cols-1 only-md:grid-cols-2">
<!-- Single service start -->
<div
class="shadow-[0_0_50px_0_rgba(196,206,213,0.2)] hover:shadow-[0_0_150px_0_rgba(196,206,213,0.7)] dark:shadow-[0_0_20px_0_rgba(0,0,0,0.1)] dark:hover:shadow-[0_0_50px_0_rgba(0,0,0,0.2)] hover:translate-y-[-10px] transition duration-500">
<div class="overflow-hidden px-[30px] xl:px-[40px] lg:pt-[50px] md:pt-[40px] pb-[40px] ">
<span
class="bg-[#48CDA0] text-white w-[70px] h-[70px] lg:w-[93px] lg:h-[93px] flex items-center justify-center rounded-full service-shape before:bg-[#79DAB9] before:opacity-[0.26]">
<img src="assets/images/computer-svgrepo-com.svg" width="46%">
</span>
<h3
class="text-primary dark:text-white text-[20px] xl:text-[25px] font-bold font-heebo mt-[20px] mb-[15px]">
Desktop, Laptop Repair Services</h3>
<p class="text-[17px] text-[#636363] dark:text-slate-200">Expert desktop and laptop repair services to
ensure optimal performance and functionality of your devices.</p>
<!-- <a href="#" class="link-button text-[#48CDA0] before:bg-[#48CDA0] mt-[15px] hover:text-[#333] dark:hover:text-white">Read More</a> -->
</div>
</div>
<!-- Single service end -->
<!-- Single service start -->
<div
class="shadow-[0_0_50px_0_rgba(196,206,213,0.2)] hover:shadow-[0_0_150px_0_rgba(196,206,213,0.7)] dark:shadow-[0_0_20px_0_rgba(0,0,0,0.1)] dark:hover:shadow-[0_0_50px_0_rgba(0,0,0,0.2)] hover:translate-y-[-10px] transition duration-500">
<div class="overflow-hidden px-[30px] xl:px-[40px] lg:pt-[50px] md:pt-[40px] pb-[40px] ">
<span
class="bg-[#ED5F38] text-white w-[70px] h-[70px] lg:w-[93px] lg:h-[93px] flex items-center justify-center rounded-full service-shape before:bg-[#ED5F38] before:opacity-[0.16]">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-life-buoy">
<circle cx="12" cy="12" r="10"></circle>
<circle cx="12" cy="12" r="4"></circle>
<line x1="4.93" y1="4.93" x2="9.17" y2="9.17"></line>
<line x1="14.83" y1="14.83" x2="19.07" y2="19.07"></line>
<line x1="14.83" y1="9.17" x2="19.07" y2="4.93"></line>
<line x1="14.83" y1="9.17" x2="18.36" y2="5.64"></line>
<line x1="4.93" y1="19.07" x2="9.17" y2="14.83"></line>
</svg>
</span>
<h3
class="text-primary dark:text-white text-[20px] xl:text-[25px] font-bold font-heebo mt-[20px] mb-[15px]">
CCTV, Biometric, Intercom Services</h3>
<p class="text-[17px] text-[#636363] dark:text-slate-200">Comprehensive CCTV, biometric, and intercom
services for enhanced security and efficient communication systems.</p>
<!-- <a href="#" class="link-button text-[#ED5F38] before:bg-[#ED5F38] mt-[15px] hover:text-[#333] dark:hover:text-white">Read More</a> -->
</div>
</div>
<!-- Single service end -->
<!-- Single service start -->
<div
class="shadow-[0_0_50px_0_rgba(196,206,213,0.2)] hover:shadow-[0_0_150px_0_rgba(196,206,213,0.7)] dark:shadow-[0_0_20px_0_rgba(0,0,0,0.1)] dark:hover:shadow-[0_0_50px_0_rgba(0,0,0,0.2)] hover:translate-y-[-10px] transition duration-500">
<div class="overflow-hidden px-[30px] xl:px-[40px] lg:pt-[50px] md:pt-[40px] pb-[40px] ">
<span
class="bg-[#007EFF] text-white w-[70px] h-[70px] lg:w-[93px] lg:h-[93px] flex items-center justify-center rounded-full service-shape before:bg-[#007EFF] before:opacity-[0.16]">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-globe">
<circle cx="12" cy="12" r="10"></circle>
<line x1="2" y1="12" x2="22" y2="12"></line>
<path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z">
</path>
</svg>
</span>
<h3
class="text-primary dark:text-white text-[20px] xl:text-[25px] font-bold font-heebo mt-[20px] mb-[15px]">
Maintenance & AMC Services</h3>
<p class="text-[17px] text-[#636363] dark:text-slate-200">Reliable maintenance and AMC services to ensure
the continuous performance and longevity of your IT systems and equipment.</p>
<!-- <a href="#" class="link-button text-[#007EFF] before:bg-[#007EFF] mt-[15px] hover:text-[#333] dark:hover:text-white">Read More</a> -->
</div>
</div>
<!-- Single service end -->
</div>
<!-- Services list end -->
</div>
</section>
<!-- OUR SERVICE section end -->
<!-- ################################################################################### -->
<!-- PORTFOLIO SECTION start -->
<section
class="bg-[#EFF3F7] dark:bg-dark_primary_bg pt-[70px] lg:pt-[100px] pb-[40px] lg:pb-[70px] dark:border-t dark:border-b dark:border-dark_accent1"
id="portfolio">
<div class="container mx-auto">
<div class="flex justify-between items-center gap-[20px] lg:gap-[30px] mb-[55px] md:flex-wrap md:text-center">
<div class="max-w-full lg:max-w-[580px] w-full">
<span class="text-accent1 text-[20px] lg:text-[24px] font-medium mb-[10px] lg:mb-[5px]">Recent Work</span>
<h2
class="text:[28px] lg:text-[48px] font-bold font-heebo leading-[36x] lg:leading-[58px] text-[#000248] dark:text-white">
Our Recent Computer, Laptop, CCTV, Biomatrics & Intercoms Projects
</h2>
</div>
<div class="md:grow">
<p class="text-[#636363] dark:text-slate-200 text-[17px] leading-[28px] lg:max-w-[472px] w-full">We showcase
our expertise through an impressive portfolio featuring our latest projects across Mumbai and Navi Mumbai.
Explore our portfolio to see examples of our successful undertakings and the quality of our work.</p>
</div>
</div>
<!-- Filter portfolio start -->
<div class="isotope--filter">
<!-- FILTER NAV -->
<div class="button-group filters-button-group flex justify-center flex-wrap gap-[30px]">
<button
class="button is-checked text-primary dark:text-white text-[18px] capitalize font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300"
data-filter="*">Show All</button>
<button
class="button text-primary dark:text-white text-[18px] capitalize font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300"
data-filter=".web">Desktop Repair</button>
<button
class="button text-primary dark:text-white text-[18px] capitalize font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300"
data-filter=".graphics">Laptop Repair</button>
<button
class="button text-primary dark:text-white text-[18px] capitalize font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300"
data-filter=".development">CCTV</button>
<button
class="button text-primary dark:text-white text-[18px] capitalize font-medium hover:text-accent1 dark:hover:text-accent1 transition duration-300"
data-filter=".mobile">AMC Services</button>
</div>
<div class="portfolio__grid flex mt-[50px] mx-[-15px]">
<!-- CCTV portfolio start -->
<div class="element-item mb-[30px] w-[50%] lg:w-[33.33%] px-[15px] web portfolio__parent"
data-category="web">
<div class="relative overflow-hidden">
<a href="#" class="popup-modal--open">
<span
class="absolute w-full h-full bg-accent1 left-0 top-0 opacity-0 transition duration-300 portfolio__overlay z-10">
<div class="flex items-center justify-end flex-col text-center h-full text-white p-[20px]">
<span
class="portfolio--zoom flex items-center grow transition-all duration-300 translate-y-[-20px]">
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-maximize">
<path
d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3">
</path>
</svg>
</span>
<h3
class="portfolio--title text-[18px] lg:text-[24px] font-heebo transition-all duration-300 translate-y-3">
CCTV Security</h3>
<span
class="portfolio--sub-title text-[17px] 2xs:hidden transition-all duration-500 translate-y-3">Installation
of 4 CCTV IP Cameras at Amit Kharkar's Bungalow</span>
</div>
</span>
<div class="w-full portfolio__image--card">
<img class="w-full transition duration-300" src="./assets/images/blog/Amit-1.png" alt="">
</div>
</a>
<!-- CCTV Popup start -->
<div class="modal_portfolio fixed h-screen w-full left-0 top-0 z-[98] opacity-0 invisible">
<div class="modal_popup_overlay fixed w-full h-full bg-[#000] left-0 top-0 opacity-[0.3]"></div>
<!-- Modal content -->
<div
class="modal__portfolio--content relative z-10 h-full flex items-center px-[15px] max-w-[750px] xl:max-w-[800px] mx-auto transition duration-300 translate-y-[-50px]">
<div
class="overflow-y-auto modal__portfolio--content-inner bg-white dark:bg-gray-800 max-h-[60vh] lg:max-h-[80vh] p-8 rounded-2xl relative">
<button
class="modal__popup--close ltr:right-[10px] rtl:left-[10px] top-[10px] absolute w-[50px] h-[50px] bg-accent1 hover:bg-primary dark:hover:bg-dark_accent1 text-white rounded-full flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-x">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
</button>
<h2 class="text-accent1 text-center font-bold">
CCTV Security
</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 my-6">
<div class="space-y-2">
<p class="dark:text-white flex items-center">
<span class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-file-text">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg>
</span>
Project :
<span class="font-medium"> CCTV Cameras Installation</span>
</p>
</div>
<div class="space-y-2">
<p class="dark:text-white flex items-center mt-2 lg:mt-0">
<span class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-user">
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
</span>
Client: <span class="font-medium">Amit Kharkar</span>
</p>
</div>
</div>
<div class="pr-3">
<img class="max-w-full h-auto rounded-xl mt-6 mx-auto" src="./assets/images/blog/amit-2.webp">
</div>
<p class="dark:text-white font-normal text-[17px]">
<br>
Recently, we installed CCTV IP cameras at Amit Kharkar's bungalow to enhance security and
provide peace of mind to the residents. The cameras offer high-quality video surveillance,
remote monitoring and recording, and are accessible from anywhere at any time using a smartphone
or computer.
<br><br>
The installation of these cameras involved setting up the cameras in strategic locations around
the bungalow, and connecting them to the internet. This allows remote monitoring and recording
of the premises, which is especially useful for keeping an eye on the property when one is not
physically present.
<br>
<img class="max-w-full h-auto rounded-xl mt-6 mx-auto" src="./assets/images/blog/amit-3.webp"
width="50%">
<br>
One of the key advantages of IP cameras is their ability to provide high-quality video
surveillance. The cameras used in this installation are equipped with features such as night
vision, high resolution, and motion detection. This means that even in low light conditions, the
cameras are able to capture clear images, and any suspicious activity is immediately detected
and recorded.
<br><br>
Additionally, these cameras are user-friendly and easy to operate. They can be accessed and
monitored from anywhere, at any time, using a smartphone or a computer. This makes it convenient
for the residents to check on the property while they are away.
<br><br>
In conclusion, the installation of 4 CCTV IP cameras at Amit Kharkar’s bungalow has been a
success. The cameras provide the residents with a high level of security, peace of mind, and the
convenience of remote monitoring. If you are looking to upgrade your security system, consider
investing in IP cameras for a more efficient and effective solution.
<img class="max-w-full h-auto rounded-xl mt-6 mx-auto" src="./assets/images/blog/amit-4.webp"
width="60%">
</p>
</div>
</div>
</div>
<!-- CCTV popup end -->
</div>
</div>
<!-- CCTV portfolio end -->
<!-- Desktop Repair portfolio start -->
<div class="element-item mb-[30px] w-[50%] lg:w-[33.33%] px-[15px] graphics portfolio__parent"
data-category="graphics">
<div class="relative overflow-hidden">
<a href="#" class="popup-modal--open">
<span
class="absolute w-full h-full bg-accent1 left-0 top-0 opacity-0 transition duration-300 portfolio__overlay z-10">
<div class="flex items-center justify-end flex-col text-center h-full text-white p-[20px]">
<span
class="portfolio--zoom flex items-center grow transition-all duration-300 translate-y-[-20px]">
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-maximize">
<path
d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3">
</path>
</svg>
</span>
<h3
class="portfolio--title text-[18px] lg:text-[24px] font-heebo transition-all duration-300 translate-y-3">
CCTV Security</h3>
<span
class="portfolio--sub-title text-[17px] 2xs:hidden transition-all duration-500 translate-y-3">Installation
of 4 CCTV IP Cameras at Amit Kharkar's Bungalow</span>
</div>
</span>
<div class="w-full portfolio__image--card">
<img class="w-full transition duration-300" src="./assets/images/blog/Amit-1.png" alt="">
</div>
</a>
<!-- CCTV Popup start -->
<div class="modal_portfolio fixed h-screen w-full left-0 top-0 z-[98] opacity-0 invisible">
<div class="modal_popup_overlay fixed w-full h-full bg-[#000] left-0 top-0 opacity-[0.3]"></div>
<!-- Modal content -->
<div
class="modal__portfolio--content relative z-10 h-full flex items-center px-[15px] max-w-[750px] xl:max-w-[800px] mx-auto transition duration-300 translate-y-[-50px]">
<div
class="overflow-y-auto modal__portfolio--content-inner bg-white dark:bg-gray-800 max-h-[60vh] lg:max-h-[80vh] p-8 rounded-2xl relative">
<button
class="modal__popup--close ltr:right-[10px] rtl:left-[10px] top-[10px] absolute w-[50px] h-[50px] bg-accent1 hover:bg-primary dark:hover:bg-dark_accent1 text-white rounded-full flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-x">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
</button>
<h2 class="text-accent1 text-center font-bold">
CCTV Security
</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 my-6">
<div class="space-y-2">
<p class="dark:text-white flex items-center">
<span class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-file-text">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg>
</span>
Project :
<span class="font-medium"> CCTV Cameras Installation</span>
</p>
</div>
<div class="space-y-2">
<p class="dark:text-white flex items-center mt-2 lg:mt-0 ">
<span class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-user">
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
</span>
Client : <span class="font-medium">Amit Kharkar</span>
</p>
</div>
</div>
<div class="pr-3">
<img class="max-w-full h-auto rounded-xl mt-6 mx-auto" src="./assets/images/blog/amit-2.webp">
</div>
<p class="dark:text-white font-normal text-[17px]">
<br>
Recently, we installed CCTV IP cameras at Amit Kharkar's bungalow to enhance security and
provide peace of mind to the residents. The cameras offer high-quality video surveillance,
remote monitoring and recording, and are accessible from anywhere at any time using a smartphone
or computer.
<br><br>
The installation of these cameras involved setting up the cameras in strategic locations around
the bungalow, and connecting them to the internet. This allows remote monitoring and recording
of the premises, which is especially useful for keeping an eye on the property when one is not
physically present.
<br>
<img class="max-w-full h-auto rounded-xl mt-6 mx-auto" src="./assets/images/blog/amit-3.webp"
width="50%">
<br>
One of the key advantages of IP cameras is their ability to provide high-quality video
surveillance. The cameras used in this installation are equipped with features such as night
vision, high resolution, and motion detection. This means that even in low light conditions, the
cameras are able to capture clear images, and any suspicious activity is immediately detected
and recorded.
<br><br>
Additionally, these cameras are user-friendly and easy to operate. They can be accessed and
monitored from anywhere, at any time, using a smartphone or a computer. This makes it convenient
for the residents to check on the property while they are away.
<br><br>
In conclusion, the installation of 4 CCTV IP cameras at Amit Kharkar’s bungalow has been a
success. The cameras provide the residents with a high level of security, peace of mind, and the
convenience of remote monitoring. If you are looking to upgrade your security system, consider
investing in IP cameras for a more efficient and effective solution.
<img class="max-w-full h-auto rounded-xl mt-6 mx-auto" src="./assets/images/blog/amit-4.webp"
width="60%">
</p>
</div>
</div>
</div>
<!-- Portfolio popup end -->
</div>
</div>
<!-- Desktop Repair portfolio end -->
<!-- Laptop Repair portfolio start -->
<div class="element-item mb-[30px] w-[50%] lg:w-[33.33%] px-[15px] development portfolio__parent"
data-category="development">
<div class="relative overflow-hidden">
<a href="#" class="popup-modal--open">
<span
class="absolute w-full h-full bg-accent1 left-0 top-0 opacity-0 transition duration-300 portfolio__overlay z-10">
<div class="flex items-center justify-end flex-col text-center h-full text-white p-[20px]">
<span
class="portfolio--zoom flex items-center grow transition-all duration-300 translate-y-[-20px]">
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-maximize">
<path
d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3">
</path>
</svg>
</span>
<h3
class="portfolio--title text-[18px] lg:text-[24px] font-heebo transition-all duration-300 translate-y-3">
CCTV Security</h3>
<span
class="portfolio--sub-title text-[17px] 2xs:hidden transition-all duration-500 translate-y-3">Installation
of 4 CCTV IP Cameras at Amit Kharkar's Bungalow</span>
</div>
</span>
<div class="w-full portfolio__image--card">
<img class="w-full transition duration-300" src="./assets/images/blog/Amit-1.png" alt="">
</div>
</a>
<!-- CCTV Popup start -->
<div class="modal_portfolio fixed h-screen w-full left-0 top-0 z-[98] opacity-0 invisible">
<div class="modal_popup_overlay fixed w-full h-full bg-[#000] left-0 top-0 opacity-[0.3]"></div>
<!-- Modal content -->
<div
class="modal__portfolio--content relative z-10 h-full flex items-center px-[15px] max-w-[750px] xl:max-w-[800px] mx-auto transition duration-300 translate-y-[-50px]">
<div
class="overflow-y-auto modal__portfolio--content-inner bg-white dark:bg-gray-800 max-h-[60vh] lg:max-h-[80vh] p-8 rounded-2xl relative">
<button
class="modal__popup--close ltr:right-[10px] rtl:left-[10px] top-[10px] absolute w-[50px] h-[50px] bg-accent1 hover:bg-primary dark:hover:bg-dark_accent1 text-white rounded-full flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-x">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
</button>
<h2 class="text-accent1 text-center font-bold">
CCTV Security
</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 my-6">
<div class="space-y-2">
<p class="dark:text-white flex items-center">
<span class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-file-text">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg>
</span>
Project :
<span class="font-medium"> CCTV Cameras Installation</span>
</p>
</div>
<div class="space-y-2">
<p class="dark:text-white flex items-center mt-2 lg:mt-0 ">
<span class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-user">
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
</span>
Client : <span class="font-medium">Amit Kharkar</span>
</p>
</div>
</div>
<div class="pr-3">
<img class="max-w-full h-auto rounded-xl mt-6 mx-auto" src="./assets/images/blog/amit-2.webp">
</div>
<p class="dark:text-white font-normal text-[17px]">
<br>
Recently, we installed CCTV IP cameras at Amit Kharkar's bungalow to enhance security and
provide peace of mind to the residents. The cameras offer high-quality video surveillance,
remote monitoring and recording, and are accessible from anywhere at any time using a smartphone
or computer.
<br><br>
The installation of these cameras involved setting up the cameras in strategic locations around
the bungalow, and connecting them to the internet. This allows remote monitoring and recording
of the premises, which is especially useful for keeping an eye on the property when one is not
physically present.
<br>
<img class="max-w-full h-auto rounded-xl mt-6 mx-auto" src="./assets/images/blog/amit-3.webp"
width="50%">
<br>
One of the key advantages of IP cameras is their ability to provide high-quality video
surveillance. The cameras used in this installation are equipped with features such as night
vision, high resolution, and motion detection. This means that even in low light conditions, the
cameras are able to capture clear images, and any suspicious activity is immediately detected
and recorded.
<br><br>
Additionally, these cameras are user-friendly and easy to operate. They can be accessed and
monitored from anywhere, at any time, using a smartphone or a computer. This makes it convenient
for the residents to check on the property while they are away.
<br><br>
In conclusion, the installation of 4 CCTV IP cameras at Amit Kharkar’s bungalow has been a
success. The cameras provide the residents with a high level of security, peace of mind, and the
convenience of remote monitoring. If you are looking to upgrade your security system, consider
investing in IP cameras for a more efficient and effective solution.
<img class="max-w-full h-auto rounded-xl mt-6 mx-auto" src="./assets/images/blog/amit-4.webp"
width="60%">
</p>
</div>
</div>
</div>
<!-- Portfolio popup end -->
</div>
</div>
<!-- Laptop Repair portfolio end -->
</div>
</div>
<!-- Filter portfolio end -->
<button class="btn solid-btn mt-12" style="display: block; margin: 20px auto;">Read More</button>
</div>
</section>
<!-- PORTFOLIO SECTION end -->
<!-- ################################################################################### -->
<!-- Testimonial section start -->
<section class="lg:py-[100px] md:py-[70px] dark:border-b dark:border-dark_accent1">
<div class="container mx-auto">
<!-- Section title start -->
<div class="mb-[35px] lg:mb-[55px]">
<div class="max-w-full max-w-full w-full text-center">
<span class="text-accent1 text-[20px] lg:text-[24px] font-medium mb-[10px] lg:mb-[5px]">TESTIMONIALS</span>
<h2
class="text:[28px] lg:text-[48px] font-bold font-heebo leading-[36x] lg:leading-[58px] text-[#000248] dark:text-white">
We are people say about us
</h2>
</div>
</div>
<!-- Section title end -->
<script src="https://static.elfsight.com/platform/platform.js" data-use-service-core defer></script>
<div class="elfsight-app-3cdcec3f-4c6b-44aa-9212-70b047fdfb5e hidden dark:block"></div>
<!-- Testimonial section end -->
<!-- ################################################################################### -->
<!-- Team section start -->
<section class="lg:py-[100px] md:py-[70px] dark:border-b dark:border-dark_accent1">
<div class="container mx-auto">
<!-- Section title start -->
<div class="mb-[35px] lg:mb-[55px]">
<div class="max-w-full max-w-full w-full text-center">
<span class="text-accent1 text-[20px] lg:text-[24px] font-medium mb-[10px] lg:mb-[5px]">Our
Professionals</span>
<h2
class="text:[28px] lg:text-[48px] font-bold font-heebo leading-[36x] lg:leading-[58px] text-[#000248] dark:text-white">
Meet Our Expert Team
</h2>
</div>
</div>
<!-- Team title end -->
<section class="py-20">
<div class="team">
<div class="team-members">
<div class="team-card rounded-lg overflow-hidden shadow-lg">
<img src="assets/images/Keshav.webp" alt="Team Member 1" class="w-full h-auto profile-image">
<div class="team-card-content">
<h3>Keshav Sharma</h3>
<p>Web Developer</p>
<div class="social-icons">
<a href="#" onclick="alert('Facebook clicked')"><i class="fab fa-facebook-f"></i></a>
<a href="#" onclick="alert('Instagram clicked')"><i class="fab fa-instagram"></i></a>
<a href="#" onclick="alert('LinkedIn clicked')"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="card-popup">
<div class="card-popup-content">
<img src="assets/images/Keshav.webp" alt="Team Member 1">
<h5>Keshav Sharma</h5>
<p>Web Developer</p>
<p>Service Team Manager</p>
<div class="card-popup-social-icons">
<a href="#" onclick="alert('Facebook clicked')"><i class="fab fa-facebook-f"></i></a>
<a href="#" onclick="alert('Instagram clicked')"><i class="fab fa-instagram"></i></a>
<a href="#" onclick="alert('LinkedIn clicked')"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<a href="#" class="close-button">×</a>
</div>
</div>
<!-- team members 2 -->
<div class="team-card rounded-lg overflow-hidden shadow-lg">
<img src="assets/images/Keshav.webp" alt="Team Member 1" class="w-full h-auto profile-image">
<div class="team-card-content">
<h3>Keshav Sharma</h3>
<p>Web Developer</p>
<div class="social-icons">
<a href="#" onclick="alert('Facebook clicked')"><i class="fab fa-facebook-f"></i></a>
<a href="#" onclick="alert('Instagram clicked')"><i class="fab fa-instagram"></i></a>
<a href="#" onclick="alert('LinkedIn clicked')"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="card-popup">
<div class="card-popup-content">
<img src="assets/images/Keshav.webp" alt="Team Member 1">
<h5>Keshav Sharma</h5>
<p>Web Developer</p>
<p>Service Team Manager</p>
<div class="card-popup-social-icons">
<a href="#" onclick="alert('Facebook clicked')"><i class="fab fa-facebook-f"></i></a>
<a href="#" onclick="alert('Instagram clicked')"><i class="fab fa-instagram"></i></a>
<a href="#" onclick="alert('LinkedIn clicked')"><i class="fab fa-linkedin-in"></i></a>
</div>