-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
951 lines (874 loc) · 55.9 KB
/
index.html
File metadata and controls
951 lines (874 loc) · 55.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Improving Stroke Recovery in Rural Communities</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
color: #334155;
overflow-x: hidden;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Static background */
.animated-bg {
background: linear-gradient(-45deg, #1e3a8a, #1e40af, #1d4ed8, #2563eb);
background-size: 400% 400%;
}
/* Static elements */
.float {
/* No animation */
}
.pulse {
/* No animation */
}
/* Static slide in elements */
.slide-in-left {
opacity: 1;
transform: translate(0, 0);
}
.slide-in-right {
opacity: 1;
transform: translate(0, 0);
}
.slide-in-up {
opacity: 1;
transform: translate(0, 0);
}
/* Enhanced cards */
.card {
background-color: #ffffff;
border-radius: 1rem;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.card::before {
display: none;
}
.card:hover {
transform: none;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Enhanced buttons */
.btn-primary {
background: linear-gradient(135deg, #1e3a8a, #1e40af);
color: white;
padding: 1rem 2rem;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: none;
cursor: pointer;
}
.btn-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.btn-primary:hover::before {
left: 100%;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(30, 64, 175, 0.4);
}
/* Parallax effect */
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* Glowing effect */
.glow {
box-shadow: 0 0 20px rgba(30, 64, 175, 0.6);
}
/* Typewriter effect */
.typewriter {
overflow: hidden;
border-right: 2px solid #1e40af;
white-space: nowrap;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@keyframes blink-caret {
from, to { border-color: transparent; }
50% { border-color: #1e40af; }
}
/* Loading spinner enhancement */
.loading-spinner {
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: #1e40af;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1s linear infinite;
display: inline-block;
vertical-align: middle;
margin-left: 0.5rem;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Particle effect */
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
pointer-events: none;
}
.particle {
display: none;
}
/* Section padding with animation */
.section-padding {
padding: 4rem 1rem;
position: relative;
}
@media (min-width: 768px) {
.section-padding {
padding: 6rem 2rem;
}
}
/* Gradient text */
.gradient-text {
background: linear-gradient(135deg, #1e3a8a, #1e40af, #1d4ed8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Enhanced text shadow */
.text-shadow {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}
/* Static grid items */
.grid-item {
opacity: 1;
transform: translateY(0);
}
/* Ensure avatar containers do not shrink in flex rows (prevents oval images) */
.card .rounded-full.overflow-hidden {
flex-shrink: 0;
}
</style>
</head>
<body>
<!-- Header/Hero Section -->
<header class="relative bg-cover bg-center h-screen flex items-center justify-center text-white animated-bg parallax"
style="background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');">
<!-- Particle effect -->
<div class="particles">
<div class="particle" style="left: 10%; animation-delay: 0s;"></div>
<div class="particle" style="left: 20%; animation-delay: 2s;"></div>
<div class="particle" style="left: 30%; animation-delay: 4s;"></div>
<div class="particle" style="left: 40%; animation-delay: 6s;"></div>
<div class="particle" style="left: 50%; animation-delay: 8s;"></div>
<div class="particle" style="left: 60%; animation-delay: 10s;"></div>
<div class="particle" style="left: 70%; animation-delay: 12s;"></div>
<div class="particle" style="left: 80%; animation-delay: 14s;"></div>
<div class="particle" style="left: 90%; animation-delay: 16s;"></div>
</div>
<div class="absolute inset-0 bg-black opacity-60"></div>
<div class="relative z-10 text-center px-4">
<h1 class="text-4xl sm:text-5xl lg:text-6xl font-extrabold leading-tight mb-4 text-shadow typewriter">
Improving Stroke Outcomes in Rural Communities
</h1>
<p class="text-xl sm:text-2xl lg:text-3xl font-medium mb-8 text-shadow">
Building Capacity for Patient-Centered by Engaging Rural Stroke Survivors and Caregivers
</p>
<a href="#about" class="btn-primary inline-block glow">
<span class="relative z-10">Learn More</span>
</a>
</div>
<!-- Scroll indicator -->
<div class="absolute bottom-8 left-1/2 transform -translate-x-1/2 animate-bounce">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"></path>
</svg>
</div>
</header>
<main>
<!-- About the Project Section -->
<section id="about" class="section-padding bg-white">
<div class="max-w-6xl mx-auto grid md:grid-cols-2 gap-12 items-center">
<div class="order-2 md:order-1">
<h2 class="text-3xl sm:text-4xl font-bold mb-6 gradient-text">About Our Project</h2>
<p class="text-lg leading-relaxed mb-4">
Stroke continues to be the leading cause of death and disability, especially in rural regions of the United States like Pennsylvania. Survivors and caregivers in these areas often face greater obstacles, from limited access to medical care and specialists to social isolation and lack of support resources. These challenges lead to poorer outcomes, higher stress, and greater health disparities.
</p>
<p class="text-lg leading-relaxed">
Our initiative is designed to close some of these gaps by partnering directly with stroke survivors, caregivers, healthcare providers, and local community members. Together, we aim to identify real needs and research priorities that leads to practical, community-driven solutions.
</p>
</div>
<div class="order-1 md:order-2">
<!-- Updated image for 'About Our Project' section -->
<img src="assets/images/About our project.png" alt="About our project" class="rounded-xl shadow-lg w-full h-auto object-cover card">
</div>
</div>
</section>
<!-- Our Goals Section -->
<section id="goals" class="section-padding animated-bg text-white relative overflow-hidden">
<div class="max-w-6xl mx-auto text-center relative z-10">
<h2 class="text-3xl sm:text-4xl font-bold mb-12">Our Goals</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-4xl mx-auto">
<!-- Goal 1 -->
<div class="card p-6 flex flex-col items-center text-center text-gray-800">
<h3 class="text-xl font-semibold mb-2">Engage Equal Partners</h3>
<p class="text-base">Engage rural stroke survivors, caregivers, and advocates as equal partners in research.</p>
</div>
<!-- Goal 2 -->
<div class="card p-6 flex flex-col items-center text-center text-gray-800">
<h3 class="text-xl font-semibold mb-2">Empower Communities</h3>
<p class="text-base">Empower communities to share experiences, voice concerns, and shape research priorities.</p>
</div>
<!-- Goal 3 -->
<div class="card p-6 flex flex-col items-center text-center text-gray-800">
<h3 class="text-xl font-semibold mb-2">Foster Trust</h3>
<p class="text-base">Foster trust and collaboration between residents, healthcare providers, and researchers.</p>
</div>
</div>
</div>
</section>
<!-- Project Overview Section -->
<section id="project-overview" class="section-padding bg-gray-50">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl sm:text-4xl font-bold mb-12 text-center gradient-text">Project Overview</h2>
<div class="flex flex-col lg:flex-row items-start gap-12">
<div class="lg:w-1/2">
<img src="assets/images/PCORI timeline.png" alt="PCORI Project Timeline" class="rounded-xl shadow-lg w-full h-auto object-contain mb-6">
<!-- Audio Section positioned directly under the chart -->
<div class="p-6 bg-white rounded-xl shadow-lg">
<h4 class="text-xl font-semibold mb-4 gradient-text">Brief Overview</h4>
<p class="text-base text-gray-600 mb-4 text-center">A brief overview of the project’s purpose, key goals, and timeline for completion</p>
<audio controls class="w-full max-w-md mx-auto mb-4">
<source src="assets/audio/luvvoice.com-20260101-Ry56uO.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<!-- Download Link Option -->
<div class="text-center">
<a href="assets/audio/luvvoice.com-20260101-Ry56uO.mp3" download class="btn-primary inline-block">
<svg class="w-5 h-5 inline mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path>
</svg>
Download MP3
</a>
</div>
</div>
</div>
<div class="lg:w-1/2">
<h3 class="text-2xl font-semibold mb-4 gradient-text">Understanding Our Research Process</h3>
<p class="text-lg leading-relaxed mb-4">
Over two years, this project moves from building a strong foundation to delivering meaningful, community-driven outcomes.
</p>
<p class="text-lg leading-relaxed mb-4">
It begins with recruiting Community Advisory Board (CAB) members, hosting orientation and training sessions, and holding initial meetings to guide the project's direction. Early milestones also include finalizing the IRB process and launching the project website.
</p>
<p class="text-lg leading-relaxed mb-4">
As the work progresses, we engage stakeholders, recruit and onboard members of the rural stroke community, and work together to identify key needs and research priorities. Topic groups are formed, training is provided, and a clear engagement and dissemination plan is developed. The project concludes with community events, scholarly publications, and a comprehensive final report.
</p>
</div>
</div>
</div>
</section>
<!-- Why Your Voice Matters Section -->
<section id="voice-matters" class="section-padding bg-white">
<div class="max-w-6xl mx-auto text-center">
<h2 class="text-3xl sm:text-4xl font-bold mb-6 gradient-text">Why Your Voice Matters</h2>
<div class="flex flex-col md:flex-row items-center gap-8">
<div class="md:w-1/3">
<img src="https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="A person speaking or presenting, symbolizing voice and input" class="rounded-xl shadow-lg w-full h-auto object-cover">
</div>
<div class="md:w-2/3 text-left">
<p class="text-lg leading-relaxed mb-4">
Your lived experience is essential. By sharing your story and insights, you help ensure that research efforts focus on what truly matters to rural stroke survivors and their families.
</p>
<p class="text-lg leading-relaxed">
Together, we can guide meaningful change in stroke care and recovery. Your unique perspective is the cornerstone of truly patient-centered outcomes research.
</p>
</div>
</div>
</div>
</section>
<!-- Meet Our Team Section -->
<section id="team" class="section-padding bg-white relative overflow-hidden">
<!-- Background decorative elements -->
<div class="absolute inset-0 opacity-5">
<div class="absolute top-20 right-20 w-40 h-40 bg-gradient-to-r from-blue-800 to-blue-600 rounded-full blur-3xl"></div>
<div class="absolute bottom-20 left-20 w-32 h-32 bg-gradient-to-r from-blue-700 to-blue-500 rounded-full blur-3xl"></div>
</div>
<div class="max-w-6xl mx-auto relative z-10">
<h2 class="text-3xl sm:text-4xl font-bold mb-12 text-center gradient-text">Meet Our Team</h2>
<h3 class="text-2xl font-semibold mb-6 gradient-text">Principal Investigators</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/dr-zand.jpg" alt="Dr.Ramin Zand" class="w-full h-full object-cover" style="transform: scale(1.05); object-position: center top;">
</div>
<div>
<p class="text-xl font-semibold">Zand, Ramin.</p>
<p class="text-base text-gray-600">Principal Investigator</p>
<p class="text-base text-gray-600">Professor, Vascular Neurology, Department of Neurology, Department of Public Health Sciences, Pennsylvania State University</p>
</div>
</div>
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/dr-mcshane.jpg" alt="Dr. Michael McShane" class="w-full h-full object-cover" style="transform: scale(0.95); object-position: center top;">
</div>
<div>
<p class="text-xl font-semibold">McShane, Michael P.</p>
<p class="text-base text-gray-600">Co-Principal Investigator</p>
<p class="text-base text-gray-600">Associate Professor, Department of Medicine , Pennsylvania State University</p>
</div>
</div>
</div>
<h3 class="text-2xl font-semibold mb-6 gradient-text">Co-Investigators and Staff</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/vka5162.webp" alt="Vida Abedi" class="w-full h-full object-cover object-top">
</div>
<div>
<p class="text-xl font-semibold">Abedi, Vida.</p>
<p class="text-base text-gray-600">Associate Professor, Department of Public Health Sciences , Pennsylvania State University</p>
<!-- <p class="text-base text-gray-600">Program Lead Designee</p> -->
</div>
</div>
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Nazli.jpg" alt="Nazli Radfar" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Radfar, Nazli.</p>
<p class="text-base text-gray-600">Project Manager, Department of Neurology, Pennsylvania State University</p>
</div>
</div>
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Ajith vemuri.jpg" alt="Ajith Vamuri" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Vamuri, Ajith.</p>
<p class="text-base text-gray-600">Staff Scientist, Department of Neurology, Pennsylvania State University</p>
</div>
</div>
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Vonk, Michelle NSI.jpg" alt="Michelle Vonk" class="w-full h-full object-cover" style="transform: scale(1.05); object-position: center top;">
</div>
<div>
<p class="text-xl font-semibold">Vonk, Michelle.</p>
<p class="text-base text-gray-600">Grants & Contract Manager,Department of Neurology, Pennsylvania State University</p>
</div>
</div>
</div>
<h3 class="text-2xl font-semibold mb-6 gradient-text">Consultants</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Gay thomas.jpg" alt="Gay Thomas" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Thomas, Gay.</p>
<p class="text-base text-gray-600">Principal, GR Thomas Advisors LLC; Former Co-Founder & Lead Stakeholder Engagement Consultant, Wisconsin Network for Research Support (WINRS)</p>
</div>
</div>
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/maria_suarez-almazor.jpg" alt="Maria E. Suarez-Almazor" class="w-full h-full object-cover" style="transform: scale(1.15); object-position: center 75%;">
</div>
<div>
<p class="text-xl font-semibold">Suarez-Almazor, Maria E.</p>
<p class="text-base text-gray-600">Professor, Department of Health Services Research, Division of Cancer Prevention and Population Sciences, University of Texas MD Anderson Cancer Center</p>
</div>
</div>
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Zimmermansq.png" alt="Emily Zimmerman" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Zimmerman, Emily.</p>
<p class="text-base text-gray-600">Professor, Department of Epidemiology, School of Public Health, Virginia Commonwealth University</p>
</div>
</div>
</div>
<h3 class="text-2xl font-semibold mb-6 gradient-text">Community Advisory Board (CAB) Members</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Coleman, Amber (C) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Coleman, Amber CH 2.jpg" alt="Amber Coleman" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Coleman, Amber.</p>
<p class="text-base text-gray-600">Director of Community Health, Penn State Health</p>
</div>
</div>
<!-- Dux, Philip (D) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Philip, Dux. jpg.jpg" alt="Philip Dux" class="w-full h-full object-cover" style="transform: scale(1.4);">
</div>
<div>
<p class="text-xl font-semibold">Dux, Philip.</p>
<p class="text-base text-gray-600">Stroke Advocate, Hawley, Pennsylvania</p>
</div>
</div>
<!-- Fetzer, Lannette (F) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Lannette M. Fetzer4.jpg" alt="Lannette Fetzer" class="w-full h-full object-cover" style="transform: scale(1.1);">
</div>
<div>
<p class="text-xl font-semibold">Fetzer, Lannette.</p>
<p class="text-base text-gray-600">Quality Improvement Coordinator, Pennsylvania Office of Rural Health, Pennsylvania State University</p>
</div>
</div>
<!-- Hwang, Wenke (H) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Wenke Hwang (002).jpg" alt="Wenke Hwang" class="w-full h-full object-cover" style="object-position: center 75%;">
</div>
<div>
<p class="text-xl font-semibold">Hwang, Wenke.</p>
<p class="text-base text-gray-600">Professor, Department of Public Health Sciences, Pennsylvania State University</p>
</div>
</div>
<!-- Patrick, Scott (P) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Scott Patrick.jpg" alt="Scott Patrick" class="w-full h-full object-cover" style="transform: scale(1.4); object-position: center 100%;">
</div>
<div>
<p class="text-xl font-semibold">Patrick, Scott.</p>
<p class="text-base text-gray-600">Stroke Advocate, Real estate investor and former collegiate athlete, Hershey, Pennsylvania</p>
</div>
</div>
<!-- Pulakanti, Varun (P) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/varun Pulakanti.png" alt="Varun R. Pulakanti" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Pulakanti, Varun R.</p>
<p class="text-base text-gray-600">Medical Director, Outpatient Neurology and Fellowship Program, Geisinger</p>
</div>
</div>
<!-- Richardson, Alicia (R) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Alicia 2.png" alt="Alicia Richardson" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Richardson, Alicia.</p>
<p class="text-base text-gray-600">System Stroke Director, Penn State Health System</p>
<p class="text-base text-gray-600">Instructor, Department of Neurosurgery, College of Nursing, Pennsylvania State University</p>
</div>
</div>
<!-- Roy, Pete (R) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Pete Roy_400x600.jpg" alt="Pete Roy" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Roy, Pete.</p>
<p class="text-base text-gray-600">Medical Director, Neurosciences and Stroke Program, Mount Nittany Health</p>
</div>
</div>
<!-- Taylor, Danielle (T) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Danielle Taylore_image.png" alt="Danielle Taylor" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Taylor, Danielle.</p>
<p class="text-base text-gray-600">Speech-Language Pathologist, Geisinger Memory and Cognition Program</p>
</div>
</div>
<!-- Wasko, Lisa (W) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Lisa.jpeg" alt="Lisa Wasko" class="w-full h-full object-cover">
</div>
<div>
<p class="text-xl font-semibold">Wasko, Lisa.</p>
<p class="text-base text-gray-600">System Stroke Director and Advocacy Leader, Geisinger</p>
</div>
</div>
<!-- Wildasin, Amy (W) -->
<div class="card p-6 flex items-center space-x-4">
<div class="w-20 h-20 rounded-full overflow-hidden shadow-md">
<img src="assets/images/Amy Wildasin.png" alt="Amy Wildasin" class="w-full h-full object-cover" style="transform: scale(1.1);">
</div>
<div>
<p class="text-xl font-semibold">Wildasin, Amy.</p>
<p class="text-base text-gray-600">Nurse Navigator, Stroke Program, Penn State Health System</p>
</div>
</div>
</div>
</div>
</section>
<!-- What is the CAB? Section -->
<section id="what-is-cab" class="section-padding animated-bg text-white relative overflow-hidden">
<!-- Background decorative elements -->
<div class="absolute inset-0 opacity-10">
<div class="absolute top-20 right-10 w-32 h-32 bg-white rounded-full"></div>
<div class="absolute bottom-10 left-10 w-16 h-16 bg-white rounded-full"></div>
<div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-40 h-40 bg-white rounded-full opacity-5"></div>
</div>
<div class="max-w-6xl mx-auto text-center relative z-10">
<h2 class="text-3xl sm:text-4xl font-bold mb-6">What is the CAB?</h2>
<div class="flex flex-col md:flex-row items-center gap-8">
<div class="md:w-2/3 text-left">
<p class="text-lg leading-relaxed mb-4">
Our Community Advisory Board is a diverse group of stroke survivors, caregivers, healthcare providers, and local advocates.
</p>
<p class="text-lg leading-relaxed">
Their guidance ensures that keeping the project focused on practical challenges and solutions that reflect real life in rural communities. The CAB is the heartbeat of our community-driven approach.
</p>
</div>
<div class="md:w-1/3">
<div class="rounded-xl overflow-hidden shadow-lg w-full" style="aspect-ratio: 1 / 1;">
<img src="assets/images/Screenshot 2025-08-27 140040.png" alt="Screenshot showing CAB discussion or meeting" class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
</section>
<!-- Project Funding and Duration Section -->
<section id="funding" class="section-padding animated-bg text-white relative overflow-hidden">
<!-- Background decorative elements -->
<div class="absolute inset-0 opacity-10">
<div class="absolute top-10 right-1/4 w-28 h-28 bg-white rounded-full"></div>
<div class="absolute bottom-20 right-10 w-20 h-20 bg-white rounded-full"></div>
<div class="absolute top-1/3 left-10 w-16 h-16 bg-white rounded-full"></div>
</div>
<div class="max-w-6xl mx-auto text-center relative z-10">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-gray-800">
<div class="card p-6 flex flex-col items-center">
<a href="https://www.pcori.org/" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline mb-4">Visit PCORI Website</a>
<h3 class="text-xl font-semibold mb-2">Supported By</h3>
<p class="text-lg">Patient-Centered Outcomes Research Institute (PCORI)</p>
</div>
<div class="card p-6 flex flex-col items-center">
<img src="assets/images/Penn-State-Health-Logo.jpg" alt="Penn State Health Logo" class="w-56 h-28 object-contain mb-4">
<h3 class="text-xl font-semibold mb-2">Lead Institution</h3>
<p class="text-lg">Pennsylvania State University Hershey Medical Center</p>
</div>
<div class="card p-6 flex flex-col items-center">
<svg class="w-16 h-16 mb-4 text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path></svg>
<h3 class="text-xl font-semibold mb-2">Duration</h3>
<p class="text-lg">2 years</p>
</div>
</div>
</div>
</section>
<!-- Resources Section -->
<section id="resources" class="section-padding bg-white relative overflow-hidden">
<!-- Background decorative elements -->
<div class="absolute inset-0 opacity-5">
<div class="absolute top-10 left-10 w-36 h-36 bg-gradient-to-r from-blue-800 to-blue-600 rounded-full blur-3xl"></div>
<div class="absolute bottom-10 right-10 w-28 h-28 bg-gradient-to-r from-blue-700 to-blue-500 rounded-full blur-3xl"></div>
</div>
<div class="max-w-6xl mx-auto relative z-10">
<h2 class="text-3xl sm:text-4xl font-bold mb-12 text-center gradient-text">Engagement Training and Tools</h2>
<!-- Training Tools Category -->
<h3 class="text-2xl sm:text-3xl font-bold mb-2 text-center gradient-text">CERTaIN Training Sessions Materials</h3>
<p class="text-center font-bold text-blue-600 mb-8">Presented by Dr. Suarez-Almazor, Creator of the CERTaIN Program </p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-6xl mx-auto mb-12">
<!-- Resource Card 1 -->
<div class="card p-6">
<div class="mb-4">
<img src="assets/images/CERTaIN Training Poerpoint picture.png" alt="CERTaIN Training Session 1" class="w-full h-auto rounded-lg shadow-md object-cover">
</div>
<div class="flex items-start space-x-3">
<span class="bg-blue-600 text-white rounded-full w-8 h-8 flex items-center justify-center text-sm font-bold">1</span>
<div class="flex-1">
<h3 class="text-xl font-semibold gradient-text mb-2">CERTaIN Training Session 1</h3>
<p class="text-gray-700 mb-4">Introduction to Comparative Effectiveness and Patient-Centered Outcome Research</p>
<a href="assets/documents/CER Intro 1 UPenn 10.29.25.pdf" download class="text-blue-600 hover:text-blue-800 hover:underline font-medium">
<svg class="w-5 h-5 inline mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path>
</svg>
Download PDF
</a>
</div>
</div>
</div>
<!-- Resource Card 2 -->
<div class="card p-6">
<div class="mb-4">
<img src="assets/images/CERTaIN Picture 2.png" alt="CERTaIN Training Session 2" class="w-full h-auto rounded-lg shadow-md object-cover">
</div>
<div class="flex items-start space-x-3">
<span class="bg-blue-600 text-white rounded-full w-8 h-8 flex items-center justify-center text-sm font-bold">2</span>
<div class="flex-1">
<h3 class="text-xl font-semibold gradient-text mb-2">CERTaIN Training Session 2</h3>
<p class="text-gray-700 mb-4">Methods for Comparative Effectiveness and Patient-Centered Outcome Research</p>
<a href="assets/documents/CER Intro 2 UPenn 11.11.25.pdf" download class="text-blue-600 hover:text-blue-800 hover:underline font-medium">
<svg class="w-5 h-5 inline mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path>
</svg>
Download PDF
</a>
</div>
</div>
</div>
</div>
<!-- Resource Card 3 - Centered -->
<div class="flex justify-center mb-12">
<div class="card p-6 max-w-2xl w-full">
<div class="mb-4 flex justify-center">
<img src="assets/images/CERTaIN Traing video, picture.png" alt="CERTaIN Training Session 2" class="w-1/2 h-auto rounded-lg shadow-md object-cover">
</div>
<div class="flex items-start space-x-3">
<span class="bg-blue-600 text-white rounded-full w-8 h-8 flex items-center justify-center text-sm font-bold">3</span>
<div class="flex-1">
<h3 class="text-xl font-semibold gradient-text mb-2">CERTaIN Training Session 2</h3>
<p class="text-gray-700 mb-4">Video recording of the CERTaIN Training Session 2</p>
<div class="mt-4">
<div class="relative w-full" style="padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe class="absolute top-0 left-0 w-full h-full rounded-lg" src="https://www.youtube.com/embed/JN_WZaRgR4g" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Engagement Tools Category -->
<h3 class="text-2xl sm:text-3xl font-bold mb-8 text-center gradient-text">Engagement Tools</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-6xl mx-auto">
<!-- Resource Card 4 -->
<div class="card p-6">
<h3 class="text-xl font-semibold gradient-text mb-2">Research Fundamentals: Preparing You to Successfully Contribute to Research | PCORI</h3>
<p class="text-gray-700 mb-4">A foundational learning package for contributing to patient-centered outcomes research.</p>
<a href="https://www.pcori.org/engagement-research/engagement-resources/research-fundamentals-preparing-you-successfully-contribute-research" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Explore resource →</a>
</div>
<!-- Resource Card 5 -->
<div class="card p-6">
<h3 class="text-xl font-semibold gradient-text mb-2">Sampling, Recruiting, and Retaining Study Participants: Research Fundamentals Learning Package Module 4</h3>
<p class="text-gray-700 mb-4">Focuses on sampling, recruiting, and retaining study participants.</p>
<a href="https://www.pcori.org/engagement-research/engagement-resources/research-fundamentals-preparing-you-successfully-contribute-research/sampling-recruiting-and-retaining-study-participants-research-fundamentals-learning-package-module-4" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Explore module →</a>
</div>
<!-- Resource Card 6 -->
<div class="card p-6">
<h3 class="text-xl font-semibold gradient-text mb-2">The SEED Method: An Evidence-Based Method for Engaging Communities</h3>
<p class="text-gray-700 mb-4">A valuable resource for community engagement in research.</p>
<a href="https://connect.extension.org/g/the-seed-method-an-evidence-based-method-for-engaging-communities" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Learn more →</a>
</div>
<!-- Resource Card 7 -->
<div class="card p-6">
<h3 class="text-xl font-semibold gradient-text mb-2">Enhance Understanding of CER</h3>
<h4 class="text-lg font-semibold mb-2 text-blue-600">CERTaiN Training</h4>
<p class="text-base font-semibold mb-2 text-gray-800">CERTaIN: CER/PCOR Methods: Introduction</p>
<p class="text-sm text-gray-600 mb-4">Comprehensive training for patient-centered research.</p>
<a href="https://learning.edx.org/course/course-v1:MDAndersonX+CERTaIN.1x+3T2022/block-v1:MDAndersonX+CERTaIN.1x+3T2022+type@sequential+block@2ebac93a9acc4231886d71d74637e5af/block-v1:MDAndersonX+CERTaIN.1x+3T2022+type@vertical+block@31190f43cf274b8dbdfd7823edf58a5c" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Learn more →</a>
</div>
<!-- Resource Card 8 -->
<div class="card p-6">
<h3 class="text-xl font-semibold gradient-text mb-2">Penn State Clinical and Translational Science Institute (CTSI)</h3>
<p class="text-gray-700 mb-4">Comprehensive tools, services and training to make health research more efficient at Penn State. Provides resources for study design, data collection, recruitment, and community engagement.</p>
<a href="https://ctsi.psu.edu/" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Access CTSI Resources →</a>
</div>
<!-- Resource Card 9 -->
<div class="card p-6">
<h3 class="text-xl font-semibold gradient-text mb-2">IRB Resources and Videos from Penn State IRB</h3>
<p class="text-gray-700 mb-4">Comprehensive resources, training materials, and videos for Institutional Review Board (IRB) submissions and human subjects research compliance.</p>
<a href="https://researchsupport.psu.edu/orp/irb/irb-resources-training-and-events/" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Access IRB Resources →</a>
</div>
</div>
</div>
</section>
<!-- Recommended Articles & Publications Section -->
<section id="publications" class="section-padding bg-white relative overflow-hidden">
<!-- Background decorative elements -->
<div class="absolute inset-0 opacity-5">
<div class="absolute top-10 left-10 w-36 h-36 bg-gradient-to-r from-blue-800 to-blue-600 rounded-full blur-3xl"></div>
<div class="absolute bottom-10 right-10 w-28 h-28 bg-gradient-to-r from-blue-700 to-blue-500 rounded-full blur-3xl"></div>
</div>
<div class="max-w-6xl mx-auto relative z-10">
<h2 class="text-3xl sm:text-4xl font-bold mb-12 text-center gradient-text">Recommended Articles & Publications</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="card p-6">
<h3 class="text-xl font-semibold mb-2 gradient-text">Global, Regional, and Country-Specific Lifetime Risks of Stroke, 1990 and 2016</h3>
<p class="text-gray-700 mb-4">Research findings on stroke recovery challenges and opportunities in rural settings.</p>
<a href="https://www.nejm.org/doi/full/10.1056/NEJMoa1804492" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Read article →</a>
</div>
<div class="card p-6">
<h3 class="text-xl font-semibold mb-2 gradient-text">Rural Stroke Patients Have Higher Mortality: An Improvement Opportunity for Rural Emergency Medical Services Systems</h3>
<p class="text-gray-700 mb-4">Analysis of mortality rates and emergency medical services challenges in rural stroke care.</p>
<a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC7862426/" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Read article →</a>
</div>
<div class="card p-6">
<h3 class="text-xl font-semibold mb-2 gradient-text">The Patient-centered Outcomes Research Institute's Role in Advancing Methods for Patient-centered Outcomes Research</h3>
<p class="text-gray-700 mb-4">Overview of PCORI's mission and methodology development for patient-centered comparative effectiveness research.</p>
<a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC4336314/" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Read article →</a>
</div>
<div class="card p-6">
<h3 class="text-xl font-semibold mb-2 gradient-text">Care Transition Interventions to Improve Stroke Outcomes: Evidence Gaps in Underserved and Minority Populations</h3>
<p class="text-gray-700 mb-4">Research on care transition interventions and their impact on stroke outcomes in underserved and minority populations.</p>
<a href="https://www.ahajournals.org/doi/10.1161/STROKEAHA.122.039565?url_ver=Z39.88-2003&rfr_id=ori:rid:crossref.org&rfr_dat=cr_pub%20%200pubmed" target="_blank" class="text-blue-600 hover:text-blue-800 hover:underline font-medium">Read article →</a>
</div>
</div>
</div>
</section>
<!-- Contact Us Section -->
<section id="contact" class="section-padding animated-bg text-white relative overflow-hidden">
<!-- Background decorative elements -->
<div class="absolute inset-0 opacity-10">
<div class="absolute top-1/4 left-1/4 w-24 h-24 bg-white rounded-full"></div>
<div class="absolute bottom-1/4 right-1/4 w-20 h-20 bg-white rounded-full"></div>
<div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-32 h-32 bg-white rounded-full opacity-5"></div>
</div>
<div class="max-w-4xl mx-auto text-center relative z-10">
<h2 class="text-3xl sm:text-4xl font-bold mb-6">Contact Us</h2>
<p class="text-lg leading-relaxed mb-8">
If you have questions or want to join, please reach out to our team. We welcome all rural stroke survivors, caregivers, healthcare providers, and community advocates to be part of this important research effort.
</p>
<a href="mailto:nradfar@pennstatehealth.psu.edu" class="btn-primary inline-block">
Email Our Team
</a>
<!-- You can add a simple form here if needed, but for a "fancy" look, a mailto link is often cleaner for initial contact -->
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8 text-center">
<div class="max-w-6xl mx-auto px-4">
<p>© 2025 Improving Stroke Recovery in Rural Communities. All rights reserved.</p>
<p class="text-sm mt-2">Supported by the Patient-Centered Outcomes Research Institute (PCORI)</p>
<!-- Lead Institution Section -->
<div class="mt-6 pt-6 border-t border-gray-700">
<div class="flex justify-center items-center space-x-6">
<img src="assets/images/Penn-State-Health-Logo.jpg" alt="Penn State Health Logo" class="w-32 h-16 object-contain">
<div class="text-left">
<h3 class="text-xl font-semibold text-white">Lead Institution</h3>
<p class="text-lg text-gray-300">Pennsylvania State University Hershey Medical Center</p>
</div>
</div>
</div>
</div>
</footer>
<script>
// Static elements - no animations
document.addEventListener('DOMContentLoaded', () => {
// All elements are static, no animations needed
});
// Parallax effect
window.addEventListener('scroll', () => {
// This JS-based parallax is redundant with the CSS `background-attachment: fixed;`
// on the `.parallax` class. The CSS approach is more performant and achieves
// the desired effect on the background image. The JS was moving the entire
// header element, which is likely not the intended behavior.
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Enhanced card interactions (REMOVED)
// The hover effect is already handled efficiently by the `.card:hover`
// pseudo-class in the CSS. This JavaScript is redundant.
// No particle effects - static website
// Typewriter effect
function typeWriter(element, text, speed = 100) {
let i = 0;
element.innerHTML = '';
function type() {
if (i < text.length) {
element.innerHTML += text.charAt(i);
i++;
setTimeout(type, speed);
}
}
type();
}
// Initialize typewriter effect
// (REMOVED)
// This JS-based typewriter effect conflicts with the more performant CSS-based one
// that is already defined on the `.typewriter` class. Relying on the CSS animation
// is simpler and avoids conflicts.
// Enhanced button interactions
document.querySelectorAll('.btn-primary').forEach(button => {
button.addEventListener('click', function(e) {
// Create ripple effect
const ripple = document.createElement('span');
const rect = this.getBoundingClientRect();
const size = Math.max(rect.width, rect.height);
const x = e.clientX - rect.left - size / 2;
const y = e.clientY - rect.top - size / 2;
ripple.style.width = ripple.style.height = size + 'px';
ripple.style.left = x + 'px';
ripple.style.top = y + 'px';
ripple.classList.add('ripple');
this.appendChild(ripple);
setTimeout(() => {
ripple.remove();
}, 600);
});
});
// Add ripple effect styles
const style = document.createElement('style');
style.textContent = `
.ripple {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: scale(0);
animation: ripple-animation 0.6s linear;
pointer-events: none;
}
@keyframes ripple-animation {
to {
transform: scale(4);
opacity: 0;
}
}
`;
document.head.appendChild(style);
// Add floating animation to cards on scroll
window.addEventListener('scroll', () => {
const cards = document.querySelectorAll('.card');
cards.forEach((card, index) => {
const rect = card.getBoundingClientRect();
const isVisible = rect.top < window.innerHeight && rect.bottom > 0;
if (isVisible) {
card.style.animationDelay = `${index * 0.1}s`;
card.classList.add('float');
}
});
});
</script>
</body>
</html>