This is the website for AKM EDUCATION ALLAHABAD where learning meets innovation.
AI Chat Support
Privacy Policy - AKM EDUCATION ALLAHABAD
AKM EDUCATION ALLAHABAD
Privacy Policy for AKM EDUCATION ALLAHABAD
Effective Date: [Insert Date]
At AKM EDUCATION ALLAHABAD (accessible from https://akmeducation.org.com), your privacy is one of our main priorities.
This Privacy Policy outlines the types of information we collect and how we use it to serve you better.
1. Information We Collect
We may collect personal information including:
Name, email address, phone number
Information submitted through forms (course registration, contact, feedback)
Technical data such as IP address, browser type, and device information
2. How We Use Your Information
We use your information for the following purposes:
To provide and maintain our educational services
To contact you regarding updates, queries, or promotions (only with consent)
To analyze website usage and improve our content and services
To respond to inquiries and support requests
3. Cookies and Tracking Technologies
We may use cookies and similar tracking tools to enhance your experience on our website. These help us understand user behavior and preferences.
Users can modify their browser settings to disable cookies at any time.
4. Third-Party Services
We may use trusted third-party services like Google Analytics for website analytics.
These services may collect certain technical data as per their own privacy policies.
We do not share your personal information with any third party for marketing purposes without your explicit consent.
5. Data Security
We take reasonable technical and administrative measures to protect your personal data from unauthorized access, alteration, or destruction.
6. Your Data Rights
You have the right to:
Request access to your personal data
Ask for corrections or deletions of any incorrect or outdated data
Withdraw your consent at any time
Request that we stop processing your data
To exercise any of these rights, please contact us using the details below.
7. Children's Privacy
Our services are not intended for children under the age of 13.
We do not knowingly collect personal data from children.
If you believe we have collected such information, please contact us immediately and we will remove it.
8. Changes to This Privacy Policy
We reserve the right to update or modify this Privacy Policy at any time.
Updates will be posted on this page with a new "Effective Date."
We encourage you to review this page periodically to stay informed.
9. Contact Information
If you have any questions or concerns regarding our Privacy Policy, please feel free to contact us:
Name: AKM EDUCATION ALLAHABAD
Email: lnkesh68@gmail.com
Phone: +91 8573930179
Address: Allahabad, Uttar Pradesh, India
Website: https://akmeducation.org.com
)/>
Contact | AKM EDUCATION
AKM EDUCATION - The Future of Learning!
Contact Us
If you have any questions, please fill out the form below to reach out.
l
/* style.css */
/* Reset some basics */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: #f4f4f4;
color: #333;
}
/* Marquee Container and Text */
.marquee-container {
background: #3498db;
color: #fff;
overflow: hidden;
white-space: nowrap;
padding: 10px 0;
}
.marquee-text {
display: inline-block;
padding-left: 100%;
animation: marquee 15s linear infinite;
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
/* Navigation Bar */
nav {
background: #2c3e50;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
}
nav .language-selector select {
padding: 5px;
}
nav .search-bar {
display: flex;
}
nav .search-bar input[type="text"] {
padding: 5px;
border: none;
}
nav .search-bar button {
padding: 5px 10px;
border: none;
background: #1abc9c;
color: #fff;
cursor: pointer;
}
/* Dropdown Menu */
nav .dropdown {
position: relative;
display: inline-block;
}
nav .dropdown .dropbtn {
background: #e74c3c;
color: #fff;
padding: 5px 10px;
border: none;
cursor: pointer;
}
nav .dropdown-content {
display: none;
position: absolute;
right: 0;
background: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
z-index: 1;
}
nav .dropdown-content a {
color: #333;
padding: 10px 16px;
text-decoration: none;
display: block;
}
nav .dropdown-content a:hover {
background: #ddd;
}
nav .dropdown:hover .dropdown-content {
display: block;
}
/* Main Content */
main {
padding: 20px;
}
#chatWidget {
margin-top: 20px;
background: #ecf0f1;
padding: 15px;
border-radius: 5px;
}
#chatOutput {
height: 200px;
overflow-y: auto;
background: #fff;
border: 1px solid #ccc;
margin-bottom: 10px;
padding: 10px;
}
/* Footer */
footer {
background: #2c3e50;
color: #bdc3c7;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
// script.js
// Function for the search feature
function performSearch() {
const query = document.getElementById("searchInput").value;
if (query) {
alert("Search functionality is not connected to a database yet. You searched for: " + query);
} else {
alert("Please enter a search term.");
}
}
// Function for the AI Chat simulation
function sendMessage() {
const inputField = document.getElementById("chatInput");
const input = inputField.value.trim();
if (input === "") {
alert("Please enter a message.");
return;
}
const chatOutput = document.getElementById("chatOutput");
// Display user's message
const userMessage = document.createElement("div");
userMessage.textContent = "You: " + input;
chatOutput.appendChild(userMessage);
// Clear the input field for the next message
inputField.value = "";
// Simulate an AI response after 1 second delay
setTimeout(() => {
const aiResponse = document.createElement("div");
aiResponse.textContent = "AI: Sorry, this is a demo response.";
chatOutput.appendChild(aiResponse);
// Auto-scroll to the bottom of the chat output
chatOutput.scrollTop = chatOutput.scrollHeight;
}, 1000);
}
No comments:
Post a Comment