-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
769 lines (705 loc) · 33.6 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
<!DOCTYPE html>
<html lang="zxx">
<head>
<!-- Meta -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" href="image/favicon.ico" type="image/x-icon">
<link rel="icon" href="image/favicon.ico" type="image/x-icon">
<!-- Icons -->
<link rel="stylesheet" type="text/css" href="css/pe-icon-7-stroke.css">
<link rel="stylesheet" type="text/css" href="css/pe-helper.css">
<link rel="stylesheet" href="css/bootstrap-icons.css">
<link rel="stylesheet" type="text/css" href="css/all.min.css">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:wght@700;900&display=swap" rel="stylesheet">
<!-- CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<link rel="stylesheet" href="css/leaflet.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Rahul Kanjariya|Personal Portfolio</title>
</head>
<body data-bs-spy="scroll" data-bs-target="#site-navbar" class="home-main">
<!-- PRE LOADER -->
<div class="preloader js-preloader flex-center">
<div class="dots">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
<!-- SITE HEADER -->
<header class="site-header" id="site-header">
<nav class="navbar navbar-expand-xl" id="site-navbar">
<div class="container">
<a class="navbar-brand" href="index.html"><img class="img-fluid" src="image/logo.png" alt="fungi logo"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><i class="bi bi-list"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#site-header">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-section">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio-section">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#service-section">Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact-section">Contact</a>
</li>
</ul> <!-- .navbar-nav -->
</div> <!-- .collapse -->
</div> <!-- .container -->
</nav> <!-- .navbar -->
</header> <!-- .site-header -->
<!-- HERO AREA -->
<section class="hero-area" id="hero-area">
<div class="container">
<div class="hero-content d-flex justify-content-center">
<div class="row d-flex align-items-center justify-content-center">
<div class="col-xl-6 order-xl-last image-block">
<div class="image-wrapper" data-tilt data-tilt-max="10">
<ul class="hero-facts">
<li>
<p>5<span>+</span></p>
<h4>Total <br>Projects</h4>
</li>
<li>
<p>10<span>+</span></p>
<h4>Technicals <br>Skills</h4>
</li>
</ul>
<img class="img-fluid" src="image/rahul.png" alt="hero main image">
</div>
</div>
<div class="col-xl-6 order-xl-first content-block">
<h1 class="hero-head"><small>Hello, I'm</small>Rahul <strong>Kanjariya</strong></h1>
<p>
A passionate <strong>UX/Ui & Frontend Developer</strong> from <strong>Gujarat, India!</strong>
</p>
<div class="link-group">
<a class="btn-main" href="#contact-section">Contact Me</a>
<ul class="hero-social list-inline">
<li class="list-inline-item"><a href="https://www.facebook.com/rahul.kanzariya.3762/"><i class="fab fa-facebook-f"></i></a></li>
<li class="list-inline-item"><a href="https://twitter.com/i/flow/login?redirect_after_login=%2FRahulKanjariy18"><i class="fab fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/rahul-kanjariya-6672411ab/"><i class="fab fa-linkedin"></i></a></li>
<li class="list-inline-item"><a href="https://www.instagram.com/_rahul_9265/"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="design-elements">
<img class="de-hero-1 elem-updown" src="image/design-elements/hero-element-1.png" alt="hero element 1">
<img class="de-hero-2 elem-move" src="image/design-elements/hero-element-2.png" alt="hero element 2">
<img class="de-hero-3 elem-updown" src="image/design-elements/hero-element-3.png" alt="hero element 3">
<img class="de-hero-4 elem-updown" src="image/design-elements/hero-element-4.png" alt="hero element 4">
<img class="de-hero-5 elem-move" src="image/design-elements/hero-element-5.png" alt="hero element 5">
</div>
</section>
<!-- .hero-area -->
<!-- INTRO SECTION -->
<section class="intro-section section-block">
<div class="container">
<div class="section-title">
<h2>Welcome to my World</h2>
<p class="lead">
I'm a young tech enthasist and entrepreneur who love to take risk. I grew up in a tech family in Jamanagr City,Gujarat,India.
</p>
</div><!-- .section-title -->
<div class="row">
<div class="col-xxl-4 col-lg-6">
<div class="item-wrapper">
<div class="icon-box"><i class="pe-7s-science"></i></div>
<div class="content-wrapper">
<h3>Creativity</h3>
<p>
Creativity is merely a plus name for regular activity. Any activity becomes creative when the doer cares about doing it right, or better.
</p>
</div> <!-- .content-wrapper -->
</div> <!-- .item-wrapper -->
</div>
<div class="col-xxl-4 col-lg-6" >
<div class="item-wrapper">
<div class="icon-box"><i class="pe-7s-diamond"></i></div>
<div class="content-wrapper">
<h3>Dedication</h3>
<p>
If you believe in yourself and have dedication and pride - and never quit, you'll be a winner. The price of victory is high but so are the rewards.
</p>
</div> <!-- .content-wrapper -->
</div> <!-- .item-wrapper -->
</div>
<div class="col-xxl-4 col-lg-6" >
<div class="item-wrapper">
<div class="icon-box"><i class="pe-7s-rocket"></i></div>
<div class="content-wrapper">
<h3>Hard Work</h3>
<p>
I do not know anyone who has got to the top without hard work. That is the recipe.It will not always get you to the top,but should get you pretty near.
</p>
</div> <!-- .content-wrapper -->
</div> <!-- .item-wrapper -->
</div>
</div> <!-- .row -->
</div> <!-- .container -->
<div class="design-elements">
<img class="de-intro-1 elem-updown" src="image/design-elements/intro-element-1.png" alt="intro element 1">
</div> <!-- .design-elements -->
</section> <!-- .intro-section -->
<!-- ABOUT SECTION -->
<section class="about-section section-block" id="about-section" data-aos="fade-up">
<div class="container">
<div class="row">
<div class="col-xl-6 image-block" data-aos="fade-right" data-aos-delay="200" data-aos-duration="2000">
<div class="img-wrapper about-img-wrap" data-tilt data-tilt-max="10">
<img class="about-img-1 img-fluid" src="image/feature-photo.png" alt="about image">
</div>
</div>
<div class="col-xl-6 content-block" data-aos="fade-right" data-aos-delay="400" data-aos-duration="2000">
<h2><span>About Me</span>I Can Design & Website Anything You Want</h2>
<p>
ux/ui & Frontend developer. I can provide clean code and pixel perfect design. I also make website more & more interactive with web animations.
</p>
<p>
Visual design seeks to attract, inspire, create desires and motivate people to respond to messages, with a view to making a favorable impact.
</p>
<div class="personal-details row">
<div class="col-md-6">
<ul class="personal-info">
<li>
<h4>Name</h4>
<p>Rahul Kanjariya</p>
</li>
<li>
<h4>Email</h4>
<p>[email protected]</p>
</li>
<li>
<h4>Phone</h4>
<p>+91 9265614292</p>
</li>
</ul> <!-- .personal-info -->
</div> <!-- .col-md-6 -->
<div class="col-md-6">
<ul class="personal-info">
<li>
<h4>Age</h4>
<p>20 Years</p>
</li>
<li>
<h4>Education</h4>
<p>Bachelor of Computer Applications</p>
</li>
<li>
<h4>Freelance</h4>
<p>Available</p>
</li>
</ul> <!-- .personal-info -->
</div> <!-- .col-md-6 -->
</div> <!-- .personal-details -->
<a class="btn-main" href="#">Download CV</a>
</div>
</div> <!-- .row -->
</div> <!-- .container -->
<div class="design-elements">
<img class="de-about-1 elem-updown" src="image/design-elements/about-element-1.png" alt="about element 1">
<img class="de-about-2 elem-updown" src="image/design-elements/about-element-2.png" alt="about element 2">
</div> <!-- .design-elements -->
</section> <!-- .about-section -->
<!-- SKILL SECTION -->
<section class="skill-section section-block" id="skill-section">
<div class="container">
<div class="row">
<div class="col-xl-6 content-block" data-aos="fade-down" data-aos-duration="2000">
<h2><span>My Skills</span>I'm great in what I do and I'm loving it</h2>
<p class="lead">
We learn wisdom from failure much more than from success;
we often discover what will do by finding out what will not do;
and probably he who never makes a mistake never made a discovery.
</p>
</div>
<div class="col-xl-6 progress-block">
<div class="progress-wrapper">
<h4>HTML</h4>
<p class="progress-value">90%</p>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 0%" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress-wrapper">
<h4>PHP</h4>
<p class="progress-value">80%</p>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 0%" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress-wrapper">
<h4>React</h4>
<p class="progress-value">50%</p>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 0%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress-wrapper">
<h4>CSS</h4>
<p class="progress-value">60%</p>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 0%" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div><!-- .row -->
</div><!-- .container -->
</section> <!-- .skill-section -->
<!-- PORTFOLIO SECTION -->
<section class="portfolio-section section-block" id="portfolio-section">
<div class="container">
<div class="section-title">
<h2>Portfolio</h2>
<p class="lead">
To translate technology into real solutions which add value to customers, and assist them in running and growing their businesses. To deliver innovative & cost-effective products and services to achive the vision whils providing an engaged work culture to our employees, all the time.
</p>
</div><!-- .section-title -->
<div class="button-group filter-button-group">
<button class="active" data-filter="*">All</button>
<button class="" data-filter=".programming">Website</button>
<button class="" data-filter=".development">Ux/Ui Design</button>
<button class="" data-filter=".design">App Development</button>
</div>
<div class="row grid" data-aos="fade-up" data-aos-duration="2000">
<div class="col-lg-4 col-md-6 grid-item programming">
<div class="box">
<img src="image/portfolio/vfa.png" alt="portfolio image">
<div class="box-content">
<span class="category">Website</span>
<h3 class="title">VFA - Ai Based farming Assistant </h3>
</div>
<div class="icon-box"><a href="#" data-bs-toggle="modal" data-bs-target="#portfolioModal6"><i class="bi bi-plus-lg"></i></a></div>
<!-- Modal -->
<div class="modal fade" id="portfolioModal6" tabindex="-1" aria-labelledby="portfolioModal6" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-dialog-centered modal-xl">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"><i class="bi bi-x"></i></button>
<div class="row item-content">
<div class="col-xl-12">
<img src="image/portfolio/user.png" alt="portfolio image">
</div>
<div class="col-xl-8">
<div class="content-wrapper">
<h2 class="item-title">VFA - Ai Based farming Assistant</h2>
<p>
VFA is a farming technology platform where we work with farmers directly. We at VFA follow our mission of bridging the gap between technology and agriculture in India with a vision to reach out to maximum Indian farmers.
We support farmers to “Grow efficiently, Grow more” through the systematic implementation of scientific techniques by providing critical information at appropriate times and regular monitoring.
</p>
<p>
At VFA, we understand each farmer’s requirements, we believe every farmer deserves a chance - the chance for a successful future with technology.
</p>
</div>
</div>
<div class="col-xl-4">
<div class="meta-wrapper">
<ul class="item-meta">
<li>Project Type: <span class="meta-value">Website</span></li>
<li>Client: <span class="meta-value">farmar</span></li>
<li>Duration: <span class="meta-value">24 Weeks</span></li>
<li>Task: <span class="meta-value">UI/UX, Frontend, Backend</span></li>
</ul>
</div> <!-- .meta-wrapper -->
</div>
</div> <!-- .row -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 grid-item development application">
<div class="box">
<img src="image/portfolio/helmet Shoping App.png" alt="portfolio image">
<div class="box-content">
<span class="category">UX/UI Design</span>
<h3 class="title">Digo Helmet Shopping App</h3>
</div>
<div class="icon-box"><a href="#" data-bs-toggle="modal" data-bs-target="#portfolioModal5"><i class="bi bi-plus-lg"></i></a></div>
<!-- Modal -->
<div class="modal fade" id="portfolioModal5" tabindex="-1" aria-labelledby="portfolioModal5" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-dialog-centered modal-xl">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"><i class="bi bi-x"></i></button>
<div class="row item-content">
<div class="col-xl-12">
<img src="image/portfolio/helmet Shoping App.png" alt="portfolio image">
</div>
<div class="col-xl-8">
<div class="content-wrapper">
<h2 class="item-title">Digo Helmet Shopping App</h2>
<p>
Digo Helmet Shopping App is a mobile application designed to provide an excellent user experience for customers looking to purchase helmets for various purposes such as motorcycle riding, cycling, or sports. The primary goal of this project is to create an intuitive and visually appealing user interface (UI) while ensuring a seamless user experience (UX) for potential helmet buyers.
</p>
</div>
</div>
<div class="col-xl-4">
<div class="meta-wrapper">
<ul class="item-meta">
<li>Project Type: <span class="meta-value">UX/UI Design</span></li>
<li>Duration: <span class="meta-value">2 Weeks</span></li>
<li>Task: <span class="meta-value">UI/UX</span></li>
</ul>
</div> <!-- .meta-wrapper -->
</div>
</div> <!-- .row -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 grid-item design application">
<div class="box">
<img src="image/portfolio/nms.png" alt="portfolio image">
<div class="box-content">
<span class="category"> Mobile Application</span>
<h3 class="title">Nilkanth Medical Store</h3>
</div>
<div class="icon-box"><a href="#" data-bs-toggle="modal" data-bs-target="#portfolioModal3"><i class="bi bi-plus-lg"></i></a></div>
<!-- Modal -->
<div class="modal fade" id="portfolioModal3" tabindex="-1" aria-labelledby="portfolioModal3" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-dialog-centered modal-xl">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"><i class="bi bi-x"></i></button>
<div class="row item-content">
<div class="col-xl-12">
<img src="image/portfolio/nms.png" alt="portfolio image">
</div>
<div class="col-xl-8">
<div class="content-wrapper">
<h2 class="item-title">Nilkanth Medical Store</h2>
<p>
NMS is a platform for buying medicine, Stationaries, cosmetics and other Herbal products at reasonable price from your Home.
NMS is an android application where users can purchase medicines and users are also allowed to give custom orders, it means if the product or medicine is not listed in application they can give customized order.
</p>
<p>
NMS is available only for Jamnagar and nearby Jamnagar locations. Users will get deliveries very fast within half an hour. Users can also view and get their Billing details and manage their account profile.
We at NMS we don’t ask users to share their any personal details we just ask to Mobile no and Delivery address in order to send product to users with in time. NMS will never share or sell any users data to any 3rd parties
</p>
</div>
</div>
<div class="col-xl-4">
<div class="meta-wrapper">
<ul class="item-meta">
<li>Project Type: <span class="meta-value">Mobile Application</span></li>
<li>Client: <span class="meta-value">Nilkanth Medical Store</span></li>
<li>Duration: <span class="meta-value">24 Weeks</span></li>
<li>Task: <span class="meta-value">UI/UX, Frontend, Backend</span></li>
</ul>
</div> <!-- .meta-wrapper -->
</div>
</div> <!-- .row -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 grid-item development application">
<div class="box">
<img src="image/portfolio/Fitness app.png" alt="portfolio image">
<div class="box-content">
<span class="category">UX/UI Design </span>
<h3 class="title">Fitness APP </h3>
</div>
<div class="icon-box"><a href="#" data-bs-toggle="modal" data-bs-target="#portfolioModal1"><i class="bi bi-plus-lg"></i></a></div>
<!-- Modal -->
<div class="modal fade" id="portfolioModal1" tabindex="-1" aria-labelledby="portfolioModal1" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-dialog-centered modal-xl">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"><i class="bi bi-x"></i></button>
<div class="row item-content">
<div class="col-xl-12">
<img src="image/portfolio/Fitness app.png" alt="portfolio image">
</div>
<div class="col-xl-8">
<div class="content-wrapper">
<h2 class="item-title">Fitness ux/ui design</h2>
<p>
Our fitness app is designed to provide users with a seamless and motivating experience to help them achieve their health and fitness goals. The app's user interface (UI) is intuitive and visually appealing, while its user experience (UX) prioritizes ease of use, personalization, and engagement.
</p>
<p>
In summary, our fitness app's UX/UI design is centered around creating a user-friendly, motivating, and personalized experience. Through its engaging visuals, intuitive navigation, and thoughtful features, the app empowers users to take charge of their health and fitness journey while enjoying a seamless digital experience.
</p>
</div>
</div>
<div class="col-xl-4">
<div class="meta-wrapper">
<ul class="item-meta">
<li>Project Type: <span class="meta-value">ux/ui Design</span></li>
<li>Duration: <span class="meta-value">1 Weeks</span></li>
<li>Task: <span class="meta-value">UI/UX</span></li>
</ul>
</div> <!-- .meta-wrapper -->
</div>
</div> <!-- .row -->
</div>
</div>
</div>
</div>
</div>
</div>
</div> <!-- .row -->
</div> <!-- .container -->
<div class="design-elements">
<img class="de-portfolio-1 elem-updown" src="image/design-elements/portfolio-element-1.png" alt="portfolio element 1">
<img class="de-portfolio-2 elem-updown" src="image/design-elements/portfolio-element-2.png" alt="portfolio element 2">
</div> <!-- .design-elements -->
</section> <!-- .portfolio-section -->
<!-- SERVICE SECTION -->
<section class="service-section section-block" id="service-section">
<div class="container">
<div class="section-title dark">
<h2>Service</h2>
<p class="lead">
To earn the respect (and eventually love) of your customers, you first have to respect those customers.
</p>
</div><!-- .section-title -->
<div class="row" >
<div class="col-xl-6 col-lg-6" data-aos="fade-up" data-aos-delay="200">
<div class="content-wrapper service-tilt" >
<div class="icon-box"><i class="pe-7s-phone"></i></div>
<h3>Mobile Apps</h3>
<p>
Offered services in Mobile app developement with robust attributes and
eye catching graphics.
</p>
</div>
</div>
<div class="col-xl-6 col-lg-6" data-aos="fade-up" data-aos-delay="400">
<div class="content-wrapper service-tilt" >
<div class="icon-box"><i class="pe-7s-display2"></i></div>
<h3>Web Development</h3>
<p>
Our web developers can create custom website/store solutions for your
business needs to boost your online presence.
</p>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div class="content-wrapper service-tilt" >
<div class="icon-box"><i class="pe-7s-notebook"></i></div>
<h3>Graphic Design</h3>
<p>
Graphic design is a craft where professionals create visual content to
communicate messages. By applying visual hierarchy and page layout
techniques, designers use typography and pictures to meet users'
specific needs to optimize the user experience.
</p>
</div>
</div>
<div class="col-xl-6 col-lg-6" >
<div class="content-wrapper service-tilt" data-tilt data-tilt-max="15">
<div class="icon-box"><i class="pe-7s-browser"></i></div>
<h3>Ux/Ui Design</h3>
<p>
User interface design or user interface engineering is the design of user
interfaces for machines and software, such as computers, home
appliances, mobile devices, and other electronic devices, with the focus
on maximizing usability and the user experience.
</p>
</div>
</div>
</div><!-- .row -->
</div> <!-- .container -->
<div class="design-elements">
<img class="de-service-1 elem-updown" src="image/design-elements/service-element-1.png" alt="service element 1">
<img class="de-service-2 elem-updown" src="image/design-elements/service-element-2.png" alt="service element 2">
<img class="de-service-3 elem-updown" src="image/design-elements/service-element-3.png" alt="service element 3">
</div> <!-- .design-elements -->
</section> <!-- .service-section -->
<!-- FEATURES SECTION -->
<section class="features-section section-block" id="features-section">
<div class="container">
<div class="row">
<div class="col-xl-6 image-block" data-aos="fade-right" data-aos-duration="1500">
<div class="image-wrapper">
<img class="img-fluid feature-photo" src="image/feature-photo2.png" alt="features photo" data-tilt data-tilt-max="10">
</div> <!-- .image-wrapper -->
</div> <!-- .image-block -->
<div class="col-xl-6 content-block" data-aos="fade-right" data-aos-duration="1500" data-aos-delay="400">
<h2 class="block-title"><span>Why work with me</span>Best result with top user experience</h2>
<p>
In a world filled with choices, what sets me apart? Here are a few compelling reasons why you should consider working with me :
</p>
<ul class="features-list">
<li class="d-flex align-items-start">
<div class="icon-block">
<div class="icon-box"><i class="pe-7s-umbrella"></i></div>
</div>
<div class="content-wrapper">
<h4>Lifetime Support</h4>
<p>
Lifetime Support is our unwavering commitment to being your trusted
partner throughout your journey. With our Lifetime Support service,
you can count on us to be there every step of the way..
</p>
</div>
</li>
<li class="d-flex align-items-start">
<div class="icon-block">
<div class="icon-box"><i class="pe-7s-box2"></i></div>
</div>
<div class="content-wrapper">
<h4>No Coding Required</h4>
<p>
With a focus on simplifying your tech-related needs and providing
hassle-free solutions, working with me means you can leave the
coding to the experts and focus on what you do best.
</p>
</div>
</li>
<li class="d-flex align-items-start">
<div class="icon-block">
<div class="icon-box"><i class="pe-7s-refresh-2"></i></div>
</div>
<div class="content-wrapper">
<h4>Regular Updates</h4>
<p>
In my commitment to providing exceptional service and ensuring a
successful collaboration, I prioritize clear and consistent communication
through regular updates.
</p>
</div>
</li>
</ul>
</div>
</div> <!-- .row -->
</div> <!-- .container -->
</section> <!-- .features-section -->
<!-- CONTACT SECTION -->
<section class="contact-section section-block" id="contact-section">
<div class="container">
<div class="section-title">
<h2>Get in Touch</h2>
<p class="lead">
Please fill out the form on this section to contact with me. Or call between
9:00 a.m. and 8:00 p.m. ET, Monday through Friday
</p>
</div><!-- .section-title -->
<div class="row contact-options">
<div class="col-lg-4 d-flex justify-content-xxl-center align-items-xl-center" data-aos="fade-down" data-aos-duration="1000">
<div class="icon-box"><i class="pe-7s-map-marker"></i></div>
<div class="content-wrapper">
<h4>Address</h4>
<address>juna nagna, Jamnagar, Gujarat, India 361007</address>
</div>
</div>
<div class="col-lg-4 d-flex justify-content-xxl-center align-items-xl-center" data-aos="fade-down" data-aos-duration="1000" data-aos-delay="200">
<div class="icon-box"><i class="pe-7s-call"></i></div>
<div class="content-wrapper">
<h4>Phone</h4>
<a href="#">+91 9265614292</a>
</div>
</div>
<div class="col-lg-4 d-flex justify-content-xxl-center align-items-xl-center" data-aos="fade-down" data-aos-duration="1000" data-aos-delay="400">
<div class="icon-box"><i class="pe-7s-mail"></i></div>
<div class="content-wrapper">
<h4>Email</h4>
<a href="#">[email protected]</a>
</div>
</div>
</div> <!-- .row -->
<div class="row">
<div class="col-lg-6" data-aos="fade-right" data-aos-duration="1000" data-aos-delay="600">
<div class="map-wrapper" id="mapwrapper">
<img src="./image/mape.png" class="img-fluid" s >
</div>
</div>
<div class="col-lg-6 form-block" data-aos="fade-right" data-aos-duration="1500" data-aos-delay="1100">
<h3>Write me a message</h3>
<form class="row g-3" id="fungi-contact" method="POST" action="#site-header">
<div class="col-md-6">
<div class="input-group mb-3">
<label for="inputName" class="form-label visually-hidden">Name</label>
<input type="text" class="form-control" id="inputName" placeholder="Name*" name="inputName" required>
</div>
</div>
<div class="col-md-6">
<div class="input-group mb-3">
<label for="inputEmail" class="form-label visually-hidden">Email</label>
<input type="email" class="form-control" id="inputEmail" name="inputEmail" placeholder="Email*" required>
</div>
</div>
<div class="col-md-12">
<label for="inputMessage" class="form-label visually-hidden">Message</label>
<textarea class="form-control mb-3" id="inputMessage" name="inputMessage" placeholder="Your message here*" required></textarea>
<button type="submit" class="btn btn-main" name="submit">Send Message</button>
</div>
</form> <!-- .row -->
</div>
</div> <!-- .row -->
</div> <!-- .container -->
<div class="design-elements">
<img class="de-contact-1 elem-updown" src="image/design-elements/contact-element-1.png" alt="contact element 1">
<img class="de-contact-2 elem-updown" src="image/design-elements/contact-element-2.png" alt="contact element 2">
</div> <!-- .design-elements -->
</section> <!-- .contact-section -->
<!-- SITE FOOTER -->
<footer class="site-footer" id="site-footer">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-lg-6 text-center branding-block">
<a class="footer-brand" href="#"><img src="image/logo.png" alt="Pori logo"></a>
<p>
</p>
<ul class="list-inline footer-social">
<li class="list-inline-item"><a href="https://www.facebook.com/rahul.kanzariya.3762/"><i class="fab fa-facebook-f"></i></a></li>
<li class="list-inline-item"><a href="https://twitter.com/i/flow/login?redirect_after_login=%2FRahulKanjariy18"><i class="fab fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/rahul-kanjariya-6672411ab/"><i class="fab fa-linkedin"></i></a></li>
<li class="list-inline-item"><a href="https://www.instagram.com/_rahul_9265/"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</div> <!-- .row -->
<div class="back-to-top"><a href="#site-header"><i class="bi bi-box-arrow-up"></i></a></div>
<div class="row footer-bottom">
<div class="col-md-6">
<p>Developed with love by © 2023 <strong>Rahul kanjariya</strong></p>
</div>
<div class="col-md-6">
<ul class="list-inline text-md-end">
<li class="list-inline-item"><a href="#">Terms & Condition</a></li>
<li class="list-inline-item"><a href="#">Privacy Policy</a></li>
</ul>
</div>
</div> <!-- .footer-bottom -->
</div> <!-- .container -->
</footer> <!-- .site-footer -->
<script src="js/jquery.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/swiper-bundle.min.js"></script>
<script src="js/leaflet.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.counterup.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/jquery.preloadinator.min.js"></script>
<script src="js/vanilla-tilt.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>