Spaces:
Running
Running
Update index.html
Browse files- index.html +334 -19
index.html
CHANGED
@@ -1,19 +1,334 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>BlinkHire - Privacy Policy</title>
|
7 |
+
<style>
|
8 |
+
* {
|
9 |
+
margin: 0;
|
10 |
+
padding: 0;
|
11 |
+
box-sizing: border-box;
|
12 |
+
}
|
13 |
+
|
14 |
+
body {
|
15 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
16 |
+
line-height: 1.6;
|
17 |
+
color: #333;
|
18 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
19 |
+
min-height: 100vh;
|
20 |
+
}
|
21 |
+
|
22 |
+
.container {
|
23 |
+
max-width: 900px;
|
24 |
+
margin: 0 auto;
|
25 |
+
padding: 20px;
|
26 |
+
}
|
27 |
+
|
28 |
+
.policy-card {
|
29 |
+
background: rgba(255, 255, 255, 0.95);
|
30 |
+
backdrop-filter: blur(10px);
|
31 |
+
border-radius: 20px;
|
32 |
+
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
33 |
+
padding: 40px;
|
34 |
+
margin: 20px 0;
|
35 |
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
36 |
+
}
|
37 |
+
|
38 |
+
.header {
|
39 |
+
text-align: center;
|
40 |
+
margin-bottom: 40px;
|
41 |
+
padding-bottom: 20px;
|
42 |
+
border-bottom: 3px solid #667eea;
|
43 |
+
}
|
44 |
+
|
45 |
+
.logo {
|
46 |
+
font-size: 2.5em;
|
47 |
+
font-weight: bold;
|
48 |
+
color: #667eea;
|
49 |
+
margin-bottom: 10px;
|
50 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
|
51 |
+
}
|
52 |
+
|
53 |
+
.subtitle {
|
54 |
+
color: #666;
|
55 |
+
font-size: 1.1em;
|
56 |
+
}
|
57 |
+
|
58 |
+
.effective-dates {
|
59 |
+
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
|
60 |
+
color: white;
|
61 |
+
padding: 15px 20px;
|
62 |
+
border-radius: 15px;
|
63 |
+
margin: 20px 0 30px 0;
|
64 |
+
text-align: center;
|
65 |
+
font-weight: 500;
|
66 |
+
}
|
67 |
+
|
68 |
+
h1 {
|
69 |
+
color: #333;
|
70 |
+
font-size: 2.2em;
|
71 |
+
margin-bottom: 20px;
|
72 |
+
text-align: center;
|
73 |
+
}
|
74 |
+
|
75 |
+
h3 {
|
76 |
+
color: #667eea;
|
77 |
+
font-size: 1.3em;
|
78 |
+
margin: 30px 0 15px 0;
|
79 |
+
padding: 10px 0;
|
80 |
+
border-bottom: 2px solid #f0f0f0;
|
81 |
+
position: relative;
|
82 |
+
}
|
83 |
+
|
84 |
+
h3::before {
|
85 |
+
content: "";
|
86 |
+
position: absolute;
|
87 |
+
bottom: -2px;
|
88 |
+
left: 0;
|
89 |
+
width: 50px;
|
90 |
+
height: 2px;
|
91 |
+
background: #667eea;
|
92 |
+
}
|
93 |
+
|
94 |
+
p {
|
95 |
+
margin-bottom: 15px;
|
96 |
+
text-align: justify;
|
97 |
+
}
|
98 |
+
|
99 |
+
ul {
|
100 |
+
margin: 15px 0;
|
101 |
+
padding-left: 20px;
|
102 |
+
}
|
103 |
+
|
104 |
+
li {
|
105 |
+
margin-bottom: 8px;
|
106 |
+
position: relative;
|
107 |
+
}
|
108 |
+
|
109 |
+
li::marker {
|
110 |
+
color: #667eea;
|
111 |
+
}
|
112 |
+
|
113 |
+
strong {
|
114 |
+
color: #333;
|
115 |
+
font-weight: 600;
|
116 |
+
}
|
117 |
+
|
118 |
+
.contact-section {
|
119 |
+
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
|
120 |
+
padding: 25px;
|
121 |
+
border-radius: 15px;
|
122 |
+
margin-top: 30px;
|
123 |
+
text-align: center;
|
124 |
+
}
|
125 |
+
|
126 |
+
.contact-section h3 {
|
127 |
+
color: #333;
|
128 |
+
border: none;
|
129 |
+
margin-bottom: 15px;
|
130 |
+
}
|
131 |
+
|
132 |
+
.contact-section h3::before {
|
133 |
+
display: none;
|
134 |
+
}
|
135 |
+
|
136 |
+
.contact-info {
|
137 |
+
font-weight: 500;
|
138 |
+
color: #555;
|
139 |
+
}
|
140 |
+
|
141 |
+
.scroll-top {
|
142 |
+
position: fixed;
|
143 |
+
bottom: 30px;
|
144 |
+
right: 30px;
|
145 |
+
background: #667eea;
|
146 |
+
color: white;
|
147 |
+
border: none;
|
148 |
+
border-radius: 50%;
|
149 |
+
width: 50px;
|
150 |
+
height: 50px;
|
151 |
+
font-size: 18px;
|
152 |
+
cursor: pointer;
|
153 |
+
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
|
154 |
+
transition: all 0.3s ease;
|
155 |
+
opacity: 0;
|
156 |
+
visibility: hidden;
|
157 |
+
}
|
158 |
+
|
159 |
+
.scroll-top.visible {
|
160 |
+
opacity: 1;
|
161 |
+
visibility: visible;
|
162 |
+
}
|
163 |
+
|
164 |
+
.scroll-top:hover {
|
165 |
+
background: #5a6fd8;
|
166 |
+
transform: translateY(-3px);
|
167 |
+
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
|
168 |
+
}
|
169 |
+
|
170 |
+
@media (max-width: 768px) {
|
171 |
+
.container {
|
172 |
+
padding: 10px;
|
173 |
+
}
|
174 |
+
|
175 |
+
.policy-card {
|
176 |
+
padding: 25px;
|
177 |
+
margin: 10px 0;
|
178 |
+
border-radius: 15px;
|
179 |
+
}
|
180 |
+
|
181 |
+
.logo {
|
182 |
+
font-size: 2em;
|
183 |
+
}
|
184 |
+
|
185 |
+
h1 {
|
186 |
+
font-size: 1.8em;
|
187 |
+
}
|
188 |
+
|
189 |
+
h3 {
|
190 |
+
font-size: 1.2em;
|
191 |
+
}
|
192 |
+
}
|
193 |
+
|
194 |
+
.highlight {
|
195 |
+
background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
|
196 |
+
padding: 2px 6px;
|
197 |
+
border-radius: 4px;
|
198 |
+
font-weight: 500;
|
199 |
+
}
|
200 |
+
</style>
|
201 |
+
</head>
|
202 |
+
<body>
|
203 |
+
<div class="container">
|
204 |
+
<div class="policy-card">
|
205 |
+
<div class="header">
|
206 |
+
<div class="logo">BlinkHire</div>
|
207 |
+
<div class="subtitle">Your Privacy, Our Priority</div>
|
208 |
+
</div>
|
209 |
+
|
210 |
+
<div class="effective-dates">
|
211 |
+
<strong>Effective Date:</strong> 01/01/2025 | <strong>Last Updated:</strong> 15/08/2025
|
212 |
+
</div>
|
213 |
+
|
214 |
+
<h1>Privacy Policy</h1>
|
215 |
+
|
216 |
+
<p>BlinkHire ("we," "our," or "us") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, store, and safeguard your personal information when you use our platform, services, and website (collectively, the "Services"). By using our Services, you agree to the terms of this Privacy Policy.</p>
|
217 |
+
|
218 |
+
<h3>1. Information We Collect</h3>
|
219 |
+
<p>We may collect the following types of information:</p>
|
220 |
+
|
221 |
+
<p><strong>a. Personal Information You Provide:</strong></p>
|
222 |
+
<ul>
|
223 |
+
<li>Name, email address, phone number, and contact details.</li>
|
224 |
+
<li>Resume, work history, qualifications, and other job application materials.</li>
|
225 |
+
<li>Account login credentials.</li>
|
226 |
+
</ul>
|
227 |
+
|
228 |
+
<p><strong>b. Interview & Assessment Data:</strong></p>
|
229 |
+
<ul>
|
230 |
+
<li>Audio, video, and text responses during interviews.</li>
|
231 |
+
<li>Assessment results, scores, and related analytics.</li>
|
232 |
+
<li>Notes, ratings, and feedback from recruiters or hiring teams.</li>
|
233 |
+
</ul>
|
234 |
+
|
235 |
+
<p><strong>c. Automatically Collected Data:</strong></p>
|
236 |
+
<ul>
|
237 |
+
<li>IP address, browser type, operating system.</li>
|
238 |
+
<li>Device identifiers, usage logs, and interaction patterns.</li>
|
239 |
+
<li>Cookies and similar tracking technologies.</li>
|
240 |
+
</ul>
|
241 |
+
|
242 |
+
<h3>2. How We Use Your Information</h3>
|
243 |
+
<p>We use your information to:</p>
|
244 |
+
<ul>
|
245 |
+
<li>Provide, operate, and improve our Services.</li>
|
246 |
+
<li>Facilitate interviews, assessments, and hiring processes.</li>
|
247 |
+
<li>Analyze performance and generate recruitment insights.</li>
|
248 |
+
<li>Communicate with you regarding your account, interviews, and support.</li>
|
249 |
+
<li>Ensure platform security, prevent fraud, and comply with legal obligations.</li>
|
250 |
+
</ul>
|
251 |
+
|
252 |
+
<h3>3. How We Share Your Information</h3>
|
253 |
+
<p>We do <span class="highlight">not sell</span> your personal information. We may share your data only in these cases:</p>
|
254 |
+
<ul>
|
255 |
+
<li><strong>With Employers/Recruiters:</strong> For purposes of evaluating your job application.</li>
|
256 |
+
<li><strong>With Service Providers:</strong> To help operate our Services (e.g., cloud hosting, analytics, video processing).</li>
|
257 |
+
<li><strong>For Legal Reasons:</strong> When required by law, regulation, or valid legal process.</li>
|
258 |
+
<li><strong>Business Transfers:</strong> In connection with a merger, acquisition, or sale of assets.</li>
|
259 |
+
</ul>
|
260 |
+
|
261 |
+
<h3>4. Data Retention</h3>
|
262 |
+
<p>We retain personal data only as long as necessary for the purposes outlined in this Privacy Policy or as required by law. When data is no longer needed, we securely delete or anonymize it.</p>
|
263 |
+
|
264 |
+
<h3>5. Your Rights</h3>
|
265 |
+
<p>Depending on your jurisdiction, you may have the right to:</p>
|
266 |
+
<ul>
|
267 |
+
<li>Access and receive a copy of your personal data.</li>
|
268 |
+
<li>Correct or update inaccurate information.</li>
|
269 |
+
<li>Request deletion of your data.</li>
|
270 |
+
<li>Restrict or object to data processing.</li>
|
271 |
+
<li>Withdraw consent where processing is based on consent.</li>
|
272 |
+
</ul>
|
273 |
+
<p>To exercise your rights, contact us at <strong>[email protected]</strong>.</p>
|
274 |
+
|
275 |
+
<h3>6. Cookies & Tracking</h3>
|
276 |
+
<p>We use cookies and similar technologies to enhance your experience, improve platform performance, and understand usage patterns. You can manage your cookie preferences through your browser settings.</p>
|
277 |
+
|
278 |
+
<h3>7. Security Measures</h3>
|
279 |
+
<p>We implement industry-standard technical and organizational measures to protect your information from unauthorized access, alteration, disclosure, or destruction. However, no method of transmission or storage is completely secure.</p>
|
280 |
+
|
281 |
+
<h3>8. Third-Party Links</h3>
|
282 |
+
<p>Our Services may contain links to third-party websites. We are not responsible for the privacy practices or content of those sites.</p>
|
283 |
+
|
284 |
+
<h3>9. Children's Privacy</h3>
|
285 |
+
<p>Our Services are not intended for individuals under 16 years of age. We do not knowingly collect personal data from children.</p>
|
286 |
+
|
287 |
+
<h3>10. Changes to This Policy</h3>
|
288 |
+
<p>We may update this Privacy Policy from time to time. Any changes will be posted with an updated effective date. Continued use of our Services after changes are posted means you accept the updated policy.</p>
|
289 |
+
|
290 |
+
<div class="contact-section">
|
291 |
+
<h3>11. Contact Us</h3>
|
292 |
+
<p>If you have questions or concerns about this Privacy Policy, please contact us at:</p>
|
293 |
+
<div class="contact-info">
|
294 |
+
<p><strong>BlinkHire Privacy Office</strong></p>
|
295 |
+
<p><strong>Email:</strong> [email protected]</p>
|
296 |
+
<p><strong>Address:</strong> A-327, Moneyplant HighStreet, Jagatpur, Ahmedabad, India</p>
|
297 |
+
</div>
|
298 |
+
</div>
|
299 |
+
</div>
|
300 |
+
</div>
|
301 |
+
|
302 |
+
<button class="scroll-top" onclick="scrollToTop()">↑</button>
|
303 |
+
|
304 |
+
<script>
|
305 |
+
// Show/hide scroll to top button
|
306 |
+
window.addEventListener('scroll', function() {
|
307 |
+
const scrollTop = document.querySelector('.scroll-top');
|
308 |
+
if (window.pageYOffset > 300) {
|
309 |
+
scrollTop.classList.add('visible');
|
310 |
+
} else {
|
311 |
+
scrollTop.classList.remove('visible');
|
312 |
+
}
|
313 |
+
});
|
314 |
+
|
315 |
+
// Scroll to top function
|
316 |
+
function scrollToTop() {
|
317 |
+
window.scrollTo({
|
318 |
+
top: 0,
|
319 |
+
behavior: 'smooth'
|
320 |
+
});
|
321 |
+
}
|
322 |
+
|
323 |
+
// Add smooth scrolling for internal links
|
324 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
325 |
+
anchor.addEventListener('click', function (e) {
|
326 |
+
e.preventDefault();
|
327 |
+
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
328 |
+
behavior: 'smooth'
|
329 |
+
});
|
330 |
+
});
|
331 |
+
});
|
332 |
+
</script>
|
333 |
+
</body>
|
334 |
+
</html>
|