forked from ShubhangiRoy12/MooVit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsafety.html
More file actions
369 lines (339 loc) · 8.97 KB
/
safety.html
File metadata and controls
369 lines (339 loc) · 8.97 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Safety - MooVit</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background: #f5f7fa;
color: #222;
line-height: 1.6;
cursor: none; /* hide default cursor */
}
/* Snake Cursor */
.cursor {
position: fixed;
top: 0;
left: 0;
width: 20px;
height: 20px;
border-radius: 50%;
background: linear-gradient(135deg, #00bfff, #0a1f44);
pointer-events: none;
transform: translate(-50%, -50%);
transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
z-index: 10000;
}
.cursor.active {
width: 40px;
height: 40px;
}
/* Navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background: #04045b;
padding: 12px 30px;
color: white;
position: relative;
min-height: 70px;
}
.back-btn a {
color: white;
text-decoration: none;
font-size: 16px;
font-weight: 600;
display: flex;
align-items: center;
gap: 6px;
transition: 0.3s ease;
}
.back-btn a:hover {
color: #00bfff;
transform: translateX(-3px);
}
.logo {
display: flex;
align-items: center;
gap: 10px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.logo h1 {
font-size: 26px;
font-weight: 900;
margin: 0;
}
.logo i {
font-size: 30px;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #0a1f44, #0047ab);
color: white;
height: 30vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 20px;
}
.hero-text h1 {
font-size: 3rem;
margin-bottom: 10px;
animation: slideDown 1s ease-in-out;
}
.hero-text p {
font-size: 1.3rem;
animation: slideUp 1.5s ease-in-out;
}
/* Mission Section */
.mission {
padding: 80px 10%;
text-align: center;
}
.mission h2 {
font-size: 2rem;
margin-bottom: 20px;
color: #0a1f44;
}
.mission p {
font-size: 1.1rem;
max-width: 800px;
margin: auto;
animation: fadeIn 2s ease;
}
/* Features Section */
.features {
padding: 60px 10%;
background: #eaf0fb;
text-align: center;
}
.features h2 {
font-size: 2rem;
margin-bottom: 40px;
color: #0a1f44;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}
.feature {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: transform 0.3s;
animation: zoomIn 1s ease;
}
.feature:hover {
transform: translateY(-10px);
}
.feature h3 {
margin-bottom: 10px;
color: #0a1f44;
}
/* FAQ Section */
.faq {
padding: 60px 10%;
background: #f5f7fa;
}
.faq h2 {
text-align: center;
font-size: 2rem;
margin-bottom: 40px;
color: #0a1f44;
}
.faq-item {
background: white;
padding: 20px 25px;
margin-bottom: 20px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: transform 0.3s;
}
.faq-item:hover {
transform: translateY(-5px);
}
.faq-item h3 {
margin-bottom: 10px;
color: #0a1f44;
}
/* Footer */
footer {
background: #0a1f44;
color: white;
text-align: center;
padding: 20px;
margin-top: 40px;
}
/* Animations */
@keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes slideDown {
from {transform: translateY(-50px); opacity: 0;}
to {transform: translateY(0); opacity: 1;}
}
@keyframes slideUp {
from {transform: translateY(50px); opacity: 0;}
to {transform: translateY(0); opacity: 1;}
}
@keyframes zoomIn {
from {transform: scale(0.9); opacity: 0;}
to {transform: scale(1); opacity: 1;}
}
/* Responsive */
@media (max-width: 768px) {
.navbar {
flex-direction: column;
gap: 15px;
padding: 15px 20px;
min-height: auto;
}
.logo {
position: static;
transform: none;
order: 1;
margin: 10px 0;
}
.back-btn {
align-self: flex-start;
order: 0;
}
.logo h1 {
font-size: 22px;
}
.logo i {
font-size: 24px;
}
.hero-text h1 {
font-size: 2.2rem;
}
.hero-text p {
font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.navbar {
padding: 12px 15px;
}
.logo h1 {
font-size: 20px;
}
.hero-text h1 {
font-size: 1.8rem;
}
.hero-text p {
font-size: 1rem;
}
}
</style>
</head>
<body>
<!-- Custom Cursor -->
<div class="cursor" id="cursor"></div>
<!-- Navbar -->
<header class="navbar">
<div class="back-btn"><a href="main.html"><i class="fas fa-arrow-left"></i> Back</a></div>
<div class="logo">
<i class="fas fa-truck-moving"></i>
<h1>MooVit</h1>
</div>
<div></div> <!-- Empty div for spacing -->
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-text">
<h1>Safety First</h1>
<p>Discover how MooVit ensures the safety of our employees, customers, and community.</p>
</div>
</section>
<!-- Mission Section -->
<section class="mission">
<h2>Our Safety Commitment</h2>
<p>
At <strong>MooVit</strong>, safety is our top priority. We follow strict protocols for workplace safety,
cybersecurity, community awareness, and emergency preparedness to maintain a secure environment for all.
</p>
</section>
<!-- Features Section -->
<section class="features">
<h2>Safety Guidelines</h2>
<div class="feature-grid">
<div class="feature">
<h3>Workplace Safety</h3>
<p>Safe working conditions, regular drills, and employee training prevent accidents and ensure readiness in emergencies.</p>
</div>
<div class="feature">
<h3>Data & Cybersecurity</h3>
<p>Advanced cybersecurity measures, encrypted storage, and strict access controls protect sensitive data.</p>
</div>
<div class="feature">
<h3>Community Safety</h3>
<p>Guidelines and resources for safe behavior in public, events, and travel encourage vigilance and responsibility.</p>
</div>
<div class="feature">
<h3>Health & Hygiene</h3>
<p>Maintaining cleanliness, regular health checks, and promoting personal hygiene are key components.</p>
</div>
<div class="feature">
<h3>Emergency Protocols</h3>
<p>Clear procedures, evacuation plans, and first-aid training ensure preparedness for any situation.</p>
</div>
<div class="feature">
<h3>Online Safety</h3>
<p>Users are educated about safe online practices, phishing awareness, and secure password management.</p>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="faq">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<h3>How is workplace safety ensured?</h3>
<p>Regular training, audits, and drills help maintain a secure environment for employees.</p>
</div>
<div class="faq-item">
<h3>How is my personal data protected?</h3>
<p>All sensitive data is encrypted and stored securely with strict access controls.</p>
</div>
<div class="faq-item">
<h3>What steps are taken for community safety?</h3>
<p>Guidelines, workshops, and alerts help everyone stay informed about public safety risks.</p>
</div>
<div class="faq-item">
<h3>Who can I contact in case of an emergency?</h3>
<p>Contact info for safety officers and emergency services is available on our website.</p>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2025 MooVit. All Rights Reserved.</p>
</footer>
<!-- Cursor Script -->
<script>
const cursor = document.getElementById('cursor');
document.addEventListener('mousemove', e => {
cursor.style.transform = `translate(${e.clientX}px, ${e.clientY}px)`;
});
document.querySelectorAll('a, button').forEach(el => {
el.addEventListener('mouseenter', () => cursor.classList.add('active'));
el.addEventListener('mouseleave', () => cursor.classList.remove('active'));
});
</script>
</body>
</html>