-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
866 lines (816 loc) · 35.2 KB
/
index.html
File metadata and controls
866 lines (816 loc) · 35.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Priority Queue – Executive Search Firm</title>
<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=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@400;500&display=swap" rel="stylesheet" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0a0a0f;
--surface: #12121a;
--surface2: #1a1a26;
--border: rgba(255,255,255,0.08);
--accent: #3b82f6;
--accent2: #0ea5e9;
--text: #f0f0f8;
--muted: #888899;
--nav-h: 72px;
}
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: 'DM Sans', sans-serif;
font-size: 16px;
line-height: 1.6;
overflow-x: hidden;
}
/* ── NAV ─────────────────────────────────── */
nav {
position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
height: var(--nav-h);
display: flex; align-items: center; justify-content: space-between;
padding: 0 clamp(24px, 5vw, 80px);
background: rgba(10,10,15,0.85);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--border);
}
.logo {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.6rem;
letter-spacing: 0.04em;
color: var(--text);
text-decoration: none;
display: flex; align-items: center; gap: 10px;
}
.logo-badge {
display: inline-flex; align-items: center; justify-content: center;
width: 32px; height: 32px; border-radius: 6px;
background: var(--accent);
color: #000; font-size: 1rem; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
color: var(--muted); text-decoration: none; font-size: 0.875rem;
font-weight: 500; letter-spacing: 0.02em;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
background: var(--accent); color: #000 !important;
padding: 8px 20px; border-radius: 6px; font-weight: 600 !important;
transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.hamburger {
display: none; flex-direction: column; gap: 5px;
background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
display: block; width: 24px; height: 2px;
background: var(--text); border-radius: 2px;
transition: transform 0.3s, opacity 0.3s;
}
/* ── MOBILE NAV ─────────────────────────── */
.mobile-nav {
display: none; position: fixed; inset: 0; z-index: 99;
background: var(--bg); padding: calc(var(--nav-h) + 32px) 32px 32px;
flex-direction: column; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
color: var(--text); text-decoration: none; font-size: 1.5rem;
font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em;
border-bottom: 1px solid var(--border); padding-bottom: 16px;
}
/* ── SECTIONS ────────────────────────────── */
section { padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 80px); }
/* ── HERO ────────────────────────────────── */
#hero {
min-height: 100vh;
display: grid; place-items: center;
position: relative; overflow: hidden;
padding-top: calc(var(--nav-h) + 60px);
}
.hero-grid {
position: absolute; inset: 0; opacity: 0.25;
background-image:
linear-gradient(var(--border) 1px, transparent 1px),
linear-gradient(90deg, var(--border) 1px, transparent 1px);
background-size: 60px 60px;
}
.hero-glow {
position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
width: 700px; height: 400px; border-radius: 50%;
background: radial-gradient(ellipse, rgba(59,130,246,0.14) 0%, transparent 70%);
pointer-events: none;
}
.hero-glow2 {
position: absolute; bottom: 10%; right: 5%;
width: 400px; height: 300px; border-radius: 50%;
background: radial-gradient(ellipse, rgba(14,165,233,0.1) 0%, transparent 70%);
pointer-events: none;
}
.hero-inner {
position: relative; text-align: center; max-width: 860px;
animation: fadeUp 0.9s ease both;
}
.hero-tag {
display: inline-flex; align-items: center; gap: 8px;
font-family: 'DM Mono', monospace; font-size: 0.75rem;
color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.25);
padding: 6px 16px; border-radius: 100px; margin-bottom: 32px;
}
.hero-title {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(3.5rem, 10vw, 8rem);
line-height: 0.95; letter-spacing: 0.02em;
margin-bottom: 28px;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub {
font-size: clamp(1rem, 2.5vw, 1.2rem);
color: var(--muted); max-width: 560px; margin: 0 auto 44px;
font-weight: 300;
}
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
background: var(--accent); color: #000; font-weight: 600;
padding: 14px 32px; border-radius: 8px; text-decoration: none;
font-size: 0.95rem; transition: transform 0.2s, opacity 0.2s;
display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-outline {
background: transparent; color: var(--text); font-weight: 500;
padding: 14px 32px; border-radius: 8px; text-decoration: none;
font-size: 0.95rem; border: 1px solid var(--border);
transition: border-color 0.2s, transform 0.2s;
display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); transform: translateY(-2px); }
.hero-stats {
margin-top: 70px; display: flex; gap: clamp(24px, 5vw, 64px);
justify-content: center; flex-wrap: wrap;
}
.hero-images {
display: flex; gap: 16px; justify-content: center;
margin-top: 56px; flex-wrap: wrap;
}
.hero-img-wrap {
border-radius: 14px; overflow: hidden;
border: 1px solid var(--border);
position: relative;
}
.hero-img-wrap img {
width: 260px; height: 160px; object-fit: cover;
display: block; filter: brightness(0.82) saturate(0.9);
transition: filter 0.3s, transform 0.4s;
}
.hero-img-wrap:hover img { filter: brightness(1) saturate(1); transform: scale(1.04); }
.hero-img-wrap .img-label {
position: absolute; bottom: 0; left: 0; right: 0;
padding: 10px 14px;
background: linear-gradient(transparent, rgba(0,0,0,0.7));
font-size: 0.72rem; font-family: 'DM Mono', monospace;
color: rgba(255,255,255,0.8); letter-spacing: 0.08em;
}
.stat { text-align: center; }
.stat-num {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(2rem, 4vw, 3rem);
color: var(--accent); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
/* ── ABOUT ───────────────────────────────── */
#about { background: var(--surface); }
.section-header { margin-bottom: 56px; }
.section-tag {
font-family: 'DM Mono', monospace; font-size: 0.72rem;
color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
margin-bottom: 12px; display: block;
}
.section-title {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(2.4rem, 5vw, 4rem);
line-height: 1.05; letter-spacing: 0.02em;
}
.about-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); }
.about-img {
width: 100%; border-radius: 16px; overflow: hidden;
border: 1px solid var(--border); margin-bottom: 16px;
}
.about-img img {
width: 100%; height: 220px; object-fit: cover;
display: block; filter: brightness(0.8) saturate(0.85);
}
.about-card-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.mini-card {
background: var(--surface2); border: 1px solid var(--border);
border-radius: 12px; padding: 24px;
transition: border-color 0.25s, transform 0.25s;
}
.mini-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.mini-card-icon { font-size: 1.6rem; margin-bottom: 12px; }
.mini-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.mini-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
/* ── SERVICES ────────────────────────────── */
#services {}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px; margin-top: 56px;
}
.service-card {
background: var(--surface); border: 1px solid var(--border);
border-radius: 16px; padding: 36px; position: relative; overflow: hidden;
transition: transform 0.3s, border-color 0.3s;
}
.service-card::before {
content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
background: linear-gradient(90deg, var(--accent), var(--accent2));
transform: scaleX(0); transform-origin: left;
transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,229,160,0.2); }
.service-num {
font-family: 'DM Mono', monospace; font-size: 0.7rem;
color: var(--accent); letter-spacing: 0.1em; margin-bottom: 20px;
display: block;
}
.service-icon {
width: 52px; height: 52px; border-radius: 12px;
background: rgba(59,130,246,0.08); display: grid; place-items: center;
font-size: 1.4rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
/* ── HOW IT WORKS ────────────────────────── */
#process { background: var(--surface); }
.process-steps {
display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 0; margin-top: 56px; position: relative;
}
.process-steps::before {
content: ''; position: absolute; top: 36px; left: 8%;
width: 84%; height: 1px; background: var(--border);
}
.step { text-align: center; padding: 0 20px; position: relative; }
.step-dot {
width: 72px; height: 72px; border-radius: 50%;
background: var(--surface2); border: 2px solid var(--border);
display: grid; place-items: center; margin: 0 auto 24px;
font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
color: var(--accent); position: relative; z-index: 1;
transition: background 0.3s, border-color 0.3s;
}
.step:hover .step-dot { background: var(--accent); color: #000; border-color: var(--accent); }
.step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
/* ── INDUSTRIES ──────────────────────────── */
#industries {}
.industries-grid {
display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px;
}
.industry-pill {
background: var(--surface); border: 1px solid var(--border);
padding: 12px 22px; border-radius: 100px; font-size: 0.88rem;
color: var(--muted); transition: all 0.25s; cursor: default;
}
.industry-pill:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,229,160,0.04); }
/* ── TESTIMONIALS ────────────────────────── */
#testimonials { background: var(--surface); }
.testimonials-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px; margin-top: 56px;
}
.testimonial-card {
background: var(--surface2); border: 1px solid var(--border);
border-radius: 16px; padding: 32px;
}
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
font-size: 0.95rem; color: var(--muted); line-height: 1.7;
font-style: italic; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
width: 42px; height: 42px; border-radius: 50%;
background: linear-gradient(135deg, var(--accent), var(--accent2));
display: grid; place-items: center; font-weight: 700;
font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.author-info small { color: var(--muted); font-size: 0.78rem; }
.author-info strong { display: block; font-size: 0.9rem; }
/* ── CONTACT ─────────────────────────────── */
#contact {
background: var(--bg);
display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
align-items: start;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-info p { color: var(--muted); margin-bottom: 40px; font-size: 1.05rem; line-height: 1.8; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-detail-icon {
width: 40px; height: 40px; border-radius: 10px;
background: rgba(59,130,246,0.08); display: grid; place-items: center;
font-size: 1rem; flex-shrink: 0;
}
.contact-detail h5 { font-size: 0.78rem; color: var(--muted); font-weight: 400; margin-bottom: 2px; }
.contact-detail p { color: var(--text); font-size: 0.9rem; margin: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; color: var(--muted); font-weight: 500; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
background: var(--surface); border: 1px solid var(--border);
border-radius: 8px; padding: 12px 14px;
color: var(--text); font-family: inherit; font-size: 0.9rem;
outline: none; transition: border-color 0.2s;
width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
select option { background: var(--surface2); }
.btn-submit {
background: var(--accent); color: #000; font-weight: 700;
padding: 14px 32px; border-radius: 8px; border: none;
font-size: 0.95rem; cursor: pointer; font-family: inherit;
transition: transform 0.2s, opacity 0.2s; align-self: flex-start;
}
.btn-submit:hover { transform: translateY(-2px); opacity: 0.9; }
/* ── FOOTER ──────────────────────────────── */
footer {
background: var(--surface); border-top: 1px solid var(--border);
padding: 48px clamp(24px, 5vw, 80px);
}
.footer-grid {
display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
margin-bottom: 48px;
}
.footer-brand p { color: var(--muted); font-size: 0.85rem; line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; color: var(--muted); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
border-top: 1px solid var(--border); padding-top: 24px;
display: flex; justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-socials { display: flex; gap: 14px; }
.social-link {
width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border);
display: grid; place-items: center; font-size: 0.85rem; color: var(--muted);
text-decoration: none; transition: all 0.2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(32px); }
to { opacity: 1; transform: translateY(0); }
}
.reveal {
opacity: 0; transform: translateY(28px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
.about-grid { grid-template-columns: 1fr; }
.about-card-grid { grid-template-columns: 1fr 1fr; }
#contact { grid-template-columns: 1fr; gap: 48px; }
.footer-grid { grid-template-columns: 1fr 1fr; }
.process-steps::before { display: none; }
}
@media (max-width: 640px) {
.nav-links { display: none; }
.hamburger { display: flex; }
.form-row { grid-template-columns: 1fr; }
.about-card-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; gap: 32px; }
.footer-brand p { max-width: 100%; }
.hero-stats { gap: 32px; }
.hero-images { gap: 10px; }
.hero-img-wrap img { width: 200px; height: 130px; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<a href="#hero" class="logo">
<span class="logo-badge">PQ</span>
Priority Queue
</a>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#process">Process</a></li>
<li><a href="#industries">Industries</a></li>
<li><a href="#contact" class="nav-cta">Get in Touch</a></li>
</ul>
<button class="hamburger" id="hamburger" aria-label="Menu">
<span></span><span></span><span></span>
</button>
</nav>
<!-- MOBILE NAV -->
<div class="mobile-nav" id="mobileNav">
<a href="#about" onclick="closeMobileNav()">About</a>
<a href="#services" onclick="closeMobileNav()">Services</a>
<a href="#process" onclick="closeMobileNav()">Process</a>
<a href="#industries" onclick="closeMobileNav()">Industries</a>
<a href="#testimonials" onclick="closeMobileNav()">Testimonials</a>
<a href="#contact" onclick="closeMobileNav()">Contact</a>
</div>
<!-- HERO -->
<section id="hero">
<div class="hero-grid"></div>
<div class="hero-glow"></div>
<div class="hero-glow2"></div>
<div class="hero-inner">
<div class="hero-tag">
<span>◆</span> Talent. Delivered.
</div>
<h1 class="hero-title">
The Right Talent,<br><em>First in Queue.</em>
</h1>
<p class="hero-sub">
Priority Queue connects high-growth companies with exceptional people. We don't fill roles — we build teams that scale.
</p>
<div class="btn-group">
<a href="#services" class="btn-primary">Explore Services</a>
<a href="#contact" class="btn-outline">Hire Talent →</a>
</div>
<div class="hero-stats">
<div class="stat"><div class="stat-num">1,200+</div><div class="stat-label">Placements Made</div></div>
<div class="stat"><div class="stat-num">96%</div><div class="stat-label">Client Retention</div></div>
<div class="stat"><div class="stat-num">18 Days</div><div class="stat-label">Avg. Time to Hire</div></div>
<div class="stat"><div class="stat-num">40+</div><div class="stat-label">Industries Served</div></div>
</div>
<div class="hero-images">
<div class="hero-img-wrap">
<img src="https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=520&q=80" alt="Team meeting" />
<span class="img-label">TEAM ALIGNMENT</span>
</div>
<div class="hero-img-wrap">
<img src="https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=520&q=80" alt="Interview" />
<span class="img-label">TALENT INTERVIEWS</span>
</div>
<div class="hero-img-wrap">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=520&q=80" alt="Professional hiring" />
<span class="img-label">EXECUTIVE SEARCH</span>
</div>
</div>
</div>
</section>
<!-- ABOUT -->
<section id="about">
<div class="about-grid">
<div class="about-text reveal">
<div class="section-header">
<span class="section-tag">// about us</span>
<h2 class="section-title">We Think in<br>Terms of Priority.</h2>
</div>
<p>Priority Queue was founded on a simple conviction: <strong>great hiring is a competitive advantage, not an administrative task.</strong> We bring speed, precision, and genuine care to every search.</p>
<p>Our consultants come from the industries they recruit for. That's not a tagline — it's the reason our clients trust us with their most critical hires, from first-round engineers to C-suite leaders.</p>
<p>We're a lean, senior-led team. <strong>No junior recruiters cold-calling lists.</strong> Every engagement gets our best thinking, every time.</p>
</div>
<div class="about-card-grid reveal reveal-delay-2">
<div class="about-img" style="grid-column: 1/-1;">
<img src="https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=800&q=80" alt="Professional team collaboration" />
</div>
<div class="mini-card">
<div class="mini-card-icon">🎯</div>
<h4>Precision Matching</h4>
<p>Deep screening beyond the résumé — skills, culture, and trajectory.</p>
</div>
<div class="mini-card">
<div class="mini-card-icon">⚡</div>
<h4>Speed to Hire</h4>
<p>Our median time-to-offer is 18 days. Urgency without compromise.</p>
</div>
<div class="mini-card">
<div class="mini-card-icon">🔒</div>
<h4>Retained Trust</h4>
<p>Confidentiality and discretion built into every engagement.</p>
</div>
<div class="mini-card">
<div class="mini-card-icon">🤝</div>
<h4>Long-term View</h4>
<p>We measure success in years, not placements. Partnerships over transactions.</p>
</div>
</div>
</div>
</section>
<!-- SERVICES -->
<section id="services">
<div class="section-header reveal">
<span class="section-tag">// services</span>
<h2 class="section-title">What We Do</h2>
</div>
<div class="services-grid">
<div class="service-card reveal">
<span class="service-num">01</span>
<div class="service-icon">🔍</div>
<h3>Executive Search</h3>
<p>C-suite and senior leadership placements for companies at critical inflection points. Confidential, structured, and results-driven.</p>
</div>
<div class="service-card reveal reveal-delay-1">
<span class="service-num">02</span>
<div class="service-icon">🏗️</div>
<h3>Team Build-Outs</h3>
<p>Scaling a function fast? We design and execute full hiring roadmaps — from org structure to offer letters.</p>
</div>
<div class="service-card reveal reveal-delay-2">
<span class="service-num">03</span>
<div class="service-icon">📋</div>
<h3>Contract Staffing</h3>
<p>Expert interim and contract professionals deployed quickly for projects, peaks, or parental leaves.</p>
</div>
<div class="service-card reveal reveal-delay-3">
<span class="service-num">04</span>
<div class="service-icon">🚀</div>
<h3>Startup Hiring</h3>
<p>Early-stage hiring is different. We help founders make their first critical hires with equity, culture, and growth in mind.</p>
</div>
<div class="service-card reveal reveal-delay-1">
<span class="service-num">05</span>
<div class="service-icon">🌏</div>
<h3>Global Talent Acquisition</h3>
<p>Cross-border hiring, relocation support, and compliance-aware sourcing across Asia, Europe, and beyond.</p>
</div>
<div class="service-card reveal reveal-delay-2">
<span class="service-num">06</span>
<div class="service-icon">📊</div>
<h3>Talent Advisory</h3>
<p>Compensation benchmarking, org design consultation, and hiring audits to sharpen your talent strategy.</p>
</div>
</div>
</section>
<!-- IMAGE BAND -->
<div style="padding: 0 clamp(24px,5vw,80px); background: var(--bg);">
<div style="display:grid; grid-template-columns: 1fr 1fr 1fr; gap:16px; border-radius:20px; overflow:hidden; border:1px solid rgba(255,255,255,0.07);">
<img src="https://images.unsplash.com/photo-1560472355-536de3962603?w=600&q=80"
alt="Handshake deal" style="width:100%; height:240px; object-fit:cover; display:block; filter:brightness(0.75) saturate(0.8);" />
<img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=600&q=80"
alt="Team collaboration" style="width:100%; height:240px; object-fit:cover; display:block; filter:brightness(0.75) saturate(0.8);" />
<img src="https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=600&q=80"
alt="Professional executive" style="width:100%; height:240px; object-fit:cover; display:block; filter:brightness(0.75) saturate(0.8);" />
</div>
</div>
<!-- PROCESS -->
<section id="process">
<div class="section-header reveal">
<span class="section-tag">// our process</span>
<h2 class="section-title">How It Works</h2>
</div>
<div class="process-steps">
<div class="step reveal">
<div class="step-dot">01</div>
<h4>Brief & Align</h4>
<p>We deep-dive into your role, team, culture, and growth stage to build a precise search strategy.</p>
</div>
<div class="step reveal reveal-delay-1">
<div class="step-dot">02</div>
<h4>Source & Screen</h4>
<p>Multi-channel sourcing followed by rigorous competency and cultural-fit interviews.</p>
</div>
<div class="step reveal reveal-delay-2">
<div class="step-dot">03</div>
<h4>Shortlist</h4>
<p>You receive a curated shortlist of 3–5 thoroughly vetted candidates — not a stack of CVs.</p>
</div>
<div class="step reveal reveal-delay-3">
<div class="step-dot">04</div>
<h4>Close & Onboard</h4>
<p>We manage the offer process, handle negotiations, and stay engaged through onboarding.</p>
</div>
</div>
</section>
<!-- INDUSTRIES -->
<section id="industries">
<div class="section-header reveal">
<span class="section-tag">// industries</span>
<h2 class="section-title">Where We Recruit</h2>
</div>
<div class="industries-grid reveal">
<span class="industry-pill">Technology & SaaS</span>
<span class="industry-pill">Fintech & Banking</span>
<span class="industry-pill">Healthcare & Life Sciences</span>
<span class="industry-pill">E-commerce & Retail</span>
<span class="industry-pill">Product & Design</span>
<span class="industry-pill">Engineering & R&D</span>
<span class="industry-pill">Marketing & Growth</span>
<span class="industry-pill">Legal & Compliance</span>
<span class="industry-pill">Manufacturing</span>
<span class="industry-pill">Logistics & Supply Chain</span>
<span class="industry-pill">Real Estate & PropTech</span>
<span class="industry-pill">Media & Entertainment</span>
<span class="industry-pill">Education & EdTech</span>
<span class="industry-pill">Non-profit & Social Impact</span>
<span class="industry-pill">Climate & CleanTech</span>
</div>
</section>
<!-- TESTIMONIALS -->
<section id="testimonials">
<div class="section-header reveal">
<span class="section-tag">// testimonials</span>
<h2 class="section-title">What Clients Say</h2>
</div>
<div class="testimonials-grid">
<div class="testimonial-card reveal">
<div class="stars">★★★★★</div>
<blockquote>"Priority Queue filled our VP of Engineering role in 14 days. We'd been searching on our own for 3 months. The quality of candidates was exceptional — they genuinely understood what we needed."</blockquote>
<div class="testimonial-author">
<div class="avatar">SK</div>
<div class="author-info">
<strong>Siddharth Kapur</strong>
<small>CEO, Loopstack Technologies</small>
</div>
</div>
</div>
<div class="testimonial-card reveal reveal-delay-1">
<div class="stars">★★★★★</div>
<blockquote>"They don't just send CVs. The shortlist came with detailed notes on each candidate's motivations, strengths, and red flags. It felt like they'd done half our job — in the best way possible."</blockquote>
<div class="testimonial-author">
<div class="avatar">PR</div>
<div class="author-info">
<strong>Priya Ramachandran</strong>
<small>Head of People, Nourish Health</small>
</div>
</div>
</div>
<div class="testimonial-card reveal reveal-delay-2">
<div class="stars">★★★★★</div>
<blockquote>"We've used three other agencies this year. Priority Queue is operating on a different level. Senior-only attention, honest communication, and hires that actually stuck around."</blockquote>
<div class="testimonial-author">
<div class="avatar">AM</div>
<div class="author-info">
<strong>Arjun Mehta</strong>
<small>COO, Greenbridge Ventures</small>
</div>
</div>
</div>
</div>
</section>
<!-- CONTACT -->
<section id="contact">
<div class="contact-info reveal">
<span class="section-tag">// contact</span>
<h2 class="section-title">Let's Build<br>Your Team.</h2>
<p>Whether you're scaling fast or searching for a single critical hire, we'd love to talk. Drop us a message and a consultant will be in touch within 24 hours.</p>
<div class="contact-detail">
<div class="contact-detail-icon">📍</div>
<div>
<h5>Location</h5>
<p>Bengaluru, Karnataka, India</p>
</div>
</div>
<div class="contact-detail">
<div class="contact-detail-icon">📧</div>
<div>
<h5>Email</h5>
<p>avinash@priorityqueue.in</p>
</div>
</div>
<div class="contact-detail">
<div class="contact-detail-icon">📞</div>
<div>
<h5>Phone</h5>
<p>+91 80 4567 8900</p>
</div>
</div>
</div>
<form class="contact-form reveal reveal-delay-2" onsubmit="handleSubmit(event)">
<div class="form-row">
<div class="form-group">
<label>FIRST NAME</label>
<input type="text" placeholder="Arjun" required />
</div>
<div class="form-group">
<label>LAST NAME</label>
<input type="text" placeholder="Sharma" required />
</div>
</div>
<div class="form-group">
<label>WORK EMAIL</label>
<input type="email" placeholder="arjun@company.com" required />
</div>
<div class="form-group">
<label>COMPANY</label>
<input type="text" placeholder="Your company name" />
</div>
<div class="form-group">
<label>I'M LOOKING FOR</label>
<select>
<option value="">Select a service…</option>
<option>Executive Search</option>
<option>Team Build-Out</option>
<option>Contract Staffing</option>
<option>Startup Hiring</option>
<option>Global Talent Acquisition</option>
<option>Talent Advisory</option>
</select>
</div>
<div class="form-group">
<label>MESSAGE</label>
<textarea placeholder="Tell us about the role, your team, timeline…"></textarea>
</div>
<button type="submit" class="btn-submit">Send Message →</button>
<div id="form-success" style="display:none; color: var(--accent); font-size:0.9rem; margin-top:4px;">
✓ Message sent! We'll be in touch within 24 hours.
</div>
</form>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-grid">
<div class="footer-brand">
<a href="#hero" class="logo">
<span class="logo-badge">PQ</span>
Priority Queue
</a>
<p>A senior-led recruitment agency helping companies across India and beyond hire exceptional talent — fast.</p>
</div>
<div class="footer-col">
<h5>Company</h5>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#process">Our Process</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h5>Services</h5>
<ul>
<li><a href="#services">Executive Search</a></li>
<li><a href="#services">Team Build-Outs</a></li>
<li><a href="#services">Contract Staffing</a></li>
<li><a href="#services">Startup Hiring</a></li>
</ul>
</div>
<div class="footer-col">
<h5>Connect</h5>
<ul>
<li><a href="#">LinkedIn</a></li>
<li><a href="#">Twitter / X</a></li>
<li><a href="#">hello@priorityqueue.in</a></li>
<li><a href="#">+91 80 4567 8900</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Priority Queue Recruitment Pvt. Ltd. All rights reserved.</p>
<div class="footer-socials">
<a href="#" class="social-link" aria-label="LinkedIn">in</a>
<a href="#" class="social-link" aria-label="Twitter">𝕏</a>
</div>
</div>
</footer>
<script>
// Mobile nav toggle
const hamburger = document.getElementById('hamburger');
const mobileNav = document.getElementById('mobileNav');
hamburger.addEventListener('click', () => {
mobileNav.classList.toggle('open');
});
function closeMobileNav() { mobileNav.classList.remove('open'); }
// Scroll reveal
const reveals = document.querySelectorAll('.reveal');
const observer = new IntersectionObserver((entries) => {
entries.forEach(e => { if (e.isIntersecting) { e.target.classList.add('visible'); } });
}, { threshold: 0.12 });
reveals.forEach(el => observer.observe(el));
// Form submit
function handleSubmit(e) {
e.preventDefault();
document.getElementById('form-success').style.display = 'block';
e.target.querySelector('.btn-submit').textContent = 'Sent ✓';
e.target.querySelector('.btn-submit').disabled = true;
}
</script>
</body>
</html>