-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
833 lines (786 loc) · 25.1 KB
/
index.html
File metadata and controls
833 lines (786 loc) · 25.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Darshan V — CS Engineer</title>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:wght@300;400;500&family=Instrument+Serif:ital@0;1&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0a0f;
--surface: #111118;
--border: #1e1e2e;
--accent: #7fffb2;
--accent2: #5bc8f5;
--accent3: #ff6b6b;
--text: #e8e8f0;
--muted: #6a6a8a;
--card: #13131f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: 'DM Mono', monospace;
overflow-x: hidden;
cursor: none;
}
/* Custom cursor */
.cursor {
position: fixed;
width: 12px; height: 12px;
background: var(--accent);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transform: translate(-50%, -50%);
transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
mix-blend-mode: difference;
}
.cursor-ring {
position: fixed;
width: 40px; height: 40px;
border: 1px solid rgba(127,255,178,0.4);
border-radius: 50%;
pointer-events: none;
z-index: 9998;
transform: translate(-50%, -50%);
transition: all 0.15s ease;
}
/* Noise overlay */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 1000;
opacity: 0.4;
}
/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0;
padding: 1.5rem 4rem;
display: flex; justify-content: space-between; align-items: center;
z-index: 100;
background: linear-gradient(to bottom, rgba(10,10,15,0.95), transparent);
backdrop-filter: blur(10px);
}
.nav-logo {
font-family: 'Syne', sans-serif;
font-weight: 800;
font-size: 1.2rem;
color: var(--accent);
letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
color: var(--muted);
text-decoration: none;
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
/* HERO */
#hero {
min-height: 100vh;
display: flex; flex-direction: column; justify-content: center;
padding: 0 4rem;
position: relative;
overflow: hidden;
}
.hero-grid-bg {
position: absolute; inset: 0;
background-image:
linear-gradient(rgba(127,255,178,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(127,255,178,0.03) 1px, transparent 1px);
background-size: 60px 60px;
animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
0% { transform: translateY(0); }
100% { transform: translateY(60px); }
}
.hero-tag {
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 1.5rem;
display: flex; align-items: center; gap: 0.75rem;
animation: fadeUp 0.8s ease 0.2s both;
}
.hero-tag::before {
content: '';
display: inline-block;
width: 30px; height: 1px;
background: var(--accent);
}
.hero-name {
font-family: 'Syne', sans-serif;
font-size: clamp(4rem, 10vw, 9rem);
font-weight: 800;
line-height: 0.9;
letter-spacing: -0.04em;
animation: fadeUp 0.8s ease 0.4s both;
}
.hero-name .stroke {
-webkit-text-stroke: 1px var(--text);
color: transparent;
}
.hero-name .filled { color: var(--text); }
.hero-subtitle {
font-family: 'Instrument Serif', serif;
font-style: italic;
font-size: clamp(1.2rem, 3vw, 2rem);
color: var(--muted);
margin-top: 1.5rem;
animation: fadeUp 0.8s ease 0.6s both;
}
.hero-subtitle span { color: var(--accent2); font-style: normal; }
.hero-cta {
display: flex; gap: 1rem; margin-top: 3rem;
animation: fadeUp 0.8s ease 0.8s both;
}
.btn {
padding: 0.75rem 2rem;
font-family: 'DM Mono', monospace;
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
text-decoration: none;
border-radius: 2px;
transition: all 0.2s;
cursor: none;
}
.btn-primary {
background: var(--accent);
color: var(--bg);
font-weight: 500;
}
.btn-primary:hover {
background: transparent;
color: var(--accent);
outline: 1px solid var(--accent);
transform: translateY(-2px);
}
.btn-ghost {
border: 1px solid var(--border);
color: var(--muted);
}
.btn-ghost:hover {
border-color: var(--accent);
color: var(--accent);
transform: translateY(-2px);
}
.hero-scroll {
position: absolute;
bottom: 2rem; left: 4rem;
display: flex; align-items: center; gap: 1rem;
color: var(--muted); font-size: 0.7rem; letter-spacing: 0.1em;
text-transform: uppercase;
animation: fadeUp 1s ease 1.2s both;
}
.scroll-line {
width: 40px; height: 1px;
background: var(--muted);
animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
0%, 100% { width: 40px; }
50% { width: 60px; background: var(--accent); }
}
.hero-stats {
position: absolute;
right: 4rem; bottom: 4rem;
display: flex; flex-direction: column; gap: 1.5rem;
animation: fadeUp 0.8s ease 1s both;
}
.stat { text-align: right; }
.stat-num {
font-family: 'Syne', sans-serif;
font-size: 2rem;
font-weight: 800;
color: var(--accent);
line-height: 1;
}
.stat-label { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
@keyframes fadeUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
/* SECTION STYLES */
section { padding: 8rem 4rem; }
.section-label {
font-size: 0.65rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
display: flex; align-items: center; gap: 1rem;
margin-bottom: 1rem;
}
.section-label::after {
content: '';
flex: 1;
height: 1px;
background: var(--border);
max-width: 80px;
}
.section-title {
font-family: 'Syne', sans-serif;
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 800;
letter-spacing: -0.03em;
line-height: 1;
margin-bottom: 4rem;
}
/* ABOUT */
#about { background: var(--surface); }
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
align-items: start;
}
.about-text p {
color: var(--muted);
line-height: 1.9;
font-size: 0.85rem;
margin-bottom: 1.5rem;
}
.about-text p strong { color: var(--text); }
.skills-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.skill-category {
background: var(--card);
border: 1px solid var(--border);
padding: 1.5rem;
border-radius: 4px;
transition: border-color 0.2s;
}
.skill-category:hover { border-color: var(--accent); }
.skill-cat-title {
font-size: 0.65rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 1rem;
font-weight: 500;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.skill-tag {
background: rgba(127,255,178,0.05);
border: 1px solid rgba(127,255,178,0.15);
color: var(--text);
padding: 0.25rem 0.6rem;
border-radius: 2px;
font-size: 0.65rem;
letter-spacing: 0.05em;
}
/* PROJECTS */
#projects { background: var(--bg); }
.projects-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.project-card {
background: var(--card);
border: 1px solid var(--border);
padding: 2rem;
border-radius: 4px;
position: relative;
overflow: hidden;
transition: border-color 0.3s, transform 0.3s;
cursor: none;
}
.project-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, var(--accent), var(--accent2));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}
.project-card:hover::before { transform: scaleX(1); }
.project-card:hover { border-color: rgba(127,255,178,0.2); transform: translateY(-4px); }
.project-num {
font-family: 'Syne', sans-serif;
font-size: 3rem;
font-weight: 800;
color: rgba(127,255,178,0.06);
position: absolute;
top: 1rem; right: 1.5rem;
line-height: 1;
pointer-events: none;
}
.project-icon {
width: 40px; height: 40px;
background: rgba(127,255,178,0.08);
border: 1px solid rgba(127,255,178,0.2);
border-radius: 4px;
display: flex; align-items: center; justify-content: center;
font-size: 1.2rem;
margin-bottom: 1.5rem;
}
.project-title {
font-family: 'Syne', sans-serif;
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: var(--text);
}
.project-desc {
color: var(--muted);
font-size: 0.78rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}
.project-tech {
display: flex; flex-wrap: wrap; gap: 0.4rem;
margin-bottom: 1.5rem;
}
.tech-tag {
font-size: 0.6rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent2);
border: 1px solid rgba(91,200,245,0.2);
padding: 0.2rem 0.5rem;
border-radius: 2px;
}
.project-link {
font-size: 0.68rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--accent);
text-decoration: none;
display: inline-flex; align-items: center; gap: 0.4rem;
transition: gap 0.2s;
}
.project-link:hover { gap: 0.7rem; }
/* EDUCATION */
#education { background: var(--surface); }
.edu-timeline { display: flex; flex-direction: column; gap: 2rem; max-width: 700px; }
.edu-card {
display: grid;
grid-template-columns: 80px 1fr;
gap: 2rem;
align-items: start;
}
.edu-year {
font-family: 'Syne', sans-serif;
font-size: 0.7rem;
font-weight: 700;
color: var(--accent);
letter-spacing: 0.05em;
padding-top: 0.2rem;
}
.edu-content {
background: var(--card);
border: 1px solid var(--border);
padding: 1.5rem 2rem;
border-radius: 4px;
transition: border-color 0.2s;
}
.edu-content:hover { border-color: var(--accent); }
.edu-degree {
font-family: 'Syne', sans-serif;
font-weight: 700;
font-size: 1rem;
margin-bottom: 0.3rem;
}
.edu-school { color: var(--muted); font-size: 0.78rem; margin-bottom: 0.5rem; }
.edu-grade {
font-size: 0.7rem;
color: var(--accent);
background: rgba(127,255,178,0.08);
border: 1px solid rgba(127,255,178,0.2);
padding: 0.2rem 0.6rem;
border-radius: 2px;
display: inline-block;
}
/* CERTIFICATIONS */
#certifications { background: var(--bg); }
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cert-card {
background: var(--card);
border: 1px solid var(--border);
padding: 2rem;
border-radius: 4px;
display: flex; align-items: flex-start; gap: 1.5rem;
transition: border-color 0.3s, transform 0.2s;
}
.cert-card:hover { border-color: var(--accent2); transform: translateY(-2px); }
.cert-badge {
width: 44px; height: 44px;
background: rgba(91,200,245,0.1);
border: 1px solid rgba(91,200,245,0.3);
border-radius: 4px;
display: flex; align-items: center; justify-content: center;
font-size: 1.3rem;
flex-shrink: 0;
}
.cert-name {
font-family: 'Syne', sans-serif;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 0.3rem;
}
.cert-issuer { color: var(--muted); font-size: 0.72rem; }
/* CONTACT */
#contact {
background: var(--surface);
text-align: center;
padding: 8rem 4rem;
}
.contact-big {
font-family: 'Syne', sans-serif;
font-size: clamp(3rem, 8vw, 7rem);
font-weight: 800;
letter-spacing: -0.04em;
line-height: 1;
margin-bottom: 1.5rem;
}
.contact-big .outline {
-webkit-text-stroke: 1px rgba(127,255,178,0.4);
color: transparent;
}
.contact-sub { color: var(--muted); font-size: 0.85rem; max-width: 400px; margin: 0 auto 3rem; line-height: 1.8; }
.contact-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.contact-link {
display: flex; align-items: center; gap: 0.6rem;
color: var(--muted);
text-decoration: none;
font-size: 0.78rem;
padding: 0.75rem 1.5rem;
border: 1px solid var(--border);
border-radius: 2px;
transition: all 0.2s;
cursor: none;
}
.contact-link:hover {
color: var(--accent);
border-color: var(--accent);
transform: translateY(-2px);
}
/* FOOTER */
footer {
padding: 2rem 4rem;
border-top: 1px solid var(--border);
display: flex; justify-content: space-between; align-items: center;
color: var(--muted); font-size: 0.68rem; letter-spacing: 0.08em;
}
/* SCROLL REVEAL */
.reveal {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
/* RESPONSIVE */
@media (max-width: 768px) {
nav { padding: 1.5rem 2rem; }
.nav-links { display: none; }
#hero, section { padding: 4rem 2rem; }
.hero-name { font-size: 4rem; }
.about-grid { grid-template-columns: 1fr; gap: 3rem; }
.projects-grid { grid-template-columns: 1fr; }
.cert-grid { grid-template-columns: 1fr; }
.hero-stats { display: none; }
footer { flex-direction: column; gap: 1rem; text-align: center; }
}
</style>
</head>
<body>
<div class="cursor" id="cursor"></div>
<div class="cursor-ring" id="cursorRing"></div>
<!-- NAV -->
<nav>
<div class="nav-logo">DV/</div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#certifications">Certs</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- HERO -->
<section id="hero">
<div class="hero-grid-bg"></div>
<div class="hero-tag">Available for internships · 2026</div>
<h1 class="hero-name">
<div class="filled">Darshan</div>
<div class="stroke"> V.</div>
</h1>
<p class="hero-subtitle">
B.Tech CSE · <span>AI/ML Enthusiast</span> · Full-Stack Builder
</p>
<div class="hero-cta">
<a href="#projects" class="btn btn-primary">View Projects</a>
<a href="mailto:darshan.v040@gmail.com" class="btn btn-ghost">Get In Touch</a>
</div>
<div class="hero-scroll">
<div class="scroll-line"></div>
Scroll to explore
</div>
<div class="hero-stats">
<div class="stat">
<div class="stat-num">4</div>
<div class="stat-label">Projects Built</div>
</div>
<div class="stat">
<div class="stat-num">96.8%</div>
<div class="stat-label">Class XII Score</div>
</div>
<div class="stat">
<div class="stat-num">2nd</div>
<div class="stat-label">Year Student</div>
</div>
</div>
</section>
<!-- ABOUT -->
<section id="about">
<div class="section-label">About me</div>
<h2 class="section-title reveal">Who I Am</h2>
<div class="about-grid">
<div class="about-text reveal">
<p>I'm <strong>Darshan V</strong>, a 2nd year B.Tech Computer Science student at <strong>Amrita Vishwa Vidyapeetham, Coimbatore</strong>. I'm passionate about building things that sit at the intersection of intelligent systems and real-world applications.</p>
<p>From crafting <strong>fraud detection algorithms</strong> using graph traversal to building <strong>RAG-powered investment analysts</strong> with vector search — I love working on projects that push the boundary of what code can do.</p>
<p>Currently seeking <strong>internship opportunities</strong> in Software Development or AI/ML to sharpen my skills and contribute to impactful products.</p>
</div>
<div class="skills-grid reveal">
<div class="skill-category">
<div class="skill-cat-title">Languages</div>
<div class="skill-tags">
<span class="skill-tag">Python</span>
<span class="skill-tag">Java</span>
<span class="skill-tag">C</span>
<span class="skill-tag">JavaScript</span>
<span class="skill-tag">MySQL</span>
<span class="skill-tag">Haskell</span>
</div>
</div>
<div class="skill-category">
<div class="skill-cat-title">Web & Tools</div>
<div class="skill-tags">
<span class="skill-tag">HTML5</span>
<span class="skill-tag">CSS3</span>
<span class="skill-tag">FastAPI</span>
<span class="skill-tag">Git</span>
<span class="skill-tag">Linux</span>
<span class="skill-tag">Arduino</span>
</div>
</div>
<div class="skill-category">
<div class="skill-cat-title">AI / ML</div>
<div class="skill-tags">
<span class="skill-tag">Machine Learning</span>
<span class="skill-tag">Generative AI</span>
<span class="skill-tag">RAG</span>
<span class="skill-tag">FAISS</span>
<span class="skill-tag">Ollama</span>
<span class="skill-tag">NetworkX</span>
</div>
</div>
<div class="skill-category">
<div class="skill-cat-title">Concepts</div>
<div class="skill-tags">
<span class="skill-tag">DSA</span>
<span class="skill-tag">OOP</span>
<span class="skill-tag">Graph Theory</span>
<span class="skill-tag">IoT</span>
<span class="skill-tag">RL</span>
</div>
</div>
</div>
</div>
</section>
<!-- PROJECTS -->
<section id="projects">
<div class="section-label">What I've built</div>
<h2 class="section-title reveal">Projects</h2>
<div class="projects-grid">
<div class="project-card reveal">
<div class="project-num">01</div>
<div class="project-icon">🔐</div>
<h3 class="project-title">Cryptocurrency Fraud Detection</h3>
<p class="project-desc">A fraud detection system using advanced data structures — hash tables, bloom filters, and graph traversal — to identify suspicious transactions. Features velocity detection, multi-factor risk scoring, and transaction network visualization.</p>
<div class="project-tech">
<span class="tech-tag">Python</span>
<span class="tech-tag">NetworkX</span>
<span class="tech-tag">Graph Traversal</span>
<span class="tech-tag">Bloom Filters</span>
</div>
<a href="https://github.com/darshan-v040" class="project-link">View on GitHub →</a>
</div>
<div class="project-card reveal">
<div class="project-num">02</div>
<div class="project-icon">🚢</div>
<h3 class="project-title">AI-Powered Battleship Game</h3>
<p class="project-desc">An intelligent Battleship game implementing divide & conquer ship placement and probability-based targeting. Uses DFS graph traversal for ship elimination and optimized attack strategies on bounded grids.</p>
<div class="project-tech">
<span class="tech-tag">Python</span>
<span class="tech-tag">DFS</span>
<span class="tech-tag">AI Strategy</span>
<span class="tech-tag">Algorithms</span>
</div>
<a href="https://github.com/darshan-v040" class="project-link">View on GitHub →</a>
</div>
<div class="project-card reveal">
<div class="project-num">03</div>
<div class="project-icon">📈</div>
<h3 class="project-title">AI Investment Analyst — RAG System</h3>
<p class="project-desc">A Retrieval-Augmented Generation system aggregating startup funding data via automated web scrapers. Built with a FastAPI backend, FAISS vector search, and Ollama LLM integration for contextual investor query answering.</p>
<div class="project-tech">
<span class="tech-tag">FastAPI</span>
<span class="tech-tag">FAISS</span>
<span class="tech-tag">Ollama LLM</span>
<span class="tech-tag">RAG</span>
<span class="tech-tag">Python</span>
</div>
<a href="https://github.com/darshan-v040" class="project-link">View on GitHub →</a>
</div>
<div class="project-card reveal">
<div class="project-num">04</div>
<div class="project-icon">🌱</div>
<h3 class="project-title">Smart Irrigation & Env. Monitoring</h3>
<p class="project-desc">An IoT-based automated irrigation system using ESP32 for real-time monitoring of soil moisture, temperature, and humidity. Implements intelligent pump control, LCD feedback, and ThingSpeak cloud monitoring.</p>
<div class="project-tech">
<span class="tech-tag">ESP32</span>
<span class="tech-tag">IoT</span>
<span class="tech-tag">Arduino</span>
<span class="tech-tag">ThingSpeak</span>
</div>
<a href="https://github.com/darshan-v040" class="project-link">View on GitHub →</a>
</div>
</div>
</section>
<!-- EDUCATION -->
<section id="education">
<div class="section-label">My academic journey</div>
<h2 class="section-title reveal">Education</h2>
<div class="edu-timeline">
<div class="edu-card reveal">
<div class="edu-year">2024 – NOW</div>
<div class="edu-content">
<div class="edu-degree">B.Tech — Computer Science & Engineering</div>
<div class="edu-school">Amrita Vishwa Vidyapeetham · Coimbatore, India</div>
<span class="edu-grade">2nd Year · Currently Pursuing</span>
</div>
</div>
<div class="edu-card reveal">
<div class="edu-year">2024</div>
<div class="edu-content">
<div class="edu-degree">Class XII — Senior School</div>
<div class="edu-school">Yuvabharathi Public School · CBSE</div>
<span class="edu-grade">96.8%</span>
</div>
</div>
<div class="edu-card reveal">
<div class="edu-year">2022</div>
<div class="edu-content">
<div class="edu-degree">Class X — Secondary School</div>
<div class="edu-school">Yuvabharathi Public School · CBSE</div>
<span class="edu-grade">94%</span>
</div>
</div>
</div>
</section>
<!-- CERTIFICATIONS -->
<section id="certifications">
<div class="section-label">Credentials</div>
<h2 class="section-title reveal">Certifications</h2>
<div class="cert-grid">
<div class="cert-card reveal">
<div class="cert-badge">🎓</div>
<div>
<div class="cert-name">Git & GitHub Version Control</div>
<div class="cert-issuer">Udemy · 2024</div>
</div>
</div>
<div class="cert-card reveal">
<div class="cert-badge">🤖</div>
<div>
<div class="cert-name">Getting Started with Artificial Intelligence</div>
<div class="cert-issuer">IBM SkillsBuild · 2024</div>
</div>
</div>
</div>
</section>
<!-- CONTACT -->
<section id="contact">
<div class="contact-big reveal">
Let's <span class="outline">Build</span><br>Together.
</div>
<p class="contact-sub reveal">I'm always excited to connect with fellow developers, potential mentors, and companies looking for a motivated intern. Reach out!</p>
<div class="contact-links reveal">
<a href="mailto:darshan.v040@gmail.com" class="contact-link">
<span>✉</span> darshan.v040@gmail.com
</a>
<a href="https://github.com/darshan-v040" class="contact-link" target="_blank">
<span>⌥</span> GitHub Profile
</a>
<a href="tel:7010897071" class="contact-link">
<span>☏</span> 7010897071
</a>
</div>
</section>
<!-- FOOTER -->
<footer>
<span>© 2026 Darshan V — Coimbatore, India</span>
<span>Built with HTML · CSS · JS</span>
</footer>
<script>
// Custom cursor
const cursor = document.getElementById('cursor');
const ring = document.getElementById('cursorRing');
let mouseX = 0, mouseY = 0, ringX = 0, ringY = 0;
document.addEventListener('mousemove', e => {
mouseX = e.clientX; mouseY = e.clientY;
cursor.style.left = mouseX + 'px';
cursor.style.top = mouseY + 'px';
});
function animateRing() {
ringX += (mouseX - ringX) * 0.12;
ringY += (mouseY - ringY) * 0.12;
ring.style.left = ringX + 'px';
ring.style.top = ringY + 'px';
requestAnimationFrame(animateRing);
}
animateRing();
document.querySelectorAll('a, button').forEach(el => {
el.addEventListener('mouseenter', () => {
cursor.style.transform = 'translate(-50%, -50%) scale(2)';
cursor.style.background = 'var(--accent2)';
});
el.addEventListener('mouseleave', () => {
cursor.style.transform = 'translate(-50%, -50%) scale(1)';
cursor.style.background = 'var(--accent)';
});
});
// Scroll reveal
const reveals = document.querySelectorAll('.reveal');
const observer = new IntersectionObserver(entries => {
entries.forEach((entry, i) => {
if (entry.isIntersecting) {
setTimeout(() => entry.target.classList.add('visible'), i * 80);
}
});
}, { threshold: 0.1 });
reveals.forEach(el => observer.observe(el));
</script>
</body>
</html>