-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathboard.html
More file actions
1154 lines (1082 loc) · 89.9 KB
/
board.html
File metadata and controls
1154 lines (1082 loc) · 89.9 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
---
layout: main
title: Board
---
<!-- Board Header -->
<header style="background: linear-gradient(135deg, #ff69b4 0%, #1a1a1a 100%); color: #fff; padding: 100px 0; text-align: center; position: relative; overflow: hidden;">
<div style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('/img/logos/wics_logo.png') center/contain no-repeat; opacity: 0.1;"></div>
<div class="container" style="position: relative; z-index: 2; padding-top: 40px;">
<h1 style="font-size: 3.5rem; font-weight: bold; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3);">Our Executive Board</h1>
<p style="font-size: 1.5rem; margin-bottom: 30px;">Meet the executive board of 2025-2026!</p>
<div style="width: 80px; height: 4px; background: #ff69b4; margin: 0 auto; border-radius: 2px;"></div>
</div>
</header>
<!-- Executive Board Section -->
<section style="padding: 100px 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="font-size: 2.5rem; margin-bottom: 20px; color: #1a1a1a;">Executive Board</h2>
<div style="width: 60px; height: 3px; background: #ff69b4; margin: 0 auto 30px; border-radius: 2px;"></div>
<h3 class="section-subheading text-muted" style="font-size: 1.5rem; margin-bottom: 60px;">Meet the executive board of 2025-2026!</h3>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 180px; height: 180px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/KyraK.jpg" class="img-responsive" alt="Kyra Ramesh Krishna" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Kyra R. Krishna</h4>
<p class="text-muted" style="font-size: 1.3rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">President</p>
<p class="text-muted" style="font-size: 1.1rem; margin-bottom: 10px;">CS CC '26</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi! I'm Kyra, a senior at Barnard majoring in Computer Science and currently serving as the President of WiCS (formerly Co-Treasurer and Corporate Chair). For the past two summers, I interned as a Software Engineer at MongoDB. I've also been a TA for Data Structures, Advanced Systems Programming.</p>
<div class="social-links">
<a href="mailto:kr3026@barnard.edu" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/kyra-krishna/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 180px; height: 180px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/BriannaW.jpg" class="img-responsive" alt="Brianna Wang" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Brianna Wang</h4>
<p class="text-muted" style="font-size: 1.3rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Vice President</p>
<p class="text-muted" style="font-size: 1.1rem; margin-bottom: 10px;">CS SEAS '27</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">
I'm Brianna, and I'm a junior in SEAS majoring in computer science and minoring in psychology. I'm fascinated about human-computer interaction and building technology that improves people's day-to-day lives.
</p>
<div class="social-links">
<a href="mailto:bw2823@columbia.edu" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/brianna-wang-9b674b287" target="_blank" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 180px; height: 180px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/ShobiniI.jpeg" class="img-responsive" alt="Shobini Iyer" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Shobini Iyer</h4>
<p class="text-muted" style="font-size: 1.3rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Treasurer</p>
<p class="text-muted" style="font-size: 1.1rem; margin-bottom: 10px;">CS SEAS '27</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi, I’m Shobini Iyer, a junior studying computer science in SEAS. On campus, I'm involved in research at the robotics lab and Notes and Keys a cappella. In my free time, I enjoy exploring coffee shops and restaurants.</p>
<div class="social-links">
<a href="mailto:si2449@columbia.edu" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/shobini-iyer" target="_blank" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 180px; height: 180px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/AnyaG.jpg" class="img-responsive" alt="Anya Ganeshan" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Anya Ganeshan</h4>
<p class="text-muted" style="font-size: 1.3rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Co-Treasurer</p>
<p class="text-muted" style="font-size: 1.1rem; margin-bottom: 10px;">FE (OR) & CS minor SEAS '27</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">
Hi! I am a rising junior in SEAS majoring in Financial Engineering (Operations Research) with a minor in Computer Science. I have been involved with WiCS since my freshman year, previously serving in the Event Coordies group.
</p>
<div class="social-links">
<a href="mailto:ag4166@columbia.edu" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/anya-ganeshan" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 180px; height: 180px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/CarlyK.png" class="img-responsive" alt="Carly Kiang" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Carly Kiang</h4>
<p class="text-muted" style="font-size: 1.3rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Operations Chair</p>
<p class="text-muted" style="font-size: 1.1rem; margin-bottom: 10px;">CC '26</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi! I'm a student in SEAS studying Computer Science and Applied Math. On campus, I am a Teaching Assistant for Data Structures in Java. Outside of school, I enjoy reading and listening to new music.</p>
<div class="social-links">
<a href="mailto:carly.kiang@columbia.edu" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Committee Leads Section -->
<section style="padding: 100px 0; background: #fff;">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="font-size: 2.5rem; margin-bottom: 20px; color: #1a1a1a;">Committee Leads</h2>
<div style="width: 60px; height: 3px; background: #ff69b4; margin: 0 auto 30px; border-radius: 2px;"></div>
<h3 class="section-subheading text-muted" style="font-size: 1.5rem; margin-bottom: 60px;">Meet the leads of our academic, community, corporate, DEI, DivHacks, and publicity committees.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/TrinityS.jpg" class="img-responsive" alt="Trinity Suma" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Trinity Suma</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Academic Co-Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I'm a CS major interested in pursuing product management, data analytics, or research/design! My previous experience focuses on virtual reality research, specifically virtual avatars.</p>
<div class="social-links">
<a href="mailto:trs2163@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/trinity-suma-235962181/" target="_blank" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/SarahH.jpg" class="img-responsive" alt="Sarah Hagan" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Sarah Hagan</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Academic Co-Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">CS SEAS '27</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi I’m Sarah, a junior majoring in CS with a minor in Electrical Engineering from Maine! This is my 2nd year as academic co-lead and I’ve previously conducted research in ML for computational imaging and worked with an AI.</p>
<div class="social-links">
<a href="mailto:sah2267@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/hiba-altaf-5aa2a21b5/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/ZoieG.png" class="img-responsive" alt="Zoie Geronimi" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Zoie Geronimi</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Corporate Co-Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hello! My name is Zoie and I'm studying Computer Science and African American Studies. I'm interested in exploring the intersection of technology and social justice; looking at how current systems affects marginalized communities. </p>
<div class="social-links">
<a href="mailto:zoie.geronimi@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/zoiegeronimi/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/IntellectC.jpg" class="img-responsive" alt="Intellect Chen" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Intellect Chen</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Corporate Co-Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hello! I'm Intellect, I'm a senior in Columbia College majoring in econ and minoring in CS. I worked as an IB summer analyst at Barclays and a python tutor the past few summers. </p>
<div class="social-links">
<a href="mailto:ic2630@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/ChristineL.jpeg" class="img-responsive" alt="Christine Lam" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Christine Lam</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Diversity & Inclusion Committee Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hey, I’m Christine. I’m passionate about AI and design. In my free time I enjoy building things and making art. Come say hi if you see me around! I'm always happy to meet new people.</p>
<div class="social-links">
<a href="mailto:cl3903@barnard.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/AnitaR.jpg" class="img-responsive" alt="Anita Raj" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Anita Raj</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">DivHacks Executive Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Anita is a rising junior in SEAS studying computer science and economics. She enjoys hackathons, cooking a good meal with loved ones, and visiting her family's farm in India every summer.</p>
<div class="social-links">
<a href="mailto:ar4658@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/anita-raj-3088a5230/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/JenniferC.jpeg" class="img-responsive" alt="Jennifer Chiu" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Jennifer Chiu</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Publicity Chair Newsletter Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi, I'm a senior studying in CS and linguistics! I love trying new restaurants & am currently on the hunt for the best pain au chocolat in New York City.</p>
<div class="social-links">
<a href="mailto:jennifer.chiu@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/LuanaL.jpg" class="img-responsive" alt="Luana Liao" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Luana Liao</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Publicity Chair Graphics Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I'm a big fan of exploring random unique shops around cities, love art (painting, music, drawing), and love to be outdoors!</p>
<div class="social-links">
<a href="mailto:ll3637@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Academic Section -->
<section style="padding: 100px 0; background: #fff;">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="font-size: 2.5rem; margin-bottom: 20px; color: #1a1a1a;">Academic</h2>
<div style="width: 60px; height: 3px; background: #ff69b4; margin: 0 auto 30px; border-radius: 2px;"></div>
<h3 class="section-subheading text-muted" style="font-size: 1.5rem; margin-bottom: 60px;">Our academic leaders who support and encourage computer science students.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/TrinityS.jpg" class="img-responsive" alt="Trinity Suma" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Trinity Suma</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Academic Co-Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I'm a CS major interested in pursuing product management, data analytics, or research/design! My previous experience focuses on virtual reality research, specifically virtual avatars.</p>
<div class="social-links">
<a href="mailto:trs2163@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/trinity-suma-235962181/" target="_blank" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 180px; height: 180px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/SarahH.jpg" class="img-responsive" alt="Sarah Hagan" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Sarah Hagan</h4>
<p class="text-muted" style="font-size: 1.3rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Academic Co-Lead</p>
<p class="text-muted" style="font-size: 1.1rem; margin-bottom: 10px;">CS SEAS '27</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi I’m Sarah, a junior majoring in CS with a minor in Electrical Engineering from Maine! This is my 2nd year as academic co-lead and I’ve previously conducted research in ML for computational imaging and worked with an AI.</p>
<div class="social-links">
<a href="mailto:sah2267@columbia.edu" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/hiba-altaf-5aa2a21b5/" target="_blank" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 180px; height: 180px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/OliviaA.jpg" class="img-responsive" alt="Olivia Avila" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Olivia Avila</h4>
<p class="text-muted" style="font-size: 1.3rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Academic Chair</p>
<p class="text-muted" style="font-size: 1.1rem; margin-bottom: 10px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi y'all, I am a junior in Columbia College studying Computer Science with minors in Film and Italian. I love exploring the intersection of entertainment and science, and I really love to discover research within that overlap.</p>
<div class="social-links">
<a href="mailto:oa2436@columbia.edu" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/olivia-a-494759269/" target="_blank" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 180px; height: 180px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/AnnaB.jpg" class="img-responsive" alt="Anna Bruhn" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Anna Bruhn</h4>
<p class="text-muted" style="font-size: 1.3rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Academic Chair</p>
<p class="text-muted" style="font-size: 1.1rem; margin-bottom: 10px;">CS SEAS '28</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I'm a sophomore at Barnard and am studying Computer Science and Economics. In my free time I enjoy photography and attempting to cook!</p>
<div class="social-links">
<a href="mailto:arb2327@barnard.edu" style="color: #ff69b4; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/anna-bruhn-54b692322/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section style="padding: 100px 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="font-size: 2.5rem; margin-bottom: 20px; color: #1a1a1a;">Community</h2>
<div style="width: 60px; height: 3px; background: #ff69b4; margin: 0 auto 30px; border-radius: 2px;"></div>
<h3 class="section-subheading text-muted" style="font-size: 1.5rem; margin-bottom: 60px;">Our community leaders who foster connections and build our WiCS family.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/default-pic.png" class="img-responsive" alt="Gouri Krishnan" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Gouri Krishnan</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Community Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I'm a junior in SEAS studying CS & Econ! Outside of WiCS, I'm a part of Columbia Wushu and have performed in multiple plays & musicals on campus, including KCST's Julius Caesar! In my free time, I love to read...</p>
<div class="social-links">
<a href="mailto:gk2665@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/gouri-krishnan-2a3280222/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/JoelynnCW.jpg" class="img-responsive" alt="Jolene Wang" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Jolene Wang</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Community Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I'm a junior in SEAS majoring in Computer Science with a minor in Statistics. This past summer, I interned at Amazon as a Software Development Engineer. Outside of class, I enjoy playing tennis.</p>
<div class="social-links">
<a href="mailto:jcw2239@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/JuliaD.jpg" class="img-responsive" alt="Julia Ding" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Julia Ding</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Community Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi, my name is Julia and I'm a junior at Columbia studying Computer Science and minoring in Operations Research! I've been a software engineering intern at Google the past two summers.</p>
<div class="social-links">
<a href="mailto:julia.ding@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/julialding/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/GraceL.png" class="img-responsive" alt="Grace Li" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Grace Li</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Community Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">CS SEAS '28</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I'm Grace, a sophomore in Columbia College from San Diego, double-majoring in computer science and math with a minor in dance. I took a gap year before college to pursue professional ballet.</p>
<div class="social-links">
<a href="mailto:grace.li2@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/alice-zhang-2048c" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Corporate Section -->
<section style="padding: 100px 0; background: #fff;">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="font-size: 2.5rem; margin-bottom: 20px; color: #1a1a1a;">Corporate</h2>
<div style="width: 60px; height: 3px; background: #ff69b4; margin: 0 auto 30px; border-radius: 2px;"></div>
<h3 class="section-subheading text-muted" style="font-size: 1.1rem; margin-bottom: 60px;">Our corporate leaders who connect students with industry opportunities.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/ZoieG.png" class="img-responsive" alt="Zoie Geronimi" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Zoie Geronimi</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Corporate Co-Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hello! My name is Zoie and I'm studying Computer Science and African American Studies. I'm interested in exploring the intersection of technology and social justice; looking at how current systems affects marginalized communities. </p>
<div class="social-links">
<a href="mailto:zoie.geronimi@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/zoiegeronimi/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/IntellectC.jpg" class="img-responsive" alt="Intellect Chen" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Intellect Chen</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Corporate Co-Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hello! I'm Intellect, I'm a senior in Columbia College majoring in econ and minoring in CS. I worked as an IB summer analyst at Barclays and a python tutor the past few summers. </p>
<div class="social-links">
<a href="mailto:ic2630@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/IvannaT.jpg" class="img-responsive" alt="Ivanna Brigido Torres" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Ivanna B. Torres</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Corporate Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">CS SEAS '28</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi, I'm Ivanna! I am a second-year student in SEAS studying Computer Science and Applied Math. I am passionate about programming, making education accessible, and building an inclusive tech community on campus.</p>
<div class="social-links">
<a href="mailto:ib2555@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/ivannabrigidotorres/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/AliceZ.png" class="img-responsive" alt="Alice Zhang" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Alice Zhang</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Corporate Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">CS SEAS '28</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I'm involved in tech entrepreneurship and research on decision optimization. In my free time, I enjoy building side projects, side-questing in the city, and concocting odd food combos!</p>
<div class="social-links">
<a href="mailto:az2880@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/alice-zhang-2048c" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/AshleyS.jpg" class="img-responsive" alt="Ashley Seo" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Ashley Seo</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Corporate Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi! I'm Ashley, I'm a junior in SEAS majoring in CS and minoring in operations research and I'm a corporate chair this year! I interned at Bloomberg this past summer and I'm currently a TA for Machine Learning.</p>
<div class="social-links">
<a href="mailto:ajs2459@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/ashley-seo/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Diversity and Inclusion Section -->
<section style="padding: 100px 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="font-size: 2.5rem; margin-bottom: 20px; color: #1a1a1a;">Diversity and Inclusion</h2>
<div style="width: 60px; height: 3px; background: #ff69b4; margin: 0 auto 30px; border-radius: 2px;"></div>
<h3 class="section-subheading text-muted" style="font-size: 1.5rem; margin-bottom: 60px;">Our leaders who champion inclusivity and representation in computer science.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/ChristineL.jpeg" class="img-responsive" alt="Christine Lam" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Christine Lam</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Diversity & Inclusion Committee Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hey, I'm Christine. I'm passionate about AI and design. In my free time I enjoy building things and making art. Come say hi if you see me around! I'm always happy to meet new people.</p>
<div class="social-links">
<a href="mailto:cl3903@barnard.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/KristyM.jpg" class="img-responsive" alt="Kristy Martinez" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Kristy Martinez</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Diversity and Inclusion Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi! I'm Kristy and I'm a senior in SEAS majoring in Computer Science and minoring in Anthropology. My current interests are backend development, artificial intelligence, and entrepreneurship.</p>
<div class="social-links">
<a href="mailto:kpm2155@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/kristy-martinez/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/MichelleR.jpg" class="img-responsive" alt="Michelle Rahman" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Michelle Rahman</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Diversity and Inclusion Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi, I'm Michelle! Over the past two summers, I worked as a Data Analyst at a startup educational consulting firm. This summer I was also a Machine Learning Fellow through BTT at Cornell Tech.</p>
<div class="social-links">
<a href="mailto:mr4421@barnard.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/michelle-rahman-05m/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/MinseulK.jpg" class="img-responsive" alt="Minseul Kim" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Minseul Kim</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Diversity and Inclusion Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi! I'm a junior in Columbia SEAS, born and raised in South Korea. I love exploring new cafes, and this summer I came back home to work at a startup I've been part of since high school after interning at Scale AI in the spring.</p>
<div class="social-links">
<a href="mailto:mk4842@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/minseul-kim/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/FavourA.jpg" class="img-responsive" alt="Favour Atewologun" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Favour Atewologun</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Diversity and Inclusion Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">CS SEAS '28</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Favour Atewolgun is a sophomore majoring in Computer Science. She loves problem solving and exploring different approaches to coding challenges.</p>
<div class="social-links">
<a href="mailto:favour.a@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/laura-avila-9ab770275" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- DivHacks Section -->
<section style="padding: 100px 0; background: #fff;">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="font-size: 2.5rem; margin-bottom: 20px; color: #1a1a1a;">DivHacks</h2>
<div style="width: 60px; height: 3px; background: #ff69b4; margin: 0 auto 30px; border-radius: 2px;"></div>
<h3 class="section-subheading text-muted" style="font-size: 1.5rem; margin-bottom: 60px;">Our hackathon organizers who create amazing experiences for participants.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/AnitaR.jpg" class="img-responsive" alt="Anita Raj" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Anita Raj</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">DivHacks Executive Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Anita is a rising junior in SEAS studying computer science and economics. She enjoys hackathons, cooking a good meal with loved ones, and visiting her family's farm in India every summer.</p>
<div class="social-links">
<a href="mailto:ar4658@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/anita-raj-3088a5230/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/GraceX.jpg" class="img-responsive" alt="Grace Xu" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Grace Xu</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">DivHacks Technical Development Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">CS SEAS '28</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Outside of school I like to dance, thrift, and explore new coffee shops. </p>
<div class="social-links">
<a href="mailto:gx2168@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/tiffany--tu" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/JadynP.jpg" class="img-responsive" alt="Jadyn Park" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Jadyn Park</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">DivHacks Sponsorship Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi! I'm Jadyn, a senior at Barnard majoring in CS with a minor in math. I'm passionate about data, product, and building inclusive spaces in tech [as DivHacks' Sponsorship Lead]! </p>
<div class="social-links">
<a href="mailto:jsp2226@barnard.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/jadyn-park/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/IsabellaL.png" class="img-responsive" alt="Isabella Lu" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Isabella Lu</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Divhacks Publicity Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2028</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I've been a member of the DivHacks Publicity team for the past two years. I'm passionate about the intersections of computer and climate science. Outside of science, I'm interested in music, jiujitsu, and weightlifting!</p>
<div class="social-links">
<a href="mailto:iel2114@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/isabella-e-lu/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/LaurenS.png" class="img-responsive" alt="Lauren Song" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Lauren Song</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Logistics Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I'm passionate about software engineering and product development. I love biking, eating, and exploring!</p>
<div class="social-links">
<a href="mailto:ljs2225@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/laurenjsong" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/default-pic.png" class="img-responsive" alt="Adneen Talib" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Adneen Talib</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Logistics Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">I am passionate about UX/UI design and finding ways to make technology more intuitive and user-friendly. Additionally, I enjoy listening to music and exploring new restaurants in NYC. I am always looking for opportunities to blend creativity with technology!</p>
<div class="social-links">
<a href="mailto:awt2133@barnard.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/adneen-talib-095a29360" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; border-left: 4px solid #ff69b4;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/default-pic.png" class="img-responsive" alt="Leah Kim" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Leah Kim</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Hacker Experience Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Passionate about creating inclusive spaces for women in tech and fostering community connections.</p>
<div class="social-links">
<a href="mailto:lk2935@barnard.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Publicity Section -->
<section style="padding: 100px 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="font-size: 2.5rem; margin-bottom: 20px; color: #1a1a1a;">Publicity</h2>
<div style="width: 60px; height: 3px; background: #ff69b4; margin: 0 auto 30px; border-radius: 2px;"></div>
<h3 class="section-subheading text-muted" style="font-size: 1.5rem; margin-bottom: 60px;">Our creative leaders who spread the word about WiCS events and initiatives.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/JenniferC.jpeg" class="img-responsive" alt="Jennifer Chiu" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Jennifer Chiu</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Publicity Chair Newsletter Lead</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi, I'm a senior studying in CS and linguistics! I love trying new restaurants & am currently on the hunt for the best pain au chocolat in New York City.</p>
<div class="social-links">
<a href="mailto:jennifer.chiu@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/LauraA.png" class="img-responsive" alt="Laura Avila" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Laura Avila</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Publicity Chair - Graphics</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2028</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi, I’m Laura Avila, a Computer Engineering student at Columbia who’s passionate about using tech and creativity to support communities. I worked on the COVID Hearts Project. </p>
<div class="social-links">
<a href="mailto:lba2147@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/laura-avila-9ab770275" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/HibaA.jpeg" class="img-responsive" alt="Hiba Altaf" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Hiba Altaf</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Publicity Chair - Webmaster</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi! I’m a junior studying Computer Science at Columbia SEAS. I’ve interned as a SWE at Amazon for the past two summers, focusing on full-stack and backend development. Outside of work, I enjoy biking, reading, cooking Indian cuisine.</p>
<div class="social-links">
<a href="mailto:ha2616@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/hiba-altaf-5aa2a21b5/" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/SarahL.jpeg" class="img-responsive" alt="Sara Lin" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Sara Lin</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Publicity Chair - Newsletter</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2026</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hi I’m Sarah, a junior majoring in CS with a minor in Electrical Engineering from Maine! This is my 2nd year as academic co-lead and I’ve previously conducted research in ML for computational imaging and worked with an AI.</p>
<div class="social-links">
<a href="mailto:sl5230@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/-saralin?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/TiffanyT.jpg" class="img-responsive" alt="Tiffany Tu" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Tiffany Tu</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Publicity Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2028</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Tiffany is a student at Columbia Engineering majoring in Computer Science, with interests in fintech, machine learning, and product strategy. She has previous internship experience at ByteDance/TikTok and FICO.</p>
<div class="social-links">
<a href="mailto:tiffany.tu@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/tiffany--tu" target="_blank" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-card" style="background: #fff; border-radius: 15px; padding: 30px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;">
<div class="member-photo" style="width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid #ff69b4; box-shadow: 0 5px 15px rgba(255,105,180,0.3);">
<img src="/img/team/AnnL.jpg" class="img-responsive" alt="Ann Li" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h4 style="color: #1a1a1a; font-weight: bold; margin-bottom: 10px;">Ann Li</h4>
<p class="text-muted" style="font-size: 1rem; margin-bottom: 5px; color: #ff69b4; font-weight: 600;">Publicity Chair</p>
<p class="text-muted" style="font-size: 0.9rem; margin-bottom: 15px;">Class of 2027</p>
<p class="bio-text" style="font-size: 0.95rem; color: #6c757d; line-height: 1.4; margin-bottom: 15px;">Hello! I'm Ann and I'm studying CS in SEAS. I interned at NVIDIA the past two summers working on software for accelerated robotics. In my free time, you can find me speedcubing, playing GeoGuessr, or drinking hojicha lattes.</p>
<div class="social-links">
<a href="mailto:acl2246@columbia.edu" style="color: #ff69b4; font-size: 1.1rem; margin: 0 10px; transition: color 0.3s ease;">
<i class="fa fa-envelope"></i>
</a>