-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemployers.html
More file actions
875 lines (810 loc) · 42.9 KB
/
employers.html
File metadata and controls
875 lines (810 loc) · 42.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="apple-touch-icon" href="favicon-96x96.png">
<meta name="theme-color" content="#002d5a">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<title>Hire Top Talent — AI-Powered Recruitment | Simpatico HR</title>
<meta name="description" content="Simpatico HR helps employers hire faster with AI-powered ATS screening, proctored video interviews, and automated recruitment pipelines. Post jobs, screen candidates, and make data-driven hiring decisions.">
<meta name="keywords" content="hire talent, AI recruitment platform, ATS screening, proctored interviews, employer hiring, job posting platform, AI hiring, enterprise recruitment, HR technology">
<meta name="author" content="Simpatico HR Consultancy">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://simpaticohrconsultancy.com/employers.html" />
<meta property="og:type" content="website">
<meta property="og:title" content="Hire Top Talent — AI-Powered Recruitment | Simpatico HR">
<meta property="og:description" content="AI resume screening, proctored interviews, and full hiring pipeline automation. Start hiring smarter today.">
<meta property="og:url" content="https://simpaticohrconsultancy.com/employers.html">
<meta property="og:image" content="https://simpaticohrconsultancy.com/simpatico_hr_banner.png">
<style>
:root {
--primary: #002d5a;
--primary-dark: #001a33;
--tech: #00e5ff;
--tech-gradient: linear-gradient(135deg, #00e5ff 0%, #0078d4 100%);
--accent: #0062ff;
--light: #f4f7fa;
--white: #ffffff;
--text-dark: #0b1a27;
--text-gray: #546b81;
--card-shadow: 0 15px 35px rgba(0, 45, 90, 0.08);
--card-hover: 0 25px 50px rgba(0, 229, 255, 0.12);
--indigo: #6366f1;
--indigo-gradient: linear-gradient(135deg, #6366f1, #818cf8);
--emerald: #10b981;
}
html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Poppins', sans-serif;
background: var(--light);
color: var(--text-dark);
overflow-x: hidden;
line-height: 1.6;
}
/* ═══ LOGO ═══ */
.logo-icon {
width: 38px; height: 38px; border-radius: 10px;
background: linear-gradient(135deg, #00e5ff 0%, #0078d4 50%, #002d5a 100%);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0; box-shadow: 0 2px 10px rgba(0, 229, 255, 0.3);
position: relative; overflow: hidden;
}
.logo-icon::before { content: 'S'; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: white; }
.logo-icon::after {
content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
animation: logo-shine 4s ease-in-out infinite;
}
@keyframes logo-shine {
0%, 100% { transform: translateX(-100%) rotate(45deg); }
50% { transform: translateX(100%) rotate(45deg); }
}
.logo-img { height: 36px; display: none; flex-shrink: 0; }
.logo-text { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px; color: #fff; }
.logo-text-highlight { color: transparent; background: var(--tech-gradient); -webkit-background-clip: text; background-clip: text; font-weight: 800; }
/* ═══ NAVIGATION ═══ */
nav {
background: rgba(0, 45, 90, 0.97); padding: 0 5%;
position: sticky; top: 0; z-index: 1000;
border-bottom: 1px solid rgba(255,255,255,0.08); height: 64px;
}
nav::before { content: ''; position: absolute; inset: 0; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: -1; pointer-events: none; }
.nav-container { max-width: 1300px; margin: auto; display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo-box { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 4px; height: 100%; }
.nav-links a {
color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; font-weight: 500;
padding: 8px 12px; border-radius: 8px; transition: all 0.2s ease; white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--tech); background: rgba(0, 229, 255, 0.08); }
.nav-pill { border: 1.5px solid rgba(255,255,255,0.2) !important; border-radius: 50px !important; padding: 7px 16px !important; font-weight: 600 !important; font-size: 12px !important; display: inline-flex !important; align-items: center; gap: 5px; }
.nav-pill i { font-size: 11px; }
.lab-link { border-color: #ff9800 !important; color: #ff9800 !important; background: rgba(255,152,0,0.06); }
.lab-link:hover { background: linear-gradient(135deg, #ff9800, #ff5722) !important; color: #fff !important; border-color: transparent !important; }
.ats-link { border-color: #6366f1 !important; color: #818cf8 !important; background: rgba(99,102,241,0.06); }
.ats-link:hover { background: linear-gradient(135deg, #6366f1, #818cf8) !important; color: white !important; border-color: transparent !important; }
.nav-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.12); margin: 0 4px; flex-shrink: 0; }
.admin-link { color: rgba(255,255,255,0.4) !important; font-size: 11px !important; padding: 5px 10px !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 6px !important; }
.admin-link:hover { color: var(--tech) !important; border-color: rgba(0,229,255,0.3) !important; }
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; padding: 8px; border-radius: 8px; }
@media (max-width: 1100px) {
.menu-toggle { display: flex; align-items: center; justify-content: center; }
.nav-links {
display: none; flex-direction: column; position: fixed;
top: 64px; left: 0; right: 0; bottom: 0;
background: rgba(0, 20, 45, 0.98); backdrop-filter: blur(20px);
padding: 24px 20px; gap: 4px; overflow-y: auto; z-index: 999;
}
.nav-links.active { display: flex; }
.nav-links a { padding: 14px 20px !important; font-size: 15px !important; width: 100%; }
.nav-divider { width: 100%; height: 1px; margin: 8px 0; }
}
/* ═══ HERO ═══ */
.emp-hero {
min-height: 88vh;
background: linear-gradient(160deg, #001a33 0%, #002d5a 40%, #0a3a6b 70%, #0d4480 100%);
display: flex; align-items: center; justify-content: center;
text-align: center; color: #fff; position: relative; overflow: hidden;
padding: 100px 5% 80px;
}
.emp-hero::before {
content: ''; position: absolute; inset: 0;
background:
radial-gradient(ellipse at 15% 30%, rgba(0, 229, 255, 0.12) 0%, transparent 50%),
radial-gradient(ellipse at 85% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
radial-gradient(ellipse at 50% 90%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
pointer-events: none;
}
.emp-hero::after {
content: ''; position: absolute; bottom: 0; left: 0; width: 100%;
height: 120px; background: linear-gradient(to top, var(--light), transparent);
}
/* Floating orbs */
.orb {
position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3;
animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: var(--tech); top: -10%; left: -5%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: #6366f1; bottom: 10%; right: -3%; animation-delay: -8s; }
.orb-3 { width: 200px; height: 200px; background: #10b981; top: 50%; left: 40%; animation-delay: -14s; opacity: 0.15; }
@keyframes orbFloat {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -40px) scale(1.1); }
66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-inner { max-width: 860px; z-index: 2; position: relative; }
.hero-badge {
display: inline-flex; align-items: center; gap: 8px;
padding: 8px 20px; background: rgba(0, 229, 255, 0.08);
border: 1px solid rgba(0, 229, 255, 0.2); border-radius: 50px;
font-size: 12px; font-weight: 700; color: var(--tech);
text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px;
}
.hero-badge i { animation: pulse-icon 2s infinite; }
@keyframes pulse-icon { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.emp-hero h1 {
font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1.08;
font-weight: 800; margin-bottom: 22px;
}
.emp-hero h1 .hl {
color: transparent; background: var(--tech-gradient);
-webkit-background-clip: text; background-clip: text;
}
.emp-hero > .hero-inner > p {
font-size: 1.2rem; color: rgba(255,255,255,0.7);
max-width: 600px; margin: 0 auto 36px; font-weight: 300;
}
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 50px; }
.btn {
padding: 15px 30px; border-radius: 12px; text-decoration: none;
font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
transition: all 0.3s ease; font-size: 0.95rem; border: none; cursor: pointer;
font-family: 'Poppins', sans-serif;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(0,120,212,0.35); }
.btn-primary:hover { background: #0056d6; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,120,212,0.4); }
.btn-outline { background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.25); color: white; backdrop-filter: blur(5px); }
.btn-outline:hover { background: white; color: var(--primary); transform: translateY(-3px); }
.btn-tech { background: var(--tech-gradient); color: var(--primary-dark); font-weight: 800; box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3); }
.btn-tech:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0, 229, 255, 0.4); filter: brightness(1.1); }
/* Hero metrics strip */
.hero-metrics {
display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-metric { text-align: center; }
.hero-metric .hm-num { font-size: 2rem; font-weight: 800; color: var(--tech); line-height: 1; }
.hero-metric .hm-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
/* ═══ TRUST BAR ═══ */
.trust-section {
background: white; padding: 40px 5%;
border-bottom: 1px solid rgba(0,45,90,0.06);
}
.trust-inner {
max-width: 1100px; margin: 0 auto;
display: flex; align-items: center; justify-content: center;
gap: 40px; flex-wrap: wrap;
}
.trust-label { font-size: 0.78rem; color: var(--text-gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.trust-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-gray); font-weight: 500; }
.trust-item i { font-size: 1.3rem; color: var(--primary); opacity: 0.6; }
/* ═══ SECTION FRAMEWORK ═══ */
section { padding: 100px 5%; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag {
display: inline-flex; align-items: center; gap: 6px;
padding: 6px 16px; background: rgba(0, 98, 255, 0.06);
border: 1px solid rgba(0, 98, 255, 0.12); border-radius: 50px;
font-size: 11px; font-weight: 700; color: var(--accent);
text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-header h2 { font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1.15; margin-bottom: 14px; }
.section-header h2 .hl { color: transparent; background: var(--tech-gradient); -webkit-background-clip: text; background-clip: text; }
.section-header p { font-size: 1.05rem; color: var(--text-gray); line-height: 1.7; }
/* ═══ WHY SECTION ═══ */
.why-section { background: white; }
.why-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 28px; max-width: 1200px; margin: 0 auto;
}
.why-card {
background: var(--light); border: 1px solid rgba(0,45,90,0.06);
border-radius: 20px; padding: 36px 28px;
transition: all 0.4s ease; position: relative; overflow: hidden;
}
.why-card::before {
content: ''; position: absolute; top: 0; left: 0;
width: 100%; height: 4px; background: var(--tech-gradient);
transform: scaleX(0); transition: 0.4s; transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--card-hover); border-color: rgba(0, 229, 255, 0.2); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
width: 56px; height: 56px; border-radius: 16px;
background: rgba(0, 98, 255, 0.08); display: flex;
align-items: center; justify-content: center;
font-size: 1.5rem; color: var(--accent); margin-bottom: 20px;
}
.why-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.7; }
/* ═══ PLATFORM FEATURES ═══ */
.platform-section {
background: linear-gradient(160deg, #0a1628 0%, #0d2137 50%, #0a1628 100%);
color: white; position: relative; overflow: hidden;
}
.platform-section::before {
content: ''; position: absolute; inset: 0;
background:
radial-gradient(ellipse at 20% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 60%),
radial-gradient(ellipse at 80% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}
.platform-section .section-tag { background: rgba(0, 229, 255, 0.08); border-color: rgba(0, 229, 255, 0.15); color: var(--tech); }
.platform-section .section-header h2 { color: white; }
.platform-section .section-header p { color: rgba(255,255,255,0.6); }
.platform-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}
.plat-card {
background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
border-radius: 20px; padding: 32px 26px; text-align: center;
transition: all 0.35s; position: relative; overflow: hidden;
}
.plat-card::after {
content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
width: 40px; height: 3px; border-radius: 0 0 4px 4px;
background: var(--tech-gradient); opacity: 0; transition: 0.4s;
}
.plat-card:hover { background: rgba(0, 229, 255, 0.04); border-color: rgba(0, 229, 255, 0.15); transform: translateY(-6px); }
.plat-card:hover::after { opacity: 1; width: 60px; }
.plat-icon {
width: 64px; height: 64px; border-radius: 18px;
background: rgba(0, 229, 255, 0.06); display: flex;
align-items: center; justify-content: center;
font-size: 1.6rem; color: var(--tech); margin: 0 auto 18px;
}
.plat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.plat-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.plat-badge {
display: inline-block; padding: 3px 10px; border-radius: 6px;
font-size: 10px; font-weight: 800; text-transform: uppercase;
margin-bottom: 12px; letter-spacing: 0.5px;
}
.badge-ai { background: rgba(0, 229, 255, 0.1); color: var(--tech); }
.badge-new { background: rgba(16, 185, 129, 0.12); color: #34d399; }
.badge-pro { background: rgba(99, 102, 241, 0.12); color: #a5b4fc; }
/* ═══ HOW IT WORKS ═══ */
.how-section { background: var(--light); }
.how-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 32px; max-width: 1100px; margin: 0 auto; position: relative;
}
.how-grid::before {
content: ''; position: absolute; top: 58px; left: 10%; right: 10%;
height: 2px; background: linear-gradient(90deg, transparent, rgba(0,98,255,0.15), rgba(0,229,255,0.15), transparent);
z-index: 0;
}
.how-step {
text-align: center; position: relative; z-index: 1;
background: white; border-radius: 20px; padding: 36px 24px;
border: 1px solid rgba(0,45,90,0.05); transition: all 0.3s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
.step-num {
width: 48px; height: 48px; border-radius: 50%;
background: var(--tech-gradient); display: flex; align-items: center;
justify-content: center; font-size: 1.1rem; font-weight: 800;
color: var(--primary-dark); margin: 0 auto 18px;
box-shadow: 0 6px 20px rgba(0, 229, 255, 0.25);
}
.how-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.how-step p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.6; }
/* ═══ STATS SECTION ═══ */
.stats-section {
background: var(--primary); padding: 70px 5%; position: relative; overflow: hidden;
}
.stats-section::before {
content: ''; position: absolute; inset: 0;
background: radial-gradient(ellipse at 50% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
}
.stats-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px; max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 2;
}
.stat-item { padding: 10px 0; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--tech); line-height: 1; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 6px; }
/* ═══ TESTIMONIALS ═══ */
.testimonials-section { background: white; }
.testi-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 28px; max-width: 1100px; margin: 0 auto;
}
.testi-card {
background: var(--light); border: 1px solid rgba(0,45,90,0.06);
border-radius: 20px; padding: 32px 28px;
transition: all 0.3s; position: relative;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow); }
.testi-stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.92rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
width: 44px; height: 44px; border-radius: 12px;
background: var(--tech-gradient); display: flex;
align-items: center; justify-content: center;
font-size: 1.1rem; font-weight: 800; color: var(--primary-dark);
}
.testi-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.testi-info span { font-size: 0.78rem; color: var(--text-gray); }
/* Pricing removed — location-based dynamic pricing at login */
/* ═══ FAQ ═══ */
.faq-section { background: white; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
border: 1px solid rgba(0,45,90,0.06); border-radius: 16px;
margin-bottom: 12px; overflow: hidden; background: var(--light);
transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(0,98,255,0.15); }
.faq-item.open { border-color: rgba(0,98,255,0.2); background: white; }
.faq-q {
display: flex; justify-content: space-between; align-items: center;
padding: 20px 24px; cursor: pointer; font-weight: 600;
font-size: 0.95rem; color: var(--primary); user-select: none;
}
.faq-q i { color: var(--accent); font-size: 0.85rem; transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
padding: 0 24px; font-size: 0.9rem; color: var(--text-gray); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
/* ═══ CTA ═══ */
.cta-section {
background: var(--tech-gradient); padding: 90px 5%;
text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
content: ''; position: absolute; inset: 0;
background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 2; max-width: 650px; margin: 0 auto; }
.cta-section h2 { font-size: 2.4rem; color: var(--primary-dark); font-weight: 800; margin-bottom: 14px; }
.cta-section p { color: rgba(0,45,90,0.7); font-size: 1.1rem; margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-btn-dark {
background: var(--primary); color: white; padding: 16px 36px;
border-radius: 12px; text-decoration: none; font-weight: 700;
font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
transition: all 0.3s; box-shadow: 0 8px 24px rgba(0,45,90,0.3);
}
.cta-btn-dark:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,45,90,0.4); }
.cta-btn-light {
background: rgba(255,255,255,0.3); color: var(--primary-dark); padding: 16px 36px;
border-radius: 12px; text-decoration: none; font-weight: 700;
font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
transition: all 0.3s; backdrop-filter: blur(10px);
border: 1.5px solid rgba(255,255,255,0.4);
}
.cta-btn-light:hover { background: white; transform: translateY(-3px); }
/* ═══ FOOTER ═══ */
footer {
background: var(--primary-dark); color: #a1b1c1;
padding: 80px 20px 40px; text-align: center;
border-top: 4px solid var(--tech);
}
.footer-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 30px; max-width: 1100px; margin: 0 auto 40px; text-align: left;
}
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 14px; }
.footer-col a { color: #a1b1c1; text-decoration: none; display: block; font-size: 0.88rem; margin-bottom: 8px; transition: 0.2s; }
.footer-col a:hover { color: var(--tech); padding-left: 4px; }
.footer-logo-area { opacity: 0.4; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.footer-logo-icon {
width: 32px; height: 32px; border-radius: 8px;
background: linear-gradient(135deg, #00e5ff, #0078d4);
display: flex; align-items: center; justify-content: center;
font-size: 16px; font-weight: 800; color: white; filter: grayscale(80%);
}
footer p { font-size: 0.85rem; opacity: 0.6; margin-top: 10px; }
/* ═══ ANIMATIONS ═══ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
.emp-hero h1 { font-size: 2.4rem; }
.section-header h2 { font-size: 2rem; }
.hero-metrics { gap: 24px; }
.pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 600px) {
.emp-hero { padding: 80px 5% 60px; min-height: auto; }
.emp-hero h1 { font-size: 2rem; }
.hero-buttons { flex-direction: column; align-items: center; }
.btn { width: 100%; max-width: 300px; justify-content: center; }
.hero-metrics { flex-direction: column; gap: 16px; }
.trust-inner { flex-direction: column; gap: 16px; }
.footer-grid { grid-template-columns: 1fr; text-align: center; }
.cta-buttons { flex-direction: column; align-items: center; }
.cta-btn-dark, .cta-btn-light { width: 100%; max-width: 300px; justify-content: center; }
.how-grid::before { display: none; }
.stats-grid { grid-template-columns: 1fr 1fr; }
}
</style>
</head>
<body>
<!-- ═══ NAVIGATION ═══ -->
<nav>
<div class="nav-container">
<a href="index.html" class="logo-box">
<div class="logo-icon" id="logoFallback"></div>
<img src="favicon-96x96.png" class="logo-img" id="logoImg" alt="Simpatico HR Logo"
onload="this.style.display='block';document.getElementById('logoFallback').style.display='none';"
onerror="this.style.display='none';">
<span class="logo-text">SIMPATICO <span class="logo-text-highlight">HR</span></span>
</a>
<button class="menu-toggle" id="menuToggle" onclick="toggleMenu()" aria-label="Toggle menu">
<i class="fas fa-bars" id="menuIcon"></i>
</button>
<div class="nav-links" id="navLinks">
<a href="index.html">Home</a>
<a href="sectors.html">Sectors</a>
<a href="employers.html" class="active">Employers</a>
<a href="jobs.html">Jobs</a>
<a href="contact.html">Contact</a>
<div class="nav-divider"></div>
<a href="mock-admin.html" class="nav-pill ats-link"><i class="fas fa-wand-magic-sparkles"></i> Mock Admin</a>
<div class="nav-divider"></div>
<a href="admin.html" class="admin-link"><i class="fas fa-shield-halved"></i> Admin</a>
</div>
</div>
</nav>
<div class="menu-overlay" id="menuOverlay" onclick="toggleMenu()"></div>
<!-- ═══ HERO ═══ -->
<header class="emp-hero">
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
<div class="hero-inner fade-in">
<div class="hero-badge"><i class="fas fa-rocket"></i> Enterprise Recruitment Platform</div>
<h1>Recruit, Manage & Pay<br>Your <span class="hl">Entire Workforce</span></h1>
<p>AI recruitment, HR automation, payroll processing, attendance tracking, and performance management — one unified platform for modern businesses.</p>
<div class="hero-buttons">
<a href="auth/register-company.html" class="btn btn-tech"><i class="fas fa-building"></i> Start Hiring Free</a>
<a href="#platform" class="btn btn-outline"><i class="fas fa-play-circle"></i> See How It Works</a>
<a href="contact.html" class="btn btn-outline"><i class="fas fa-phone"></i> Talk to Sales</a>
</div>
<div class="hero-metrics">
<div class="hero-metric"><div class="hm-num" id="metricTime">72%</div><div class="hm-label">Faster Hiring</div></div>
<div class="hero-metric"><div class="hm-num">85%</div><div class="hm-label">AI Match Accuracy</div></div>
<div class="hero-metric"><div class="hm-num">100%</div><div class="hm-label">Payroll Automated</div></div>
<div class="hero-metric"><div class="hm-num">24/7</div><div class="hm-label">AI HR Platform</div></div>
</div>
</div>
</header>
<!-- ═══ TRUST BAR ═══ -->
<section class="trust-section">
<div class="trust-inner fade-in">
<span class="trust-label">Trusted by teams across</span>
<div class="trust-logos">
<div class="trust-item"><i class="fas fa-building-columns"></i> Enterprise</div>
<div class="trust-item"><i class="fas fa-briefcase-medical"></i> Healthcare</div>
<div class="trust-item"><i class="fas fa-microchip"></i> Technology</div>
<div class="trust-item"><i class="fas fa-truck-fast"></i> Logistics</div>
<div class="trust-item"><i class="fas fa-industry"></i> Manufacturing</div>
<div class="trust-item"><i class="fas fa-graduation-cap"></i> Education</div>
</div>
</div>
</section>
<!-- ═══ WHY SIMPATICO ═══ -->
<section class="why-section" id="why">
<div class="section-header fade-in">
<div class="section-tag"><i class="fas fa-star"></i> Why Employers Choose Us</div>
<h2>Replace Your Entire <span class="hl">HR Stack</span></h2>
<p>Stop juggling 10 different tools. One platform handles recruitment, payroll, attendance, performance, and HR operations.</p>
</div>
<div class="why-grid">
<div class="why-card fade-in">
<div class="why-icon"><i class="fas fa-robot"></i></div>
<h3>AI-Powered Recruitment</h3>
<p>AI resume screening, auto-shortlisting, proctored interviews, and complete applicant tracking — all automated.</p>
</div>
<div class="why-card fade-in">
<div class="why-icon"><i class="fas fa-money-check-dollar"></i></div>
<h3>Automated Payroll</h3>
<p>Process salaries, deductions, taxes, and payslips in one click. Multi-currency support with compliance built-in.</p>
</div>
<div class="why-card fade-in">
<div class="why-icon"><i class="fas fa-fingerprint"></i></div>
<h3>Attendance & Leave</h3>
<p>GPS-enabled check-in/out, shift management, leave requests with auto-approval workflows, and overtime tracking.</p>
</div>
<div class="why-card fade-in">
<div class="why-icon"><i class="fas fa-bullseye"></i></div>
<h3>Performance Management</h3>
<p>360° reviews, OKR/goal tracking, competency mapping, and AI-powered performance insights for every employee.</p>
</div>
<div class="why-card fade-in">
<div class="why-icon"><i class="fas fa-user-plus"></i></div>
<h3>Onboarding & Training</h3>
<p>Automated offer-to-desk workflows, document collection, task checklists, LMS integration, and training tracking.</p>
</div>
<div class="why-card fade-in">
<div class="why-icon"><i class="fas fa-shield-halved"></i></div>
<h3>Enterprise Security</h3>
<p>GDPR compliant. Role-based access, multi-tenant isolation, full audit trails, and encrypted data at rest.</p>
</div>
</div>
</section>
<!-- ═══ PLATFORM FEATURES ═══ -->
<section class="platform-section" id="platform">
<div class="section-header fade-in">
<div class="section-tag"><i class="fas fa-server"></i> Complete HR Suite</div>
<h2>One Platform. <span class="hl">Total Control.</span></h2>
<p>Recruitment, payroll, attendance, performance, training — every HR function in a single intelligent dashboard.</p>
</div>
<div class="platform-grid">
<div class="plat-card fade-in">
<div class="plat-badge badge-ai">AI Powered</div>
<div class="plat-icon"><i class="fas fa-brain"></i></div>
<h3>Smart ATS Engine</h3>
<p>AI-driven applicant tracking that auto-ranks, filters, and shortlists candidates based on deep resume analysis.</p>
</div>
<div class="plat-card fade-in">
<div class="plat-badge badge-new">New</div>
<div class="plat-icon"><i class="fas fa-money-check-dollar"></i></div>
<h3>Payroll Processing</h3>
<p>Automated salary computation, tax calculations, statutory deductions, and digital payslip generation every month.</p>
</div>
<div class="plat-card fade-in">
<div class="plat-badge badge-pro">Enterprise</div>
<div class="plat-icon"><i class="fas fa-eye"></i></div>
<h3>Proctored Interviews</h3>
<p>Screen sharing detection, eye-tracking, and tab-switch monitoring ensure interview integrity with AI scoring.</p>
</div>
<div class="plat-card fade-in">
<div class="plat-badge badge-new">New</div>
<div class="plat-icon"><i class="fas fa-clock"></i></div>
<h3>Attendance & Shifts</h3>
<p>GPS-enabled clock-in/out, shift scheduling, overtime tracking, and automated leave management with approval workflows.</p>
</div>
<div class="plat-card fade-in">
<div class="plat-icon"><i class="fas fa-chart-line"></i></div>
<h3>Performance Reviews</h3>
<p>360° feedback, OKR tracking, competency assessments, and AI-generated performance summaries for every team member.</p>
</div>
<div class="plat-card fade-in">
<div class="plat-icon"><i class="fas fa-graduation-cap"></i></div>
<h3>Training & LMS</h3>
<p>Course assignment, progress tracking, certification management, and skill gap analysis — all built into the platform.</p>
</div>
<div class="plat-card fade-in">
<div class="plat-icon"><i class="fas fa-user-check"></i></div>
<h3>Onboarding Workflows</h3>
<p>Digital offer letters, document collection, task checklists, and guided first-week programs — fully automated.</p>
</div>
<div class="plat-card fade-in">
<div class="plat-icon"><i class="fas fa-envelopes-bulk"></i></div>
<h3>Multi-Channel Alerts</h3>
<p>WhatsApp, email, and SMS notifications at every HR event — from interview invites to payslip delivery.</p>
</div>
<div class="plat-card fade-in">
<div class="plat-icon"><i class="fas fa-globe"></i></div>
<h3>Job Syndication</h3>
<p>Post to LinkedIn, Indeed, and your career page simultaneously. One click, maximum reach across all platforms.</p>
</div>
<div class="plat-card fade-in">
<div class="plat-badge badge-ai">AI Powered</div>
<div class="plat-icon"><i class="fas fa-wand-magic-sparkles"></i></div>
<h3>HR Automation Builder</h3>
<p>Create workflows with natural language: "Auto-approve leaves under 3 days" or "Alert HR if attendance drops below 80%."</p>
</div>
</div>
</section>
<!-- ═══ HOW IT WORKS ═══ -->
<section class="how-section" id="how">
<div class="section-header fade-in">
<div class="section-tag"><i class="fas fa-route"></i> How It Works</div>
<h2>From Job Post to <span class="hl">Hired</span> in 4 Steps</h2>
<p>Our AI handles the heavy lifting so your team can focus on what matters — finding the perfect fit.</p>
</div>
<div class="how-grid">
<div class="how-step fade-in">
<div class="step-num">1</div>
<h3>Post Your Job</h3>
<p>Create a job listing in under 2 minutes. Our AI enhances descriptions for maximum reach and relevance.</p>
</div>
<div class="how-step fade-in">
<div class="step-num">2</div>
<h3>AI Screens Candidates</h3>
<p>Every applicant is scored against your requirements instantly. Only qualified candidates move forward.</p>
</div>
<div class="how-step fade-in">
<div class="step-num">3</div>
<h3>Automated Interviews</h3>
<p>Top candidates receive AI interview invitations immediately. Proctored, scored, and recorded automatically.</p>
</div>
<div class="how-step fade-in">
<div class="step-num">4</div>
<h3>Hire With Confidence</h3>
<p>Review AI-scored reports, compare candidates side-by-side, and extend offers — all from one dashboard.</p>
</div>
</div>
</section>
<!-- ═══ STATS ═══ -->
<section class="stats-section">
<div class="stats-grid fade-in">
<div class="stat-item"><div class="stat-number">500+</div><div class="stat-label">Candidates Screened</div></div>
<div class="stat-item"><div class="stat-number">72%</div><div class="stat-label">Faster Time-to-Hire</div></div>
<div class="stat-item"><div class="stat-number">85%</div><div class="stat-label">AI Match Accuracy</div></div>
<div class="stat-item"><div class="stat-number">9+</div><div class="stat-label">Countries Served</div></div>
</div>
</section>
<!-- ═══ TESTIMONIALS ═══ -->
<section class="testimonials-section" id="reviews">
<div class="section-header fade-in">
<div class="section-tag"><i class="fas fa-quote-left"></i> What Employers Say</div>
<h2>Trusted by <span class="hl">Hiring Teams</span></h2>
<p>Hear from companies that transformed their recruitment with Simpatico HR.</p>
</div>
<div class="testi-grid">
<div class="testi-card fade-in">
<div class="testi-stars">★★★★★</div>
<p class="testi-text">"We reduced our screening time by 80%. The AI interview module is a game-changer — candidates love the seamless experience."</p>
<div class="testi-author">
<div class="testi-avatar">RK</div>
<div class="testi-info">
<h4>Rahul Krishnan</h4>
<span>HR Director, TechVista Solutions</span>
</div>
</div>
</div>
<div class="testi-card fade-in">
<div class="testi-stars">★★★★★</div>
<p class="testi-text">"From job posting to offer letter in 5 days — that was previously taking us 3 weeks. The automation workflows are incredibly powerful."</p>
<div class="testi-author">
<div class="testi-avatar">AP</div>
<div class="testi-info">
<h4>Ananya Patel</h4>
<span>Talent Lead, CloudNine Corp</span>
</div>
</div>
</div>
<div class="testi-card fade-in">
<div class="testi-stars">★★★★★</div>
<p class="testi-text">"The proctored interview feature ensures we're evaluating the real candidate. It's enterprise-grade security without the enterprise-grade complexity."</p>
<div class="testi-author">
<div class="testi-avatar">SM</div>
<div class="testi-info">
<h4>Suresh Menon</h4>
<span>CTO, GulfTech Engineering</span>
</div>
</div>
</div>
</div>
</section>
<!-- ═══ FAQ ═══ -->
<section class="faq-section" id="faq">
<div class="section-header fade-in">
<div class="section-tag"><i class="fas fa-circle-question"></i> FAQ</div>
<h2>Frequently Asked <span class="hl">Questions</span></h2>
</div>
<div class="faq-list">
<div class="faq-item fade-in" onclick="this.classList.toggle('open')">
<div class="faq-q">How does the AI screening work? <i class="fas fa-chevron-down"></i></div>
<div class="faq-a">Our AI analyzes each candidate's resume against your job description, evaluating skills match, experience relevance, and qualifications. Each candidate receives a score from 0-100, with those above your threshold automatically advanced to the next stage.</div>
</div>
<div class="faq-item fade-in" onclick="this.classList.toggle('open')">
<div class="faq-q">What is a proctored AI interview? <i class="fas fa-chevron-down"></i></div>
<div class="faq-a">Proctored AI interviews are automated video interview sessions where our AI asks role-specific questions, monitors for cheating (screen sharing, eye tracking, tab switching), and evaluates responses in real-time. Candidates can take interviews 24/7 at their convenience.</div>
</div>
<div class="faq-item fade-in" onclick="this.classList.toggle('open')">
<div class="faq-q">Can I try it before committing? <i class="fas fa-chevron-down"></i></div>
<div class="faq-a">Absolutely! Register for a free trial and get full access to all platform features — AI recruitment, payroll, attendance, and performance management. No credit card required. You can also explore our Mock Admin dashboard to test all features instantly.</div>
</div>
<div class="faq-item fade-in" onclick="this.classList.toggle('open')">
<div class="faq-q">Does the platform include payroll processing? <i class="fas fa-chevron-down"></i></div>
<div class="faq-a">Yes! Our payroll module handles automated salary computation, tax calculations, statutory deductions (PF, ESI, TDS), and digital payslip generation. It integrates directly with attendance data for accurate overtime and leave deduction calculations.</div>
</div>
<div class="faq-item fade-in" onclick="this.classList.toggle('open')">
<div class="faq-q">How does the pricing work? <i class="fas fa-chevron-down"></i></div>
<div class="faq-a">Pricing is customized based on your company's location, team size, and the modules you need. After registration, you'll see plans tailored to your region with local currency support. Contact our sales team for enterprise quotes.</div>
</div>
<div class="faq-item fade-in" onclick="this.classList.toggle('open')">
<div class="faq-q">Which regions do you operate in? <i class="fas fa-chevron-down"></i></div>
<div class="faq-a">We serve employers across India, Middle East (UAE, Saudi Arabia, Qatar, Kuwait, Bahrain, Oman), and Europe (UK, Germany). Our platform supports multi-language interviews and regional compliance requirements.</div>
</div>
<div class="faq-item fade-in" onclick="this.classList.toggle('open')">
<div class="faq-q">How does job syndication work? <i class="fas fa-chevron-down"></i></div>
<div class="faq-a">When you create a job posting, you can choose to syndicate it to LinkedIn, Indeed, and your own careers page simultaneously with a single click. All applications from every source flow into your unified pipeline automatically.</div>
</div>
<div class="faq-item fade-in" onclick="this.classList.toggle('open')">
<div class="faq-q">Is my data secure and GDPR compliant? <i class="fas fa-chevron-down"></i></div>
<div class="faq-a">Yes. We follow industry best practices including encryption at rest and in transit, role-based access control, comprehensive audit logging, and full GDPR/CCPA compliance. Enterprise customers can request dedicated infrastructure.</div>
</div>
</div>
</section>
<!-- ═══ CTA ═══ -->
<section class="cta-section">
<div class="cta-inner fade-in">
<h2>Ready to Hire Smarter?</h2>
<p>Join companies that have transformed their recruitment with AI-powered automation. Start for free today.</p>
<div class="cta-buttons">
<a href="auth/register-company.html" class="cta-btn-dark"><i class="fas fa-rocket"></i> Start Hiring Free</a>
<a href="contact.html" class="cta-btn-light"><i class="fas fa-calendar-check"></i> Book a Demo</a>
</div>
</div>
</section>
<!-- ═══ FOOTER ═══ -->
<footer>
<div class="footer-grid">
<div class="footer-col">
<h4>Platform</h4>
<a href="employers.html">For Employers</a>
<a href="jobs.html">Job Board</a>
<a href="mock-admin.html">Mock Admin</a>
<a href="platform/pricing.html">Pricing</a>
</div>
<div class="footer-col">
<h4>Company</h4>
<a href="about.html">About Us</a>
<a href="sectors.html">Sectors</a>
<a href="contact.html">Contact</a>
<a href="#">Careers</a>
</div>
<div class="footer-col">
<h4>Resources</h4>
<a href="#">Blog</a>
<a href="#">API Docs</a>
<a href="#">Help Center</a>
<a href="#">Privacy Policy</a>
</div>
<div class="footer-col">
<h4>Connect</h4>
<a href="https://wa.me/919544842260" target="_blank"><i class="fab fa-whatsapp"></i> WhatsApp</a>
<a href="https://www.linkedin.com/company/simpatico-manpower/" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a>
<a href="https://www.facebook.com/share/1are5i8ehM/" target="_blank"><i class="fab fa-facebook"></i> Facebook</a>
<a href="mailto:simpaticohrconsultancy@gmail.com"><i class="fas fa-envelope"></i> Email</a>
</div>
</div>
<div class="footer-logo-area">
<div class="footer-logo-icon">S</div>
</div>
<p>© 2026 Simpatico HR Consultancy | Perinthalmanna, Kerala, India</p>
<p style="font-size:0.75rem;opacity:0.4;margin-top:8px;">AI-Powered Recruitment • ATS Screening • Proctored Interviews</p>
</footer>
<!-- ═══ SCRIPTS ═══ -->
<script>
// Mobile Menu
let menuOpen = false;
function toggleMenu() {
menuOpen = !menuOpen;
document.getElementById('navLinks').classList.toggle('active', menuOpen);
document.getElementById('menuOverlay').classList.toggle('active', menuOpen);
document.getElementById('menuIcon').className = menuOpen ? 'fas fa-xmark' : 'fas fa-bars';
document.body.style.overflow = menuOpen ? 'hidden' : '';
}
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', () => { if (menuOpen) toggleMenu(); });
});
document.addEventListener('keydown', e => { if (e.key === 'Escape' && menuOpen) toggleMenu(); });
// Scroll Animation
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) entry.target.classList.add('visible');
});
}, { threshold: 0.1, rootMargin: '0px 0px -40px 0px' });
document.querySelectorAll('.fade-in').forEach(el => observer.observe(el));
</script>
</body>
</html>