From c89a5b7a9cb100531e0a7aaf323416e9d879ff75 Mon Sep 17 00:00:00 2001 From: Ador Ahmed Date: Fri, 2 Aug 2024 06:14:34 +0600 Subject: [PATCH] Update index.html --- index.html | 241 +++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 206 insertions(+), 35 deletions(-) diff --git a/index.html b/index.html index 4bb2cd7..0de3d91 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - VorTex Cybersecurity - Privacy and Legal Information + VorTex Cybersecurity - Guarding Bangladesh's Digital Frontier @@ -115,44 +221,55 @@ +
+

Guarding Bangladesh's Digital Frontier

+

Your shield against cyber threats in an ever-evolving digital landscape

+ Get Protected Today +
+
-
-

Privacy and Legal Information

- -

Privacy Policy

-

At VorTex Cybersecurity, we are committed to protecting your privacy and ensuring the security of your personal information. This Privacy Policy outlines how we collect, use, and safeguard your data when you use our website or services.

- -

Information Collection

-

We collect information you provide directly to us, such as when you fill out a contact form or subscribe to our newsletter. This may include your name, email address, and any other information you choose to provide.

- -

Use of Information

-

We use the information we collect to provide, maintain, and improve our services, to communicate with you, and to comply with legal obligations.

- -

Data Security

-

We implement a variety of security measures to maintain the safety of your personal information. However, no method of transmission over the Internet or electronic storage is 100% secure, and we cannot guarantee absolute security.

- -

Third-Party Links

-

Our website may contain links to third-party websites. We are not responsible for the privacy practices or content of these sites.

- -

Changes to This Policy

-

We may update this privacy policy from time to time. We will notify you of any changes by posting the new privacy policy on this page.

- -

Legal Disclaimer

-

The information provided on this website is for general informational purposes only. It should not be construed as legal advice or a legal opinion on any specific facts or circumstances.

- -

Contact Us

-

If you have any questions about this Privacy Policy or our legal practices, please contact us at:

-

Email: contact@vortexnetwork.tech

-

Telegram: https://t.me/VorTexCyberBD

+
+

⚠️ Cyber Threat Alert

+

Loading latest threat information...

+
+ +
+
+

🔒 Advanced Threat Protection

+

Next-gen defense against sophisticated cyber threats using AI-powered detection and automated response.

+
+
+

🌐 Secure Network Architecture

+

Design and implementation of fortress-like network security with zero-trust architecture and multi-layer firewalls.

+
+
+

🕵️ Cyber Intelligence Operations

+

Proactive threat hunting and intelligence gathering through dark web monitoring and predictive analysis.

+
+
+ +
+
+
0
+
Threats Blocked
+
+
+
0
+
Clients Protected
+
+
+
0%
+
Service Uptime
+
@@ -197,6 +314,60 @@

Contact Us

}; setInterval(draw, 30); + + // Simulated threat alerts + const threats = [ + "Ransomware attack targeting financial institutions detected", + "Phishing campaign impersonating government agencies identified", + "Critical vulnerability in popular CMS being actively exploited", + "DDoS attacks on e-commerce platforms increasing", + "New strain of mobile malware spreading via social media" + ]; + + function updateThreatAlert() { + const threatMessage = document.getElementById('threat-message'); + threatMessage.textContent = threats[Math.floor(Math.random() * threats.length)]; + } + + setInterval(updateThreatAlert, 10000); // Update every 10 seconds + + // Animated statistics + function animateValue(id, start, end, duration) { + const range = end - start; + let current = start; + const increment = end > start? 1 : -1; + const stepTime = Math.abs(Math.floor(duration / range)); + const obj = document.getElementById(id); + const timer = setInterval(function() { + current += increment; + obj.innerHTML = current; + if (current == end) { + clearInterval(timer); + } + }, stepTime); + } + + animateValue("threats-blocked", 0, 1000000, 3000); + animateValue("clients-protected", 0, 500, 3000); + animateValue("uptime", 0, 99, 3000); + + // Hero text effect + const heroText = document.querySelector('.hero h2'); + heroText.innerHTML = heroText.textContent.replace(/\S/g, "$&"); + + const letters = document.querySelectorAll('.letter'); + letters.forEach((letter, index) => { + letter.style.animationDelay = `${index * 0.1}s`; + }); + + // Simulating a "hacking" effect + setInterval(() => { + const randomLetter = letters[Math.floor(Math.random() * letters.length)]; + randomLetter.style.color = 'var(--accent-color)'; + setTimeout(() => { + randomLetter.style.color = 'var(--secondary-color)'; + }, 100); + }, 100);