-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
915 lines (853 loc) · 37.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
<!DOCTYPE html>
<html lang="en">
<head>
<!--===== Meta Tag =====-->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Runaway - Personal Portfolio HTML Template">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="business, agency, blog, cv, creative, html, one page, personal, portfolio, resume, responsive, bootstrap, photography, designer, developer">
<meta name="author" content="root">
<!-- Css Links
==================================================-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="fonts/flaticon.css">
<link rel="stylesheet" href="css/plugins.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/color.css" id="color-change">
<!-- Favicon
==================================================-->
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon.ico">
<!-- Title
==================================================-->
<title>Raj Valand</title>
</head>
<body id="top" class="page-load" >
<!-- Start Back to top
=================================================-->
<a href="#" id="scroll" style="display: none;"><span></span></a>
<!-- End Back to top
==================================================-->
<!-- Preloader
==================================================-->
<div class="preloader">
<div class="lds-css ng-scope">
<div class="lds-spinner" >
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<!-- Wrapper Start
==================================================-->
<div id="page_wrapper">
<div class="row">
<!-- Start Nav Menu
==============================================-->
<header id="particles-header" class="main_nav">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light w-100">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link active" href="#top">Home<span class="sr-only">(current)</span></a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#skill">Skill</a></li>
<li class="nav-item"><a class="nav-link" href="#services">Services</a></li>
<li class="nav-item"><a class="nav-link" href="#portfolio">Project</a></li>
<li class="nav-item"><a class="nav-link" href="#testimonial">Reviews</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</nav>
</div>
</header>
<!-- End Nav Menu
==================================================-->
<!-- Start Main Banner
==================================================-->
<section id="particles-js" style="background: url(images/slider/raj.png) no-repeat bottom center; width: 100%; height: 100vh;">
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-md-12 col-lg-12 home-content text-left">
<span class="pb_5 banner_title color_primary">Hey There!</span>
<div class="mainbanner_content">
<span class="pb_5 banner_title color_primary">I'm Raj Valand!</span>
<h1 class="cd-headline clip is-full-width text-uppercase">
<span class="color_primary">I am a</span>
<span class="cd-words-wrapper color_default">
<b class="is-visible">Full Stack Web Developer.</b>
<b>Block-Chain Developer.</b>
</span>
</h1>
<p class="color_primary mb_30"></p>
<a class="btn btn-default" href="resume.html">Download CV</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Main Banner
==================================================-->
<!-- Start About
===================================================-->
<section id="about" class="py_80 full_row bg_white">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="section_title_1 text-center mx-auto pb_60 wow animated slideInUp">
<h2 class="title text-uppercase"><span class="line_double mx-auto color_default">about</span>about myself</h2>
<span class="sub_title"></span>
</div>
</div>
</div>
<div class="about_one">
<div class="row">
<div class="col-md-7 col-lg-7">
<div class="myself color_secondery wow animated fadeInLeft">
<p>I am a final year Bachelor's student at R.N.G.P.I.T( F.E.T.R) , Interested in Decentralized Systems, Ethereum , Block-Chain ,Databases and Machine Learning. Also like solving theoretical problems.
</p>
<p>I also interested in making new things and always try to make it on my own logic and methods. I quite keen on making a unique impact of my self. Love to work in team and always willing to meet new people.</p>
</div>
<div class="personal_info">
<div class="row">
<div class="col-md-12 col-lg-6">
<ul>
<li><span class="color_secondery">Name :</span> Raj Valand</li>
<li><span class="color_secondery">Email :</span> [email protected]</li>
<li><span class="color_secondery">Phone :</span> +91 94261 55072</li>
</ul>
</div>
<div class="col-md-12 col-lg-6">
<ul>
<li><span class="color_secondery">Date of Birth :</span> 14 December 1998</li>
<li><span class="color_secondery">Blood Group :</span> B+</li>
<li><span class="color_secondery">Address :</span> At Po : Timba , Surat , Gujarat ,India.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-lg-5">
<div class="profile_img personal_video wow animated fadeInRight"></div>
<img style="height: 380px; width: 450px ; margin-left: 100px;" src="images/about/033.png" alt="image">
<div class="loader">
<div class="loader-inner ball-scale-multiple"></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End About
===================================================-->
<!-- Start Skill
===================================================-->
<section id="skill" class="py_80 bg_secondery full_row" style="background-color: black ;color: blanchedalmond; ">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="section_title_1 text-center mx-auto pb_60 wow animated slideInUp">
<h2 style="color: blanchedalmond;" class="title text-uppercase"><span class="line_double mx-auto color_default">Skill</span>Langauge skill</h2>
<span class="sub_title"></span>
</div>
</div>
</div>
<div class="my_skill" style="color: blanchedalmond;">
<div class="row">
<div class="col-md-12 col-lg-6">
<div class="about_myskill color_secondery wow animated slideInLeft">
<h2 style="color: blanchedalmond;" class="color_primary">Some talk about my Technical skill</h2>
<p class="pt_15"> I have rich knowledge of basics , Fundamentals and have good grip on coding as well in Python3 and C/C++. </p>
<p class="pt_15">On the other hand , In design skill perspective , I can make variety of things by using HTML/CSS on websites. React js is also one of the best programming skill that i practically using properly.
Additionally , i am familiar with Django , Flask ,php , .Net , Node js ,Web3.js.,Ethereum. </p>
</div>
</div>
<div class="col-md-12 col-lg-6">
<div class="skill-progress wow animated slideInRight">
<div class="prgs-bar fact-counter"> <span>PYTHON</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="80">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemax="100"> </div>
</div>
</div>
<div class="prgs-bar fact-counter"> <span>C/C++</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="55">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="55" aria-valuemax="100"> </div>
</div>
</div>
<div class="prgs-bar fact-counter"> <span>HTML/CSS</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="70">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemax="100"> </div>
</div>
</div>
<div class="prgs-bar fact-counter"> <span>Javascript</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="60">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemax="100"> </div>
</div>
</div>
<div class="prgs-bar fact-counter"> <span>React Js</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="60">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemax="100"> </div>
</div>
</div>
<div class="skill-progress wow animated slideInRight">
<div class="prgs-bar fact-counter"> <span>Java</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="30">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="30" aria-valuemax="100"> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Start Skill
===================================================-->
<section id="skill" class="py_80 bg_secondery full_row">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="section_title_1 text-center mx-auto pb_60 wow animated slideInUp">
<h2 class="title text-uppercase">Professional skill</h2>
<span class="sub_title"></span>
</div>
</div>
</div>
<div class="my_skill">
<div class="row">
<div class="col-md-12 col-lg-6">
<div class="about_myskill color_secondery wow animated slideInLeft">
<h2 class="color_primary">Some talk about my Professional skill</h2>
<p class="pt_15"> I clearly understand the difference between a boss and a leader , I consider Leadership as my one of the best professional skill as have lot of experience in that. </p>
<p class="pt_15"> As a Leader , I have developed a good Communication skill and the way to work with team.
I quite keen on solving theoretical problems in several ways and always excited to deal with unforseen real time problems. </p>
</div>
</div>
<div class="col-md-12 col-lg-6">
<div class="skill-progress wow animated slideInRight">
<div class="prgs-bar fact-counter"> <span>Communication</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="90">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemax="100"> </div>
</div>
</div>
<div class="prgs-bar fact-counter"> <span>Leadership</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="95">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemax="100"> </div>
</div>
</div>
<div class="prgs-bar fact-counter"> <span>Problem-Solving</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="90">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemax="100"> </div>
</div>
</div>
<div class="prgs-bar fact-counter"> <span>Team work</span>
<div class="progress count wow" data-wow-duration="0ms">
<div class="skill-percent"><span class="count-num" data-speed="3000" data-stop="85">0</span>%</div>
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemax="100"> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Skill
===================================================-->
<!-- Start Services
===================================================-->
<section id="services" class="py_80 full_row bg_white">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="section_title_1 text-center mx-auto pb_60 wow animated slideInUp">
<h2 class="title text-uppercase"><span class="line_double mx-auto color_default">services</span>What i do</h2>
<span class="sub_title"></span>
</div>
</div>
<div class="services_item1">
<div class="col-md-12 col-lg-12">
<div class="row">
<div class="col-md-6 col-lg-4">
<div class="service_two text-center pt_15 mb_30 wow animated slideInUp">
<div class="srv_item_number color_lightgray"><strong>01.</strong></div>
<h3 class="p_20 text-uppercase color_primary">Web Developement</h3>
<div class="srv_icon color_white"><span class="flaticon-website-design-symbol"></span></div>
<p> I like to design front-end and work with back-end of website. Especially i enjoy to interact user-interface with databases like mysql , mongodb and interact them using APIs.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="service_two text-center pt_15 mb_30 wow animated slideInUp">
<div class="srv_item_number color_lightgray"><strong>02.</strong></div>
<h3 class="p_20 text-uppercase color_primary">Block-Chain Developement</h3>
<div class="srv_icon color_white"><span class="flaticon-programming"></span></div>
<p>I fascinate towards decentralized application that create more complexity and requires core knowledge of fundamentals.</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="service_two text-center pt_15 mb_30 wow animated slideInUp">
<div class="srv_item_number color_lightgray"><strong>03.</strong></div>
<h3 class="p_20 text-uppercase color_primary">Programming</h3>
<div class="srv_icon color_white"><span class="flaticon-man-working-on-a-laptop-from-side-view"></span></div>
<p>Programming is consider as the fist language of computer students. I regular learn new fundamentals of coding , try to make my code efficient and also willing to take part in coding competition.</p>
</div>
</div>
<div class="col-md-6 col-lg-4" style="width: 500px;">
<div class="service_two text-center pt_15 mb_30 wow animated slideInUp" style="width: 500px; background-color: black; color: blanchedalmond;">
<h3 class="p_20 text-uppercase color_primary" style="background-color: blanchedalmond;">Work experience</h3>
<h3>Block-Chain Developer </h3>
: NGO Data Protection using Block-Chain technology
<br>Role:
<br> -> Full Stack developer
<br> -> Project Management <br>
<br> <h3>Android developer</h3>
: Hospital Management System
<br> Role:
<br> -> Android App development
<br><br> <h3> Asst. Genereal Secretary </h3> <h4> At R.N.G.P.I.T </h4>
Role:
<br> - Co-Coordinator of Techfest(RNGPIT)
<br> - Leadership
<br> - Event Management
</p>
<h3>
</h3>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="service_two text-center pt_15 mb_30 wow animated slideInUp"
style="width: 500px; margin-left: 200px; background-color: black; color: blanchedalmond;">
<h3 class="p_20 text-uppercase color_primary" style=" background-color: blanchedalmond;">Education</h3>
<h3>Primary schooling from S.S.S.M</h3>
<h4> Bardoli ,Surat</h4>
Complete my primary Education from this school <br><br>
<h3>Higher schooling from S.S.S.M</h3>
<h4> Bardoli ,Surat</h4>
Complete higher secondery education from this school.<br><br>
<h3>Computer Sci. & Engineering from R.N.G.P.I.T </h3>
<h4> Bardoli, Surat</h4>
<br>Currentlu persuing in final year of Computer science and engineering
</p>
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Services
===================================================-->
<section id="portfolio" class="py_80 full_row bg_white" style="background-color: black;">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="section_title_1 text-center mx-auto pb_60 wow animated slideInUp">
<h2 class="title text-uppercase"><span class="line_double mx-auto color_default">Project</span></h2>
<span class="sub_title"></span>
</div>
</div>
</div>
<div class="about_one">
<div class="row">
<div class="col-md-7 col-lg-7">
<div class="myself color_secondery wow animated fadeInLeft">
<h2>NGO Data protection using Block-Chain technology</h2>
<p>NGO(Non - government Organization) which aim is to tackle some issues of society and provide appropriate fund and service for it. NGO gets fund from donors.Nowadays , Donors are afraid to donate their money for NGO because of Lack of security and transparency in system. Corruption also play a major role in it.
</p> <br>
<p>We develop a system which provides end-to-end transparency and security to authorized user. In this system , donor can track their funds , can also able to analyze where the donation ends up and so on. By this way donor get the answers of such questions arise just beacuse of corruption and transparency and security.
</p><br>
<p>
Our Main goal to regain the trust of donor towards NGO so , they donate more and that will beneficial in development of Economic growth of any country.
</p>
</div>
</div>
<div class="col-md-5 col-lg-5">
<video style="height: 380px; width: 450px ; margin-left: 100px;" controls>
<source src="NGO.mp4" type="video/mp4"></video>
<div class="loader">
<div class="loader-inner ball-scale-multiple"></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Project
===================================================-->
<!-- Start Portfolio
===================================================-->
<!-- <section id="portfolio" class="py_80 bg_secondery full_row">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="section_title_1 text-center mx-auto pb_60 wow animated slideInUp">
<h2 class="title text-uppercase"><span class="line_double mx-auto color_default">Projects</span>Projects</h2>
<span class="sub_title">Interdum a etiam sagittis vehicula porta. Massa felis eros quam blandit nulla dolor habitant. Ullamcorper quis ornare et proin pellentesque.</span>
</div>
</div>
<div class="col-md-12 col-lg-12">
<div class="my_portfolio" id="tab-panel">
Filter
<div class="row">
<div class="col-md-12">
<div class="filters mb_30 w-100 text-center">
<ul class="filter-tabs mx-auto d-inline-block">
<li class="active filter" data-role="button" data-filter="all">All</li>
<li class="filter" data-role="button" data-filter=".design">Web Design</li>
<li class="filter" data-role="button" data-filter=".wordpress">Wordpress</li>
<li class="filter" data-role="button" data-filter=".development">Web Development</li>
<li class="filter" data-role="button" data-filter=".branding">Branding</li>
</ul>
</div>
</div>
</div>
<div class="filter-list">
<div class="portfolio-items">
<div class="row">
<div class="column mix mix_all graphic development wordpress mb_30 col-md-4 col-lg-4">
<div class="default-portfolio-item">
<a href="images/portfolio/01.jpg" data-fancybox="gallery">
<img src="images/portfolio/01.jpg" alt="image" />
<div class="overlay-box">
<span><i class="fa fa-eye" aria-hidden="true"></i></span>
<div class="tag">
<ul>
<li>Web Development,</li>
<li>wordpress</li>
</ul>
</div>
</div>
</a>
</div>
</div>
<div class="column mix mix_all graphic branding mb_30 col-md-4 col-lg-4">
<div class="default-portfolio-item">
<a href="images/portfolio/02.jpg" data-fancybox="gallery">
<img src="images/portfolio/02.jpg" alt="image" />
<div class="overlay-box">
<span><i class="fa fa-eye" aria-hidden="true"></i></span>
<div class="tag">
<ul>
<li>Branding,</li>
<li>Wordpress</li>
</ul>
</div>
</div>
</a>
</div>
</div>
<div class="column mix mix_all design wordpress development mb_30 col-md-4 col-lg-4">
<div class="default-portfolio-item">
<a href="images/portfolio/03.jpg" data-fancybox="gallery">
<img src="images/portfolio/03.jpg" alt="image" />
<div class="overlay-box">
<span><i class="fa fa-eye" aria-hidden="true"></i></span>
<div class="tag">
<ul>
<li>Web Design,</li>
<li>Web Development</li>
</ul>
</div>
</div>
</a>
</div>
</div>
<div class="column mix mix_all graphic wordpress branding mb_30 col-md-4 col-lg-4">
<div class="default-portfolio-item">
<a href="images/portfolio/04.jpg" data-fancybox="gallery">
<img src="images/portfolio/04.jpg" alt="image" />
<div class="overlay-box">
<span><i class="fa fa-eye" aria-hidden="true"></i></span>
<div class="tag">
<ul>
<li>Branding,</li>
<li>wordpress</li>
</ul>
</div>
</div>
</a>
</div>
</div>
<div class="column mix mix_all graphic design branding mb_30 col-md-4 col-lg-4">
<div class="default-portfolio-item">
<a href="images/portfolio/05.jpg" data-fancybox="gallery">
<img src="images/portfolio/05.jpg" alt="image" />
<div class="overlay-box">
<span><i class="fa fa-eye" aria-hidden="true"></i></span>
<div class="tag">
<ul>
<li>Web Design,</li>
<li>wordpress</li>
</ul>
</div>
</div>
</a>
</div>
</div>
<div class="column mix mix_all development wordpress design mb_30 col-md-4 col-lg-4">
<div class="default-portfolio-item">
<a href="images/portfolio/06.jpg" data-fancybox="gallery">
<img src="images/portfolio/06.jpg" alt="image" />
<div class="overlay-box">
<span><i class="fa fa-eye" aria-hidden="true"></i></span>
<div class="tag">
<ul>
<li>Web Design,</li>
<li>Web Development</li>
</ul>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Portfolio
===================================================-->
<!-- Start Testimonial
===================================================-->
<section id="testimonial" class="py_80 full_row bg_white">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="section_title_1 text-center mx-auto pb_60 wow animated slideInUp">
<h2 ><span class="line_double mx-auto color_default">Reviews</span><br>My team members Say’s</h2>
</div>
</div>
<div class="col-md-12 col-lg-12">
<div class="testimonial_item owl-carousel wow animated slideInUp">
<div class="member_feedback p_30 color_secondery">
<div class="client_img"><img src="images/testimonial/vashi.png" alt="image"></div>
<div class="star d-inline-block mt_30 color_default">
<ul>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
</ul>
</div>
<h5 class="color_primary mb_15">Yash Vashi</h5>
<p>It is my pleasure and honor to recommend you for playing a very valuable role in our project. You delivered spectacular result in project using your excellent skills. I am confident that your experience and personal qualities will make u more powerful in future.
</p>
</div>
<div class="member_feedback p_30 color_secondery">
<div class="client_img"><img src="images/testimonial/kesha.png" alt="image"></div>
<div class="star d-inline-block mt_30 color_default">
<ul>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
</ul>
</div>
<h5 class="color_primary mb_15">Kesha Shah</h5>
<p>Having you on the team makes a huge difference. It’s really admirable how you always see project through from conception to completion. You play a crucial role in our project’s success. Fantastic work!
</p>
</div>
<div class="member_feedback p_30 color_secondery">
<div class="client_img"><img src="images/testimonial/dharmin.png" alt="image"></div>
<div class="star d-inline-block mt_30 color_default">
<ul>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
</ul>
</div>
<h5 class="color_primary mb_15">Dharminsinh Rathod</h5>
<p>Mr.Raj is true professional who is very analytical and well structured in his work. He has mastered majority of the new concepts like ethereum , Block-Chain , smart contract and many more. We have worked together on one project called "NGO using blockchain" ,which involves the most cutting edge technologies. The matter of fact is that Mr.Raj has been a pillar of project and take it to the position it deserves. Also he has knowledge of python and cloud computing too. All in all
I would recommend him as a good project leader / head or we can say technical chief .</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Testimonial
===================================================-->
<!-- Start Contact
===================================================-->
<section id="contact" class="py_80 full_row bg_white">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="section_title_1 text-center mx-auto pb_60 wow animated slideInUp">
<h2 class="title text-uppercase"><span class="line_double mx-auto color_default">contact</span>Get In Touch</h2>
</div>
</div>
<div class="col-md-12 col-lg-12">
<div class="row">
<div class="col-md-4 col-lg-4">
<div class="contact_info wow animated fadeInLeft">
<ul>
<li>
<div class="contact_text">
<h6 class="font-weight-bold color_primary">Email</h6>
<span class="color_secondery">[email protected]</span>
</div>
</li>
<li>
<div class="contact_text">
<h6 class="font-weight-bold color_primary">Phone</h6>
<span class="color_secondery">+91 94261 55072</span>
</div>
</li>
<li>
<div class="contact_text">
<h6 class="font-weight-bold color_primary">Address</h6>
<span class="color_secondery">At Po: Timba,<br> Surat ,Gujarat , India</span>
</div>
</li>
<li>
<div class="contact_text">
<h6 class="font-weight-bold color_primary">Website</h6>
<span class="color_secondery">www.yourdomain.com</span>
</div>
</li>
</ul>
</div>
<div class="socal_media_2 mt_15 d-inline-block">
<ul>
<li><a href="https://www.facebook.com/rajz.timba"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="https://twitter.com/RajZz14"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/in/raj-valand-477658139/"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="https://www.instagram.com/mr_sachinz_man__/?hl=en"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-8 col-lg-8">
<form class="form contact_message wow animated fadeInRight" action="https://formspree.io/mrgybyda" method="post">
<div class="row">
<div class="col-md-6 col-lg-6">
<div class="form-group">
<input class="form-control" type="text" name="name" placeholder="Your Name" />
</div>
</div>
<div class="col-md-6 col-lg-6">
<div class="form-group">
<input class="form-control" type="email" name="email" placeholder="Email Address" />
</div>
</div>
<div class="col-md-12 col-lg-12">
<div class="form-group">
<input class="form-control" type="text" name="subject" placeholder="Subject"/>
</div>
</div>
<div class="col-md-12 col-lg-12">
<div class="form-group">
<textarea class="form-control" name="message" rows="7" placeholder="Message"></textarea>
</div>
</div>
<div class="col-md-12 col-lg-12">
<div class="form-group">
<input class="btn btn-default" id="send" value="Send Massage" type="submit"/>
</div>
</div>
<div class="col-md-12 col-lg-12">
<div class="error-handel">
<div id="success">Your email sent Successfully, Thank you.</div>
<div id="error"> Error occurred while sending email. Please try again later.</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact
===================================================-->
<!-- Start Footer
===================================================-->
<footer class="p_20 color_primary bg_secondery text-center full_row">
<div class="container">
<div class="row" style="margin-left: 500px;">
<div style="size: 20px;"><h4>Clients Visited: </h4><a href='https://www.counter12.com'><img style="" src='https://www.counter12.com/img-yYb975A0aw1Ww67d-26.gif' border='0' alt='web counter free'></a><script type='text/javascript' src='https://www.counter12.com/ad.js?id=yYb975A0aw1Ww67d'></script></div>
</div>
</div>
</footer>
<!-- End Footer
===================================================-->
</div>
</div>
<!-- Wrapper End
=======================================================-->
<!-- Js Links
===================================================-->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/particles.min.js"></script>
<script src="js/custom.js"></script>
<script>
$(document).ready(function() {
// Smoothscroll js
//=========================================
$("a").on('click', function(event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 1000, function(){
window.location.hash = hash;
});
}
});
});
// particles.js config
//=====================================================
particlesJS("particles-js", {
"particles": {
"number": {
"value": 100,
"density": {
"enable": true,
"value_area": 1000
}
},
"color": {
"value": ["#e40045", "#58636d"]
},
"shape": {
"type": "polygon",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 4
}
},
"opacity": {
"value": 0.6,
"random": true,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.4,
"sync": false
}
},
"size": {
"value": 15,
"random": true,
"anim": {
"enable": false,
"speed": 4,
"size_min": 1,
"sync": false
}
},
"line_linked": {
"enable": false,
"distance": 150,
"color": "#ffffff",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 5,
"direction": "left",
"random": true,
"straight": true,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": false,
"mode": "grab"
},
"onclick": {
"enable": true,
"mode": "repulse"
},
"resize": true
},
"modes": {
"grab": {
"distance": 200,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
});
</script>
</body>
</html>