mirror of
https://github.com/thecyberlearn/victory-web.git
synced 2026-08-18 08:33:03 +00:00
1278 lines
45 KiB
HTML
1278 lines
45 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Victory Logistics - Global Trade Solutions</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
line-height: 1.6;
|
|
color: #1a1a1a;
|
|
background: #fafafa;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Dynamic Background */
|
|
.bg-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e, #ffcd3c, #4ecdc4, #45b7d1);
|
|
background-size: 300% 300%;
|
|
animation: gradientWave 12s ease infinite;
|
|
opacity: 0.05;
|
|
z-index: -1;
|
|
}
|
|
|
|
@keyframes gradientWave {
|
|
0% { background-position: 0% 50%; }
|
|
50% { background-position: 100% 50%; }
|
|
100% { background-position: 0% 50%; }
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: 2px solid #ff6b35;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
|
|
}
|
|
|
|
.nav-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 2.2rem;
|
|
font-weight: 900;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
text-transform: uppercase;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
.nav-menu {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 35px;
|
|
}
|
|
|
|
.nav-menu a {
|
|
color: #333;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.nav-menu a::before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -8px;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 3px;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
transition: all 0.3s ease;
|
|
transform: translateX(-50%);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.nav-menu a:hover {
|
|
color: #ff6b35;
|
|
}
|
|
|
|
.nav-menu a:hover::before {
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-cta {
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
color: white;
|
|
padding: 12px 28px;
|
|
border-radius: 30px;
|
|
text-decoration: none;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
|
|
}
|
|
|
|
.nav-cta:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcd3c 100%);
|
|
color: white;
|
|
position: relative;
|
|
overflow: hidden;
|
|
z-index: 1;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 50%;
|
|
height: 100%;
|
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.hero-content {
|
|
display: grid;
|
|
grid-template-columns: 1.3fr 1fr;
|
|
gap: 60px;
|
|
align-items: center;
|
|
position: relative;
|
|
z-index: 2;
|
|
padding-top: 80px;
|
|
}
|
|
|
|
.hero-text h1 {
|
|
font-size: clamp(3rem, 6vw, 5rem);
|
|
font-weight: 900;
|
|
line-height: 1.1;
|
|
margin-bottom: 25px;
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
|
|
animation: slideUp 1s ease-out;
|
|
}
|
|
|
|
@keyframes slideUp {
|
|
from { opacity: 0; transform: translateY(40px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.hero-text p {
|
|
font-size: 1.4rem;
|
|
margin-bottom: 35px;
|
|
line-height: 1.7;
|
|
font-weight: 400;
|
|
opacity: 0.95;
|
|
animation: slideUp 1s ease-out 0.2s both;
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
animation: slideUp 1s ease-out 0.4s both;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
color: white;
|
|
padding: 18px 35px;
|
|
border-radius: 50px;
|
|
text-decoration: none;
|
|
font-weight: 700;
|
|
font-size: 1.1rem;
|
|
transition: all 0.3s ease;
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
backdrop-filter: blur(10px);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 15px 35px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: white;
|
|
color: #ff6b35;
|
|
padding: 18px 35px;
|
|
border-radius: 50px;
|
|
text-decoration: none;
|
|
font-weight: 700;
|
|
font-size: 1.1rem;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: #f8f8f8;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
|
|
}
|
|
|
|
.hero-visual {
|
|
position: relative;
|
|
animation: slideUp 1s ease-out 0.3s both;
|
|
}
|
|
|
|
.hero-image {
|
|
width: 100%;
|
|
height: 450px;
|
|
border-radius: 25px;
|
|
overflow: hidden;
|
|
box-shadow: 0 25px 60px rgba(0,0,0,0.3);
|
|
position: relative;
|
|
}
|
|
|
|
.hero-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.8s ease;
|
|
}
|
|
|
|
.hero-image:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.floating-badge {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
color: #ff6b35;
|
|
padding: 12px 20px;
|
|
border-radius: 25px;
|
|
font-weight: 700;
|
|
font-size: 0.9rem;
|
|
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
|
|
animation: float 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0px); }
|
|
50% { transform: translateY(-8px); }
|
|
}
|
|
|
|
/* Stats Section */
|
|
.stats-banner {
|
|
background: white;
|
|
padding: 60px 0;
|
|
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-item {
|
|
position: relative;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 3.5rem;
|
|
font-weight: 900;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
line-height: 1;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 1.1rem;
|
|
color: #666;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
/* Services Section */
|
|
.services {
|
|
padding: 120px 0;
|
|
background: linear-gradient(135deg, #4ecdc4, #45b7d1);
|
|
color: white;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
margin-bottom: 80px;
|
|
}
|
|
|
|
.section-title h2 {
|
|
font-size: 3.5rem;
|
|
font-weight: 900;
|
|
margin-bottom: 20px;
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.section-title p {
|
|
font-size: 1.3rem;
|
|
opacity: 0.9;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 40px;
|
|
}
|
|
|
|
.service-card {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 25px;
|
|
padding: 40px;
|
|
transition: all 0.4s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.service-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
|
|
transition: left 0.8s ease;
|
|
}
|
|
|
|
.service-card:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-10px);
|
|
background: rgba(255, 255, 255, 0.15);
|
|
box-shadow: 0 25px 50px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.service-icon {
|
|
width: 70px;
|
|
height: 70px;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
border-radius: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 2rem;
|
|
margin-bottom: 25px;
|
|
box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
|
|
}
|
|
|
|
.service-card h3 {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.service-card p {
|
|
line-height: 1.6;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
/* Network Section */
|
|
.network {
|
|
padding: 120px 0;
|
|
background: white;
|
|
}
|
|
|
|
.network-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 80px;
|
|
align-items: center;
|
|
}
|
|
|
|
.network-text h2 {
|
|
font-size: 3.2rem;
|
|
font-weight: 900;
|
|
color: #333;
|
|
margin-bottom: 30px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.network-text p {
|
|
font-size: 1.2rem;
|
|
color: #666;
|
|
line-height: 1.7;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.feature-list {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.feature-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
margin-bottom: 20px;
|
|
padding: 15px;
|
|
border-radius: 15px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.feature-item:hover {
|
|
background: #f8f8f8;
|
|
transform: translateX(10px);
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-weight: bold;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.network-visual {
|
|
position: relative;
|
|
height: 500px;
|
|
border-radius: 30px;
|
|
overflow: hidden;
|
|
box-shadow: 0 30px 60px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.network-visual img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.8s ease;
|
|
}
|
|
|
|
.network-visual:hover img {
|
|
transform: scale(1.1) rotate(1deg);
|
|
}
|
|
|
|
/* Clients Section */
|
|
.clients {
|
|
padding: 120px 0;
|
|
background: linear-gradient(135deg, #333, #555);
|
|
color: white;
|
|
}
|
|
|
|
.logo-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
gap: 30px;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.logo-item {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 20px;
|
|
padding: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100px;
|
|
transition: all 0.4s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.logo-item::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
|
|
transition: left 0.6s ease;
|
|
}
|
|
|
|
.logo-item:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.logo-item:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: #ff6b35;
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
|
|
}
|
|
|
|
.logo-item img {
|
|
max-width: 80px;
|
|
max-height: 60px;
|
|
width: auto;
|
|
height: auto;
|
|
object-fit: contain;
|
|
filter: brightness(0) invert(1);
|
|
transition: all 0.3s ease;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.logo-item:hover img {
|
|
filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.logo-item span {
|
|
font-weight: 700;
|
|
font-size: 1rem;
|
|
color: white;
|
|
}
|
|
|
|
.logo-item img {
|
|
max-width: 80px;
|
|
max-height: 60px;
|
|
width: auto;
|
|
height: auto;
|
|
object-fit: contain;
|
|
filter: brightness(0) invert(1);
|
|
transition: all 0.3s ease;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.logo-item:hover img {
|
|
filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* Fallback text styling when images don't load */
|
|
.logo-item {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 20px;
|
|
padding: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100px;
|
|
transition: all 0.4s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
font-size: 0.9rem;
|
|
color: white;
|
|
}
|
|
|
|
/* CTA Section */
|
|
.cta-section {
|
|
padding: 120px 0;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
color: white;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cta-section::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
|
|
opacity: 0.3;
|
|
animation: float 20s ease-in-out infinite;
|
|
}
|
|
|
|
.cta-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.cta-section h2 {
|
|
font-size: 4rem;
|
|
font-weight: 900;
|
|
margin-bottom: 25px;
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.cta-section p {
|
|
font-size: 1.4rem;
|
|
margin-bottom: 40px;
|
|
opacity: 0.95;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: #1a1a1a;
|
|
color: white;
|
|
padding: 80px 0 40px;
|
|
}
|
|
|
|
.footer-content {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr 1fr;
|
|
gap: 60px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.footer-brand h3 {
|
|
font-size: 2rem;
|
|
font-weight: 900;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: 20px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.footer-brand p {
|
|
color: #ccc;
|
|
line-height: 1.6;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.social-links {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
.social-links a {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.social-links a:hover {
|
|
transform: translateY(-3px) scale(1.1);
|
|
box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
|
|
}
|
|
|
|
.footer-column h4 {
|
|
color: #ff6b35;
|
|
font-weight: 700;
|
|
margin-bottom: 25px;
|
|
font-size: 1.2rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.footer-column ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.footer-column ul li {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.footer-column ul li a {
|
|
color: #ccc;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.footer-column ul li a:hover {
|
|
color: #ff6b35;
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
.footer-bottom {
|
|
border-top: 1px solid #333;
|
|
padding-top: 40px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: #888;
|
|
}
|
|
|
|
.footer-bottom-links {
|
|
display: flex;
|
|
gap: 30px;
|
|
}
|
|
|
|
.footer-bottom-links a {
|
|
color: #888;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-bottom-links a:hover {
|
|
color: #ff6b35;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.nav-menu {
|
|
display: none;
|
|
}
|
|
|
|
.hero-content,
|
|
.network-content {
|
|
grid-template-columns: 1fr;
|
|
gap: 40px;
|
|
}
|
|
|
|
.hero-text h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.services-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.footer-content {
|
|
grid-template-columns: 1fr;
|
|
gap: 40px;
|
|
}
|
|
|
|
.footer-bottom {
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-buttons {
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
}
|
|
|
|
/* Scroll animations */
|
|
.fade-in {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
transition: all 0.8s ease;
|
|
}
|
|
|
|
.fade-in.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="bg-overlay"></div>
|
|
|
|
<!-- Header -->
|
|
<header class="header">
|
|
<div class="container">
|
|
<nav class="nav-container">
|
|
<div class="logo">Victory</div>
|
|
<ul class="nav-menu">
|
|
<li><a href="#home">Home</a></li>
|
|
<li><a href="#services">Services</a></li>
|
|
<li><a href="#network">Network</a></li>
|
|
<li><a href="#clients">Clients</a></li>
|
|
<li><a href="#contact">Contact</a></li>
|
|
</ul>
|
|
<a href="#" class="nav-cta">Get Started</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero" id="home">
|
|
<div class="container">
|
|
<div class="hero-content">
|
|
<div class="hero-text">
|
|
<h1>Revolutionizing Global Trade</h1>
|
|
<p>Experience the future of international logistics with our cutting-edge solutions, real-time tracking, and unmatched global connectivity that powers your business forward.</p>
|
|
<div class="hero-buttons">
|
|
<a href="#" class="btn-primary">Explore Solutions</a>
|
|
<a href="#" class="btn-secondary">Watch Demo</a>
|
|
</div>
|
|
</div>
|
|
<div class="hero-visual">
|
|
<div class="hero-image">
|
|
<img src="hero.png" alt="Global Logistics" />
|
|
<div class="floating-badge">25+ Years Experience</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Stats Banner -->
|
|
<section class="stats-banner">
|
|
<div class="container">
|
|
<div class="stats-grid">
|
|
<div class="stat-item">
|
|
<div class="stat-number">195</div>
|
|
<div class="stat-label">Countries Served</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-number">50K+</div>
|
|
<div class="stat-label">Happy Clients</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-number">99.8%</div>
|
|
<div class="stat-label">Success Rate</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-number">24/7</div>
|
|
<div class="stat-label">Support</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Services Section -->
|
|
<section class="services fade-in" id="services">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>Our Core Services</h2>
|
|
<p>Comprehensive logistics solutions tailored to meet your unique business requirements</p>
|
|
</div>
|
|
<div class="services-grid">
|
|
<div class="service-card">
|
|
<div class="service-icon">🚢</div>
|
|
<h3>Ocean Freight</h3>
|
|
<p>Cost-effective sea transportation with full container load (FCL) and less than container load (LCL) options for global shipping needs.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="service-icon">✈️</div>
|
|
<h3>Air Freight</h3>
|
|
<p>Fast and reliable air cargo services for time-sensitive shipments with real-time tracking and priority handling.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="service-icon">🚛</div>
|
|
<h3>Land Transport</h3>
|
|
<p>Efficient ground transportation solutions including trucking, rail freight, and last-mile delivery services.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="service-icon">📦</div>
|
|
<h3>Warehousing</h3>
|
|
<p>Strategic warehouse locations with advanced inventory management and distribution capabilities worldwide.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="service-icon">📋</div>
|
|
<h3>Customs Clearance</h3>
|
|
<p>Expert customs brokerage services ensuring smooth clearance and compliance with international trade regulations.</p>
|
|
</div>
|
|
<div class="service-card">
|
|
<div class="service-icon">🔗</div>
|
|
<h3>Supply Chain</h3>
|
|
<p>End-to-end supply chain optimization with AI-powered analytics and predictive logistics solutions.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Network Section -->
|
|
<section class="network fade-in" id="network">
|
|
<div class="container">
|
|
<div class="network-content">
|
|
<div class="network-text">
|
|
<h2>Global Network Excellence</h2>
|
|
<p>Our extensive worldwide network ensures seamless connectivity across all major trade routes and emerging markets.</p>
|
|
<p>Leveraging advanced technology and strategic partnerships to deliver unparalleled efficiency and reliability in every shipment.</p>
|
|
<div class="feature-list">
|
|
<div class="feature-item">
|
|
<div class="feature-icon">🌍</div>
|
|
<div>
|
|
<strong>Global Coverage</strong><br>
|
|
Presence in 195+ countries worldwide
|
|
</div>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">⚡</div>
|
|
<div>
|
|
<strong>Real-time Tracking</strong><br>
|
|
Live updates throughout the journey
|
|
</div>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">🤖</div>
|
|
<div>
|
|
<strong>AI Optimization</strong><br>
|
|
Smart routing and predictive analytics
|
|
</div>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">🛡️</div>
|
|
<div>
|
|
<strong>Secure Operations</strong><br>
|
|
Advanced security and insurance coverage
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="network-visual">
|
|
<img src="map.png" alt="Global Network" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Clients Section -->
|
|
<section class="clients fade-in" id="clients">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>Trusted by Industry Giants</h2>
|
|
<p>Leading brands choose Victory for their global logistics needs</p>
|
|
</div>
|
|
<div class="logo-grid">
|
|
<div class="logo-item">
|
|
<img src="./logos/Adidas.svg" alt="Adidas" onerror="this.style.display='none'; this.parentNode.innerHTML='ADIDAS';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/Intel.svg" alt="Intel" onerror="this.style.display='none'; this.parentNode.innerHTML='INTEL';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/Toyota.svg" alt="Toyota" onerror="this.style.display='none'; this.parentNode.innerHTML='TOYOTA';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/Shell.svg" alt="Shell" onerror="this.style.display='none'; this.parentNode.innerHTML='SHELL';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/Apple.svg" alt="Apple" onerror="this.style.display='none'; this.parentNode.innerHTML='APPLE';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/McDonald.svg" alt="McDonald's" onerror="this.style.display='none'; this.parentNode.innerHTML='McDONALD';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/Unilever.svg" alt="Unilever" onerror="this.style.display='none'; this.parentNode.innerHTML='UNILEVER';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/Coca-Cola.svg" alt="Coca-Cola" onerror="this.style.display='none'; this.parentNode.innerHTML='COCA COLA';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/P&G.svg" alt="P&G" onerror="this.style.display='none'; this.parentNode.innerHTML='P&G';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/Volkswagen.svg" alt="Volkswagen" onerror="this.style.display='none'; this.parentNode.innerHTML='VOLKSWAGEN';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/gasco.svg" alt="Gasco" onerror="this.style.display='none'; this.parentNode.innerHTML='GSK';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/visa.svg" alt="Visa" onerror="this.style.display='none'; this.parentNode.innerHTML='VISA';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/adobe.svg" alt="Adobe" onerror="this.style.display='none'; this.parentNode.innerHTML='ADOBE';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/pfizer.svg" alt="Pfizer" onerror="this.style.display='none'; this.parentNode.innerHTML='PELCO';" />
|
|
</div>
|
|
<div class="logo-item">
|
|
<img src="./logos/contemporary.svg" alt="Contemporary" onerror="this.style.display='none'; this.parentNode.innerHTML='NSRTTC';" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA Section -->
|
|
<section class="cta-section fade-in" id="contact">
|
|
<div class="container">
|
|
<div class="cta-content">
|
|
<h2>Ready to Transform Your Business?</h2>
|
|
<p>Join thousands of companies who trust Victory for their global logistics needs. Start your journey today.</p>
|
|
<div class="hero-buttons">
|
|
<a href="#" class="btn-secondary">Get Free Quote</a>
|
|
<a href="#" class="btn-primary">Schedule Consultation</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="footer-content">
|
|
<div class="footer-brand">
|
|
<h3>Victory Logistics</h3>
|
|
<p>Pioneering the future of global trade with innovative logistics solutions, cutting-edge technology, and unmatched service excellence.</p>
|
|
<div class="social-links">
|
|
<a href="#" aria-label="Facebook">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
|
|
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
|
|
</svg>
|
|
</a>
|
|
<a href="#" aria-label="Twitter">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
|
|
<path d="M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z"/>
|
|
</svg>
|
|
</a>
|
|
<a href="#" aria-label="LinkedIn">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
|
|
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
|
|
</svg>
|
|
</a>
|
|
<a href="#" aria-label="Instagram">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
|
|
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/>
|
|
</svg>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-column">
|
|
<h4>Services</h4>
|
|
<ul>
|
|
<li><a href="#">Ocean Freight</a></li>
|
|
<li><a href="#">Air Freight</a></li>
|
|
<li><a href="#">Land Transport</a></li>
|
|
<li><a href="#">Warehousing</a></li>
|
|
<li><a href="#">Customs Clearance</a></li>
|
|
<li><a href="#">Supply Chain</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="footer-column">
|
|
<h4>Company</h4>
|
|
<ul>
|
|
<li><a href="#">About Us</a></li>
|
|
<li><a href="#">Our Team</a></li>
|
|
<li><a href="#">Careers</a></li>
|
|
<li><a href="#">News & Updates</a></li>
|
|
<li><a href="#">Sustainability</a></li>
|
|
<li><a href="#">Partnerships</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="footer-column">
|
|
<h4>Support</h4>
|
|
<ul>
|
|
<li><a href="#">Contact Us</a></li>
|
|
<li><a href="#">Track Shipment</a></li>
|
|
<li><a href="#">Get Quote</a></li>
|
|
<li><a href="#">Documentation</a></li>
|
|
<li><a href="#">Help Center</a></li>
|
|
<li><a href="#">Customer Portal</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-bottom">
|
|
<div>
|
|
<p>© 2025 Victory Logistics. All rights reserved.</p>
|
|
</div>
|
|
<div class="footer-bottom-links">
|
|
<a href="#">Privacy Policy</a>
|
|
<a href="#">Terms of Service</a>
|
|
<a href="#">Cookie Policy</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
// Header scroll effect
|
|
window.addEventListener('scroll', () => {
|
|
const header = document.querySelector('.header');
|
|
if (window.scrollY > 100) {
|
|
header.style.background = 'rgba(255, 255, 255, 0.98)';
|
|
header.style.boxShadow = '0 8px 30px rgba(255, 107, 53, 0.15)';
|
|
} else {
|
|
header.style.background = 'rgba(255, 255, 255, 0.95)';
|
|
header.style.boxShadow = '0 4px 20px rgba(255, 107, 53, 0.1)';
|
|
}
|
|
});
|
|
|
|
// Scroll animations
|
|
const observerOptions = {
|
|
threshold: 0.1,
|
|
rootMargin: '0px 0px -50px 0px'
|
|
};
|
|
|
|
const observer = new IntersectionObserver((entries) => {
|
|
entries.forEach(entry => {
|
|
if (entry.isIntersecting) {
|
|
entry.target.classList.add('visible');
|
|
}
|
|
});
|
|
}, observerOptions);
|
|
|
|
document.querySelectorAll('.fade-in').forEach(el => {
|
|
observer.observe(el);
|
|
});
|
|
|
|
// Smooth scrolling
|
|
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'
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
// Counter animation for stats
|
|
function animateCounter(element, target, originalText) {
|
|
let count = 0;
|
|
const increment = target / 100;
|
|
const timer = setInterval(() => {
|
|
count += increment;
|
|
if (count >= target) {
|
|
count = target;
|
|
clearInterval(timer);
|
|
}
|
|
|
|
// Determine the correct suffix based on original text
|
|
let displayText = Math.floor(count);
|
|
if (originalText.includes('K+')) {
|
|
displayText = Math.floor(count / 1000) + 'K+';
|
|
} else if (originalText.includes('%')) {
|
|
displayText = count.toFixed(1) + '%';
|
|
} else if (originalText.includes('/7')) {
|
|
displayText = Math.floor(count) + '/7';
|
|
} else {
|
|
displayText = Math.floor(count);
|
|
}
|
|
|
|
element.textContent = displayText;
|
|
}, 20);
|
|
}
|
|
|
|
// Trigger counter animation when stats section is visible
|
|
const statsObserver = new IntersectionObserver((entries) => {
|
|
entries.forEach(entry => {
|
|
if (entry.isIntersecting) {
|
|
const statNumbers = entry.target.querySelectorAll('.stat-number');
|
|
statNumbers.forEach(stat => {
|
|
const originalText = stat.textContent;
|
|
let target;
|
|
|
|
if (originalText.includes('K+')) {
|
|
target = parseInt(originalText) * 1000;
|
|
} else if (originalText.includes('%')) {
|
|
target = parseFloat(originalText);
|
|
} else if (originalText.includes('/')) {
|
|
target = parseInt(originalText);
|
|
} else {
|
|
target = parseInt(originalText);
|
|
}
|
|
|
|
stat.textContent = '0';
|
|
animateCounter(stat, target, originalText);
|
|
});
|
|
statsObserver.unobserve(entry.target);
|
|
}
|
|
});
|
|
});
|
|
|
|
const statsSection = document.querySelector('.stats-banner');
|
|
if (statsSection) {
|
|
statsObserver.observe(statsSection);
|
|
}
|
|
|
|
// Enhanced parallax effect with fine-tuning
|
|
window.addEventListener('scroll', () => {
|
|
const scrolled = window.pageYOffset;
|
|
const parallax = document.querySelector('.hero');
|
|
const heroHeight = parallax.offsetHeight;
|
|
const windowHeight = window.innerHeight;
|
|
|
|
if (parallax && scrolled < heroHeight + windowHeight * 0.3) {
|
|
// Extended parallax range for smoother transition
|
|
const progress = scrolled / (heroHeight + windowHeight * 0.3);
|
|
const speed = scrolled * 0.2; // Even smoother speed
|
|
const maxTransform = heroHeight * 0.15; // Reduced max transform
|
|
const easeOut = 1 - Math.pow(1 - progress, 3); // Cubic ease-out
|
|
const transform = Math.min(speed * easeOut, maxTransform);
|
|
|
|
parallax.style.transform = `translateY(${transform}px)`;
|
|
parallax.style.transition = 'none'; // Disable transition during scroll
|
|
} else if (parallax) {
|
|
// Smooth reset with transition
|
|
parallax.style.transition = 'transform 0.3s ease-out';
|
|
parallax.style.transform = 'translateY(0px)';
|
|
}
|
|
});
|
|
|
|
// Add dynamic particles
|
|
function createParticle() {
|
|
const particle = document.createElement('div');
|
|
particle.style.cssText = `
|
|
position: fixed;
|
|
width: 6px;
|
|
height: 6px;
|
|
background: linear-gradient(135deg, #ff6b35, #f7931e);
|
|
border-radius: 50%;
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
animation: particleRise 6s linear infinite;
|
|
opacity: 0.7;
|
|
`;
|
|
|
|
particle.style.left = Math.random() * 100 + 'vw';
|
|
particle.style.animationDelay = Math.random() * 6 + 's';
|
|
|
|
document.body.appendChild(particle);
|
|
|
|
setTimeout(() => {
|
|
particle.remove();
|
|
}, 6000);
|
|
}
|
|
|
|
// Create particles periodically
|
|
setInterval(createParticle, 3000);
|
|
|
|
// Add particle animation
|
|
const particleStyle = document.createElement('style');
|
|
particleStyle.textContent = `
|
|
@keyframes particleRise {
|
|
0% {
|
|
transform: translateY(100vh) rotate(0deg) scale(0);
|
|
opacity: 0;
|
|
}
|
|
10% {
|
|
opacity: 0.7;
|
|
transform: scale(1);
|
|
}
|
|
90% {
|
|
opacity: 0.7;
|
|
}
|
|
100% {
|
|
transform: translateY(-100px) rotate(360deg) scale(0);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
`;
|
|
document.head.appendChild(particleStyle);
|
|
</script>
|
|
</body>
|
|
</html> |