-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms-and-conditions.html
More file actions
142 lines (112 loc) · 4.79 KB
/
terms-and-conditions.html
File metadata and controls
142 lines (112 loc) · 4.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms & Conditions - KSM X Tech</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="policy-page">
<header class="header">
<a href="index.html" class="logo">
<span class="logo-ksm">KSM</span>
<span class="logo-xtech">X Tech</span>
</a>
</header>
<main class="policy-content">
<h1>TERMS & CONDITIONS</h1>
<p><strong>KSM X Tech</strong></p>
<p><strong>Last Updated:</strong> January 2026</p>
<p>These Terms & Conditions govern your use of applications and services provided by KSM X Tech.</p>
<p>By accessing or using our services, you agree to these terms.</p>
<hr>
<h2>1. Use of Services</h2>
<p>You agree to:</p>
<ul>
<li>Use our applications lawfully</li>
<li>Not engage in cheating, abuse, or exploitative behavior</li>
<li>Not attempt to reverse engineer or disrupt services</li>
</ul>
<p>Violation may result in suspension or termination.</p>
<hr>
<h2>2. Accounts</h2>
<p>You are responsible for:</p>
<ul>
<li>Maintaining confidentiality of login credentials</li>
<li>Activities performed under your account</li>
</ul>
<p>We are not responsible for losses resulting from unauthorized access.</p>
<hr>
<h2>3. In-App Purchases</h2>
<p>Some applications may include optional in-app purchases or rewarded advertisements.</p>
<ul>
<li>All digital purchases are processed through official app stores.</li>
<li>Payments are subject to the respective platform’s terms.</li>
<li>Digital items are non-refundable except where required by law.</li>
</ul>
<hr>
<h2>4. Advertising</h2>
<p>Our apps may display advertisements. Interaction with third-party advertisements is governed by those
providers’ policies.</p>
<hr>
<h2>5. Intellectual Property</h2>
<p>All content, branding, software, graphics, and designs are the property of KSM X Tech.</p>
<p>Unauthorized copying, redistribution, or modification is prohibited.</p>
<hr>
<h2>6. Limitation of Liability</h2>
<p>To the maximum extent permitted by law, KSM X Tech shall not be liable for:</p>
<ul>
<li>Indirect or incidental damages</li>
<li>Data loss</li>
<li>Service interruptions</li>
</ul>
<p>Use of the service is at your own risk.</p>
<hr>
<h2>7. Termination</h2>
<p>We reserve the right to suspend or terminate access to our services at our discretion, especially in cases of
misuse or violation of these terms.</p>
<hr>
<h2>8. Governing Law</h2>
<p>These terms shall be governed by and interpreted in accordance with the laws of India.</p>
<hr>
<h2>9. Changes to Terms</h2>
<p>We may update these Terms & Conditions from time to time. Continued use of services implies acceptance of
updated terms.</p>
<hr>
<h2>10. Contact</h2>
<p>KSM X Tech</p>
<p>Email: <a href="mailto:support@ksmxtech.com">support@ksmxtech.com</a></p>
<p>Website: <a href="https://ksmxtech.com">https://ksmxtech.com</a></p>
</main>
<footer class="footer" style="padding: 2rem;">
<div class="copyright">
© 2026 KSM X Tech. All rights reserved.
</div>
</footer>
<script>
document.addEventListener("DOMContentLoaded", function () {
// Header scroll effect and KSM width calculation
const ksmElement = document.querySelector('.logo-ksm');
function updateKsmWidth() {
if (ksmElement) {
document.documentElement.style.setProperty('--ksm-width', ksmElement.offsetWidth + 'px');
}
}
// Wait for fonts to load before calculating width, and recalculate on resize
document.fonts.ready.then(updateKsmWidth);
window.addEventListener('resize', updateKsmWidth);
updateKsmWidth(); // initial calculation
const header = document.querySelector('.header');
if (header) {
window.addEventListener('scroll', () => {
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else if (window.scrollY <= 10) {
header.classList.remove('scrolled');
}
});
}
});
</script>
</body>
</html>