forked from ML-Fusion-Lab/ML-Fusion-Lab-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Testimonial.html
370 lines (336 loc) · 12.2 KB
/
Testimonial.html
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
370
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testimonials</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="scroll.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Internal CSS for Enhanced UI and Effects -->
<style>
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #B0E0E6, #001F3F); /* Light Blue and Navy Blue */
margin: 0;
padding: 0;
line-height: 1.6;
}
/* Navbar Styles */
header {
background-color: #333;
color: #fff;
padding: 10px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
padding: 0;
margin: 0;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #ccc;
}
/* Testimonial Section */
.testimonial-section {
text-align: center;
background-color: #fff;
padding: 50px;
margin: 40px auto;
max-width: 1200px;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.testimonial-section h2 {
font-size: 2.5rem;
margin-bottom: 30px;
color: #333;
font-weight: bold;
color: #007bff; /* Highlighted in blue */
}
.testimonial-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.testimonial {
background-color: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
}
.testimonial::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(to right, #ff416c, #ff4b2b);
}
.testimonial:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.testimonial img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 20px;
transition: transform 0.3s ease;
}
.testimonial:hover img {
transform: scale(1.05);
}
.testimonial p {
font-size: 1.1rem;
color: #555;
margin-bottom: 15px;
}
.testimonial h4 {
font-size: 1.3rem;
color: black; /* Name in black */
margin-bottom: 5px;
font-weight: bold; /* Bold name */
}
.testimonial span {
font-size: 1rem;
color: #007bff; /* Job roles in blue */
font-weight: bold; /* Bold job roles */
}
.rating {
color: #ffb400; /* Star color */
margin: 10px 0;
}
/* Add subtle fade-in effect */
.testimonial {
opacity: 0;
transform: translateY(20px);
animation: fadeInCard 0.5s forwards;
}
.testimonial:nth-child(1) {
animation-delay: 0.2s;
}
.testimonial:nth-child(2) {
animation-delay: 0.4s;
}
.testimonial:nth-child(3) {
animation-delay: 0.6s;
}
@keyframes fadeInCard {
to {
opacity: 1;
transform: translateY(0);
}
}
/* css for mouse cursor trail effect */
.circle {
position: absolute;
width: 25px;
height: 25px;
border-radius: 50%;
pointer-events: none;
background: radial-gradient(circle, rgba(70, 130, 180, 0.3),skyblue, rgba(0, 0, 50, 0.3),white);
transition: transform 0.1s, left 0.1s, top 0.1s;
}
.circle-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9999; /* removed the non-breaking space ( ) */
}
</style>
</head>
<body>
<!-- Navbar Section -->
<header>
<div id="progress-container">
<div id="progress-bar"></div>
</div>
<nav>
<div class="logo">
<a href="index.html"><h1><img src="ml fusion lab log.jpg" alt="logo" width="100" height="100"/></h1></a>
</div>
<div class="hamburger" id="hamburger">☰</div>
<ul>
<li><a href="courses.html">Courses</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="testimonial.html">Testimonials</a></li>
<div class="theme-switch" id="theme-switch"></div>
</ul>
</nav>
</header>
<!-- html for mouse cursor trail effect -->
<div class="circle-container">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<!-- Testimonial Content -->
<div class="testimonial-section">
<h2>What Our Clients Say</h2>
<div class="testimonial-container">
<!-- Testimonial 1 -->
<div class="testimonial">
<img src="https://media.istockphoto.com/id/1464539429/photo/thoughtful-business-man-with-a-digital-tablet.jpg?s=612x612&w=0&k=20&c=yLbK-rGNUkL0sPX4jw7Q_XE_vDtfj0X3nirixUlGtr4=" alt="Client 1">
<p>"ML Fusion Labs helped me solve my business challenges with AI. Their expertise is unmatched!"</p>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h4>John Doe</h4>
<span>Business Analyst</span>
<p><em>Location: New York, USA</em></p>
</div>
<!-- Testimonial 2 -->
<div class="testimonial">
<img src="https://c4.wallpaperflare.com/wallpaper/94/499/622/beautiful-wallpaper-preview.jpg" alt="Client 2">
<p>"The project development at ML Fusion Labs exceeded my expectations. The results were amazing!"</p>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h4>Jane Smith</h4>
<span>Software Engineer</span>
<p><em>Location: San Francisco, USA</em></p>
</div>
<!-- Testimonial 3 -->
<div class="testimonial">
<img src="https://media.istockphoto.com/id/1369199360/photo/portrait-of-a-handsome-young-businessman-working-in-office.jpg?s=612x612&w=0&k=20&c=ujyGdu8jKI2UB5515XZA33Tt4DBhDU19dKSTUTMZvrg=" alt="Client 3">
<p>"I was able to integrate cutting-edge machine learning models thanks to ML Fusion Labs' guidance."</p>
<div class="rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
<i class="far fa-star"></i>
</div>
<h4>Michael Brown</h4>
<span>Data Scientist</span>
<p><em>Location: London, UK</em></p>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="footer-socials">
Follow us on:
<a href="https://facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://linkedin.com" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
<div class="footer-contact">
<p>Contact us: <a href="mailto:[email protected]" style="color: white;">[email protected]</a> | Phone: +1 (555) 123-4567</p>
</div>
<div class="footer-links">
<a href="privacy.html">Privacy Policy</a> |
<a href="terms.html">Terms of Service</a> |
<a href="about.html">About Us</a> |
<a href="contact.html">Contact</a>
</div>
<p>© 2024 ML Fusion Labs | All Rights Reserved</p>
</div>
<button id="scrollTopBtn" onclick="scrollToTop()"><i class="fas fa-arrow-up"></i></button>
<!-- js for mouse cursor trail effect -->
<script>
document.addEventListener("DOMContentLoaded", function () {
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
circles.forEach(function (circle) {
circle.x = 0;
circle.y = 0;
});
window.addEventListener("mousemove", function (e) {
coords.x = e.pageX;
coords.y = e.pageY - window.scrollY; // Adjust for vertical scroll position
});
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
circle.style.left = `${x - 12}px`;
circle.style.top = `${y - 12}px`;
circle.style.transform = `scale(${(circles.length - index) / circles.length})`;
const nextCircle = circles[index + 1] || circles[0];
circle.x = x;
circle.y = y;
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
requestAnimationFrame(animateCircles);
}
animateCircles();
});
</script>
<script src="scroll.js"></script>
<script src="script.js"></script>
</footer>
</body>
</html>