Spaces:
Running
Running
File size: 11,604 Bytes
7f92303 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlinkHire - Privacy Policy</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 20px;
}
.policy-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
padding: 40px;
margin: 20px 0;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 3px solid #667eea;
}
.logo {
font-size: 2.5em;
font-weight: bold;
color: #667eea;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.subtitle {
color: #666;
font-size: 1.1em;
}
.effective-dates {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
padding: 15px 20px;
border-radius: 15px;
margin: 20px 0 30px 0;
text-align: center;
font-weight: 500;
}
h1 {
color: #333;
font-size: 2.2em;
margin-bottom: 20px;
text-align: center;
}
h3 {
color: #667eea;
font-size: 1.3em;
margin: 30px 0 15px 0;
padding: 10px 0;
border-bottom: 2px solid #f0f0f0;
position: relative;
}
h3::before {
content: "";
position: absolute;
bottom: -2px;
left: 0;
width: 50px;
height: 2px;
background: #667eea;
}
p {
margin-bottom: 15px;
text-align: justify;
}
ul {
margin: 15px 0;
padding-left: 20px;
}
li {
margin-bottom: 8px;
position: relative;
}
li::marker {
color: #667eea;
}
strong {
color: #333;
font-weight: 600;
}
.contact-section {
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
padding: 25px;
border-radius: 15px;
margin-top: 30px;
text-align: center;
}
.contact-section h3 {
color: #333;
border: none;
margin-bottom: 15px;
}
.contact-section h3::before {
display: none;
}
.contact-info {
font-weight: 500;
color: #555;
}
.scroll-top {
position: fixed;
bottom: 30px;
right: 30px;
background: #667eea;
color: white;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
font-size: 18px;
cursor: pointer;
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
transition: all 0.3s ease;
opacity: 0;
visibility: hidden;
}
.scroll-top.visible {
opacity: 1;
visibility: visible;
}
.scroll-top:hover {
background: #5a6fd8;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
@media (max-width: 768px) {
.container {
padding: 10px;
}
.policy-card {
padding: 25px;
margin: 10px 0;
border-radius: 15px;
}
.logo {
font-size: 2em;
}
h1 {
font-size: 1.8em;
}
h3 {
font-size: 1.2em;
}
}
.highlight {
background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
padding: 2px 6px;
border-radius: 4px;
font-weight: 500;
}
</style>
</head>
<body>
<div class="container">
<div class="policy-card">
<div class="header">
<div class="logo">BlinkHire</div>
<div class="subtitle">Your Privacy, Our Priority</div>
</div>
<div class="effective-dates">
<strong>Effective Date:</strong> 01/01/2025 | <strong>Last Updated:</strong> 15/08/2025
</div>
<h1>Privacy Policy</h1>
<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>
<h3>1. Information We Collect</h3>
<p>We may collect the following types of information:</p>
<p><strong>a. Personal Information You Provide:</strong></p>
<ul>
<li>Name, email address, phone number, and contact details.</li>
<li>Resume, work history, qualifications, and other job application materials.</li>
<li>Account login credentials.</li>
</ul>
<p><strong>b. Interview & Assessment Data:</strong></p>
<ul>
<li>Audio, video, and text responses during interviews.</li>
<li>Assessment results, scores, and related analytics.</li>
<li>Notes, ratings, and feedback from recruiters or hiring teams.</li>
</ul>
<p><strong>c. Automatically Collected Data:</strong></p>
<ul>
<li>IP address, browser type, operating system.</li>
<li>Device identifiers, usage logs, and interaction patterns.</li>
<li>Cookies and similar tracking technologies.</li>
</ul>
<h3>2. How We Use Your Information</h3>
<p>We use your information to:</p>
<ul>
<li>Provide, operate, and improve our Services.</li>
<li>Facilitate interviews, assessments, and hiring processes.</li>
<li>Analyze performance and generate recruitment insights.</li>
<li>Communicate with you regarding your account, interviews, and support.</li>
<li>Ensure platform security, prevent fraud, and comply with legal obligations.</li>
</ul>
<h3>3. How We Share Your Information</h3>
<p>We do <span class="highlight">not sell</span> your personal information. We may share your data only in these cases:</p>
<ul>
<li><strong>With Employers/Recruiters:</strong> For purposes of evaluating your job application.</li>
<li><strong>With Service Providers:</strong> To help operate our Services (e.g., cloud hosting, analytics, video processing).</li>
<li><strong>For Legal Reasons:</strong> When required by law, regulation, or valid legal process.</li>
<li><strong>Business Transfers:</strong> In connection with a merger, acquisition, or sale of assets.</li>
</ul>
<h3>4. Data Retention</h3>
<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>
<h3>5. Your Rights</h3>
<p>Depending on your jurisdiction, you may have the right to:</p>
<ul>
<li>Access and receive a copy of your personal data.</li>
<li>Correct or update inaccurate information.</li>
<li>Request deletion of your data.</li>
<li>Restrict or object to data processing.</li>
<li>Withdraw consent where processing is based on consent.</li>
</ul>
<p>To exercise your rights, contact us at <strong>[email protected]</strong>.</p>
<h3>6. Cookies & Tracking</h3>
<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>
<h3>7. Security Measures</h3>
<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>
<h3>8. Third-Party Links</h3>
<p>Our Services may contain links to third-party websites. We are not responsible for the privacy practices or content of those sites.</p>
<h3>9. Children's Privacy</h3>
<p>Our Services are not intended for individuals under 16 years of age. We do not knowingly collect personal data from children.</p>
<h3>10. Changes to This Policy</h3>
<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>
<div class="contact-section">
<h3>11. Contact Us</h3>
<p>If you have questions or concerns about this Privacy Policy, please contact us at:</p>
<div class="contact-info">
<p><strong>BlinkHire Privacy Office</strong></p>
<p><strong>Email:</strong> [email protected]</p>
<p><strong>Address:</strong> A-327, Moneyplant HighStreet, Jagatpur, Ahmedabad, India</p>
</div>
</div>
</div>
</div>
<button class="scroll-top" onclick="scrollToTop()">↑</button>
<script>
// Show/hide scroll to top button
window.addEventListener('scroll', function() {
const scrollTop = document.querySelector('.scroll-top');
if (window.pageYOffset > 300) {
scrollTop.classList.add('visible');
} else {
scrollTop.classList.remove('visible');
}
});
// Scroll to top function
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
// Add smooth scrolling for internal links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html> |