-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
361 lines (322 loc) · 14.4 KB
/
Copy pathabout.html
File metadata and controls
361 lines (322 loc) · 14.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - SM Distribution & Shipping Lines LLC</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
/* Page-specific styles */
.page-banner {
margin-top: 80px;
height: 400px;
background-image: linear-gradient(rgba(220, 220, 223, 0.2), rgba(20, 41, 146, 0.5)), url('https://images.unsplash.com/photo-1631388167556-55a285cc86a5?q=80&w=2072&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
}
.page-title {
font-size: 48px;
margin-bottom: 10px;
}
.breadcrumb {
display: flex;
justify-content: center;
}
.breadcrumb a {
color: white;
margin: 0 10px;
}
.breadcrumb span {
color: var(--secondary-color);
}
.about-section {
padding: 100px 0;
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}
.about-image img {
border-radius: 10px;
box-shadow: var(--box-shadow);
}
.about-text h2 {
color: var(--primary-color);
margin-bottom: 20px;
}
.mission-vision {
background-color: var(--gray-color);
padding: 100px 0;
}
.mission-vision-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.mission-vision-card {
padding: 40px;
background: white;
border-radius: 10px;
box-shadow: var(--box-shadow);
text-align: center;
}
.mission-vision-card i {
font-size: 50px;
color: var(--primary-color);
margin-bottom: 20px;
}
.mission-vision-card h3 {
color: var(--primary-color);
margin-bottom: 15px;
}
.team-section {
padding: 100px 0;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.team-member {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--box-shadow);
transition: var(--transition);
}
.team-member:hover {
transform: translateY(-10px);
}
.member-image {
height: 300px;
overflow: hidden;
}
.member-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.team-member:hover .member-image img {
transform: scale(1.1);
}
.member-info {
padding: 20px;
text-align: center;
}
.member-info h3 {
color: var(--primary-color);
margin-bottom: 5px;
}
.member-position {
color: var(--secondary-color);
margin-bottom: 15px;
font-weight: 500;
}
.member-social {
display: flex;
justify-content: center;
margin-top: 15px;
}
.member-social a {
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: var(--primary-color);
color: white;
margin: 0 5px;
transition: var(--transition);
}
.member-social a:hover {
background: var(--secondary-color);
transform: translateY(-3px);
}
@media (max-width: 992px) {
.about-content {
grid-template-columns: 1fr;
}
.about-image {
order: 1;
}
.about-text {
order: 2;
}
}
@media (max-width: 576px) {
.page-title {
font-size: 36px;
}
.mission-vision-card {
padding: 30px 20px;
}
}
.logo img {
content:url('Logo2.png');
}
header, .footer-top, .footer-bottom, .footer-widget, .footer-content, .footer-section, .footer-grid, .footer-logo, .footer-links, .contact-info, .social-icons, .footer-bottom p, .footer-widget p, .footer-widget a, .footer-links a, .contact-info li {
color: #fff !important;
}
</style>
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<div class="logo">
<img src="Logo2.png" alt="SM Distribution & Shipping Lines LLC Logo">
</div>
<nav>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About Us</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle">Services <i class="fa-solid fa-chevron-down"></i></a>
<ul class="dropdown-menu">
<li><a href="services/drayage.html">Drayage</a></li>
<li><a href="services/warehousing.html">Warehousing</a></li>
<li><a href="services/transloading.html">Transloading</a></li>
<li><a href="services/supply-chain.html">Supply Chain Solutions</a></li>
<li><a href="services/yard-services.html">Yard Services</a></li>
<li><a href="services/procurement.html">Procurement</a></li>
<li><a href="services/ocean-freight.html">Ocean Freight</a></li>
<li><a href="services/project-logistics.html">Project Logistics</a></li>
</ul>
</li>
<li><a href="faqs.html">FAQ's</a></li>
<li><a href="get-quote.html">Get a Quote</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<div class="mobile-menu-toggle">
<i class="fa-solid fa-bars"></i>
</div>
</nav>
</div>
</header>
<!-- Page Banner -->
<div class="page-banner">
<div class="container">
<h1 class="page-title">About Us</h1>
<div class="breadcrumb">
<a href="index.html">Home</a> / <span>About Us</span>
</div>
</div>
</div>
<!-- About Section -->
<section class="about-section">
<div class="container">
<div class="about-content" style="display: flex; flex-wrap: wrap; align-items: center; gap: 20px;">
<div class="about-image" style="flex:1; min-width:600px; text-align:center;">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d222425.4221107552!2d-95.63977905000001!3d29.8174786!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8640b8b4488d8501%3A0xca0d02def365053b!2sHouston%2C%20TX!5e0!3m2!1sen!2sus!4v1718040000000!5m2!1sen!2sus" width="500" height="500" style="border:0;border-radius:12px;box-shadow:0 2px 12px rgba(0,0,0,0.08);width:100%;max-width:500px;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="about-text" style="flex:2; min-width:200px;">
<h2>Trusted Logistics for Global Shipping</h2>
<p>Based out of Houston, SM Distribution & Shipping Lines LLC specializes in global shipping and logistics solutions. We are committed to providing seamless, secure, and efficient transport for businesses and communities worldwide.</p>
</div>
</div>
</div>
</section>
<!-- Mission & Vision Section -->
<section class="mission-vision">
<div class="container">
<div class="section-header">
<h2>Our Mission & Vision</h2>
<p>Guiding Principles That Drive Our Success</p>
</div>
<div class="mission-vision-grid">
<div class="mission-vision-card">
<i class="fas fa-bullseye"></i>
<h3>Our Mission</h3>
<p>Delivering seamless, secure, and efficient shipping solutions to connect businesses worldwide with reliable logistics services. We strive to exceed customer expectations by providing innovative solutions and exceptional service.</p>
</div>
<div class="mission-vision-card">
<i class="fas fa-eye"></i>
<h3>Our Vision</h3>
<p>To be a global leader in freight and logistics, setting the standard for innovation, speed, and customer satisfaction. We aim to transform the shipping industry through technological advancement and sustainable practices.</p>
</div>
<div class="mission-vision-card">
<i class="fas fa-handshake"></i>
<h3>Our Commitment</h3>
<p>Ensuring safe, timely, and cost-effective transportation, while maintaining the highest level of service and trust with our clients. We are committed to ethical business practices and environmental responsibility.</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta">
<div class="container">
<h2>Ready to Experience Our Services?</h2>
<p>Contact us today to discuss your logistics needs and discover how SM Distribution & Shipping Lines LLC can help streamline your shipping operations.</p>
<a href="contact.html" class="btn btn-light">Contact Us Today</a>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-top">
<div class="container">
<div class="footer-grid">
<div class="footer-widget">
<img src="Raw_Logo2.jpg" alt="SM Distribution & Shipping Lines LLC Logo" class="footer-logo">
<p>Trusted logistics for seamless global shipping. Connecting businesses worldwide with reliable, efficient, and secure shipping solutions.</p>
<div class="social-icons">
<a href="https://www.facebook.com/smdslines" target="_blank" rel="noopener noreferrer"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="footer-widget">
<h3>Quick Links</h3>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="faqs.html">FAQ's</a></li>
<li><a href="get-quote.html">Get a Quote</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div class="footer-widget">
<h3>Our Services</h3>
<ul class="footer-links">
<li><a href="air-freight.html">Air Freight</a></li>
<li><a href="express-freight.html">Express Freight</a></li>
<li><a href="land-freight.html">Land Freight</a></li>
<li><a href="procurement.html">Procurement</a></li>
</ul>
</div>
<div class="footer-widget">
<h3>Contact Information</h3>
<ul class="contact-info">
<li><i class="fas fa-map-marker-alt"></i> 7055 Old Katy Rd Suite #1261, Houston, TX 77024</li>
<li><i class="fas fa-phone"></i> +1 (555) 123-4567</li>
<li><i class="fas fa-envelope"></i> info@smdslines.com</li>
<li><i class="fas fa-clock"></i> Monday-Friday: 9am-5pm</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<p>© 2025 SM Distribution & Shipping Lines LLC. All Rights Reserved.</p>
</div>
</div>
</footer>
<!-- JavaScript -->
<script src="script.js"></script>
</body>
</html>