-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jsp
More file actions
545 lines (488 loc) · 18.2 KB
/
Copy pathindex.jsp
File metadata and controls
545 lines (488 loc) · 18.2 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
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kaduna Dry Port - Premiers Logistics Services</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 1rem 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
}
.logo span {
color: #ffd700;
}
nav ul {
display: flex;
list-style: none;
gap: 2rem;
}
nav a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
nav a:hover {
color: #ffd700;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(30, 60, 114, 0.8), rgba(42, 82, 152, 0.8)),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e8f4fd" width="1200" height="600"/><g fill="%23b3d9f2" opacity="0.3"><circle cx="200" cy="150" r="80"/><circle cx="800" cy="400" r="120"/><circle cx="1000" cy="200" r="60"/></g></svg>');
color: white;
padding: 5rem 0;
text-align: center;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero p {
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto 2rem;
}
.cta-button {
display: inline-block;
background: #ffd700;
color: #1e3c72;
padding: 12px 30px;
text-decoration: none;
border-radius: 25px;
font-weight: bold;
transition: transform 0.3s;
}
.cta-button:hover {
transform: translateY(-2px);
}
/* Process Flow */
.process-flow {
padding: 4rem 0;
background: white;
}
.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.step {
text-align: center;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
background: white;
transition: transform 0.3s;
}
.step:hover {
transform: translateY(-5px);
}
.step-number {
background: #1e3c72;
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
font-weight: bold;
font-size: 1.2rem;
}
.section {
padding: 4rem 0;
}
.section:nth-child(even) {
background: #f8f9fa;
}
.section h2 {
text-align: center;
margin-bottom: 2rem;
color: #1e3c72;
font-size: 2.5rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.service-card {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
border-left: 5px solid #1e3c72;
}
.service-card h3 {
color: #1e3c72;
margin-bottom: 1rem;
}
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.contact-card {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
text-align: center;
}
.contact-card h3 {
color: #1e3c72;
margin-bottom: 1rem;
}
.contact-info {
margin: 0.5rem 0;
}
.contact-info strong {
color: #1e3c72;
}
footer {
background: #1e3c72;
color: white;
text-align: center;
padding: 2rem 0;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
color: #ffd700;
margin-bottom: 1rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.header-content {
flex-direction: column;
gap: 1rem;
}
nav ul {
flex-wrap: wrap;
justify-content: center;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
}
.highlight {
background: linear-gradient(120deg, #ffd70020 0%, #ffd70020 100%);
padding: 0.2rem 0.4rem;
border-radius: 3px;
}
.documentation-list {
background: #f8f9fa;
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid #1e3c72;
}
.documentation-list ul {
list-style-type: none;
padding-left: 0;
}
.documentation-list li {
padding: 0.5rem 0;
border-bottom: 1px solid #dee2e6;
}
.documentation-list li:last-child {
border-bottom: none;
}
.documentation-list li:before {
content: "📋";
margin-right: 0.5rem;
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<div class="logo">
Kaduna <span>Dry Port</span>
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#logistics">Logistics</a></li>
<li><a href="#customs">Customs</a></li>
<li><a href="#documentation">Documentation</a></li>
<li><a href="#contacts">Contacts</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section id="home" class="hero">
<div class="container">
<h1>Premier Logistics & Customs Services</h1>
<p>Seamless cargo movement from Apapa Seaport Lagos to Kaduna Dry Port with comprehensive customs clearance and bonding services</p>
<a href="#logistics" class="cta-button">Explore Our Services</a>
</div>
</section>
<section id="logistics" class="section process-flow">
<div class="container">
<h2>Cargo Movement Process</h2>
<p style="text-align: center; max-width: 800px; margin: 0 auto;">Our integrated logistics network ensures efficient movement of your cargo from Lagos to Kaduna with full customs compliance</p>
<div class="process-steps">
<div class="step">
<div class="step-number">1</div>
<h3>Apapa Seaport Collection</h3>
<p>Professional cargo collection services at Apapa Seaport, Lagos with proper documentation verification and handling procedures</p>
</div>
<div class="step">
<div class="step-number">2</div>
<h3>Lagos Customs Bonding</h3>
<p>Comprehensive customs bonding services at our Lagos headquarters ensuring all regulatory requirements are met</p>
</div>
<div class="step">
<div class="step-number">3</div>
<h3>Secure Transportation</h3>
<p>Reliable transport services from Lagos to Kaduna using our fleet of modern trucks with GPS tracking capabilities</p>
</div>
<div class="step">
<div class="step-number">4</div>
<h3>Kaduna Examination</h3>
<p>Final customs examination and clearance at Kaduna Dry Port facility with expedited processing procedures</p>
</div>
</div>
</div>
</section>
<section id="customs" class="section">
<div class="container">
<h2>Customs & Clearance Services</h2>
<div class="services-grid">
<div class="service-card">
<h3>Import Clearance</h3>
<p>Complete import clearance services including:</p>
<ul>
<li>Duty assessment and payment</li>
<li>Inspection coordination</li>
<li>Permit processing</li>
<li>Release documentation</li>
</ul>
</div>
<div class="service-card">
<h3>Export Clearance</h3>
<p>Comprehensive export documentation including:</p>
<ul>
<li>Export permit processing</li>
<li>Certificate of origin</li>
<li>Shipping documentation</li>
<li>Regulatory compliance verification</li>
</ul>
</div>
<div class="service-card">
<h3>Customs Bonding</h3>
<p>Professional bonding services featuring:</p>
<ul>
<li>Secure bonded warehouse facilities</li>
<li>Duty suspension arrangements</li>
<li>Transit bond management</li>
<li>Compliance monitoring</li>
</ul>
</div>
<div class="service-card">
<h3>Duty & Regulations</h3>
<p>Expert guidance on:</p>
<ul>
<li>Tariff classification</li>
<li>Duty calculation and optimization</li>
<li>Trade agreement benefits</li>
<li>Regulatory compliance requirements</li>
</ul>
</div>
</div>
</div>
</section>
<section id="documentation" class="section">
<div class="container">
<h2>Documentation & Bill of Lading</h2>
<div class="services-grid">
<div class="service-card">
<h3>Bill of Lading Processing</h3>
<p>We handle all aspects of <span class="highlight">Bill of Lading</span> documentation including:</p>
<div class="documentation-list">
<ul>
<li>Verification of consignee details</li>
<li>Goods description validation</li>
<li>Quantity and weight confirmation</li>
<li>Port of origin documentation</li>
<li>Destination port clearance</li>
</ul>
</div>
</div>
<div class="service-card">
<h3>Goods Information Management</h3>
<p>Comprehensive tracking and documentation of:</p>
<div class="documentation-list">
<ul>
<li>Nature and classification of goods</li>
<li>Packaging specifications</li>
<li>Weight and volume measurements</li>
<li>Special handling requirements</li>
<li>Insurance documentation</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="contacts" class="section">
<div class="container">
<h2>Contact Information</h2>
<div class="contact-grid">
<div class="contact-card">
<h3>Lagos Headquarters</h3>
<div class="contact-info">
<strong>Address:</strong> Apapa Port Complex, Lagos<br>
<strong>Phone:</strong> +234 (0) 1-234-5678<br>
<strong>Email:</strong> lagos@kadunadryport.com<br>
<strong>Hours:</strong> Mon-Fri 8:00 AM - 6:00 PM
</div>
</div>
<div class="contact-card">
<h3>Kaduna Dry Port</h3>
<div class="contact-info">
<strong>Address:</strong> Kaduna Inland Dry Port, Kaduna<br>
<strong>Phone:</strong> +234 (0) 62-345-6789<br>
<strong>Email:</strong> kaduna@kadunadryport.com<br>
<strong>Hours:</strong> Mon-Fri 8:00 AM - 6:00 PM
</div>
</div>
<div class="contact-card">
<h3>Transport & Tracking</h3>
<div class="contact-info">
<strong>Truck Driver 1:</strong> +234 (0) 80-123-4567<br>
<strong>Truck Driver 2:</strong> +234 (0) 80-234-5678<br>
<strong>Fleet Manager:</strong> +234 (0) 80-345-6789<br>
<strong>Emergency:</strong> +234 (0) 80-911-HELP
</div>
</div>
<div class="contact-card">
<h3>Clearing Agents</h3>
<div class="contact-info">
<strong>Senior Agent (Lagos):</strong> +234 (0) 80-456-7890<br>
<strong>Agent (Kaduna):</strong> +234 (0) 80-567-8901<br>
<strong>Customs Liaison:</strong> +234 (0) 80-678-9012<br>
<strong>Documentation:</strong> +234 (0) 80-789-0123
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>Kaduna Dry Port</h4>
<p>Your trusted partner for comprehensive logistics and customs services between Lagos and Kaduna.</p>
</div>
<div class="footer-section">
<h4>Services</h4>
<p>Cargo Transportation<br>Customs Clearance<br>Import/Export Services<br>Documentation Support</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<p>Track Shipment<br>Submit Documents<br>Request Quote<br>Emergency Support</p>
</div>
</div>
<hr style="margin: 2rem 0; border: none; height: 1px; background: rgba(255,255,255,0.2);">
<p>© 2025 Kaduna Dry Port. All rights reserved. | Licensed by Nigerian Customs Service</p>
</div>
</footer>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Add active class to navigation items
window.addEventListener('scroll', function() {
const sections = document.querySelectorAll('section');
const navLinks = document.querySelectorAll('nav a');
let current = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (scrollY >= (sectionTop - 200)) {
current = section.getAttribute('id');
}
});
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === '#' + current) {
link.classList.add('active');
}
});
});
// Add animation to process steps on scroll
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver(function(entries) {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
document.querySelectorAll('.step, .service-card, .contact-card').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(el);
});
</script>
</body>
</html>