-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtermsofuse.html
More file actions
445 lines (370 loc) · 17.1 KB
/
Copy pathtermsofuse.html
File metadata and controls
445 lines (370 loc) · 17.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Use - Nfinity Infotech Pvt. Ltd.</title>
<meta name="description" content="Terms of Use for Nfinity Infotech Pvt. Ltd. - Please read these terms and conditions carefully before using our services.">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #ffffff;
color: #1a1a1a;
line-height: 1.6;
}
/* Header */
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 20px 60px;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1400px;
margin: 0 auto;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 20px;
font-weight: 700;
color: #1a1a1a;
text-decoration: none;
}
.logo-icon {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
}
.logo-icon img {
width: 100%;
height: 100%;
object-fit: contain;
}
.nav-links {
display: flex;
gap: 40px;
list-style: none;
align-items: center;
}
.nav-links a {
color: #4a4a4a;
text-decoration: none;
font-weight: 500;
font-size: 15px;
transition: color 0.2s ease;
}
.nav-links a:hover {
color: #1a1a1a;
}
.nav-item {
position: relative;
}
.dropdown {
position: relative;
cursor: pointer;
}
.dropdown-toggle {
display: flex;
align-items: center;
gap: 6px;
color: #4a4a4a;
font-weight: 500;
font-size: 15px;
cursor: pointer;
}
.dropdown-toggle:hover {
color: #1a1a1a;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
margin-top: 12px;
background: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.08);
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
min-width: 220px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.2s ease;
padding: 8px 0;
}
.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.dropdown-menu a {
display: block;
padding: 12px 20px;
color: #4a4a4a;
text-decoration: none;
font-weight: 500;
font-size: 14px;
transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-menu a:hover {
background: rgba(0, 0, 0, 0.03);
color: #1a1a1a;
}
.arrow-down {
font-size: 12px;
}
/* Main Content */
.main-content {
padding: 140px 60px 60px;
max-width: 900px;
margin: 0 auto;
}
.page-title {
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 800;
margin-bottom: 20px;
color: #1a1a1a;
}
.page-subtitle {
font-size: 1.1rem;
color: #6a6a6a;
margin-bottom: 60px;
}
.terms-content {
background: #fafafa;
padding: 50px;
border-radius: 8px;
border: 1px solid rgba(0, 0, 0, 0.08);
margin-bottom: 40px;
}
.terms-content h2 {
color: #1a1a1a;
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 15px;
margin-top: 40px;
}
.terms-content h2:first-child {
margin-top: 0;
}
.terms-content h3 {
color: #1a1a1a;
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 15px;
margin-top: 25px;
}
.terms-content p {
color: #4a4a4a;
margin-bottom: 15px;
line-height: 1.8;
}
.terms-content ul {
margin-left: 25px;
margin-bottom: 15px;
}
.terms-content li {
color: #4a4a4a;
margin-bottom: 8px;
}
.terms-content strong {
color: #1a1a1a;
font-weight: 600;
}
.highlight-box {
background: rgba(0, 0, 0, 0.03);
padding: 25px;
border-radius: 8px;
border: 1px solid rgba(0, 0, 0, 0.1);
margin: 20px 0;
}
.highlight-box h3 {
color: #1a1a1a;
font-weight: 700;
margin-bottom: 10px;
}
.highlight-box p {
color: #4a4a4a;
}
.contact-info {
background: rgba(0, 0, 0, 0.02);
padding: 30px;
border-radius: 8px;
border: 1px solid rgba(0, 0, 0, 0.08);
text-align: center;
margin: 30px 0;
}
.contact-info h3 {
color: #1a1a1a;
font-weight: 700;
margin-bottom: 15px;
font-size: 1.2rem;
}
.contact-info p {
color: #4a4a4a;
margin-bottom: 8px;
}
/* Footer */
.footer {
padding: 60px 60px 40px;
border-top: 1px solid rgba(0, 0, 0, 0.08);
text-align: center;
}
.footer-links {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 30px;
flex-wrap: wrap;
}
.footer-links a {
color: #6a6a6a;
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
transition: color 0.2s ease;
}
.footer-links a:hover {
color: #1a1a1a;
}
.footer-copyright {
color: #9a9a9a;
font-size: 0.85rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.header {
padding: 15px 20px;
}
.nav-links {
display: none;
}
.main-content {
padding: 120px 20px 40px;
}
.terms-content {
padding: 30px 25px;
}
.footer {
padding: 40px 20px 30px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header class="header">
<nav class="nav">
<a href="index.html" class="logo">
<div class="logo-icon"><img src='12.32.09_7732daef-.png' alt='Nfinity Infotech Logo' /></div>
<span>Nfinity Infotech</span>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<div class="dropdown-toggle">
<span>Products</span>
<span class="arrow-down">▾</span>
</div>
<div class="dropdown-menu">
<a href="infraguardai.html">InfraGuardAI</a>
</div>
</li>
<li><a href="index.html#approach">Engineering Philosophy</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Main Content -->
<main class="main-content">
<h1 class="page-title">Terms of Use</h1>
<p class="page-subtitle">Please read these terms and conditions carefully before using our services.</p>
<div class="terms-content">
<div class="contact-info">
<h3>Website Owner & Operator</h3>
<p>This website is Owned & Operated by Nfinity InfoTech</p>
</div>
<h2>Refund Policy</h2>
<div class="highlight-box">
<h3>Important Notice</h3>
<p>All purchases are final. We do not offer refunds or exchanges once a software development service or digital product has been purchased. Please review the project scope, requirements, and deliverables carefully before completing your purchase.</p>
</div>
<h3>Damaged or Inaccessible Content</h3>
<p>If you experience any technical issues accessing the delivered software or find that the project deliverables are incomplete or corrupted, please contact our customer support team within 24 hours of delivery. We will assist you in resolving the issue.</p>
<h3>Refund Exceptions</h3>
<p>In rare cases where a refund is approved (e.g., duplicate payment or technical error), the amount will be credited to your bank account within 6–7 business days.</p>
<h2>Legal Framework</h2>
<p>• This document is an electronic record in terms of Information Technology Act, 2000 and rules there under as applicable and the amended provisions pertaining to electronic records in various statutes as amended by the Information Technology Act, 2000. This electronic record is generated by a computer system and does not require any physical or digital signatures.</p>
<p>• This document is published in accordance with the provisions of Rule 3 (1) of the Information Technology (Intermediaries guidelines) Rules, 2011 that require publishing the rules and regulations, privacy policy and Terms of Use for access or usage of domain name www.nfinityinfotech.com ("Website"), including the related mobile site and mobile application (hereinafter referred to as "Platform").</p>
<p>• The Platform is owned by Nfinity InfoTech, a company with its registered office at 3rd Floor, SLV Sunrise, Police station road, Varthur, Bangalore India 560087 (hereinafter referred to as "Platform Owner", "we", "us", "our").</p>
<h2>Terms and Conditions</h2>
<p>• Your use of the Platform and services and tools are governed by the following terms and conditions ("Terms of Use") as applicable to the Platform including the applicable policies which are incorporated herein by way of reference. If You transact on the Platform, You shall be subject to the policies that are applicable to the Platform for such transaction. By mere use of the Platform, You shall be contracting with the Platform Owner and these terms and conditions including the policies constitute Your binding obligations, with Platform Owner.</p>
<p>• For the purpose of these Terms of Use, wherever the context so requires "you", "your" or "user" shall mean any natural or legal person who has agreed to become a user/client on the Platform.</p>
<p><strong>ACCESSING, BROWSING OR OTHERWISE USING THE PLATFORM INDICATES YOUR AGREEMENT TO ALL THE TERMS AND CONDITIONS UNDER THESE TERMS OF USE, SO PLEASE READ THE TERMS OF USE CAREFULLY BEFORE PROCEEDING.</strong></p>
<h2>Service Terms</h2>
<p>• To access and use the Services, you agree to provide true, accurate and complete information to us during and after registration, and you shall be responsible for all acts done through the use of your registered account on the Platform.</p>
<p>• Neither we nor any third parties provide any warranty or guarantee as to the accuracy, timeliness, performance, completeness or suitability of the information and materials offered on this website or through the Services, for any specific purpose. You acknowledge that such information and materials may contain inaccuracies or errors and we expressly exclude liability for any such inaccuracies or errors to the fullest extent permitted by law.</p>
<p>• Your use of our Services and the Platform is solely and entirely at your own risk and discretion for which we shall not be liable to you in any manner. You are required to independently assess and ensure that the Services meet your requirements.</p>
<h2>Intellectual Property</h2>
<p>• The contents of the Platform and the Services are proprietary to us and are licensed to us. You will not have any authority to claim any intellectual property rights, title, or interest in its contents. The contents includes and is not limited to the design, layout, look and graphics.</p>
<p>• You acknowledge that unauthorized use of the Platform and/or the Services may lead to action against you as per these Terms of Use and/or applicable laws.</p>
<h2>Payment and Legal Compliance</h2>
<p>• You agree to pay us the charges associated with availing the Services as per the agreed project scope and timeline.</p>
<p>• You agree not to use the Platform and/or Services for any purpose that is unlawful, illegal or forbidden by these Terms, or Indian or local laws that might apply to you.</p>
<p>• You agree and acknowledge that website and the Services may contain links to other third party websites. On accessing these links, you will be governed by the terms of use, privacy policy and such other policies of such third party websites.</p>
<h2>Liability and Indemnification</h2>
<p>• You understand that upon initiating a transaction for availing the Services you are entering into a legally binding and enforceable contract with the Platform Owner for the Services.</p>
<p>• You shall indemnify and hold harmless Platform Owner, its affiliates, group companies (as applicable) and their respective officers, directors, agents, and employees, from any claim or demand, or actions including reasonable attorneys' fees, made by any third party or penalty imposed due to or arising out of Your breach of this Terms of Use, privacy Policy and other Policies.</p>
<p>• In no event will the Platform Owner be liable for any indirect, consequential, incidental, special or punitive damages, including without limitation damages for loss of profits or revenues, business interruption, loss of business opportunities, loss of data or loss of other economic interests, whether in contract, negligence, tort or otherwise, arising from the use of or inability to use the Services.</p>
<h2>Force Majeure and Jurisdiction</h2>
<p>• Notwithstanding anything contained in these Terms of Use, the parties shall not be liable for any failure to perform an obligation under these Terms if performance is prevented or delayed by a force majeure event.</p>
<p>• These Terms and any dispute or claim relating to it, or its enforceability, shall be governed by and construed in accordance with the laws of India.</p>
<p>• All disputes arising out of or in connection with these Terms shall be subject to the exclusive jurisdiction of the courts in Bangalore, Karnataka.</p>
<h2>Contact Information</h2>
<p>All concerns or communications relating to these Terms must be communicated to us using the contact information provided below:</p>
<div class="contact-info" style="margin-top: 20px;">
<h3>Contact Information</h3>
<p><strong>Email:</strong> info@nfinityinfotech.com</p>
<p><strong>Address:</strong> 3rd Floor, SLV Sunrise<br>Police station road, Varthur<br>Bangalore India 560087</p>
<p><strong>Phone:</strong> +91 98862 25140</p>
</div>
<p style="margin-top: 30px; text-align: center; color: #6a6a6a; font-size: 0.9rem;">
<strong>Last Updated:</strong> January 2025
</p>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer-links">
<a href="index.html">Home</a>
<a href="infraguardai.html">Products</a>
<a href="index.html#approach">Engineering Philosophy</a>
<a href="index.html#about">About</a>
<a href="index.html#contact">Contact</a>
<a href="privacypolicy.html">Privacy Policy</a>
<a href="termsofuse.html">Terms of Use</a>
</div>
<div class="footer-copyright">
© 2025 Nfinity Infotech Pvt. Ltd. All rights reserved.
</div>
</footer>
</body>
</html>