-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
1017 lines (912 loc) · 64.2 KB
/
index1.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>
<!-- Coding By CodingNepal - codingnepalweb.com -->
<html lang="en">
<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">
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="style.css">
<!-- ===== Boxicons CSS ===== -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<!-- sldiderr -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<style>
.animated-img {
position: relative;
opacity: 0;
animation: fadeInUp 4s linear forwards;
}
.animated-skills {
position: relative;
opacity: 0;
animation: moveleft 4s linear forwards;
}
.animatedcard {
position: relative;
opacity: 0;
animation: fadeInUp 3s linear forwards;
}
@keyframes moveleft {
0% {
opacity: 0;
transform: translateX(25px);
}
25% {
opacity: 0.5;
transform: translateX(50pxpx);
}
50% {
opacity: 0.5;
transform: translateX(75px);
}
75% {
opacity: 0.75;
transform: translateX(100px);
}
100% {
opacity: 1;
transform: translateX(150px);
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(100px);
}
50% {
opacity: 0.5;
transform: translateY(25px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
</style>
<title>Responsive Navigation Menu Bar</title>
</head>
<body style="background-color: #2d2e32;">
<nav>
<div class="nav-bar">
<span class="logo navLogo">
<!-- <img src="https://demo.phlox.pro/freelancer/wp-content/uploads/sites/272/2021/02/logo-header.svg"> -->
<svg data-v-6805eed4="" version="1.0" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="65%" height="50%"
viewBox="0 0 340.000000 250.000000" preserveAspectRatio="xMidYMid meet"
color-interpolation-filters="sRGB" style="margin: auto;">
<g data-v-6805eed4="" fill="#fff" class="bordersvg b-d1"
transform="translate(31.056673526763916,46.64749440492278)">
<path fill-opacity="0" stroke="#fff" stroke-width="3"
d="M 146.7050018310547 52.247501373291016 A 78.35250091552734 78.35250091552734 0 1 0 146.7050018310547 104.45750045776367">
</path>
<g transform="translate(10,52.247501373291016)">
<g>
<rect data-gra="graph-name-bg" stroke-width="2" class="i-icon-bg" x="0" y="0"
width="273.4100036621094" height="52.209999084472656" fill-opacity="0"></rect>
<!----> <!---->
</g>
<g transform="translate(10,3)">
<g data-gra="path-name" fill-rule="" class="tp-name">
<g transform="scale(1)">
<g>
<path
d="M55.17 0L51.14 0 51.14-21.46 11.47-21.46 11.47 0 7.44 0 7.44-44.28 11.47-44.28 11.47-25.2 51.14-25.2 51.14-44.28 55.17-44.28 55.17 0ZM116.18 0L112.18 0 112.18-4.9Q109.86-3.64 106.91-2.58 103.96-1.51 100.69-0.74 97.42 0.03 93.97 0.45 90.53 0.87 87.21 0.87L87.21 0.87Q82.89 0.87 79.46 0.1 76.02-0.68 73.64-2.21 71.25-3.74 69.97-6.01 68.68-8.28 68.68-11.28L68.68-11.28Q68.68-14.24 70.18-16.52 71.67-18.79 74.45-20.48 77.22-22.17 81.13-23.35 85.05-24.52 89.88-25.35 94.72-26.17 100.34-26.7 105.96-27.23 112.18-27.59L112.18-27.59 112.18-30.97Q112.18-33.03 111.41-34.61 110.64-36.19 109.25-37.37 107.86-38.54 106-39.33 104.13-40.12 101.95-40.61 99.78-41.09 97.37-41.3 94.97-41.51 92.56-41.51L92.56-41.51Q89.3-41.51 86.63-41.19 83.95-40.86 81.63-40.3 79.31-39.74 77.18-38.99 75.06-38.25 72.9-37.42L72.9-37.42 72.9-42.12Q77.38-43.31 82.45-44.2 87.53-45.08 93.23-45.08L93.23-45.08Q98.07-45.08 102.26-44.26 106.45-43.44 109.54-41.64 112.63-39.83 114.41-36.98 116.18-34.13 116.18-30.04L116.18-30.04 116.18 0ZM112.18-9.12L112.18-24.01Q101.64-23.43 94.18-22.37 86.72-21.3 81.99-19.75 77.25-18.21 75.04-16.15 72.83-14.08 72.83-11.47L72.83-11.47Q72.83-9.35 73.91-7.7 74.99-6.06 77.02-4.95 79.05-3.83 81.95-3.27 84.85-2.71 88.46-2.71L88.46-2.71Q90.59-2.71 92.86-2.95 95.13-3.19 97.39-3.63 99.65-4.06 101.84-4.66 104.03-5.25 105.96-5.96 107.9-6.67 109.49-7.48 111.09-8.28 112.18-9.12L112.18-9.12ZM132.71-44.28L136.74-44.28 136.74-37.48Q138.16-38.7 139.9-40.09 141.64-41.48 143.73-42.64 145.83-43.8 148.28-44.57 150.73-45.34 153.53-45.34L153.53-45.34Q158.01-45.34 161.46-43.33 164.91-41.31 167.03-37.09L167.03-37.09Q169.1-38.99 171.29-40.52 173.48-42.06 175.78-43.12 178.09-44.18 180.54-44.76 182.99-45.34 185.6-45.34L185.6-45.34Q188.92-45.34 191.64-44.21 194.36-43.09 196.26-41.12 198.17-39.16 199.21-36.5 200.26-33.84 200.26-30.81L200.26-30.81 200.26 0 196.23 0 196.23-29.78Q196.23-32.55 195.57-34.72 194.91-36.9 193.51-38.41 192.11-39.93 189.93-40.72 187.76-41.51 184.73-41.51L184.73-41.51Q182.31-41.51 179.94-40.81 177.57-40.12 175.41-38.98 173.25-37.83 171.38-36.38 169.52-34.93 168.1-33.39L168.1-33.39Q168.26-32.48 168.27-31.84 168.29-31.2 168.29-30.29L168.29-30.29 168.29 0 164.26 0 164.26-29.78Q164.26-33.06 163.39-35.3 162.52-37.54 160.98-38.93 159.43-40.32 157.32-40.91 155.21-41.51 152.73-41.51L152.73-41.51Q150.37-41.51 148.07-40.7 145.76-39.9 143.67-38.61 141.58-37.32 139.8-35.72 138.03-34.13 136.74-32.55L136.74-32.55 136.74 0 132.71 0 132.71-44.28ZM255.79 0L236.65-20.01 217.57 0 212.48 0 234.13-22.72 213.54-44.28 218.63-44.28 236.65-25.33 254.72-44.28 259.82-44.28 239.22-22.72 260.85 0 255.79 0Z"
transform="translate(-7.440000057220459, 45.34000015258789)"></path>
</g> <!----> <!----> <!----> <!----> <!----> <!----> <!---->
</g>
</g> <!---->
</g>
</g>
</g>
<defs v-gra="od"></defs>
</svg>
</span>
<div class="menu">
<div class="logo-toggle">
<span class="logo"><a href="#">Rahul</a></span>
<i class='bx bx-x sidebarClose'></i>
</div>
<ul class="nav-links">
<li><a href="index1.html">Home</a></li>
<li><a href="index1.html">Portfolio</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</div>
<div class="contact-us-btn">
<a href="contact-us.html" id="conbtn"> Contact Us</a>
<i class='bx bx-menu sidebarOpen'></i>
</div>
</div>
</nav>
<!-- header start -->
<div class="header-section">
<div class="left-section">
<!-- <img class="animated-img" src="https://demo.phlox.pro/freelancer/wp-content/uploads/sites/272/2021/02/hero-img.png" alt="Header Image"> -->
<img class="animated-img" src="RK-PIC-CV.jpg" alt="Header Image">
</div>
<div class="right-section">
<div class="intro animatedcard">
<h2 style="color: #64f4ab;">--Introduction</h2>
</div>
<div class="main-text">
<h1>
Hello<br>
I'm Rahul <Br>
Kumar
</h1>
</div>
<div class="paragraph animatedcard">
<p>Welcome to my Web Developer Portfolio! As a passionate and skilled web developer,<br>
I am dedicated to Creating innovative and user-friendly websites that leave a lasting
impression,<br>
With a strong foundation in web technological and a keep eye for design I take pride in delivering
cutting-edge solution that meet clients need and exceed their expectation.</p>
</div>
<div class="contact-button animatedcard">
<a href="contact-us.html" style="border-radius: 1em;">
<p style="padding: 9px; "> Contact Us</p>
</a>
</div>
</div>
</div>
<!-- cards and skills -->
<!--
<section class="header-section1">
<div class="left-section1">
<h2>My Skills</h2>
<h3>Why Hire Me For the Next Project?</h3>
<p>The technological revolution is changing aspects of our lives, and the fabric of society itself. It's also changing the way we learn and what we learn. Factual knowledge is less prized when everything you ever need to know can be found on your phone. There's no imperative to be an expert at doing everything when you can collaborate with specialists.</p>
<div class="cv-button">
<a href="#">Download CV</a>
</div>
</div>
<div class="right-section1">
<div class="card">
<h3>Card 1</h3>
<p>Card 1 content goes here</p>
</div>
<div class="card">
<h3>Card 2</h3>
<p>Card 2 content goes here</p>
</div>
<div class="card">
<h3>Card 3</h3>
<p>Card 3 content goes here</p>
</div>
<div class="card">
<h3>Card 4</h3>
<p>Card 4 content goes here</p>
</div>
</div>
</section> -->
<section class="skills">
<div class="container">
<div style="padding: 9% 5em;" class="content-section">
<p style="color: #64f4ab;">--My Skills</p>
<h1 style="padding:20px 1.5em; font-size: 36px;"> Hire Me </h1>
<p style="padding: 25px ; font-size: larger ;"> You should hire me because of my comprehensive skill
set in web development,
a track record of successful projects, and a commitment to delivering high-quality results.
I bring a proactive and collaborative approach, ensuring that I can contribute effectively to your
team and help achieve your organization's goals..
</p>
<div class="cv-button" style="padding: 26px;">
<a href="Rk-CV.pdf">Download CV</a>
</div>
</div>
<div class="cards-section">
<div class="card card1 anime" style="background-color: #2d2e32; border: none;">
<!-- Card 1 content goes here -->
<div style="width: 300px; background-color: #25262a; padding: 20px; border-radius: 44px;">
<div style="text-align: center; margin-left: 30%;">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="100" height="100">
<circle cx="50" cy="50" r="40" fill="#2d2e32" stroke="#64f4ab" stroke-width="2" />
<g transform="translate(32, 32)">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="37" height="38.134" viewBox="0 0 37 38.134">
<defs>
<linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1"
gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#64f4ab" />
<stop offset="1" stop-color="#327a56" />
</linearGradient>
</defs>
<g id="product_design_icon" data-name="product design - icon"
transform="translate(-27.328 -15.227)">
<path id="Path_58" data-name="Path 58"
d="M176.63,132.33a1.044,1.044,0,0,0-.63.967v11.652a1.059,1.059,0,0,0,.629.968l9.533,4.237a1.055,1.055,0,0,0,.861,0h0l9.533-4.237a1.059,1.059,0,0,0,.629-.968V133.3a1.044,1.044,0,0,0-.63-.967h0l-9.533-4.237a1.061,1.061,0,0,0-.861,0l-9.533,4.237Zm8.9,15.226-7.415-3.3v-9.333l7.415,3.3Zm9.533-3.3-7.415,3.3v-9.333l7.415-3.3Zm-8.474-14.041,6.925,3.078-6.925,3.078-6.925-3.078Z"
transform="translate(-140.794 -105.358)" fill="url(#linear-gradient)" />
<path id="Path_59" data-name="Path 59" d="M248,320h2.119v5.3H248Z"
transform="translate(-203.261 -271.936)" fill="url(#linear-gradient)" />
<path id="Path_60" data-name="Path 60" d="M248,72h2.119v5.3H248Z"
transform="translate(-203.261 -56.773)" fill="url(#linear-gradient)" />
<path id="Path_61" data-name="Path 61" d="M0,0H2.119V4.916H0Z"
transform="translate(27.328 25.723) rotate(-64.46)"
fill="url(#linear-gradient)" />
<path id="Path_76" data-name="Path 76" d="M0,0H2.119V4.916H0Z"
transform="translate(58.981 42.766) rotate(-64.46)"
fill="url(#linear-gradient)" />
<path id="Path_62" data-name="Path 62" d="M0,0H4.916V2.119H0Z"
transform="translate(58.897 25.915) rotate(-25.54)"
fill="url(#linear-gradient)" />
<path id="Path_63" data-name="Path 63" d="M0,0H4.916V2.119H0Z"
transform="translate(27.328 42.86) rotate(-25.54)"
fill="url(#linear-gradient)" />
</g>
</svg>
</g>
</svg>
</div>
<h3 style="text-align: center; margin-top: 20px; color: #ffffff; font-family:monospace;">Product
Design</h3>
<p style="text-align: center; color: #E8E8E8;font-family:monospace;">The technological
revolution is changing aspect</p>
</div>
</div>
<div class="card card2 anime" style="background-color: #2d2e32; border: none;">
<!-- Card 2 content goes here -->
<div style="width: 300px; background-color: #25262a; padding: 20px; border-radius: 44px;">
<div style="text-align: center; margin-left: 30%;">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="100" height="100">
<circle cx="50" cy="50" r="40" fill="#2d2e32" stroke="#64f4ab" stroke-width="2" />
<g transform="translate(32, 32)">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="37" height="38.134" viewBox="0 0 37 38.134">
<defs>
<linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1"
gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#64f4ab" />
<stop offset="1" stop-color="#327a56" />
</linearGradient>
</defs>
<g id="product_design_icon" data-name="product design - icon"
transform="translate(-27.328 -15.227)">
<path id="Path_58" data-name="Path 58"
d="M176.63,132.33a1.044,1.044,0,0,0-.63.967v11.652a1.059,1.059,0,0,0,.629.968l9.533,4.237a1.055,1.055,0,0,0,.861,0h0l9.533-4.237a1.059,1.059,0,0,0,.629-.968V133.3a1.044,1.044,0,0,0-.63-.967h0l-9.533-4.237a1.061,1.061,0,0,0-.861,0l-9.533,4.237Zm8.9,15.226-7.415-3.3v-9.333l7.415,3.3Zm9.533-3.3-7.415,3.3v-9.333l7.415-3.3Zm-8.474-14.041,6.925,3.078-6.925,3.078-6.925-3.078Z"
transform="translate(-140.794 -105.358)" fill="url(#linear-gradient)" />
<path id="Path_59" data-name="Path 59" d="M248,320h2.119v5.3H248Z"
transform="translate(-203.261 -271.936)" fill="url(#linear-gradient)" />
<path id="Path_60" data-name="Path 60" d="M248,72h2.119v5.3H248Z"
transform="translate(-203.261 -56.773)" fill="url(#linear-gradient)" />
<path id="Path_61" data-name="Path 61" d="M0,0H2.119V4.916H0Z"
transform="translate(27.328 25.723) rotate(-64.46)"
fill="url(#linear-gradient)" />
<path id="Path_76" data-name="Path 76" d="M0,0H2.119V4.916H0Z"
transform="translate(58.981 42.766) rotate(-64.46)"
fill="url(#linear-gradient)" />
<path id="Path_62" data-name="Path 62" d="M0,0H4.916V2.119H0Z"
transform="translate(58.897 25.915) rotate(-25.54)"
fill="url(#linear-gradient)" />
<path id="Path_63" data-name="Path 63" d="M0,0H4.916V2.119H0Z"
transform="translate(27.328 42.86) rotate(-25.54)"
fill="url(#linear-gradient)" />
</g>
</svg>
</g>
</svg>
</div>
<h3 style="text-align: center; margin-top: 20px; color: #ffffff; font-family:monospace;">Product
Design</h3>
<p style="text-align: center; color: #E8E8E8;font-family:monospace;">The technological
revolution is changing aspect</p>
</div>
</div>
<div class="card card3 anime" style="background-color: #2d2e32; border: none;">
<!-- Card 3 content goes here -->
<div style="width: 300px; background-color: #25262a; padding: 20px; border-radius: 44px;">
<div style="text-align: center; margin-left: 30%;">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="100" height="100">
<circle cx="50" cy="50" r="40" fill="#2d2e32" stroke="#64f4ab" stroke-width="2" />
<g transform="translate(32, 32)">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="37" height="38.134" viewBox="0 0 37 38.134">
<defs>
<linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1"
gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#64f4ab" />
<stop offset="1" stop-color="#327a56" />
</linearGradient>
</defs>
<g id="product_design_icon" data-name="product design - icon"
transform="translate(-27.328 -15.227)">
<path id="Path_58" data-name="Path 58"
d="M176.63,132.33a1.044,1.044,0,0,0-.63.967v11.652a1.059,1.059,0,0,0,.629.968l9.533,4.237a1.055,1.055,0,0,0,.861,0h0l9.533-4.237a1.059,1.059,0,0,0,.629-.968V133.3a1.044,1.044,0,0,0-.63-.967h0l-9.533-4.237a1.061,1.061,0,0,0-.861,0l-9.533,4.237Zm8.9,15.226-7.415-3.3v-9.333l7.415,3.3Zm9.533-3.3-7.415,3.3v-9.333l7.415-3.3Zm-8.474-14.041,6.925,3.078-6.925,3.078-6.925-3.078Z"
transform="translate(-140.794 -105.358)" fill="url(#linear-gradient)" />
<path id="Path_59" data-name="Path 59" d="M248,320h2.119v5.3H248Z"
transform="translate(-203.261 -271.936)" fill="url(#linear-gradient)" />
<path id="Path_60" data-name="Path 60" d="M248,72h2.119v5.3H248Z"
transform="translate(-203.261 -56.773)" fill="url(#linear-gradient)" />
<path id="Path_61" data-name="Path 61" d="M0,0H2.119V4.916H0Z"
transform="translate(27.328 25.723) rotate(-64.46)"
fill="url(#linear-gradient)" />
<path id="Path_76" data-name="Path 76" d="M0,0H2.119V4.916H0Z"
transform="translate(58.981 42.766) rotate(-64.46)"
fill="url(#linear-gradient)" />
<path id="Path_62" data-name="Path 62" d="M0,0H4.916V2.119H0Z"
transform="translate(58.897 25.915) rotate(-25.54)"
fill="url(#linear-gradient)" />
<path id="Path_63" data-name="Path 63" d="M0,0H4.916V2.119H0Z"
transform="translate(27.328 42.86) rotate(-25.54)"
fill="url(#linear-gradient)" />
</g>
</svg>
</g>
</svg>
</div>
<h3 style="text-align: center; margin-top: 20px; color: #ffffff; font-family:monospace;">Product
Design</h3>
<p style="text-align: center; color: #E8E8E8;font-family:monospace;">The technological
revolution is changing aspect</p>
</div>
</div>
<div class="card card4 anime" style="background-color: #2d2e32;border: none;">
<!-- Card 4 content goes here -->
<div style="width: 300px; background-color: #25262a; padding: 20px; border-radius: 44px;">
<div style="text-align: center; margin-left: 30%;">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="100" height="100">
<circle cx="50" cy="50" r="40" fill="#2d2e32" stroke="#64f4ab" stroke-width="2" />
<g transform="translate(32, 32)">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="37" height="38.134" viewBox="0 0 37 38.134">
<defs>
<linearGradient id="linear-gradient" x1="0.5" zx2="0.5" y2="1"
gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#64f4ab" />
<stop offset="1" stop-color="#327a56" />
</linearGradient>
</defs>
<g id="product_design_icon" data-name="product design - icon"
transform="translate(-27.328 -15.227)">
<path id="Path_58" data-name="Path 58"
d="M176.63,132.33a1.044,1.044,0,0,0-.63.967v11.652a1.059,1.059,0,0,0,.629.968l9.533,4.237a1.055,1.055,0,0,0,.861,0h0l9.533-4.237a1.059,1.059,0,0,0,.629-.968V133.3a1.044,1.044,0,0,0-.63-.967h0l-9.533-4.237a1.061,1.061,0,0,0-.861,0l-9.533,4.237Zm8.9,15.226-7.415-3.3v-9.333l7.415,3.3Zm9.533-3.3-7.415,3.3v-9.333l7.415-3.3Zm-8.474-14.041,6.925,3.078-6.925,3.078-6.925-3.078Z"
transform="translate(-140.794 -105.358)" fill="url(#linear-gradient)" />
<path id="Path_59" data-name="Path 59" d="M248,320h2.119v5.3H248Z"
transform="translate(-203.261 -271.936)" fill="url(#linear-gradient)" />
<path id="Path_60" data-name="Path 60" d="M248,72h2.119v5.3H248Z"
transform="translate(-203.261 -56.773)" fill="url(#linear-gradient)" />
<path id="Path_61" data-name="Path 61" d="M0,0H2.119V4.916H0Z"
transform="translate(27.328 25.723) rotate(-64.46)"
fill="url(#linear-gradient)" />
<path id="Path_76" data-name="Path 76" d="M0,0H2.119V4.916H0Z"
transform="translate(58.981 42.766) rotate(-64.46)"
fill="url(#linear-gradient)" />
<path id="Path_62" data-name="Path 62" d="M0,0H4.916V2.119H0Z"
transform="translate(58.897 25.915) rotate(-25.54)"
fill="url(#linear-gradient)" />
<path id="Path_63" data-name="Path 63" d="M0,0H4.916V2.119H0Z"
transform="translate(27.328 42.86) rotate(-25.54)"
fill="url(#linear-gradient)" />
</g>
</svg>
</g>
</svg>
</div>
<h3 style="text-align: center; margin-top: 20px; color: #ffffff; font-family:monospace;">Product
Design</h3>
<p style="text-align: center; color: #E8E8E8;font-family:monospace;">The technological
revolution is changing aspect</p>
</div>
</div>
</div>
</div>
</section>
<!-- skills details section -->
<div class="container skillsdelt mx-auto pt-16">
<div class="flex flex-wrap">
<div class="w-full lg:w-1/2" id="leftSection">
<div class="flex flex-col h-full p-10 left_sec ">
<div class="mb-4 mt-4">
<h4 style="color: #64f4ab;" style=" font-family:monospace;" class="text-lg font-bold">Pic-1
</h4>
</div>
<div class="mb-4 mt-4">
<h2 class="text-5xl text-white font-bold " style=" font-family:monospace;">Web development
</h2>
</div>
<div class="mb-4 mt-4">
<p class="text-white text-lg" style=" font-family:monospace;">I am a seasoned web developer with
a keen eye for crafting engaging online experiences.<br>
Proficient in a diverse range of technologies, including HTML, CSS, JavaScript, and various
frameworks, I bring a wealth of expertise to every project<br>.
My commitment to clean, efficient code is complemented by a creative approach to design and
user experience. Whether it's front-end development, back-end architecture, or full-stack
solutions,</p>
</div>
<div class="flex items-center">
<a href="#" class="flex items-center text-white text-yellow-500">
<span class=" mr-2">
<svg xmlns="https://brainstation.io/career-guides/what-is-web-development" width="18"
height="10.998" viewBox="0 0 18 10.998">
<g id="right_arrow_-_icon" data-name="right arrow - icon"
transform="translate(21 -6.501) rotate(90)">
<path id="Path_98" data-name="Path 98"
d="M6.59,11.858a.714.714,0,0,0,.627.38h4.066v8.028a.717.717,0,1,0,1.434,0V12.238h4.066a.713.713,0,0,0,.627-.38.748.748,0,0,0-.02-.745l-4.783-7.77a.709.709,0,0,0-1.214,0L6.61,11.113A.754.754,0,0,0,6.59,11.858Z"
fill="#fecd1a" />
</g>
</svg></span>
Read more
</a>
</div>
</div>
</div>
<div class="w-full lg:w-1/2 anime" id="rightSection">
<div class="flex justify-center items-center h-full">
<div class="w-3/4">
<img style="border-radius: 37px;"
src="https://www.makestudy.com/uploads/program_images/program_2082.jpg" alt="Image"
class="w-full h-auto rounded-lg">
</div>
</div>
</div>
</div>
</div>
<div class="container skillsdelt mt-20 pt-16">
<div class="flex flex-wrap">
<div class="w-full lg:w-1/2 anime" id="rightSection1">
<div class="flex justify-center items-center h-full">
<div class="w-3/4 ">
<img style="border-radius: 37px;"
src="https://www.slaconsultantsindia.com/wp_files/wp-content/uploads/2018/06/Web-Designing-Courses-for-Beginners.jpg"
alt="Image" class="w-full h-auto rounded-lg">
</div>
</div>
</div>
<div class="w-full lg:w-1/2" id="leftSection1">
<div class="flex flex-col h-full p-10 left_sec ">
<div class="mb-4 mt-4">
<h4 style="color: #64f4ab;" style=" font-family:monospace;" class="text-lg font-bold">Pic-2
</h4>
</div>
<div class="mb-4 mt-4">
<h2 class="text-5xl text-white font-bold " style=" font-family:monospace;">Web Design</h2>
</div>
<div class="mb-4 mt-4">
<p class="text-white text-lg" style=" font-family:monospace;">The technological revolution is
changing aspect of our lives,
Passionate web designer transforming ideas into visually stunning and user-centric digital
experiences.
Proficient in HTML, CSS, and JavaScript, I blend creativity with technical expertise to
craft responsive and engaging websites.
Committed to delivering design excellence that enhances user satisfaction and achieves
business goals.
</p>
</div>
<div class="flex items-center">
<a href="#" class="flex items-center text-white text-yellow-500">
<span class=" mr-2">
<svg xmlns="https://www.simplilearn.com/what-is-web-designing-article" width="18"
height="10.998" viewBox="0 0 18 10.998">
<g id="right_arrow_-_icon" data-name="right arrow - icon"
transform="translate(21 -6.501) rotate(90)">
<path id="Path_98" data-name="Path 98"
d="M6.59,11.858a.714.714,0,0,0,.627.38h4.066v8.028a.717.717,0,1,0,1.434,0V12.238h4.066a.713.713,0,0,0,.627-.38.748.748,0,0,0-.02-.745l-4.783-7.77a.709.709,0,0,0-1.214,0L6.61,11.113A.754.754,0,0,0,6.59,11.858Z"
fill="#fecd1a" />
</g>
</svg></span>
Read more
</a>
</div>
</div>
</div>
</div>
</div>
<!-- line no 3 -->
<div class="container skillsdelt mt-20 pt-16">
<div class="flex flex-wrap">
<div class="w-full lg:w-1/2" id="leftSection2">
<div class="flex flex-col h-full p-10 left_sec ">
<div class="mb-4 mt-4">
<h4 style="color: #64f4ab;" style=" font-family:monospace;" class="text-lg font-bold">Pic-3
</h4>
</div>
<div class="mb-4 mt-4">
<h2 class="text-5xl text-white font-bold " style=" font-family:monospace;">UI/UX Design</h2>
</div>
<div class="mb-4 mt-4">
<p class="text-white text-lg" style=" font-family:monospace;">The technological revolution is
changing aspect of our lives, and the fabric of society itself. it's also changing the way
we learn and what we learn. Factual knowledge is less prized when everything you ever need
to know can be found on your phone. There's no imperative to be an expert at doing
everything when you can.</p>
</div>
<div class="flex items-center">
<a href="#" class="flex items-center text-white text-yellow-500">
<span class=" mr-2">
<svg xmlns="https://flatironschool.com/blog/what-is-ux-ui-design/" width="18"
height="10.998" viewBox="0 0 18 10.998">
<g id="right_arrow_-_icon" data-name="right arrow - icon"
transform="translate(21 -6.501) rotate(90)">
<path id="Path_98" data-name="Path 98"
d="M6.59,11.858a.714.714,0,0,0,.627.38h4.066v8.028a.717.717,0,1,0,1.434,0V12.238h4.066a.713.713,0,0,0,.627-.38.748.748,0,0,0-.02-.745l-4.783-7.77a.709.709,0,0,0-1.214,0L6.61,11.113A.754.754,0,0,0,6.59,11.858Z"
fill="#fecd1a" />
</g>
</svg></span>
Read more
</a>
</div>
</div>
</div>
<div class="w-full lg:w-1/2 anime" id="rightSection2">
<div class="flex justify-center items-center h-full">
<div class="w-3/4">
<img style="border-radius: 37px;"
src="https://mlewkjq3bfsl.i.optimole.com/cb:G99v.13574/w:805/h:437/q:mauto/f:avif/https://hackerkernel.com/blog/wp-content/uploads/2022/11/UI-Ux-Differences-and-Similarities.jpg"
alt="Image" class="w-full h-auto rounded-lg">
</div>
</div>
</div>
</div>
</div>
<div class="center-button">
<button style="background-color: #ffaf29;">View All
<div class="star-1">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 784.11 815.53"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z"
class="fil0"></path>
</g>
</svg>
</div>
<div class="star-2">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 784.11 815.53"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z"
class="fil0"></path>
</g>
</svg>
</div>
<div class="star-3">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 784.11 815.53"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z"
class="fil0"></path>
</g>
</svg>
</div>
<div class="star-4">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 784.11 815.53"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z"
class="fil0"></path>
</g>
</svg>
</div>
<div class="star-5">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 784.11 815.53"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z"
class="fil0"></path>
</g>
</svg>
</div>
<div class="star-6">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 784.11 815.53"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z"
class="fil0"></path>
</g>
</svg>
</div>
</button>
</div>
<div class="wrapperx">
<div class="containerx num1">
<span class="num " data-val="10">0</span>
<span class="text">Happy Clients</span>
</div>
<div class="containerx">
<span class="num" data-val="03">0</span>
<span class="text">Projects Done</span>
</div>
<div class="containerx">
<span class="num" data-val="10">0</span>
<span class="text">Awards Winning</span>
</div>
<div class="containerx num2">
<span class="num " data-val="30">0</span>
<span class="text">One Month Experience</span>
</div>
</div>
<!-- slider section -->
<div class="container" style="width: 100%; margin-top: 13%;">
<div class="slider " style="width: 100% ;">
<div class="slide " style="width: 100%;">
<div class="row">
<div class="container">
<div class="row">
<div class="col-md-6">
<img style="border-radius: 58px; margin-left: 20%;" src="RK-PIC-CV.jpg" alt="Image"
class="img-fluid">
</div>
<div class="col-md-6">
<div class="right-section">
<div class="svg-section" style="height: 90px;">
<svg class=""><svg xmlns="http://www.w3.org/2000/svg" width="61.158"
height="51.075" viewBox="0 0 61.158 51.075">
<defs>
<linearGradient id="linear-gradient1" x1="0.5" x2="0.5" y2="1">
<stop offset="0" stop-color="var(--e-global-color-accent)" />
<stop offset="1" stop-color="var(--e-global-color-c51b028)" />
</linearGradient>
</defs>
<g id="quote_-_icon" data-name="quote - icon"
transform="translate(0 -7.858)">
<g id="Group_107" data-name="Group 107"
transform="translate(0 7.858)">
<path id="Path_38"
d="M19.574,31a16.2,16.2,0,0,0-4.478-.654A14.072,14.072,0,0,0,9.482,31.5c1.411-5.167,4.8-14.082,11.556-15.086a1.6,1.6,0,0,0,1.309-1.154l1.476-5.28A1.6,1.6,0,0,0,22.5,7.961a11.212,11.212,0,0,0-1.51-.1c-8.107,0-16.136,8.462-19.524,20.578C-.527,35.544-1.11,46.23,3.789,52.957c2.741,3.764,6.741,5.774,11.887,5.975h.063A14.228,14.228,0,0,0,19.574,31Z"
transform="translate(0 -7.858)" fill="#64f4ab" />
<path id="Path_39"
d="M76.754,37.724A14.262,14.262,0,0,0,68.2,31a16.2,16.2,0,0,0-4.477-.654,14.075,14.075,0,0,0-5.615,1.15c1.411-5.167,4.8-14.082,11.556-15.086a1.606,1.606,0,0,0,1.309-1.154l1.476-5.28a1.6,1.6,0,0,0-1.327-2.021,11.2,11.2,0,0,0-1.51-.1c-8.107,0-16.136,8.462-19.524,20.578C48.1,35.544,47.516,46.23,52.416,52.958c2.741,3.763,6.741,5.774,11.886,5.974h.064A14.228,14.228,0,0,0,76.754,37.724Z"
transform="translate(-17.431 -7.858)" fill="#64f4ab" />
</g>
</g>
</svg></svg>
</div>
<div class="text-section">
<p class="text-white" style="font-size: 20px;">Hire me,
for my proven expertise in web development, demonstrated by successful
projects and a commitment to delivering high-quality,
efficient code. My passion for staying at the forefront of technology
ensures your team will benefit from innovative solutions,
making me a valuable asset to drive your digital success.</p>
</div>
<div class="name-section">
<h3 style="color: #64f4ab; font-size: 30px; padding-top: 20px;"> Rahul kumar
</h3>
</div>
<div class="designation-section">
<p style="color: white; font-size: 20px; padding-top: 15px;">Leader Of Project -
E-Auction</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="row">
<div class="container">
<div class="row">
<div class="col-md-6">
<img style="border-radius: 58px; margin-left: 20%;" src="RK-PIC-CV.jpg" alt="Image"
class="img-fluid">
</div>
<div class="col-md-6">
<div class="right-section">
<div class="svg-section" style="height: 90px;">
<svg class=""><svg xmlns="http://www.w3.org/2000/svg" width="61.158"
height="51.075" viewBox="0 0 61.158 51.075">
<defs>
<linearGradient id="linear-gradient1" x1="0.5" x2="0.5" y2="1">
<stop offset="0" stop-color="var(--e-global-color-accent)" />
<stop offset="1" stop-color="var(--e-global-color-c51b028)" />
</linearGradient>
</defs>
<g id="quote_-_icon" data-name="quote - icon"
transform="translate(0 -7.858)">
<g id="Group_107" data-name="Group 107"
transform="translate(0 7.858)">
<path id="Path_38"
d="M19.574,31a16.2,16.2,0,0,0-4.478-.654A14.072,14.072,0,0,0,9.482,31.5c1.411-5.167,4.8-14.082,11.556-15.086a1.6,1.6,0,0,0,1.309-1.154l1.476-5.28A1.6,1.6,0,0,0,22.5,7.961a11.212,11.212,0,0,0-1.51-.1c-8.107,0-16.136,8.462-19.524,20.578C-.527,35.544-1.11,46.23,3.789,52.957c2.741,3.764,6.741,5.774,11.887,5.975h.063A14.228,14.228,0,0,0,19.574,31Z"
transform="translate(0 -7.858)" fill="#64f4ab" />
<path id="Path_39"
d="M76.754,37.724A14.262,14.262,0,0,0,68.2,31a16.2,16.2,0,0,0-4.477-.654,14.075,14.075,0,0,0-5.615,1.15c1.411-5.167,4.8-14.082,11.556-15.086a1.606,1.606,0,0,0,1.309-1.154l1.476-5.28a1.6,1.6,0,0,0-1.327-2.021,11.2,11.2,0,0,0-1.51-.1c-8.107,0-16.136,8.462-19.524,20.578C48.1,35.544,47.516,46.23,52.416,52.958c2.741,3.763,6.741,5.774,11.886,5.974h.064A14.228,14.228,0,0,0,76.754,37.724Z"
transform="translate(-17.431 -7.858)" fill="#64f4ab" />
</g>
</g>
</svg></svg>
</div>
<div class="text-section text-white">
<p>Hire me,
Hire me for my proven ability to blend technical expertise with creativity,
consistently delivering high-quality results. With a passion for innovation
and a track record of successful projects, I bring a dynamic approach to
problem-solving.
My collaborative mindset and effective communication ensure seamless.
Together, we can achieve your objectives and elevate your projects to new
heights..</p>
</div>
<div class="name-section">
<h3 style="color: #64f4ab; font-size: 30px; padding-top: 20px;"> Rahul kumar
</h3>
</div>
<div class="designation-section">
<p style="color: white; font-size: 20px; padding-top: 15px;">Leader Of Project -
E-Auction</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function () {
$('.slider').slick({
arrows: false,
dots: true,
infinite: true,
speed: 300,
slidesToShow: 1,
slidesToScroll: 1
});
});
</script>
<!-- footer section -->
<div class="footer1">
<div class="logo_sec">
<span class="logo navLogo">
<!-- <img src=""> -->
<svg data-v-6805eed4="" version="1.0" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="65%" height="50%"
viewBox="0 0 340.000000 250.000000" preserveAspectRatio="xMidYMid meet"
color-interpolation-filters="sRGB" style="margin: auto;">
<g data-v-6805eed4="" fill="#fff" class="bordersvg b-d1"
transform="translate(31.056673526763916,46.64749440492278)">
<path fill-opacity="0" stroke="#fff" stroke-width="3"
d="M 146.7050018310547 52.247501373291016 A 78.35250091552734 78.35250091552734 0 1 0 146.7050018310547 104.45750045776367">
</path>
<g transform="translate(10,52.247501373291016)">
<g>
<rect data-gra="graph-name-bg" stroke-width="2" class="i-icon-bg" x="0" y="0"
width="273.4100036621094" height="52.209999084472656" fill-opacity="0"></rect>
<!----> <!---->
</g>
<g transform="translate(10,3)">
<g data-gra="path-name" fill-rule="" class="tp-name">
<g transform="scale(1)">
<g>
<path
d="M55.17 0L51.14 0 51.14-21.46 11.47-21.46 11.47 0 7.44 0 7.44-44.28 11.47-44.28 11.47-25.2 51.14-25.2 51.14-44.28 55.17-44.28 55.17 0ZM116.18 0L112.18 0 112.18-4.9Q109.86-3.64 106.91-2.58 103.96-1.51 100.69-0.74 97.42 0.03 93.97 0.45 90.53 0.87 87.21 0.87L87.21 0.87Q82.89 0.87 79.46 0.1 76.02-0.68 73.64-2.21 71.25-3.74 69.97-6.01 68.68-8.28 68.68-11.28L68.68-11.28Q68.68-14.24 70.18-16.52 71.67-18.79 74.45-20.48 77.22-22.17 81.13-23.35 85.05-24.52 89.88-25.35 94.72-26.17 100.34-26.7 105.96-27.23 112.18-27.59L112.18-27.59 112.18-30.97Q112.18-33.03 111.41-34.61 110.64-36.19 109.25-37.37 107.86-38.54 106-39.33 104.13-40.12 101.95-40.61 99.78-41.09 97.37-41.3 94.97-41.51 92.56-41.51L92.56-41.51Q89.3-41.51 86.63-41.19 83.95-40.86 81.63-40.3 79.31-39.74 77.18-38.99 75.06-38.25 72.9-37.42L72.9-37.42 72.9-42.12Q77.38-43.31 82.45-44.2 87.53-45.08 93.23-45.08L93.23-45.08Q98.07-45.08 102.26-44.26 106.45-43.44 109.54-41.64 112.63-39.83 114.41-36.98 116.18-34.13 116.18-30.04L116.18-30.04 116.18 0ZM112.18-9.12L112.18-24.01Q101.64-23.43 94.18-22.37 86.72-21.3 81.99-19.75 77.25-18.21 75.04-16.15 72.83-14.08 72.83-11.47L72.83-11.47Q72.83-9.35 73.91-7.7 74.99-6.06 77.02-4.95 79.05-3.83 81.95-3.27 84.85-2.71 88.46-2.71L88.46-2.71Q90.59-2.71 92.86-2.95 95.13-3.19 97.39-3.63 99.65-4.06 101.84-4.66 104.03-5.25 105.96-5.96 107.9-6.67 109.49-7.48 111.09-8.28 112.18-9.12L112.18-9.12ZM132.71-44.28L136.74-44.28 136.74-37.48Q138.16-38.7 139.9-40.09 141.64-41.48 143.73-42.64 145.83-43.8 148.28-44.57 150.73-45.34 153.53-45.34L153.53-45.34Q158.01-45.34 161.46-43.33 164.91-41.31 167.03-37.09L167.03-37.09Q169.1-38.99 171.29-40.52 173.48-42.06 175.78-43.12 178.09-44.18 180.54-44.76 182.99-45.34 185.6-45.34L185.6-45.34Q188.92-45.34 191.64-44.21 194.36-43.09 196.26-41.12 198.17-39.16 199.21-36.5 200.26-33.84 200.26-30.81L200.26-30.81 200.26 0 196.23 0 196.23-29.78Q196.23-32.55 195.57-34.72 194.91-36.9 193.51-38.41 192.11-39.93 189.93-40.72 187.76-41.51 184.73-41.51L184.73-41.51Q182.31-41.51 179.94-40.81 177.57-40.12 175.41-38.98 173.25-37.83 171.38-36.38 169.52-34.93 168.1-33.39L168.1-33.39Q168.26-32.48 168.27-31.84 168.29-31.2 168.29-30.29L168.29-30.29 168.29 0 164.26 0 164.26-29.78Q164.26-33.06 163.39-35.3 162.52-37.54 160.98-38.93 159.43-40.32 157.32-40.91 155.21-41.51 152.73-41.51L152.73-41.51Q150.37-41.51 148.07-40.7 145.76-39.9 143.67-38.61 141.58-37.32 139.8-35.72 138.03-34.13 136.74-32.55L136.74-32.55 136.74 0 132.71 0 132.71-44.28ZM255.79 0L236.65-20.01 217.57 0 212.48 0 234.13-22.72 213.54-44.28 218.63-44.28 236.65-25.33 254.72-44.28 259.82-44.28 239.22-22.72 260.85 0 255.79 0Z"
transform="translate(-7.440000057220459, 45.34000015258789)"></path>
</g> <!----> <!----> <!----> <!----> <!----> <!----> <!---->
</g>
</g> <!---->
</g>
</g>
</g>
<defs v-gra="od"></defs>
</svg>
</span>
</div>
<div class="infoo">
<h3 style="color: white;">© 2023 CopyRight by Rahul Kumar.</h3>
</div>
<div class="otheracc">
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-Twitter-X elementor-repeater-item-395a9c5"
href="@Rahulku91518426" target="X">
<i class="fab fa-X"></i> </a>
</div>>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-638ce13"
href="https://www.linkedin.com/in/rahul-kumar-473550280" target="Linkedin">
<i class="fab fa-linkedin-in"></i> </a>
</div>>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-c0177e3"
href="https://www.instagram.com/rahul1790kumar?igsh=bWV4dDdwcXU5eWZi" target="Instagram">
<i class="fab fa-instagram"></i> </a>
</div>>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-github elementor-repeater-item-45053c6"
href="https://rahulkumar2488.github.io/cv/" target="Github">
<i class="fab fa-github"></i> </a>
</div>>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-All Link elementor-repeater-item-45053c6"
href="https://taplink.cc/rahul3790" target="Taplink">
<i class="fab fa-Taplink"></i> </a>
</div>>
</div>
</div>
<!-- Script -->
<script src="script.js"></script>
<script>
const intersectionCallback = (entries) => {
for (const entry of entries) { // Loop over all elements that either enter or exit the view.
if (entry.isIntersecting) { // This is true when the element is in view.
entry.target.classList.add('animatedcard'); // Add a class.
}
}
}
/**
* Create a observer and use the instersectionCallback as
* the instructions for what to do when an element enters
* or leaves the view
*/
const observer = new IntersectionObserver(intersectionCallback);
/**
* Get all .item elements and loop over them.
* Observe each individual item.
*/
const items = document.querySelectorAll('.anime');
for (const item of items) {
observer.observe(item);
console.log("observ");
}
</script>
<script>
$(window).on('scroll', function () {
var st = $(this).scrollTop(),
vh = $(this).height(),
$counter = $('.wrapperx'),
ct = $counter.offset().top;
if ((st + vh) > ct) {
// #counter is in the viewport
let valueDisplays = document.querySelectorAll(".num");
let interval = 100;
valueDisplays.forEach((valueDisplay) => {
let startValue = 0;