-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1096 lines (998 loc) · 54.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<!-- Page Title -->
<title>Raaj Yedida</title>
<!-- Meta Tags -->
<meta name="description" content="Website of Raaj Yedida">
<meta name="keywords" content="resume, portfolio, personal page, cv">
<meta name="author" content="Raaj Yedida">
<!-- Twitter Meta Tags-->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@RaajYedida">
<meta name="twitter:title" content="Check out my website">
<meta name="twitter:image" content="https://i.ibb.co/jZRx8JT/Twitter-Link-Click.png">
<!-- Viewport Meta-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Template Favicon & Icons Start -->
<link rel="icon" href="img/favicon/favicon.ico" sizes="any">
<link rel="icon" href="img/favicon/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="img/favicon/apple-touch-icon.png">
<link rel="manifest" href="img/favicon/manifest.webmanifest">
<!-- Template Favicon & Icons End -->
<!-- Facebook Metadata Start -->
<meta property="og:image:height" content="1200">
<meta property="og:image:width" content="1200">
<meta property="og:title" content="Check out my website">
<meta property="og:description" content="Portfolio Website of Raaj Yedida">
<meta property="og:url" content="https://raajyedida.com/index.html">
<meta property="og:image" content="https://i.ibb.co/jZRx8JT/Twitter-Link-Click.png">
<!-- Facebook Metadata End -->
<!-- Template Styles Start -->
<link rel="stylesheet" href="css/loaders/loader.css">
<link rel="stylesheet" type="text/css" href="css/plugins.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Template Styles End -->
<!-- Custom Browser Color Start -->
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#dcdce7">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#111111">
<meta name="msapplication-navbutton-color" content="#111111">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Custom Browser Color End -->
</head>
<body>
<!-- Loader Start -->
<div id="loader" class="loader">
<div id="loaderContent" class="loader__content">
<div class="loader__shadow"></div>
<div class="loader__box"></div>
</div>
</div>
<!-- Loader End -->
<!-- Header Start -->
<header id="header" class="header d-flex justify-content-between">
<!-- Navigation Menu Start -->
<div class="header__navigation">
<nav id="menu" class="menu">
<ul class="menu__list d-flex justify-content-start">
<li class="menu__item">
<a class="menu__link btn" href="#home">
<span class="menu__caption">Home</span>
<i class="ph-bold ph-house-simple"></i>
</a>
</li>
<li class="menu__item">
<a class="menu__link btn" href="#portfolio">
<span class="menu__caption">Portfolio</span>
<i class="ph-bold ph-squares-four"></i>
</a>
</li>
<li class="menu__item">
<a class="menu__link btn" href="#about">
<span class="menu__caption">About Me</span>
<i class="ph-bold ph-user"></i>
</a>
</li>
<li class="menu__item">
<a class="menu__link btn" href="#resume">
<span class="menu__caption">Resume</span>
<i class="ph-bold ph-article"></i>
</a>
</li>
<li class="menu__item">
<a class="menu__link btn" href="#contact">
<span class="menu__caption">Contact</span>
<i class="ph-bold ph-envelope"></i>
</a>
</li>
</ul>
</nav>
</div>
<!-- Navigation Menu End -->
<!-- Header Controls Start -->
<div class="header__controls d-flex justify-content-end">
<button id="color-switcher" class="color-switcher header__switcher btn" type="button" role="switch" aria-label="light/dark mode" aria-checked="true"></button>
<a id="notify-trigger" class="header__trigger btn" href="mailto:[email protected]?subject=Message%20from%20your%20site">
<span class="trigger__caption">Let's Talk</span>
<i class="ph-bold ph-chat-dots"></i>
</a>
</div>
<!-- Header Controls End -->
</header>
<!-- Header End -->
<!-- Avatar Side Block Start -->
<div id="avatar" class="avatar">
<div class="avatar__container d-flex flex-column justify-content-lg-between">
<!-- image and logo -->
<div class="avatar__block">
<div class="avatar__logo d-flex align-items-center">
<div class="logo__image">
<!-- Your Logo Here!!! -->
<img src="img/logo.svg" alt="Name Logo">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
width="85px" height="85px" viewBox="0 0 85 85"
xml:space="preserve" class="gradient-fill">
</svg>
</div>
<div class="logo__caption">
<p>Raaj<br>Yedida</p>
</div>
</div>
<div class="avatar__image">
<img src="img/avatars/Goku Image.JPG" alt="Main Page Avatar">
</div>
</div>
<!-- data caption #1 -->
<div class="avatar__block">
<h6>
<small class="top">Interests:</small>
UI/UX design<br>Frontend development<br> Finance
</h6>
</div>
<!-- data caption #2 -->
<div class="avatar__block">
<h6>
<small class="top">Based in:</small>
Dallas, TX
</h6>
</div>
<!-- socials and CTA button -->
<div class="avatar__block">
<div class="avatar__socials">
<ul class="socials-square d-flex justify-content-between">
<li class="socials-square__item">
<a class="socials-square__link btn" href="https://www.x.com/RaajYedida" target="_blank"><i class="ph-bold ph-twitter-logo"></i></a>
</li>
<li class="socials-square__item">
<a class="socials-square__link btn" href="https://www.github.com/RaajYedida" target="_blank"><i class="ph-bold ph-github-logo"></i></a>
</li>
<li class="socials-square__item">
<a class="socials-square__link btn" href="https://discordapp.com/users/1153506740407652474" target="_blank"><i class="ph-bold ph-discord-logo"></i></a>
</li>
<li class="socials-square__item">
<a class="socials-square__link btn" href="sms:+14694933192" target="_blank"><i class="ph-bold ph-chat-circle"></i></a>
</li>
<li class="socials-square__item">
<a class="socials-square__link btn" href="https://www.behance.net/RaajY" target="_blank"><i class="ph-bold ph-behance-logo"></i></a>
</li>
</ul>
</div>
<div class="avatar__btnholder">
<a class="btn btn-default btn-fullwidth btn-hover btn-hover-accent" href="#contact" target="_blank">
<span class="btn-caption">Let's Connect!</span>
</a>
</div>
</div>
</div>
</div>
<!-- Avatar Side Block End -->
<!-- Page Content Start -->
<div id="content" class="content">
<div class="content__wrapper">
<!-- Intro Section Start -->
<section id="home" class="main intro">
<!-- Headline Start -->
<div id="headline" class="headline d-flex align-items-start flex-column" data-speed="1">
<p class="headline__subtitle animate-headline">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="13px" height="13px" viewBox="0 0 13 13" fill="currentColor">
<path fill="currentColor" d="M5.6,12.6c-0.5-0.8-0.7-2.4-1.7-3.5c-1-1-2.7-1.2-3.5-1.7C-0.1,7-0.1,6,0.4,5.6c0.8-0.5,2.3-0.6,3.5-1.8
C5,2.8,5.1,1.2,5.6,0.4C6-0.1,7-0.1,7.4,0.4c0.5,0.8,0.7,2.4,1.8,3.5c1.2,1.2,2.6,1.2,3.5,1.7c0.6,0.4,0.6,1.4,0,1.7
C11.8,7.9,10.2,8,9.1,9.1c-1,1-1.2,2.7-1.7,3.5C7,13.1,6,13.1,5.6,12.6z"/>
</svg>
<span>Hello!</span>
</p>
<h1 class="headline__title animate-headline">I'm Raaj Yedida👋<br>Freshman Finance/CS Student</h1>
<div class="headline__btnholder d-flex flex-column flex-sm-row">
<a class="btn mobile-vertical btn-default btn-hover btn-hover-accent-mobile animate-headline" href="#portfolio">
<span class="btn-caption">My Portfolio</span>
<i class="ph-bold ph-squares-four"></i>
</a>
<a class="btn mobile-vertical btn-default btn-hover btn-hover-outline-mobile animate-headline" href="/files/CS Resume.pdf">
<span class="btn-caption">Download My Resume</span>
<i class="ph-bold ph-download-simple"></i>
</a>
</div>
</div>
<!-- Headline End -->
<!-- Scroll Button Start -->
<div class="rotating-btn">
<a href="#portfolio" class="rotating-btn__link slide-down">
<!-- SVG rotating text -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve"
class="animate-rotation" data-value="360">
<defs>
<path id="textPath" d="M110,59.5c0,27.6-22.4,50-50,50s-50-22.4-50-50s22.4-50,50-50S110,31.9,110,59.5z"/>
</defs>
<g>
<use xlink:href="#textPath" fill="none"></use>
<text>
<!-- button text here!!! -->
<textPath xlink:href="#textPath">Scroll for More * Scroll for More * </textPath>
</text>
</g>
</svg>
<!-- arrow icon -->
<i class="ph-bold ph-arrow-down"></i>
</a>
</div>
<!-- Scroll Button End -->
</section>
<!-- Intro Section End -->
<!-- Portfolio Section Start -->
<section id="portfolio" class="inner inner-first portfolio">
<!-- Content Block - H2 Section Title Start -->
<div class="content__block section-grid-title">
<p class="h2__subtitle animate-in-up">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="13px" height="13px" viewBox="0 0 13 13" fill="currentColor">
<path fill="currentColor" d="M5.6,12.6c-0.5-0.8-0.7-2.4-1.7-3.5c-1-1-2.7-1.2-3.5-1.7C-0.1,7-0.1,6,0.4,5.6c0.8-0.5,2.3-0.6,3.5-1.8
C5,2.8,5.1,1.2,5.6,0.4C6-0.1,7-0.1,7.4,0.4c0.5,0.8,0.7,2.4,1.8,3.5c1.2,1.2,2.6,1.2,3.5,1.7c0.6,0.4,0.6,1.4,0,1.7
C11.8,7.9,10.2,8,9.1,9.1c-1,1-1.2,2.7-1.7,3.5C7,13.1,6,13.1,5.6,12.6z"/>
</svg>
<span>Portfolio</span>
</p>
<h2 class="h2__title animate-in-up">Check out my featured projects</h2>
</div>
<div class="alert" style="font-family: 'Syne', sans-serif;">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
I lost all my projects while switching PC's as I dont have any backups, I have added placeholders.
</div>
<!-- Content Block - H2 Section Title End -->
<!-- Content Block - Works Gallery Start -->
<div class="content__block grid-block">
<div class="container-fluid px-0 inner__gallery">
<div class="row gx-0 my-gallery" itemscope itemtype="http://schema.org/ImageGallery">
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 gallery__item grid-item animate-card-2" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1400x1400/3c3c3c/636363" data-image="https://dummyimage.com/800x800/3c3c3c/636363" class="gallery__link" itemprop="contentUrl" data-size="1400x1400">
<img src="https://dummyimage.com/800x800/3c3c3c/636363" class="gallery__image" itemprop="thumbnail" alt="Image description">
</a>
<figcaption class="gallery__descr" itemprop="caption description">
<h5>Isometric House</h5>
<div class="card__tags d-flex flex-wrap">
<span class="rounded-tag opposite">Graphic Design</span>
<span class="rounded-tag opposite">3D Render</span>
</div>
<p class="small">Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 gallery__item grid-item animate-card-2" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1400x1400/3c3c3c/636363" data-image="https://dummyimage.com/800x800/3c3c3c/636363" class="gallery__link" itemprop="contentUrl" data-size="1400x1400">
<img src="https://dummyimage.com/800x800/3c3c3c/636363" class="gallery__image" itemprop="thumbnail" alt="Image description">
</a>
<figcaption class="gallery__descr opposite" itemprop="caption description">
<h5 class="opposite">Dashboard Template</h5>
<div class="card__tags d-flex flex-wrap">
<span class="rounded-tag">UI Design</span>
<span class="rounded-tag">Figma</span>
</div>
<p class="small">Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio,
a mollis ipsum tristique eu.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 gallery__item grid-item animate-card-2" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1400x1400/3c3c3c/636363" data-image="https://dummyimage.com/800x800/3c3c3c/636363" class="gallery__link" itemprop="contentUrl" data-size="1400x1400">
<img src="https://dummyimage.com/800x800/3c3c3c/636363" class="gallery__image" itemprop="thumbnail" alt="Image description">
</a>
<figcaption class="gallery__descr opposite" itemprop="caption description">
<h5 class="opposite">Notification Icon</h5>
<div class="card__tags d-flex flex-wrap">
<span class="rounded-tag">Graphic Design</span>
<span class="rounded-tag">3D Render</span>
</div>
<p class="small">Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio,
a mollis ipsum tristique eu.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 gallery__item grid-item animate-card-2" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1400x1400/3c3c3c/636363" data-image="https://dummyimage.com/800x800/3c3c3c/636363" class="gallery__link" itemprop="contentUrl" data-size="1400x1400">
<img src="https://dummyimage.com/800x800/3c3c3c/636363" class="gallery__image" itemprop="thumbnail" alt="Image description">
</a>
<figcaption class="gallery__descr " itemprop="caption description">
<h5>Smart Penguin</h5>
<div class="card__tags d-flex flex-wrap">
<span class="rounded-tag opposite">UI Design</span>
<span class="rounded-tag opposite">UX Design</span>
</div>
<p class="small">Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio,
a mollis ipsum tristique eu.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
</div>
</div>
</div>
<!-- Content Block - Works Gallery End -->
</section>
<!-- Portfolio Section End -->
<!-- About Section Start -->
<section id="about" class="inner about">
<!-- Content Block - H2 Section Title Start -->
<div class="content__block section-grid-title">
<p class="h2__subtitle animate-in-up">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="13px" height="13px" viewBox="0 0 13 13" fill="currentColor">
<path fill="currentColor" d="M5.6,12.6c-0.5-0.8-0.7-2.4-1.7-3.5c-1-1-2.7-1.2-3.5-1.7C-0.1,7-0.1,6,0.4,5.6c0.8-0.5,2.3-0.6,3.5-1.8
C5,2.8,5.1,1.2,5.6,0.4C6-0.1,7-0.1,7.4,0.4c0.5,0.8,0.7,2.4,1.8,3.5c1.2,1.2,2.6,1.2,3.5,1.7c0.6,0.4,0.6,1.4,0,1.7
C11.8,7.9,10.2,8,9.1,9.1c-1,1-1.2,2.7-1.7,3.5C7,13.1,6,13.1,5.6,12.6z"/>
</svg>
<span>About Me</span>
</p>
<h2 class="h2__title animate-in-up">Tackling complex problems with practical solutions</h2>
</div>
<!-- Content Block - H2 Section Title End -->
<!-- Content Block - Achievements Start -->
<div class="content__block grid-block">
<div class="achievements d-flex flex-column flex-md-row align-items-md-stretch">
<!-- achievements single item -->
<div class="achievements__item d-flex flex-column grid-item animate-card-3">
<div class="achievements__card">
<p class="achievements__number">40+</p>
<p class="achievements__descr">Happy clients</p>
</div>
</div>
<!-- achievements single item -->
<div class="achievements__item d-flex flex-column grid-item animate-card-3">
<div class="achievements__card">
<p class="achievements__number">4+</p>
<p class="achievements__descr">Years of experience</p>
</div>
</div>
<!-- achievements single item -->
<div class="achievements__item d-flex flex-column grid-item animate-card-3">
<div class="achievements__card">
<p class="achievements__number">50+</p>
<p class="achievements__descr">Projects done</p>
</div>
</div>
</div>
</div>
<!-- Content Block - Achievements End -->
<!-- Content Block - About Me Data Start -->
<div class="content__block grid-block block-large">
<div class="container-fluid p-0">
<div class="row g-0 justify-content-between">
<!-- About Me Description Start -->
<div class="col-12 col-xl-8 grid-item about-descr">
<p class="about-descr__text animate-in-up">
I'm a Finance/CS student with four years of experience in UI/UX and Graphic Design.
My focus has been on crafting user-centric interfaces and visually engaging content.
I have worked on over 50 projects, partnered with 40+ clients across various sectors.
More recently, I have been getting into Computer Science, specifically focusing on C++
and object-oriented design principles to broaden my technical toolkit.
<!--a href="#0" class="text-link">next question</a>
is 'Who in the world am I?' Ah, that's the great puzzle!
</p>
<p class="about-descr__text animate-in-up"-->
</p>
<div class="btn-group about-descr__btnholder animate-in-up">
<a class="btn mobile-vertical btn-default btn-hover btn-hover-accent" href="#0">
<span class="btn-caption">Download CV</span>
<i class="ph-bold ph-download-simple"></i>
</a>
</div>
</div>
<!-- About Me Description End -->
<!-- About Me Information Start -->
<div class="col-12 col-xl-4 grid-item about-info">
<div class="about-info__item animate-in-up">
<h6>
<small class="top">Name</small>
Raaj Yedida
</h6>
</div>
<div class="about-info__item animate-in-up">
<h6>
<small class="top">Phone</small>
<a class="text-link-bold" href="tel:+14694933192">+1 469-493-3192</a>
</h6>
</div>
<div class="about-info__item animate-in-up">
<h6>
<small class="top">Email</small>
<a class="text-link-bold" href="mailto:[email protected]?subject=Message%20from%20your%20site">[email protected]</a>
</h6>
</div>
<div class="about-info__item animate-in-up">
<h6>
<small class="top">Location</small>
<a class="text-link-bold" target="_blank">Dallas, TX</a>
</h6>
</div>
</div>
<!-- About Me Information End -->
</div>
</div>
</div>
<!-- Content Block - About Me Data End -->
<!-- Content Block - Services Start -->
<div class="content__block grid-block">
<div class="container-fluid p-0">
<div class="row g-0 align-items-stretch cards">
<!-- services cards grid single item -->
<div class="col-12 col-md-6 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">Frontend<br>development</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<span class="rounded-tag tag-outline">UI/UX Design</span>
<span class="rounded-tag tag-outline">Design to Code</span>
</div>
<p class="small cards__text animate-in-up">I work with HTML/CSS, Framer and WordPress.</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="https://dummyimage.com/1200x900/4d4d4d/636363" alt="Service/Feature Image">
</div>
</div>
</div>
<!-- services grid cards single item -->
<div class="col-12 col-md-6 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">Digital art and graphic design</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<span class="rounded-tag tag-outline">Illustrations</span>
<span class="rounded-tag tag-outline">AI Experiments</span>
</div>
<p class="small cards__text animate-in-up">I use Adobe Photoshop, Fresco and Blender to create
illustrations and 3D renders for my clients and stocks.
</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="https://dummyimage.com/1200x900/4d4d4d/636363" alt="Service/Feature Image">
</div>
</div>
</div>
<!-- services grid cards single item -->
<div class="col-12 col-md-6 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">SEO/Digital marketing solutions</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<span class="rounded-tag tag-outline">Social Media</span>
<span class="rounded-tag tag-outline">Analytics</span>
</div>
<p class="small cards__text animate-in-up">Social media content plans, media monitoring, email and text messaging
and search engine optimization.
</p>
</div>
<div class="cards__image d-flex">
<img src="https://dummyimage.com/1200x900/4d4d4d/636363" alt="Service/Feature Image">
</div>
</div>
</div>
<!-- services grid cards single item -->
<div class="col-12 col-md-6 cards__item grid-item animate-card-2">
<div class="cards__card d-flex flex-column">
<div class="cards__descr">
<h4 class="cards__title animate-in-up">Brand<br>identity</h4>
<div class="cards__tags d-flex flex-wrap animate-in-up">
<span class="rounded-tag tag-outline">Logo Design</span>
<span class="rounded-tag tag-outline">Style Guides</span>
</div>
<p class="small cards__text animate-in-up">I help my clients to develop a personality and brand voice,
design the brand look and logo.
</p>
</div>
<div class="cards__image d-flex animate-in-up">
<img src="https://dummyimage.com/1200x900/4d4d4d/636363" alt="Service/Feature Image">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Content Block - Services End -->
</section>
<!-- About Section End -->
<!-- Resume Section Start -->
<section id="resume" class="inner resume">
<!-- Content Block - H2 Section Title Start -->
<div class="content__block block-large">
<p class="h2__subtitle animate-in-up">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="13px" height="13px" viewBox="0 0 13 13" fill="currentColor">
<path fill="currentColor" d="M5.6,12.6c-0.5-0.8-0.7-2.4-1.7-3.5c-1-1-2.7-1.2-3.5-1.7C-0.1,7-0.1,6,0.4,5.6c0.8-0.5,2.3-0.6,3.5-1.8
C5,2.8,5.1,1.2,5.6,0.4C6-0.1,7-0.1,7.4,0.4c0.5,0.8,0.7,2.4,1.8,3.5c1.2,1.2,2.6,1.2,3.5,1.7c0.6,0.4,0.6,1.4,0,1.7
C11.8,7.9,10.2,8,9.1,9.1c-1,1-1.2,2.7-1.7,3.5C7,13.1,6,13.1,5.6,12.6z"/>
</svg>
<span>Resume</span>
</p>
<h2 class="h2__title animate-in-up">Education and practical experience</h2>
</div>
<!-- Content Block - H2 Section Title End -->
<!-- Content Block - Education Start -->
<div class="content__block block-large">
<!-- H3 Block Start -->
<div class="section-h3">
<h3 class="h3__title animate-in-up">My education</h3>
</div>
<!-- H3 Block End -->
<!-- Education Lines Start -->
<div class="container-fluid p-0 resume-lines">
<!-- education single item -->
<div class="row g-0 resume-lines__item animate-in-up">
<div class="col-12 col-md-2">
<span class="resume-lines__date animate-in-up">2023 - Present</span>
</div>
<div class="col-12 col-md-5">
<h5 class="resume-lines__title animate-in-up">Bachelors in Finance and Computer Science</h5>
<p class="resume-lines__source animate-in-up">Issued by
<a href="#0" class="text-link-bold" target="_blank">University of North Texas</a>
</p>
</div>
<div class="col-12 col-md-5">
<p class="small resume-lines__descr animate-in-up">Pursuing a dual major in Finance and Computer Science, excpected graduation date is May, 2027</p>
</div>
</div>
<!-- Education Lines End -->
<!-- Content Block - Education End -->
<!-- Content Block - Experience Start -->
<div class="content__block block-large">
<!-- H3 Block Start -->
<div class="section-h3">
<h3 class="h3__title animate-in-up">Work experience</h3>
</div>
<!-- H3 Block End -->
<!-- Experience Lines Start -->
<div class="container-fluid p-0 resume-lines">
<!-- experience single item -->
<div class="row g-0 resume-lines__item animate-in-up">
<div class="col-12 col-md-2">
<span class="resume-lines__date animate-in-up">2023 - 2023</span>
</div>
<div class="col-12 col-md-5">
<h5 class="resume-lines__title animate-in-up">Junior Software Summer Intern</h5>
<p class="resume-lines__source animate-in-up">at
<a href="#0" class="text-link-bold" target="_blank">Efluen</a>
</p>
</div>
<div class="col-12 col-md-5">
<p class="small resume-lines__descr animate-in-up">I created original images for a range of digital and printed products.</p>
</div>
</div>
<!-- experience single item -->
<div class="row g-0 resume-lines__item animate-in-up">
<div class="col-12 col-md-2">
<span class="resume-lines__date animate-in-up">2020 - Present</span>
</div>
<div class="col-12 col-md-5">
<h5 class="resume-lines__title animate-in-up">Freelance Graphic Designer</h5>
<p class="resume-lines__source animate-in-up">at
<a href="#0" class="text-link-bold" target="_blank">UpWork</a>
</p>
</div>
<div class="col-12 col-md-5">
<p class="small resume-lines__descr animate-in-up">My job was to create advertisements, branding, signage and other media products as needed.</p>
</div>
</div>
<!-- experience single item -->
<div class="row g-0 resume-lines__item animate-in-up">
<div class="col-12 col-md-2">
<span class="resume-lines__date animate-in-up">2020 - Present</span>
</div>
<div class="col-12 col-md-5">
<h5 class="resume-lines__title animate-in-up">Freelance UI/UX Designer</h5>
<p class="resume-lines__source animate-in-up">at
<a class="text-link-bold" target="_blank">UpWork</a>
</p>
</div>
<div class="col-12 col-md-5">
<p class="small resume-lines__descr animate-in-up">My role is to create UI/UX experiences for SMB apps and websites and had to collaborate with software developers to deliver .</p>
</div>
</div>
</div>
<!-- Experience Lines End -->
</div>
<!-- Content Block - Experience End -->
<!-- Content Block - H3 Block Start -->
<div class="content__block">
<div class="section-h3 section-h3-grid">
<h3 class="h3__title animate-in-up">My favourite tools</h3>
</div>
</div>
<!-- Content Block - H3 Block End -->
<!-- Content Block - Tools List Start -->
<div class="content__block grid-block block-large">
<!-- Tools List Start -->
<div class="tools-cards d-flex justify-content-start flex-wrap">
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/icons/icon-photoshop.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Photoshop</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/icons/icon-figma.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Figma</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/icons/icon-illustrator.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Illustrator</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/icons/icon-sketch.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Sketch</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/icons/icon-blender.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">Blender</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/icons/icon-html.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">HTML5</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/icons/icon-css.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">CSS3</h6>
</div>
</div>
<!-- tools simgle item -->
<div class="tools-cards__item d-flex grid-item-s animate-card-5">
<div class="tools-cards__card">
<img class="tools-cards__icon animate-in-up" src="img/icons/icon-c++.svg" alt="Tools Icon">
<h6 class="tools-cards__caption animate-in-up">C++</h6>
</div>
</div>
</div>
<!-- Tools List End -->
</div>
<!-- Content Block - Tools List End -->
<!-- Content Block - H2 Block Start -->
<div class="content__block section-title">
<p class="h2__subtitle animate-in-up">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="13px" height="13px" viewBox="0 0 13 13" fill="currentColor">
<path fill="currentColor" d="M5.6,12.6c-0.5-0.8-0.7-2.4-1.7-3.5c-1-1-2.7-1.2-3.5-1.7C-0.1,7-0.1,6,0.4,5.6c0.8-0.5,2.3-0.6,3.5-1.8
C5,2.8,5.1,1.2,5.6,0.4C6-0.1,7-0.1,7.4,0.4c0.5,0.8,0.7,2.4,1.8,3.5c1.2,1.2,2.6,1.2,3.5,1.7c0.6,0.4,0.6,1.4,0,1.7
C11.8,7.9,10.2,8,9.1,9.1c-1,1-1.2,2.7-1.7,3.5C7,13.1,6,13.1,5.6,12.6z"/>
</svg>
<span>References</span>
</p>
<h2 class="h2__title animate-in-up">What others say about me</h2>
</div>
<!-- Content Block - H2 Block End -->
<!-- Content Block - References Slider Start -->
<div class="content__block">
<!-- References Slider Start -->
<div class="testimonials-slider">
<!-- slider main container -->
<div class="swiper-testimonials">
<!-- additional required wrapper -->
<div class="swiper-wrapper">
<!-- slides -->
<div class="swiper-slide">
<div class="testimonials-card animate-in-up">
<div class="testimonials-card__tauthor d-flex animate-in-up">
<div class="tauthor__avatar">
<img src="https://dummyimage.com/400x400/4d4d4d/636363" alt="Review Author">
</div>
<div class="tauthor__info d-flex flex-column justify-content-center">
<p class="tauthor__name">Ren</p>
<p class="tauthor__position">Owner of
<a class="text-link-bold" target="_blank">Love Sushi</a>
</p>
<div class="tauthor__rating d-flex">
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
</div>
</div>
</div>
<div class="testimonials-card__descr animate-in-up">
<p>Working with Raaj on the UI/UX design for our Love Sushi app was an incredible experience. From the beginning, Raaj immersed himself in understanding our brand, our customers, and the unique experience we wanted to create. </p>
</div>
<!--div class="testimonials-card__btnholder animate-in-up">
<a class="btn mobile-vertical btn-line btn-transparent slide-right" href="#0">
<span class="btn-caption">Project Page</span>
<i class="ph-bold ph-arrow-right"></i-->
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonials-card animate-in-up">
<div class="testimonials-card__tauthor d-flex animate-in-up">
<div class="tauthor__avatar">
<img src="https://dummyimage.com/400x400/4d4d4d/636363" alt="Review Author">
</div>
<div class="tauthor__info d-flex flex-column justify-content-center">
<p class="tauthor__name">Terry</p>
<p class="tauthor__position">Owner of
<a class="text-link-bold" target="_blank">Terry's Diner</a>
</p>
<div class="tauthor__rating d-flex">
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
<i class="ph-fill ph-star"></i>
</div>
</div>
</div>
<div class="testimonials-card__descr animate-in-up">
<p>After ten years, Raajs redesign of our website has been a game-changer. The new look has gotten alot of positive feedback from our customers.</p>
</div>
<div class="testimonials-card__btnholder animate-in-up">
<a class="btn mobile-vertical btn-line btn-transparent slide-right" href="#0">
<!--span class="btn-caption">Project Page</span>
<i class="ph-bold ph-arrow-right"></i-->
</a>
</div>
</div>
</div>
</div>
<!-- navigation buttons -->
<div class="swiper-button-prev mxd-slider-btn-square mxd-slider-btn-square-prev animate-in-up">
<a class="btn btn-square btn-square-s btn-outline slide-left" href="#0">
<i class="ph-bold ph-caret-left"></i>
</a>
</div>
<div class="swiper-button-next mxd-slider-btn-square mxd-slider-btn-square-next animate-in-up">
<a class="btn btn-square btn-square-s btn-outline slide-right" href="#0">
<i class="ph-bold ph-caret-right"></i>
</a>
</div>
</div>
</div>
<!-- Testimonials Slider End -->
</div>
<!-- Content Block - Testimonials Slider End -->
</section>
<!-- Resume Section End -->
<!-- Contact Section Start -->
<section id="contact" class="inner contact">
<!-- Content Block - H2 Section Title Start -->
<div class="content__block section-title">
<p class="h2__subtitle animate-in-up">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="13px" height="13px" viewBox="0 0 13 13" fill="currentColor">
<path fill="currentColor" d="M5.6,12.6c-0.5-0.8-0.7-2.4-1.7-3.5c-1-1-2.7-1.2-3.5-1.7C-0.1,7-0.1,6,0.4,5.6c0.8-0.5,2.3-0.6,3.5-1.8
C5,2.8,5.1,1.2,5.6,0.4C6-0.1,7-0.1,7.4,0.4c0.5,0.8,0.7,2.4,1.8,3.5c1.2,1.2,2.6,1.2,3.5,1.7c0.6,0.4,0.6,1.4,0,1.7
C11.8,7.9,10.2,8,9.1,9.1c-1,1-1.2,2.7-1.7,3.5C7,13.1,6,13.1,5.6,12.6z"/>
</svg>
<span>Contact</span>
</p>
<h2 class="h2__title animate-in-up">Let's make something awesome together!</h2>
</div>
<!-- Content Block - H2 Section Title End -->
<!-- Content Block - Contact Form Start -->
<div class="content__block grid-block block-grid-large">
<div class="form-container">
<!-- Reply Messages Start -->
<div class="form__reply centered text-center">
<i class="ph-bold ph-smiley reply__icon"></i>
<p class="reply__title">Done!</p>
<span class="reply__text">Thanks for your message. I'll get back as soon as possible.</span>
</div>
<!-- Reply Messages End -->
<!-- Contact Form Start -->
<form class="form contact-form" id="contact-form">
<!-- Hidden Required Fields -->
<input type="hidden" name="project_name" value="Starter Template">
<input type="hidden" name="admin_email" value="[email protected]">
<input type="hidden" name="form_subject" value="Contact Form Message">
<!-- END Hidden Required Fields-->
<div class="container-fluid p-0">
<div class="row gx-0">
<div class="col-12 col-md-6 form__item animate-in-up">
<input type="text" name="Name" placeholder="Your Name*" required>
</div>
<div class="col-12 col-md-6 form__item animate-in-up">
<input type="text" name="Company" placeholder="Company Name">
</div>
<div class="col-12 col-md-6 form__item animate-in-up">
<input type="email" name="E-mail" placeholder="Email Adress*" required>
</div>
<div class="col-12 col-md-6 form__item animate-in-up">
<input type="tel" name="Phone" placeholder="Phone Number*" required>
</div>
<div class="col-12 form__item animate-in-up">
<textarea name="Message" placeholder="A Few Words*" required></textarea>
</div>
<div class="col-12 form__item animate-in-up">
<button class="btn btn-default btn-hover btn-hover-accent" type="submit">
<span class="btn-caption">Send Message</span>
<i class="ph-bold ph-paper-plane-tilt"></i>
</button>
</div>
</div>
</div>
</form>
<!-- Contact Form End -->
</div>
</div>
<!-- Content Block - Contact Form End -->
<!-- Content Block - Socials Cards Start -->
<div class="content__block grid-block">
<div class="socials-cards d-flex justify-content-start flex-wrap">
<!-- socials item -->
<div class="socials-cards__item d-flex grid-item-s animate-card-5">
<div class="socials-cards__card">
<i class="ph-bold ph-twitter-logo"></i>
<a class="socials-cards__link" href="https://x.com/RaajYedida" target="_blank"></a>
</div>
</div>
<!-- socials item -->
<div class="socials-cards__item d-flex grid-item-s animate-card-5">
<div class="socials-cards__card">
<i class="ph-bold ph-github-logo"></i>
<a class="socials-cards__link" href="https://www.github.com/RaajYedida" target="_blank"></a>
</div>
</div>
<!-- socials item -->
<div class="socials-cards__item d-flex grid-item-s animate-card-5">
<div class="socials-cards__card">
<i class="ph-bold ph-discord-logo"></i>
<a class="socials-cards__link" href="https://discordapp.com/users/1153506740407652474" target="_blank"></a>
</div>
</div>
<!-- socials item -->
<div class="socials-cards__item d-flex grid-item-s animate-card-5">
<div class="socials-cards__card">
<i class="ph-bold ph-chat-circle"></i>
<a class="socials-cards__link" href="sms:+14694933192" target="_blank"></a>
</div>
</div>
<!-- socials item -->
<div class="socials-cards__item d-flex grid-item-s animate-card-5">
<div class="socials-cards__card">
<i class="ph-bold ph-behance-logo"></i>
<a class="socials-cards__link" href="https://www.behance.net/RaajY" target="_blank"></a>
</div>
</div>
</div>
</div>
<!-- Content Block - Socials Cards End -->
<!-- Content Block - Teaser Start -->
<div class="content__block">
<div class="teaser">
<p class="teaser__text animate-in-up">Want to know more about me? Tell me
about your project or just want to say hello?
<a class="text-link-bold" href="sms:+14694933192">Drop me a text!
</p>
</div>
</div>
<!-- Content Block - Teaser End -->
<!-- Content Block - Contact Data Start -->
<div class="content__block">
<div class="container-fluid p-0 contact-lines animate-in-up">
<div class="row g-0 contact-lines__item">
<!-- data item -->
<div class="col-12 col-md-4 contact-lines__data">
<p class="contact-lines__title animate-in-up">Location</p>
<p class="contact-lines__text animate-in-up">
<a class="text-link-bold" target="_blank">Dallas, Tx</a>
</p>
</div>
<!-- data item -->
<div class="col-12 col-md-4 contact-lines__data">
<p class="contact-lines__title animate-in-up">Phone</p>
<p class="contact-lines__text animate-in-up">
<a class="text-link-bold" href="tel:+12127089400">+1 469-493-3192</a>
</p>
</div>
<!-- data item -->
<div class="col-12 col-md-4 contact-lines__data">
<p class="contact-lines__title animate-in-up">Email</p>
<p class="contact-lines__text animate-in-up">
<a class="text-link-bold" href="mailto:[email protected]?subject=Message%20from%20your%20site">[email protected]</a>
</p>
</div>
</div>
</div>
</div>
<!-- Content Block - Contact Data End -->
</section>
<!-- Contact Section End -->
</div>
</div>
<!-- Page Content End -->
<!-- Root element of PhotoSwipe. Must have class pswp. -->
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<!-- Background of PhotoSwipe.
It's a separate element, as animating opacity is faster than rgba(). -->
<div class="pswp__bg"></div>
<!-- Slides wrapper with overflow:hidden. -->
<div class="pswp__scroll-wrap">