privacy-policy.js
7.65 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
import React from "react";
import PageBanner from "@/components/reuseables/PageBanner";
const banners = [
{
imageSrc: "/images/page-title-bg.jpg",
pageTitle: "Data Protection & Privacy Policy",
homePageUrl: "/",
homePageText: "Data Protection & Privacy Policy",
activePageText: "",
},
// Add more banners as needed
];
export default function PrivacyPolicy() {
return (
<>
<PageBanner banners={banners} />
<div className="privacy-policy-area ptb-100">
<div className="container">
<div className="privacy-policy-content">
<p>At Advith ITeC Private Limited (hereinafter referred to as “Advith ITeC Private Limited”, “Advith ITeC”, “we”, “our”, or “us”), your privacy is very important to us. This Privacy Policy document explains how we collect, use, store, and protect the personal information you provide while submitting our lead forms.
</p>
<h3>Information We Collect </h3>
<p>
When you complete our lead form, we may collect the following details:
</p>
<ul>
<li>
Full name
</li>
<li>
Email address
</li>
<li>
Contact number
</li>
<li>
Job title/role
</li>
<li>
Company/Organization name (if applicable)
</li>
<li>
Any additional information voluntarily shared in the message box or attachments
</li>
</ul>
<p>We may also automatically collect non-personal data such as browser type, device details, and IP address for analytics and security purposes.
</p>
<h3>Purpose of Data Collection </h3>
<p>
We use the information you provide for:
</p>
<ul>
<li>
Responding to your inquiries and requests
</li>
<li>
Scheduling meetings, demos, or consultations
</li>
<li>
Sending updates about our products, services, and solutions
</li>
<li>
Personalizing our communication with you
</li>
<li>
Improving our services and lead management processes
</li>
</ul>
<p>We will never use your information for purposes unrelated to our business relationship without your consent.
</p>
<h3> Data Sharing and Disclosure </h3>
<p>
We do <strong>not sell, rent, or trade</strong> your personal data. However, we may share information with:
</p>
<ul>
<li>
Trusted third-party service providers (such as CRM platforms, email campaign tools, or analytics platforms) strictly for business purposes
</li>
<li>
Legal authorities, if required by applicable law, regulation, or legal process
</li>
</ul>
<p>All third parties handling your data on our behalf are bound by confidentiality and data protection obligations.
</p>
<h3>Data Security</h3>
<p>
We take appropriate technical and organizational measures to safeguard your personal data against unauthorized access, alteration, disclosure, or destruction. However, please note that no method of transmission over the internet is 100% secure.
</p>
<h3>Data Retention</h3>
<p>
Your information will be retained only as long as it is necessary to fulfill the purposes outlined above or to comply with legal, tax, or regulatory obligations. If you request deletion of your data, we will act promptly unless we are legally required to retain it.
</p>
<h3>Your Rights </h3>
<p>
As a user, you have the right to:
</p>
<ul>
<li>
Request access to the personal data we hold about you
</li>
<li>Request correction of inaccurate or incomplete data</li>
<li>Request deletion of your personal data</li>
<li>Withdraw consent from our communications at any time </li>
</ul>
<p>To exercise these rights, please write to us at <a href="mailto:support@advithitec.in">support@advithitec.in</a> </p>
<h3>
Consent
</h3>
<p>By submitting your details through our lead form, you acknowledge that you have read, understood, and agreed to this Privacy Policy and consent to the collection, use and processing of your personal data.
</p>
<h3>Changes to This Privacy Policy </h3>
<p>Advith ITeC reserves the right to change, amend, modify or alter this Policy, from time to time, at its sole discretion. The Users are advised to look at the “Last Updated” legend on the Services to see when this Policy was last revised. Changes made to this Policy will become effective when they are posted on the Services. The Users’ use of the Services following these changes shall mean that they have accepted the revised Policy. </p>
<p>Last updated: 03 September, 2025</p>
<h3>Contact Us </h3>
<p>
If you have any questions about this Privacy Policy or how we handle your data, please contact us at: Email:
<a href="mailto:support@advithitec.in"> support@advithitec.in</a>
</p>
{/* <p>
<strong>Enquiry</strong>:{" "}
<a href="tel:+44587154756">+445 871 54756</a>
</p> */}
{/* <p>
<i>
<u>
Please read this Privacy Policy carefully before using this
website.
</u>
</i>
</p> */}
</div>
</div>
</div>
</>
);
}