forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
441 lines (378 loc) · 12.1 KB
/
about.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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Us - BuddyTrail</title>
<link rel="stylesheet" href="about.css" />
<link rel="icon" href="https://img.icons8.com/?size=100&id=11808&format=png&color=000000">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">
<img src="img/logo.png" id="logo-web" alt="BuddyTrail Logo" />
<h1 id="logo">BuddyTrail</h1>
</div>
<ul class="nav-links">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="about.html" class="nav-link active">About Us</a></li>
<li><a href="team.html" class="nav-link">Team</a></li>
<li><a href="contact.html" class="nav-link">Contact</a></li>
<li><a href="auth.html" class="btn-primary">Sign In</a></li>
</ul>
</nav>
</div>
</header>
<section class="about">
<div class="container">
<h1>About BuddyTrail</h1>
<p>Welcome to BuddyTrail, where we turn your travel dreams into reality. We provide exceptional travel planning, hotel accommodations, and vacation packages, ensuring every aspect of your trip is hassle-free and enjoyable. From luxurious getaways to budget-friendly vacations, we offer tailored services that meet your unique travel preferences.</p>
</div>
</section>
<section class="core-values">
<div class="container" id="container-Core-values">
<h2>Our Core Values</h2>
<div class="values">
<div class="value-item">
<h3>Customer Satisfaction</h3>
<p>We are committed to ensuring that every client receives the best possible travel experience with personalized service and attention to detail.</p>
</div>
<div class="value-item">
<h3>Transparency</h3>
<p>Honesty is at the heart of everything we do. We provide clear, upfront pricing with no hidden fees, ensuring you know exactly what you're paying for.</p>
</div>
<div class="value-item">
<h3>Reliability</h3>
<p>We offer trusted services with a dedicated support team available 24/7 to assist you during your travels.</p>
</div>
<div class="value-item">
<h3>Innovation</h3>
<p>We continuously update our services with the latest travel trends and technology, offering our clients a modern and seamless experience.</p>
</div>
</div>
</div>
</section>
<section class="team">
<div class="container">
<h2>Meet Our Team</h2>
<div id="team-members" class="team-members">
<div class="team-member">
<img src="img/PROJECT-LEADER.png" alt="Team Member 1">
<h3>PRIYA Ghosal</h3>
<p>CEO & Founder</p>
<P>I'm Priya Ghosal, a sophomore at NSEC (IT) '27, embarking on an exciting journey in the world of technology and coding.
</P>
</div>
<div class="team-description">
<p style="color: rgb(79, 78, 78);"> Behind BuddyTrail is a diverse team of travel enthusiasts, tech innovators, and customer experience experts.
United by our love for exploration and commitment to excellence, we work tirelessly to ensure your journey with
us is seamless, inspiring, and unforgettable.</p>
<a href="team.html" id="cta-button">The BuddyTrail Team</a>
</div>
</div>
</div>
</section>
<style>
/* Global Styles */
/* CTA Button */
#cta-button {
margin-left: 300px;
display: inline-block;
padding: 10px 10px; /* Adjust padding for button size */
background-color: #000; /* Background color black */
color: #fff; /* Text color white */
text-align: center;
font-size: 18px;
text-decoration: none;
border-radius: 5px; /* Rounded corners */
width: 250px; /* Fixed width */
height: 45px; /* Fixed height */
line-height: 30px; /* Vertically center text */
transition: background-color 0.3s ease, transform 0.3s ease;
margin-bottom: 20px;
}
/* Hover Effect */
#cta-button:hover {
background-color: #333; /* Darker black on hover */
transform: scale(1.05); /* Slightly enlarge button */
}
.team-description{
border-radius:2rem;
background: rgba(200,235,171,0.85);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
border: 1px solid rgba(48, 49, 48, 0.425);
font-weight: bolder;
position:relative;
left: 35%;
top: -300px;
display: inline-block;
}
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
.container {
width: 85%;
margin: 0 auto;
}
/* About Section */
.about {
background-color: #fff;
padding: 60px 0;
text-align: center;
position: relative;
}
.about p {
font-size: 18px;
color: #666;
max-width: 800px;
margin: 0 auto;
transition: color 0.4s ease;
}
.about h1 {
font-size: 36px;
color: #007BFF;
margin-bottom: 20px;
position: relative;
transition: color 0.3s ease;
}
.about h1::after {
content: '';
display: block;
width: 80px;
height: 3px;
background-color: #007BFF;
margin: 10px auto;
transition: width 0.3s ease;
}
.about:hover h1 {
color: #0056b3;
}
.about:hover h1::after {
width: 120px;
}
.about:hover p {
color: #333;
}
/* Core Values Section */
.core-values {
background-color: #eef5f9;
padding: 60px 0;
}
.core-values h2 {
text-align: center;
margin-bottom: 40px;
color: #007BFF;
font-size: 32px;
transition: color 0.3s ease;
}
.core-values h2:hover {
color: #0056b3;
}
.core-values .values {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.core-values .value-item {
background-color: #fff;
border-radius: 10px;
padding: 30px;
margin: 20px;
width: 45%;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.4s ease;
border: 2px solid transparent;
}
.core-values .value-item:hover {
background: rgb(83,180,215);
background: linear-gradient(0deg, rgba(83,180,215,1) 15%, rgba(28,103,130,1) 75%);
/* Pink-silver gradient */
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
border-color: #7ac9a6;
}
.core-values .value-item h3 {
color: #007BFF;
margin-bottom: 20px;
font-size: 24px;
transition: color 0.3s ease;
}
.core-values .value-item:hover h3 {
background: #ffffff;
background: linear-gradient(to right, #C7C7C7 0%, #CED9D3 100%);
background-clip: text;
-webkit-text-fill-color: transparent;
/* Text color changes to white on hover */
}
.core-values .value-item p {
color: #555;
transition: color 0.3s ease;
}
.core-values .value-item:hover p {
color: #f0f0f0; /* Subtle text color change on hover */
}
/* Team Section */
.team {
background-color: #fff;
padding: 60px 0;
}
.team h2 {
text-align: center;
margin-bottom: 40px;
font-size: 32px;
color: #007BFF;
transition: color 0.3s ease;
}
.team h2:hover {
color: #0056b3;
}
.team .team-members {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.team .team-member {
background-color: #eef5f9;
padding: 30px;
border-radius: 10px;
width: 30%;
text-align: center;
margin: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.4s ease;
border: 2px solid transparent;
}
.team .team-member:hover {
background: rgb(83,180,215);
background: linear-gradient(0deg, rgba(83,180,215,1) 15%, rgba(28,103,130,1) 75%); /* Pink-silver gradient */
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
border-color: #007BFF;
}
.team .team-member img {
border-radius: 50%;
width: 150px;
height: 150px;
object-fit: cover;
transition: transform 0.4s ease, border 0.3s ease;
border: 4px solid #fff;
}
.team .team-member:hover img {
transform: scale(1.1);
border: 4px solid #007BFF;
}
.team .team-member h3 {
margin-top: 20px;
font-size: 22px;
color: #007BFF;
transition: color 0.3s ease;
}
.team .team-member:hover h3 {
color: #fff; /* Text color changes to white on hover */
}
.team .team-member p {
color: #555;
transition: color 0.3s ease;
}
.team .team-member:hover p {
color: #f0f0f0; /* Subtle text color change on hover */
}
/* Button Styling (If you use any) */
button {
padding: 12px 24px;
background-color: #007BFF;
color: #fff;
border: 2px solid transparent;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
transform: scale(1.05);
border-color: #fff;
}
/* Responsive Design */
@media (max-width: 768px) {
.core-values .value-item, .team .team-member {
width: 100%;
}
}
/* Team Description Paragraph */
.team-description p {
font-size: 18px;
color: #333;
text-align: center;
max-width: 900px;
margin: 40px auto;
transition: color 0.3s ease, text-decoration 0.3s ease;
cursor: pointer;
}
.team-description p:hover {
color: #9000ff; /* Change text color on hover */
}
</style>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-column">
<h3>About Us</h3>
<p>Discover and plan affordable trips with BuddyTrail's travel companion tools.</p>
</div>
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="faq.html" class="faq-link">FAQs</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#">Contact</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contributor/contributor.html">Our Contributor</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Contact Us</h3>
<p>Email: info@example.com</p>
<p>Phone: +123 456 7890</p>
</div>
<div class="footer-column">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="https://discord.com/invite/priyaghosal" target="_blank"
><i class="fab fa-discord"></i
></a>
<a href="https://twitter.com/PriyaGhosa39968" target="_blank"
><i class="fab fa-twitter"></i
></a>
<a href="https://github.com/PriyaGhosal/BuddyTrail" target="_blank"
><i class="fab fa-github"></i
></a>
<a href="https://www.linkedin.com/in/priya-ghosal-785771286/" target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
</div>
<p class="copyright">© 2024 BuddyTrail | All rights reserved.</p>
</div>
</footer>
<div class="gtranslate_wrapper"></div>
<script>window.gtranslateSettings = {"default_language":"en","detect_browser_language":true,"wrapper_selector":".gtranslate_wrapper"}</script>
<script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script>
</body>
</html>