-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1196 lines (1148 loc) · 60.6 KB
/
index.html
File metadata and controls
1196 lines (1148 loc) · 60.6 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
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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>eOzka — Augmenting Sentient</title>
<meta name="description"
content="eOzka is a student-founded technology holding company building software that extends human capability — starting with tech, expanding into healthcare and agri-tech." />
<link
href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Syne:wght@400;500;600;700;800&family=DM+Mono:wght@300;400&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Custom cursor -->
<div id="cursor-dot"></div>
<div id="cursor-ring"></div>
<!-- Scroll progress bar -->
<div id="scroll-progress"></div>
<!-- Particle canvas -->
<canvas id="particle-canvas"></canvas>
<!-- ── NAV ── -->
<nav id="main-nav">
<a href="#" class="nav-logo">
<span class="nav-logo-text">
e
<svg class="hex-inline" width="22" height="25" viewBox="100 0 116 124" xmlns="http://www.w3.org/2000/svg">
<polygon points="158,6 206,34 206,88 158,116 110,88 110,34" fill="none" stroke="currentColor"
stroke-width="1.6" />
<line x1="158" y1="6" x2="140" y2="60" stroke="currentColor" stroke-width="1.2" opacity="0.6" />
<line x1="206" y1="34" x2="140" y2="60" stroke="currentColor" stroke-width="1.2" opacity="0.6" />
<line x1="206" y1="88" x2="140" y2="60" stroke="currentColor" stroke-width="1.2" opacity="0.6" />
<line x1="158" y1="116" x2="140" y2="60" stroke="currentColor" stroke-width="0.8" opacity="0.3" />
<line x1="110" y1="88" x2="140" y2="60" stroke="currentColor" stroke-width="0.8" opacity="0.3" />
<line x1="110" y1="34" x2="140" y2="60" stroke="currentColor" stroke-width="0.8" opacity="0.3" />
<line x1="158" y1="6" x2="176" y2="60" stroke="currentColor" stroke-width="0.8" opacity="0.3" />
<line x1="206" y1="34" x2="176" y2="60" stroke="currentColor" stroke-width="0.8" opacity="0.3" />
<line x1="206" y1="88" x2="176" y2="60" stroke="currentColor" stroke-width="0.8" opacity="0.3" />
<line x1="158" y1="116" x2="176" y2="60" stroke="currentColor" stroke-width="1.2" opacity="0.5" />
<line x1="110" y1="88" x2="176" y2="60" stroke="currentColor" stroke-width="1.2" opacity="0.5" />
<line x1="110" y1="34" x2="176" y2="60" stroke="currentColor" stroke-width="1.2" opacity="0.5" />
<circle cx="158" cy="60" r="7" fill="currentColor" />
</svg>
zka
</span>
<span class="nav-tagline">Augmenting Sentient.</span>
</a>
<ul class="nav-links" id="nav-menu">
<li><a href="#story">Story</a></li>
<li><a href="#about">About</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#ventures">Ventures</a></li>
<div class="nav-underline" id="nav-underline"></div>
</ul>
<div class="nav-actions">
<button id="theme-toggle" class="theme-btn" aria-label="Toggle Theme">
<svg id="theme-icon-sun" class="theme-icon sun" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path
d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z">
</path>
</svg>
<svg id="theme-icon-moon" class="theme-icon moon" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
</button>
<button id="mobile-menu-btn" class="mobile-menu-btn" aria-label="Open Menu">
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
</button>
</div>
</nav>
<!-- ── HERO ── -->
<section class="hero" id="hero">
<div class="hero-visual" id="hero-visual-container">
<canvas id="sentient-canvas"></canvas>
</div>
<div class="hero-content" style="position: relative; z-index: 2">
<p class="hero-eyebrow">
<neutral-case>eOzka</neutral-case> — Parent Holding Company
</p>
<h1 class="hero-headline">
Where ideas<br /><em style="color: var(--accent); text-transform: uppercase">become Impact.</em>
</h1>
<p class="hero-sub">
We believe great ideas need room to breathe. Our goal is to
<strong>support a family of independent companies across tech, health, and
farming</strong>, giving them the resources to grow on their own terms while
<strong>staying true to a shared set of values.</strong>
</p>
<div class="hero-ctas">
<a href="#products" class="btn-primary"><span>See Our Products</span></a>
<a href="#story" class="btn-secondary">Our Story</a>
</div>
<!-- <span class="hero-tagline">To Add - Hero-Tagline.</span> -->
</div>
<div class="scroll-hint" data-next="#story">
<div class="scroll-arrow-wrap">
<svg class="scroll-arrow" width="36" height="36" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M7 13L12 18L17 13" stroke="var(--accent)" stroke-width="2.5" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M7 6L12 11L17 6" stroke="var(--accent)" stroke-width="2.5" stroke-linecap="round"
stroke-linejoin="round" opacity="0.4" />
</svg>
</div>
</div>
</section>
<!-- ── VALUE STRIP (replaces marquee) ── -->
<div class="value-strip">
<div class="value-item">
<span class="value-num">2</span>
<span class="value-label">Live Products</span>
<span class="value-sub">Open-source, Apache 2.0</span>
</div>
<div class="value-item">
<span class="value-num">10</span>
<span class="value-label">Founding Team</span>
<span class="value-sub">Structured governance</span>
</div>
<div class="value-item">
<span class="value-num">3</span>
<span class="value-label">Target Sectors</span>
<span class="value-sub">Tech · Health · Agri-tech</span>
</div>
<div class="value-item">
<span class="value-num">∞</span>
<span class="value-label">Conviction</span>
<span class="value-sub">Built to last beyond college</span>
</div>
</div>
<!-- ── STORY ── -->
<section id="story">
<div class="section-label">01 — Story</div>
<h2 class="section-headline reveal">
A gap we couldn't ignore.<br /><em>Born from conviction. Built with intent.</em>
</h2>
<div class="story-grid">
<div class="story-body reveal">
<p>
A group of college students noticed that capable builders rarely get
the environment to build things that matter. eOzka was founded to
close that gap, starting with technology, expanding into more
fields.
</p>
<p>We are a structured holding company, not a club.</p>
<p>
The name eOzka is a phonetic evolution of OSKA, a term coined by the
Founder to encapsulate the spirit of the organisation. Every product
shipped, every governance standard upheld, every person brought in
during this phase contributes to the institutional credibility that
makes the broader structure possible.
</p>
</div>
<div class="stats-strip reveal">
<div class="stat-cell">
<span class="stat-num" data-target="2">0</span>
<span class="stat-label">Live products</span>
</div>
<div class="stat-cell">
<span class="stat-num" data-target="10">0</span>
<span class="stat-label">Founding team</span>
</div>
<div class="stat-cell">
<span class="stat-num" data-target="3">0</span>
<span class="stat-label">Target sectors</span>
</div>
</div>
</div>
</section>
<!-- ── ABOUT ── -->
<section id="about">
<div class="section-label">02 — About</div>
<h2 class="section-headline reveal">
We build technology that solves<br />real problems for real people.
</h2>
<div class="about-grid">
<div class="about-block reveal">
<h3>The Mission</h3>
<p>
Our mission is to build software that extends human capability —
starting with tools for health monitoring and personal productivity,
and expanding into healthcare and agricultural technology. eOzka at
the parent level holds equity, sets enterprise-wide standards, and
provides the structural backing that enables subsidiaries to operate
with both autonomy and accountability.
</p>
</div>
<div class="about-block reveal">
<h3>The Philosophy</h3>
<p>
We believe the best builders are underestimated early. We are
proving that conviction one product at a time — with the governance,
structure, and discipline of a company built to last beyond college.
Technology is the first chapter. Healthcare and agri-tech are the
next two domains where we've identified both meaningful need and a
realistic pathway to execution.
</p>
</div>
</div>
</section>
<!-- ── PRODUCTS ── -->
<section id="products">
<div class="section-label">03 — Products</div>
<h2 class="section-headline reveal">
Two products. Live.<br /><em>In active use.</em>
</h2>
<p class="products-intro reveal">
Both products are open-source under Apache 2.0 and available on GitHub.
Built and maintained by the eOzka engineering team.
</p>
<div class="products-grid reveal">
<div class="product-card">
<div class="product-card-top">
<span class="product-num">01</span>
<span class="product-tag tag-live">Live</span>
</div>
<div class="product-name">Stress-Calculator</div>
<p class="product-desc">
A Flutter app that assesses stress risk using biometric data — heart
rate and blood pressure. Built for real users. Processes
physiological inputs to generate meaningful, actionable stress
assessments.
</p>
<div class="product-links">
<a href="https://github.com/eOzkull" target="_blank" class="product-link">View on GitHub →</a>
</div>
</div>
<div class="product-card">
<div class="product-card-top">
<span class="product-num">02</span>
<span class="product-tag tag-live">Live</span>
</div>
<div class="product-name">Entab-D</div>
<p class="product-desc">
A Chrome extension that auto-organises browser tabs by domain and
title. Solves tab chaos for anyone working with 20+ tabs open.
One-click install. Zero configuration needed.
</p>
<div class="product-links">
<a href="https://github.com/eOzkull/entab-D" target="_blank" class="product-link">View on GitHub →</a>
<a href="https://github.com/eOzkull" target="_blank" class="product-link-dim">Install Extension</a>
</div>
</div>
<div class="product-card">
<div class="product-card-top">
<span class="product-num">03</span>
<span class="product-tag tag-live">Live</span>
</div>
<div class="product-name">Alris-Security</div>
<p class="product-desc">
</p>
<div class="product-links">
<a href="the mini project
https://github.com/Kush05Bhardwaj/AIris-Security_AI-Powered-Vulnerability-Scanner" target="_blank"
class="product-link">View on GitHub →</a>
</div>
</div>
<div class="product-card">
<div class="product-card-top">
<span class="product-num">04</span>
<span class="product-tag tag-live">Live</span>
</div>
<div class="product-name">Paradigm-Shift</div>
<p class="product-desc">
</p>
<div class="product-links">
<a href="https://github.com/MRINALPRAKASHFSD/MINI_PROJECT_PARADIGM_SHIFT" target="_blank"
class="product-link">View on GitHub →</a>
</div>
</div>
<div class="product-card">
<div class="product-card-top">
<span class="product-num">03</span>
<span class="product-tag tag-research">In Research</span>
</div>
<div class="product-name">Healthcare & Agri-tech</div>
<p class="product-desc">
Our next two expansion domains. Healthcare tools for underserved
populations and agricultural monitoring technology for small-scale
farmers. Groundwork is underway concurrently as the technology
company matures.
</p>
<div class="product-links">
<a href="#ventures" class="product-link-dim">Learn more →</a>
</div>
</div>
</div>
</section>
<!-- ── TEAM ── -->
<section id="team">
<div class="section-label">04 — Team</div>
<h2 class="section-headline reveal">
The people<br /><em>building eOzka.</em>
</h2>
<p class="team-intro reveal">
A 10-person founding team with formal executive roles, structured
governance, and one shared conviction — that the gap between student
potential and real-world impact is closable.
</p>
<div class="team-grid-wrap" id="team-grid">
<!-- CENTER ROW: FOUNDER -->
<div class="team-row team-row-center" style="grid-template-columns: 1fr; justify-items: center">
<div style="
display: flex;
flex-direction: column;
align-items: center;
max-width: 480px;
text-align: center;
margin: 0 auto;
">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Harsh Dev Jha</div>
<div class="team-title">Founder & Chairperson</div>
</div>
<span class="team-badge badge-founder">Founder</span>
</div>
<div class="team-desc">
Founded eOzka to close the gap between student builders and
real-world impact. Leads governance, vision, and the
institutional standards that hold the structure together.
</div>
<div class="team-socials">
<a href="https://github.com/inkesk-dozing" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/harsh-dev-jha-primus" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
</div>
<div class="team-row team-spine-node-only" style="
grid-template-columns: 1fr;
justify-items: center;
height: 60px;
">
<div class="team-spine-node" style="display: flex; justify-content: center">
<div class="team-spine-dot" style="
background: var(--accent);
transform: scale(1.4);
box-shadow: 0 0 12px var(--accent-glow);
"></div>
</div>
</div>
<div class="team-row">
<div class="team-cell-left">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Krishyangi Dixit</div>
<div class="team-title">Chief Executive Officer</div>
</div>
<span class="team-badge">CEO</span>
</div>
<div class="team-desc">
Drives day-to-day operations and strategic execution across
eOzka. Ensures every subsidiary moves with purpose, clarity, and
institutional discipline.
</div>
<div class="team-socials">
<a href="https://github.com/krishyangi-bit" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right"></div>
</div>
<div class="team-row">
<div class="team-cell-left"></div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Mrinal Prakash</div>
<div class="team-title">Chief Strategy Officer</div>
</div>
<span class="team-badge">CSO</span>
</div>
<div class="team-desc">
Defines eOzka's multi-sector roadmap and long-term positioning.
Focused on stakeholder alignment and turning conviction into a
structured expansion plan.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
</div>
<div class="team-row">
<div class="team-cell-left">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Pratham Sharma</div>
<div class="team-title">Chief Technology Officer</div>
</div>
<span class="team-badge">CTO</span>
</div>
<div class="team-desc">
Spearheads product engineering across the eOzka ecosystem.
Architecting systems that are reliable, scalable, and built with
long-term accountability at their core.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right"></div>
</div>
<div class="team-row">
<div class="team-cell-left"></div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Mahin</div>
<div class="team-title">Chief Product Officer</div>
</div>
<span class="team-badge">CPO</span>
</div>
<div class="team-desc">
Owns the product experience end-to-end. Translates real user
needs into elegant, functional solutions that reflect eOzka's
standard of quality.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
</div>
<div class="team-row">
<div class="team-cell-left">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Aman Chapadiya</div>
<div class="team-title">Chief Operations Officer</div>
</div>
<span class="team-badge">COO</span>
</div>
<div class="team-desc">
Keeps the machinery running smoothly. Synchronises teams,
timelines, and operations across the holding structure with
precision and efficiency.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right"></div>
</div>
<div class="team-row">
<div class="team-cell-left"></div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Aditya Bhatia</div>
<div class="team-title">Chief Growth Officer</div>
</div>
<span class="team-badge">CGO</span>
</div>
<div class="team-desc">
Building eOzka's presence and reach from the ground up. Focused
on distribution, brand storytelling, and sustainable growth
across all subsidiary verticals.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
</div>
<div class="team-row">
<div class="team-cell-left">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Rishita</div>
<div class="team-title">Chief Documentation Officer</div>
</div>
<span class="team-badge">CDO</span>
</div>
<div class="team-desc">
Maintains institutional memory across eOzka. Ensures every
decision, process, and standard is documented with precision and
long-term clarity.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right"></div>
</div>
<div class="team-row">
<div class="team-cell-left"></div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Saurabh Mudgal</div>
<div class="team-title">Software Development Engineer</div>
</div>
<span class="team-badge">SDE</span>
</div>
<div class="team-desc">
Engineers robust, production-ready software for eOzka's
technology arm. Code-first, quality-obsessed, and focused on
shipping things that actually work.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
</div>
<div class="team-row">
<div class="team-cell-left">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Kushagra Bharadwaj</div>
<div class="team-title">Software Development Engineer</div>
</div>
<span class="team-badge">SDE</span>
</div>
<div class="team-desc">
Builds with intent — crafting reliable, well-considered systems
that underpin eOzka's live products and support the pipelines
yet to come.
</div>
<div class="team-socials">
<a href="https://github.com/Kush05Bhardwaj" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg>
GitHub
</a>
<a href="https://linkedin.com/in/kush2012bhardwaj/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
LinkedIn
</a>
</div>
</div>
</div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right"></div>
</div>
<!-- New Team Addition: Manas -->
<div class="team-row reveal">
<div class="team-cell-left"></div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Manas</div>
<div class="team-title">Software Development Engineer</div>
</div>
<span class="team-badge">SDE</span>
</div>
<div class="team-desc">
Translates complex ideas into efficient code, ensuring every system within the eOzka ecosystem is built
for speed, scalability, and long-term impact.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg> GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg> LinkedIn
</a>
</div>
</div>
</div>
</div>
<!-- New Team Addition: Trijal -->
<div class="team-row reveal">
<div class="team-cell-left">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Trijal</div>
<div class="team-title">Software Development Engineer</div>
</div>
<span class="team-badge">SDE</span>
</div>
<div class="team-desc">
Bridging the gap between conceptual architecture and live software, focusing on seamless integration and
the core standard of engineering excellence.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg> GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg> LinkedIn
</a>
</div>
</div>
</div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right"></div>
</div>
<!-- New Team Addition: Ishan Parashar -->
<div class="team-row reveal">
<div class="team-cell-left"></div>
<div class="team-spine-node">
<div class="team-spine-dot"></div>
</div>
<div class="team-cell-right">
<div class="team-card">
<div class="team-card-top">
<div class="team-card-meta">
<div class="team-name">Ishan Parashar</div>
<div class="team-title">Software Development Engineer</div>
</div>
<span class="team-badge">SDE</span>
</div>
<div class="team-desc">
Architects the hidden systems that power eOzka's diverse ventures, optimizing for robustness and the
unseen standards of high-end software.
</div>
<div class="team-socials">
<a href="https://github.com/eOzkull" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z" />
</svg> GitHub
</a>
<a href="https://linkedin.com/in/" target="_blank" class="team-social-link">
<svg viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg> LinkedIn
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ── CONTACT ── -->
<section id="contact">
<div class="contact-inner">
<!-- LEFT: FORM -->
<div class="reveal">
<form class="contact-form" action="#">
<div class="form-group">
<label>Name</label>
<input type="text" class="form-input" placeholder="Your Name" required />
</div>
<div class="form-group">
<label>Email</label>
<input type="email" class="form-input" placeholder="email@example.com" required />
</div>
<div class="form-group">
<label>Message</label>
<textarea class="form-input" placeholder="Tell us about your project..." required></textarea>
</div>
<button type="submit" class="btn-submit">Send Message —></button>
</form>
</div>
<!-- RIGHT: INFO (Moved from left) -->
<div class="reveal">
<div class="section-label">05 — Contact</div>
<h2 class="contact-headline">
Want to collaborate,<br />invest, or join us?
</h2>
<p class="contact-sub">
We're open to partnerships, sponsorships, and new talent. If you
believe in what we're building, reach out directly.
</p>
<a href="mailto:eozka.hq@gmail.com" class="contact-email">eozka.hq@gmail.com</a>
</div>
</div>
</section>
<!-- ── VENTURES ── -->
<section id="ventures">
<div class="section-label">06 — Ventures</div>
<h2 class="section-headline reveal">Our <em>ventures.</em></h2>
<div class="ventures-grid">
<a href="https://inkesk-dozing.github.io/eozka-website/moce/index.html" class="venture-card reveal">
<span class="venture-num">Subsidiary I</span>
<span class="venture-name">MOCE</span>
<p class="venture-desc">
The technology arm of eOzka. Home to Stress-Calculator, entab-D, and
the engineering team building what comes next. Focused on software
that extends human capability.
</p>
<span class="venture-cta">Explore MOCE</span>
</a>
<div class="venture-card coming-soon reveal">
<span class="venture-num">Subsidiary II</span>
<span class="venture-name">MOCK</span>
<p class="venture-desc">
The research and experimentation arm. Currently laying groundwork
for eOzka's expansion into healthcare and agri-tech. Operational
framework in development.
</p>
<span class="venture-cta">Coming Soon</span>
</div>
</div>
</section>
<!-- ── FOOTER ── -->
<footer>
<div class="footer-brand">
<span class="footer-logo-text">
e
<svg style="
display: inline-block;
vertical-align: middle;
position: relative;
top: -1px;
" width="18" height="20" viewBox="100 0 116 124" xmlns="http://www.w3.org/2000/svg">
<polygon points="158,6 206,34 206,88 158,116 110,88 110,34" fill="none" stroke="currentColor"
stroke-width="1.6" />
<line x1="158" y1="6" x2="140" y2="60" stroke="currentColor" stroke-width="1.2" opacity="0.6" />
<line x1="206" y1="34" x2="140" y2="60" stroke="currentColor" stroke-width="1.2" opacity="0.6" />
<line x1="206" y1="88" x2="140" y2="60" stroke="currentColor" stroke-width="1.2" opacity="0.6" />
<line x1="158" y1="116" x2="140" y2="60" stroke="currentColor" stroke-width="0.8" opacity="0.3" />
<line x1="110" y1="88" x2="140" y2="60" stroke="currentColor" stroke-width="0.8" opacity="0.3" />
<line x1="110" y1="34" x2="140" y2="60" stroke="currentColor" stroke-width="0.8" opacity="0.3" />
<circle cx="158" cy="60" r="6" fill="currentColor" />
</svg>
zka
</span>
<span class="footer-tagline">Augmenting Sentient.</span>
<p class="footer-desc">
A student-founded technology holding company building software that
lasts — starting with tech, expanding into healthcare and agri-tech.
</p>
</div>
<div class="footer-col">
<h4>Ecosystem</h4>
<ul>
<li><a href="#story">Our story</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#team">Team</a></li>
<li>
<a href="https://inkesk-dozing.github.io/eozka-website/moce/index.html" target="_blank">MOCE subsidiary</a>
</li>
</ul>
</div>
<div class="footer-col">
<h4>Connect</h4>
<ul>
<li>
<a href="https://github.com/eOzkull" target="_blank">GitHub</a><br />
</li>
<li>
<a href="https://instagram.com/weareeozka" target="_blank">Instagram</a><br />
</li>
<li>
<a href="https://linkedin.com/company/eozka" target="_blank">LinkedIn</a><br />
</li>
<li>
<a href="https://x.com/weareeozka" target="_blank">X / Twitter</a><br />
</li>
<li>
<a href="mailto:eozka.hq@gmail.com">Email</a><br />
</li>
</ul>
</div>
</div>
</section>
<!-- ── VENTURES ── -->
<section id="ventures">
<div class="section-label">06 — Ventures</div>
<h2 class="section-headline reveal">Our <em>ventures.</em></h2>
<div class="ventures-grid">
<a href="https://inkesk-dozing.github.io/eozka-website/moce/index.html" class="venture-card reveal">
<span class="venture-num">Subsidiary I</span>
<span class="venture-name">MOCE</span>
<p class="venture-desc">The technology arm of eOzka. Home to Stress-Calculator, entab-D, and the engineering team building what comes next. Focused on software that extends human capability.</p>
<span class="venture-cta">Explore MOCE</span>
</a>
<div class="venture-card coming-soon reveal">
<span class="venture-num">Subsidiary II</span>
<span class="venture-name">MOCK</span>
<p class="venture-desc">The research and experimentation arm. Currently laying groundwork for eOzka's expansion into healthcare and agri-tech. Operational framework in development.</p>
<span class="venture-cta">Coming Soon</span>
</div>
</div>
</section>
</div> <!-- /site-wrapper -->
<!-- ── FOOTER ── -->
<footer>
<div class="footer-brand">
<span style="font-family:'Syne',sans-serif;font-size:18px;font-weight:700;color:var(--white);letter-spacing:-0.3px;display:flex;align-items:center;gap:2px;">
e
<svg style="display:inline-block;vertical-align:middle;position:relative;top:-1px;" width="18" height="20" viewBox="100 0 116 124" xmlns="http://www.w3.org/2000/svg">
<polygon points="158,6 206,34 206,88 158,116 110,88 110,34" fill="none" stroke="#555" stroke-width="1.6"/>
<line x1="158" y1="6" x2="140" y2="60" stroke="#555" stroke-width="1.2"/>
<line x1="206" y1="34" x2="140" y2="60" stroke="#555" stroke-width="1.2"/>
<line x1="206" y1="88" x2="140" y2="60" stroke="#555" stroke-width="1.2"/>
<line x1="158" y1="116" x2="140" y2="60" stroke="#2a2a2a" stroke-width="0.8"/>
<line x1="110" y1="88" x2="140" y2="60" stroke="#2a2a2a" stroke-width="0.8"/>
<line x1="110" y1="34" x2="140" y2="60" stroke="#2a2a2a" stroke-width="0.8"/>
<circle cx="158" cy="60" r="6" fill="#555"/>