.last-updated { display: inline-flex; align-items: center; gap: 0.5rem; background-color: var(--white); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.9rem; color: var(--gray-600); margin-top: 1.5rem; box-shadow: var(--shadow-sm); } .last-updated i { color: var(--primary-blue); } /* Privacy Content Section */ .privacy-content { padding: 5rem 0; background-color: var(--white); } .privacy-wrapper { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; } /* Table of Contents Sidebar */ .toc-sidebar { position: sticky; top: 120px; background-color: var(--gray-50); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--gray-200); } .toc-sidebar h3 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--gray-900); display: flex; align-items: center; gap: 0.5rem; } .toc-sidebar h3 i { color: var(--primary-blue); } .toc-list { list-style: none; } .toc-list li { margin-bottom: 0.5rem; } .toc-list a { display: block; padding: 0.6rem 1rem; color: var(--gray-600); text-decoration: none; border-radius: 8px; font-size: 0.95rem; transition: all 0.3s; border-left: 3px solid transparent; } .toc-list a:hover, .toc-list a.active { background-color: var(--white); color: var(--primary-blue); border-left-color: var(--primary-blue); } .toc-list a i { margin-right: 0.5rem; font-size: 0.8rem; } /* Main Content */ .privacy-main { max-width: 800px; } .privacy-section { margin-bottom: 3rem; scroll-margin-top: 120px; } .privacy-section h2 { font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--gray-900); display: flex; align-items: center; gap: 0.75rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--light-blue); } .privacy-section h2 i { color: var(--primary-blue); font-size: 1.5rem; } .privacy-section h3 { font-size: 1.25rem; margin: 2rem 0 1rem; color: var(--gray-800); } .privacy-section p { color: var(--gray-700); margin-bottom: 1rem; line-height: 1.8; } .privacy-section ul, .privacy-section ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--gray-700); } .privacy-section li { margin-bottom: 0.75rem; line-height: 1.7; } .privacy-section li::marker { color: var(--primary-blue); } .privacy-section a { color: var(--primary-blue); text-decoration: none; font-weight: 500; transition: color 0.3s; } .privacy-section a:hover { color: var(--accent-blue); text-decoration: underline; } /* Info Boxes */ .info-box { background-color: var(--light-blue); border-left: 4px solid var(--primary-blue); padding: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; } .info-box.warning { background-color: #fef3c7; border-left-color: #f59e0b; } .info-box.success { background-color: #d1fae5; border-left-color: #10b981; } .info-box p { margin-bottom: 0; color: var(--gray-800); } .info-box-title { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--gray-900); } .info-box-title i { color: var(--primary-blue); } .info-box.warning .info-box-title i { color: #f59e0b; } .info-box.success .info-box-title i { color: #10b981; } /* Data Table */ .data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background-color: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); } .data-table thead { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); color: white; } .data-table th, .data-table td { padding: 1rem 1.25rem; text-align: left; } .data-table th { font-weight: 600; font-size: 0.95rem; } .data-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background-color 0.3s; } .data-table tbody tr:last-child { border-bottom: none; } .data-table tbody tr:hover { background-color: var(--gray-50); } .data-table td { color: var(--gray-700); } /* Contact Card */ .contact-card { background: linear-gradient(135deg, var(--gray-50), var(--light-blue)); border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem; border: 1px solid var(--gray-200); } .contact-card h3 { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; } .contact-card h3 i { color: var(--primary-blue); } .contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1rem; } .contact-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background-color: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all 0.3s; } .contact-item:hover { border-color: var(--primary-blue); box-shadow: var(--shadow-md); } .contact-item i { color: var(--primary-blue); font-size: 1.25rem; } .contact-item a { color: var(--gray-700); text-decoration: none; } .contact-item a:hover { color: var(--primary-blue); } /* Rights Cards */ .rights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; } .right-card { background-color: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; transition: all 0.3s; } .right-card:hover { border-color: var(--primary-blue); box-shadow: var(--shadow-lg); transform: translateY(-5px); } .right-card-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } .right-card-icon i { color: white; font-size: 1.25rem; } .right-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; } .right-card p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 0; } /* CTA Section */ .cta-section { padding: 5rem 0; text-align: center; background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.05)); } .cta-card { background: var(--white); border-radius: var(--radius-lg); padding: 4rem; border: 1px solid var(--gray-200); position: relative; overflow: hidden; box-shadow: var(--shadow-xl); max-width: 800px; margin: 0 auto; } .cta-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%); } .cta-card h2 { font-size: 2.25rem; margin-bottom: 1rem; color: var(--gray-900); } .cta-card p { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 2rem; } .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .secondary-button { background: transparent; color: var(--primary-blue); border: 2px solid var(--primary-blue); padding: 0.85rem 1.8rem; border-radius: 10px; font-weight: 600; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; } .secondary-button:hover { background-color: rgba(37, 99, 235, 0.05); transform: translateY(-2px); }

Privacy Policy

Your privacy is important to us. This policy explains how we collect, use, and protect your personal information when you use ANOJTOOLS.

Last Updated:

Privacy Policy Details

1. Introduction

Welcome to ANOJTOOLS ("we," "our," or "us"). We are committed to protecting your personal information and your right to privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website anojtools.online and use our AI-powered tools and services.

By accessing or using our services, you agree to the collection and use of information in accordance with this Privacy Policy. If you do not agree with the terms of this policy, please do not access our website or use our services.

Key Principle

We believe in transparency and minimal data collection. We only collect information that is necessary to provide and improve our services, and we never sell your personal data to third parties.

2. Information We Collect

We collect information in several ways when you interact with our services:

2.1 Information You Provide Directly

  • Account Information: When you create an account, we collect your name, email address, and password.
  • Profile Information: Optional information you may provide such as profile picture, company name, or job title.
  • Payment Information: If you subscribe to our premium services, we collect billing information through our secure payment processor (Stripe).
  • Communications: When you contact us, we collect the content of your messages and any attachments.
  • User Content: Text, images, code, or other content you input into our AI tools for processing.

2.2 Information Collected Automatically

  • Device Information: Browser type, operating system, device type, and screen resolution.
  • Log Data: IP address, access times, pages viewed, and referring URL.
  • Usage Data: How you interact with our tools, features used, and time spent on the platform.
  • Cookies: Small data files stored on your device (see our Cookie Policy).

2.3 Information from Third Parties

  • Social Login: If you sign in using Google or GitHub, we receive your name and email from these services.
  • Analytics Providers: We receive aggregated analytics data from services like Google Analytics.
Data Type Purpose Retention
Email Address Account creation, notifications Until account deletion
Usage Data Service improvement, analytics 12 months
User Content AI tool processing 24 hours (not stored)
Payment Info Transaction processing As required by law
Cookies Site functionality, preferences 30 days - 1 year

3. How We Use Your Information

We use the information we collect for the following purposes:

  • Provide Services: To operate our AI tools and deliver the functionality you expect.
  • Account Management: To create and manage your user account, authenticate your identity, and provide customer support.
  • Process Payments: To process transactions and send related information including confirmations and invoices.
  • Communication: To send you service updates, security alerts, and support messages.
  • Improvement: To analyze usage patterns, troubleshoot issues, and improve our services.
  • Personalization: To customize your experience and provide recommendations based on your preferences.
  • Legal Compliance: To comply with legal obligations and protect our rights.
  • Marketing: With your consent, to send promotional communications about new features or services.
AI Processing Promise

Content you submit to our AI tools is processed in real-time and is NOT stored on our servers after processing is complete. We do not use your content to train our AI models without your explicit consent.

4. Data Sharing and Disclosure

We do not sell your personal information. We may share your information only in the following circumstances:

4.1 Service Providers

We work with trusted third-party service providers who assist us in operating our services:

  • Cloud Hosting: Amazon Web Services (AWS), Google Cloud Platform
  • Payment Processing: Stripe, PayPal
  • Analytics: Google Analytics, Mixpanel
  • Email Services: SendGrid, Mailchimp
  • Customer Support: Zendesk, Intercom

4.2 Legal Requirements

We may disclose your information if required by law or in response to:

  • Court orders or legal processes
  • Requests from government authorities
  • To protect our rights, privacy, safety, or property
  • To prevent fraud or security issues

4.3 Business Transfers

In the event of a merger, acquisition, or sale of assets, your information may be transferred to the acquiring entity. We will notify you of any such change and any choices you may have.

Third-Party Links

Our website may contain links to third-party websites. We are not responsible for the privacy practices of these external sites. We encourage you to read their privacy policies before providing any personal information.

5. Cookies and Tracking Technologies

We use cookies and similar tracking technologies to enhance your experience on our website. Cookies are small text files stored on your device that help us remember your preferences and understand how you use our services.

5.1 Types of Cookies We Use

  • Essential Cookies: Required for the website to function properly. These cannot be disabled.
  • Functional Cookies: Remember your preferences such as language and theme settings.
  • Analytics Cookies: Help us understand how visitors interact with our website.
  • Marketing Cookies: Used to deliver relevant advertisements (only with your consent).

5.2 Managing Cookies

You can control cookies through your browser settings. Most browsers allow you to:

  • View cookies stored on your device
  • Delete individual or all cookies
  • Block cookies from specific or all websites
  • Set preferences for first-party vs. third-party cookies

For more detailed information, please see our Cookie Policy.

6. Data Security

We implement robust security measures to protect your personal information from unauthorized access, alteration, disclosure, or destruction:

  • Encryption: All data transmitted between your browser and our servers is encrypted using TLS 1.3 (HTTPS).
  • Data at Rest: Sensitive data stored in our databases is encrypted using AES-256 encryption.
  • Access Controls: Strict access controls and authentication mechanisms limit who can access your data.
  • Regular Audits: We conduct regular security audits and penetration testing.
  • Secure Infrastructure: Our servers are hosted in SOC 2 compliant data centers.
  • Monitoring: 24/7 monitoring for suspicious activities and security threats.
Security Certifications

ANOJTOOLS maintains compliance with industry security standards including SOC 2 Type II, ISO 27001, and implements security practices aligned with OWASP guidelines.

7. Your Privacy Rights

Depending on your location, you may have certain rights regarding your personal information. We respect and support these rights for all our users:

Right to Access

Request a copy of the personal data we hold about you.

Right to Rectification

Request correction of inaccurate or incomplete data.

Right to Erasure

Request deletion of your personal data ("right to be forgotten").

Right to Portability

Receive your data in a structured, machine-readable format.

Right to Object

Object to processing of your data for certain purposes.

Right to Restrict

Request limitation of processing in certain circumstances.

To exercise any of these rights, please contact us at privacy@anojtools.online. We will respond to your request within 30 days.

8. Data Retention

We retain your personal information only for as long as necessary to fulfill the purposes outlined in this Privacy Policy:

  • Account Data: Retained until you delete your account, plus an additional 30 days for backup purposes.
  • Usage Logs: Automatically deleted after 12 months.
  • AI Processing Data: Deleted immediately after processing (not stored).
  • Support Communications: Retained for 3 years to provide context for ongoing support.
  • Financial Records: Retained for 7 years as required by tax and accounting laws.

When data is no longer needed, we securely delete or anonymize it using industry-standard methods.

9. Children's Privacy

ANOJTOOLS is not intended for children under the age of 13 (or 16 in the European Economic Area). We do not knowingly collect personal information from children.

If we become aware that we have collected personal information from a child without parental consent, we will take steps to delete that information immediately. If you believe we may have collected information from a child, please contact us at privacy@anojtools.online.

10. International Data Transfers

ANOJTOOLS is based in India, and we process data globally. If you are accessing our services from outside India, please be aware that your information may be transferred to, stored, and processed in India or other countries where our servers are located.

For users in the European Economic Area (EEA), we ensure adequate protection for international transfers through:

  • Standard Contractual Clauses (SCCs) approved by the European Commission
  • Data processing agreements with our service providers
  • Compliance with GDPR requirements for international transfers

For more information about our GDPR compliance, please see our GDPR Compliance page.

11. Changes to This Privacy Policy

We may update this Privacy Policy from time to time to reflect changes in our practices, technology, legal requirements, or other factors. When we make changes:

  • We will update the "Last Updated" date at the top of this policy.
  • For significant changes, we will notify you via email or a prominent notice on our website.
  • We encourage you to review this policy periodically to stay informed.

Your continued use of our services after any changes indicates your acceptance of the updated Privacy Policy.

12. Contact Us

If you have any questions, concerns, or requests regarding this Privacy Policy or our data practices, please don't hesitate to contact us:

Privacy Team

Our dedicated privacy team is here to help you with any privacy-related inquiries.

Address
123 Tech Park, Bangalore
Karnataka 560001, India
Response Time
Within 48 hours

For urgent matters or to exercise your privacy rights, please include "PRIVACY REQUEST" in your email subject line for faster processing.

Have Questions About Your Privacy?

Our team is here to help. Contact us anytime for questions about how we handle your data.