-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
552 lines (489 loc) · 21.5 KB
/
Copy pathindex.html
File metadata and controls
552 lines (489 loc) · 21.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>FreelanceHub – Simplifying Compliance for Research Analytics</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=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--NAVBAR-->
<nav class="nav">
<div class="wrap nav__inner">
<!-- Logo -->
<a href="#home" class="nav__logo" aria-label="Home">
<img src="Assets - Images & Icons/Logo.png" alt="FreelanceHub logo"/>
</a>
<!-- Desktop links — each has the actual uploaded icon + label -->
<div class="nav__links" role="navigation" aria-label="Main">
<a href="#home" class="active">
<img src="Assets - Images & Icons/Home.png" alt=""/> Home
</a>
<a href="#about">
<img src="Assets - Images & Icons/AboutUs.png" alt=""/> About Us
</a>
<a href="#services">
<img src="Assets - Images & Icons/Our-Services.png" alt=""/> Our Services
</a>
<a href="#pricing">
<img src="Assets - Images & Icons/Pricing.png" alt=""/> Pricing
</a>
<a href="#faq">
<img src="Assets - Images & Icons/FAQ.png" alt=""/> FAQ
</a>
<a href="#contact">
<img src="Assets - Images & Icons/Contact.png" alt=""/> Contact
</a>
</div>
<!-- Right: phone + CTA -->
<div class="nav__right">
<div class="nav__phone">
<img src="Assets - Images & Icons/Contact-icon.png" alt="Phone"/>
+1 (800) 123‑4567
</div>
<a href="#contact" class="btn btn-primary" style="font-size:13.5px;padding:10px 22px;">
Get Started
</a>
</div>
<!-- Hamburger (mobile) -->
<button class="nav__burger" onclick="toggleNav()" aria-label="Open menu">
<span></span><span></span><span></span>
</button>
</div>
<!-- Mobile dropdown -->
<div class="nav__mobile" id="mobileNav">
<a href="#home" onclick="closeNav()"><img src="Assets - Images & Icons/Home.png" alt=""/>Home</a>
<a href="#about" onclick="closeNav()"><img src="Assets - Images & Icons/AboutUs.png" alt=""/>About Us</a>
<a href="#services" onclick="closeNav()"><img src="Assets - Images & Icons/Our-Services.png" alt=""/>Our Services</a>
<a href="#pricing" onclick="closeNav()"><img src="Assets - Images & Icons/Pricing.png" alt=""/>Pricing</a>
<a href="#faq" onclick="closeNav()"><img src="Assets - Images & Icons/FAQ.png" alt=""/>FAQ</a>
<a href="#contact" onclick="closeNav()"><img src="Assets - Images & Icons/Contact.png" alt=""/>Contact</a>
<a href="#contact" class="btn btn-primary" style="margin-top:10px;width:100%;justify-content:center;" onclick="closeNav()">Get Started</a>
</div>
</nav>
<!--HERO-->
<section class="hero" id="home">
<!-- Decorative assets from Figma -->
<img class="hero__deco-arrows" src="Assets - Images & Icons/Vector1.png" alt="" aria-hidden="true"/>
<img class="hero__deco-curl" src="Assets - Images & Icons/Vector2.png" alt="" aria-hidden="true"/>
<div class="hero__inner">
<!-- LEFT: copy -->
<div class="hero__copy reveal">
<div class="hero__label">Trusted Compliance Partner</div>
<h1 class="hero__title">
Simplifying
<span class="blue">Compliance</span>
</h1>
<!-- Underline vector from Figma — placed right below "Compliance" -->
<img class="hero__underline-img" src="Assets - Images & Icons/underline-Vector.png" alt="" aria-hidden="true"/>
<h1 class="hero__title" style="margin-top:4px;">for Research Analytics</h1>
<p class="hero__sub" style="margin-top:18px;">
Expert guidance on tax filings, regulatory compliance, and risk
protection — so you can focus on growing your business with
complete confidence.
</p>
<!-- Three bullet features (check icon + text, matching Figma layout) -->
<ul class="hero__features">
<li class="hero__feat">
<img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Hassle-free filings & deadline management
</li>
<li class="hero__feat">
<img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Real-time regulatory monitoring & alerts
</li>
<li class="hero__feat">
<img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Proactive risk protection & audit support
</li>
</ul>
<div class="hero__btns">
<a href="#services" class="btn btn-primary">Get Started</a>
<a href="#contact" class="btn btn-ghost">Learn More</a>
</div>
</div>
<!-- RIGHT: Banner_Image.png — hero illustration with floating stat cards -->
<div class="hero__img-wrap reveal" style="animation-delay:.12s;">
<img class="hero__main-img"
src="Assets - Images & Icons/Banner_Image.png"
alt="Professional with laptop — 250+ professionals trusted, 4.8 client rating"/>
</div>
</div>
</section>
<!-- ABOUT-->
<section class="section" id="about">
<div class="about__grid">
<!-- LEFT: Section2-Image.png -->
<div class="about__img-wrap reveal">
<img class="about__main"
src="Assets - Images & Icons/Section2-Image.png"
alt="Data analytics dashboard illustration"/>
<!-- Curly decorative vector from Figma -->
<img class="about__deco" src="Assets - Images & Icons/Vector2.png" alt="" aria-hidden="true"/>
</div>
<!-- RIGHT: copy -->
<div class="reveal" style="animation-delay:.1s;">
<p class="eyebrow">Who We Are</p>
<h2 class="s-title">
Your Trusted Partner<br/>in Research
<span class="blue">Compliance</span>
</h2>
<!-- Underline vector from Figma -->
<img class="title-line" src="Assets - Images & Icons/underline-Vector.png" alt="" aria-hidden="true"/>
<p class="s-desc" style="margin-top:14px;">
We specialize in helping research organizations and independent
professionals navigate complex regulatory environments — with clarity,
accuracy, and speed.
</p>
<ul class="about__checks">
<li class="about__check">
<img src="Assets - Images & Icons/check-sign.png" alt="✓"/>
Certified compliance specialists with 10+ years of experience
</li>
<li class="about__check">
<img src="Assets - Images & Icons/check-sign.png" alt="✓"/>
End-to-end tax filing management for research grants & contracts
</li>
<li class="about__check">
<img src="Assets - Images & Icons/check-sign.png" alt="✓"/>
Real-time regulatory monitoring and proactive alerts
</li>
<li class="about__check">
<img src="Assets - Images & Icons/check-sign.png" alt="✓"/>
Dedicated account manager for every client
</li>
</ul>
<a href="#services" class="btn btn-primary">Our Services</a>
</div>
</div>
</section>
<!--SERVICES-->
<section class="section section--light" id="services">
<div class="services__header center">
<p class="eyebrow">What We Offer</p>
<h2 class="s-title">Our Core Services</h2>
<img class="title-line title-line-c" src="Assets - Images & Icons/underline-Vector.png" alt="" aria-hidden="true"/>
<p class="s-desc" style="margin-top:12px;">
Comprehensive compliance solutions designed for research professionals
and analytics teams of every size.
</p>
</div>
<div class="services__grid">
<!-- Card 1 — Hassle-Free_Filings_Clarity.png icon -->
<div class="svc-card reveal">
<div class="svc-card__icon">
<img src="Assets - Images & Icons/Hassle-Free_Filings_Clarity.png" alt="Document info icon"/>
</div>
<h3 class="svc-card__title">Hassle-Free Filings</h3>
<p class="svc-card__desc">
We handle all your tax filings, grant reporting, and compliance
documentation so you never miss a deadline or face unexpected penalties.
</p>
</div>
<!-- Card 2 — Regulatory_Clarity.png icon -->
<div class="svc-card reveal" style="animation-delay:.08s;">
<div class="svc-card__icon">
<img src="Assets - Images & Icons/Regulatory_Clarity.png" alt="Search/regulatory icon"/>
</div>
<h3 class="svc-card__title">Regulatory Clarity</h3>
<p class="svc-card__desc">
Stay ahead of shifting regulations. Our experts translate complex rules
into clear, actionable guidance tailored to your research sector.
</p>
</div>
<!-- Card 3 — Risk_Protection.png icon -->
<div class="svc-card reveal" style="animation-delay:.16s;">
<div class="svc-card__icon">
<img src="Assets - Images & Icons/Risk_Protection.png" alt="Shield icon"/>
</div>
<h3 class="svc-card__title">Risk Protection</h3>
<p class="svc-card__desc">
Identify and mitigate compliance risks before they become costly issues.
Proactive audits, internal controls, and expert review at every step.
</p>
</div>
</div>
</section>
<!--PRICING-->
<section class="section" id="pricing">
<div class="pricing__header center">
<p class="eyebrow">Transparent Pricing</p>
<h2 class="s-title">Plans for Every Need</h2>
<img class="title-line title-line-c" src="Assets - Images & Icons/underline-Vector.png" alt="" aria-hidden="true"/>
<p class="s-desc" style="margin-top:12px;">No hidden fees. No surprises. Just clear, upfront pricing.</p>
</div>
<div class="pricing__grid">
<!-- Starter -->
<div class="plan reveal">
<div class="plan__tier">Starter</div>
<div class="plan__price"><sup>$</sup>49</div>
<div class="plan__cycle">per month</div>
<ul class="plan__feats">
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Up to 5 filings / month</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Basic compliance reports</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Email support</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Regulatory alerts</li>
</ul>
<a href="#contact" class="btn btn-ghost" style="width:100%;">Get Started</a>
</div>
<!-- Professional (popular) -->
<div class="plan plan--hot reveal" style="animation-delay:.08s;">
<div class="plan__tier">Professional</div>
<div class="plan__price"><sup>$</sup>149</div>
<div class="plan__cycle">per month</div>
<ul class="plan__feats">
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Unlimited filings</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Full regulatory monitoring</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Dedicated account manager</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Risk audit reports</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Priority phone & email support</li>
</ul>
<a href="#contact" class="btn btn-primary" style="width:100%;">Start Free Trial</a>
</div>
<!-- Enterprise -->
<div class="plan reveal" style="animation-delay:.16s;">
<div class="plan__tier">Enterprise</div>
<div class="plan__price" style="font-size:32px;padding-top:7px;">Custom</div>
<div class="plan__cycle">tailored to your org</div>
<ul class="plan__feats">
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Everything in Pro</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> White-label reporting</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> API & integrations</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> Custom contract templates</li>
<li class="plan__feat"><img src="Assets - Images & Icons/check-sign.png" alt="✓"/> SLA & dedicated support team</li>
</ul>
<a href="#contact" class="btn btn-ghost" style="width:100%;">Contact Sales</a>
</div>
</div>
</section>
<!--FAQ-->
<section class="section section--light" id="faq">
<div class="faq__header center">
<p class="eyebrow">Got Questions?</p>
<h2 class="s-title">Frequently Asked Questions</h2>
<img class="title-line title-line-c" src="Assets - Images & Icons/underline-Vector.png" alt="" aria-hidden="true"/>
</div>
<div class="faq__list">
<details class="qi">
<summary>What types of organizations do you serve?</summary>
<p>We work with independent researchers, university departments, non-profit research institutions, analytics firms, and corporate R&D teams — any organization that needs reliable compliance support for grant funding or research operations.</p>
</details>
<details class="qi">
<summary>How do you handle deadline-sensitive filings?</summary>
<p>Our team maintains a proactive calendar for every client's filing obligations. You receive automated reminders 30, 14, and 7 days before any deadline, with our team standing ready to complete and submit on your behalf.</p>
</details>
<details class="qi">
<summary>Is my data secure with your platform?</summary>
<p>Absolutely. All documents and personal data are encrypted at rest and in transit using AES-256 and TLS 1.3 standards. We are fully GDPR and SOC 2 Type II compliant with annual third-party audits.</p>
</details>
<details class="qi">
<summary>Can I upgrade or downgrade my plan at any time?</summary>
<p>Yes — you can switch plans at any time. Upgrades take effect immediately and unused credit is prorated. Downgrades apply at your next billing cycle.</p>
</details>
<details class="qi">
<summary>What is included in the free consultation?</summary>
<p>Your free 30-minute consultation includes a review of your current compliance setup, identification of key risk areas, and a personalized recommendation — with no obligation to purchase.</p>
</details>
<details class="qi">
<summary>Do you provide support during regulatory audits?</summary>
<p>Yes. All Professional and Enterprise clients receive full audit support — document preparation, liaison with regulators, and representation guidance throughout the process. Our resolution rate is 94%.</p>
</details>
</div>
</section>
<!--CONTACT -->
<section class="section" id="contact">
<div class="contact__grid">
<!-- LEFT: info -->
<div class="reveal">
<p class="eyebrow">Get In Touch</p>
<h2 class="s-title">Let's Talk <span class="blue">Compliance</span></h2>
<img class="title-line" src="Assets - Images & Icons/underline-Vector.png" alt="" aria-hidden="true"/>
<p class="s-desc" style="margin-top:14px;">
Have a question or ready to get started? Reach out and one of our
compliance specialists will respond within one business day.
</p>
<div class="contact__items">
<div class="ci">
<div class="ci__icon">
<img src="Assets - Images & Icons/Contact-icon.png" alt="Phone"/>
</div>
<div>
<div class="ci__lbl">Phone</div>
<div class="ci__val">+1 (800) 123-4567</div>
</div>
</div>
<div class="ci">
<div class="ci__icon">
<img src="Assets - Images & Icons/Hassle-Free_Filings_Clarity.png" alt="Email"/>
</div>
<div>
<div class="ci__lbl">Email</div>
<div class="ci__val">hello@freelancehub.com</div>
</div>
</div>
<div class="ci">
<div class="ci__icon">
<img src="Assets - Images & Icons/Risk_Protection.png" alt="Hours"/>
</div>
<div>
<div class="ci__lbl">Compliance Hotline</div>
<div class="ci__val">Mon–Fri, 9am–6pm EST</div>
</div>
</div>
</div>
</div>
<!-- RIGHT: form -->
<div class="reveal" style="animation-delay:.1s;">
<form class="contact__form" onsubmit="handleForm(event)">
<div class="f-row">
<div class="f-grp">
<label for="fn">First Name</label>
<input type="text" id="fn" placeholder="Jane"/>
</div>
<div class="f-grp">
<label for="ln">Last Name</label>
<input type="text" id="ln" placeholder="Doe"/>
</div>
</div>
<div class="f-grp">
<label for="em">Email Address</label>
<input type="email" id="em" placeholder="jane@org.com"/>
</div>
<div class="f-grp">
<label for="svc">Service Interested In</label>
<select id="svc">
<option value="">Select a service…</option>
<option>Hassle-Free Filings</option>
<option>Regulatory Clarity</option>
<option>Risk Protection</option>
<option>Enterprise Solution</option>
</select>
</div>
<div class="f-grp">
<label for="msg">Message</label>
<textarea id="msg" placeholder="Tell us about your compliance needs…"></textarea>
</div>
<button type="submit" class="btn btn-primary" style="width:100%;padding:15px;" id="submitBtn">
Send Message
</button>
</form>
</div>
</div>
</section>
<!--CTA BANNER-->
<section class="cta">
<!-- Figma decorative vectors reused inside CTA -->
<img class="cta__v1" src="Assets - Images & Icons/Vector1.png" alt="" aria-hidden="true"/>
<img class="cta__v2" src="Assets - Images & Icons/Vector2.png" alt="" aria-hidden="true"/>
<div class="cta__inner">
<h2 class="cta__title">Ready to Simplify Your Compliance?</h2>
<p class="cta__sub">
Join 250+ professionals who trust us to keep them compliant,
protected, and penalty-free.
</p>
<div class="cta__btns">
<a href="#contact" class="btn btn-white">Book a Free Consultation</a>
<a href="#pricing" class="btn-outline-white">View Plans</a>
</div>
</div>
</section>
<!--FOOTER-->
<footer>
<div class="footer__grid">
<div>
<div class="footer__logo"><img src="Assets - Images & Icons/Logo.png" alt="FreelanceHub"/></div>
<p class="footer__tagline">
Simplifying compliance and tax filings for research professionals
and analytics organizations.
</p>
</div>
<div>
<p class="footer__col-head">Platform</p>
<ul class="footer__links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#services">Our Services</a></li>
<li><a href="#pricing">Pricing</a></li>
</ul>
</div>
<div>
<p class="footer__col-head">Resources</p>
<ul class="footer__links">
<li><a href="#faq">FAQ</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Case Studies</a></li>
<li><a href="#">Compliance Guide</a></li>
</ul>
</div>
<div>
<p class="footer__col-head">Company</p>
<ul class="footer__links">
<li><a href="#contact">Contact</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="footer__bar">
<p>© 2026 FreelanceHub. All rights reserved.</p>
<p>Built by · kalyanchakraborty9064@gmail.com</p>
</div>
</footer>
<script>
/* ── Mobile nav ── */
function toggleNav() {
document.getElementById('mobileNav').classList.toggle('open');
}
function closeNav() {
document.getElementById('mobileNav').classList.remove('open');
}
/* ── Active nav link on scroll ── */
const sections = document.querySelectorAll('section[id]');
const navAs = document.querySelectorAll('.nav__links a');
const io = new IntersectionObserver(entries => {
entries.forEach(e => {
if (e.isIntersecting) {
navAs.forEach(a => a.classList.remove('active'));
const match = document.querySelector(`.nav__links a[href="#${e.target.id}"]`);
if (match) match.classList.add('active');
}
});
}, { rootMargin: '-40% 0px -55% 0px' });
sections.forEach(s => io.observe(s));
/* ── Scroll reveal ── */
const revealObs = new IntersectionObserver(entries => {
entries.forEach((e, i) => {
if (e.isIntersecting) {
const delay = parseFloat(e.target.style.animationDelay || '0');
e.target.style.animationDelay = `${delay}s`;
e.target.classList.add('revealed');
revealObs.unobserve(e.target);
}
});
}, { threshold: 0.12 });
document.querySelectorAll('.reveal').forEach(el => revealObs.observe(el));
/* ── FAQ accordion (close others) ── */
document.querySelectorAll('details.qi').forEach(d => {
d.addEventListener('toggle', () => {
if (d.open) {
document.querySelectorAll('details.qi').forEach(o => {
if (o !== d) o.removeAttribute('open');
});
}
});
});
/* ── Form submit ── */
function handleForm(e) {
e.preventDefault();
const btn = document.getElementById('submitBtn');
btn.textContent = '✓ Message Sent!';
btn.style.background = '#10b981';
setTimeout(() => {
btn.textContent = 'Send Message';
btn.style.background = '';
}, 3500);
}
</script>
</body>
</html>