mirror of
https://github.com/thecyberlearn/victory-web.git
synced 2026-08-18 07:53:02 +00:00
1413 lines
51 KiB
HTML
1413 lines
51 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 - Elite Global Solutions</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Playfair Display', 'Georgia', serif;
|
|
line-height: 1.6;
|
|
color: #ffffff;
|
|
background: #0d0d0d;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Elegant Background Pattern */
|
|
.bg-pattern {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
background:
|
|
radial-gradient(circle at 20% 80%, rgba(186, 162, 75, 0.1) 0%, transparent 50%),
|
|
radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
|
|
linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
|
|
animation: luxuryGlow 20s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes luxuryGlow {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.8; }
|
|
}
|
|
|
|
.container {
|
|
max-width: 1300px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Premium Header */
|
|
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
background: rgba(13, 13, 13, 0.95);
|
|
backdrop-filter: blur(30px);
|
|
border-bottom: 1px solid rgba(186, 162, 75, 0.2);
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
.header.scrolled {
|
|
background: rgba(13, 13, 13, 0.98);
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
|
|
border-bottom-color: rgba(212, 175, 55, 0.4);
|
|
}
|
|
|
|
.nav-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
background: linear-gradient(135deg, #d4af37, #baa24b, #f4e19c);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
font-family: 'Playfair Display', serif;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
.nav-menu {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 40px;
|
|
}
|
|
|
|
.nav-menu a {
|
|
color: rgba(255, 255, 255, 0.9);
|
|
text-decoration: none;
|
|
font-weight: 400;
|
|
font-size: 1rem;
|
|
transition: all 0.4s ease;
|
|
position: relative;
|
|
font-family: 'Inter', sans-serif;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.nav-menu a::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -8px;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 2px;
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
transition: all 0.4s ease;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.nav-menu a:hover {
|
|
color: #d4af37;
|
|
}
|
|
|
|
.nav-menu a:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-cta {
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
color: #0d0d0d;
|
|
padding: 14px 30px;
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-family: 'Inter', sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
font-size: 0.85rem;
|
|
transition: all 0.4s ease;
|
|
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.nav-cta::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
|
|
transition: left 0.6s ease;
|
|
}
|
|
|
|
.nav-cta:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.nav-cta:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
|
|
}
|
|
|
|
/* Luxurious Hero Section */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #262626 100%);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 60%;
|
|
height: 100%;
|
|
background:
|
|
radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
|
|
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,0 L20,10 L10,20 L0,10 Z" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury)"/></svg>');
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.hero-content {
|
|
display: grid;
|
|
grid-template-columns: 1.4fr 1fr;
|
|
gap: 80px;
|
|
align-items: center;
|
|
position: relative;
|
|
z-index: 2;
|
|
padding-top: 100px;
|
|
}
|
|
|
|
.hero-text h1 {
|
|
font-size: clamp(3.5rem, 7vw, 6rem);
|
|
font-weight: 400;
|
|
line-height: 1.1;
|
|
margin-bottom: 30px;
|
|
font-family: 'Playfair Display', serif;
|
|
background: linear-gradient(135deg, #ffffff, #d4af37, #f4e19c);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
animation: elegantSlide 1.2s ease-out;
|
|
}
|
|
|
|
@keyframes elegantSlide {
|
|
from { opacity: 0; transform: translateY(60px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.5rem;
|
|
color: #d4af37;
|
|
font-weight: 300;
|
|
margin-bottom: 25px;
|
|
font-family: 'Inter', sans-serif;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
animation: elegantSlide 1.2s ease-out 0.2s both;
|
|
}
|
|
|
|
.hero-text p {
|
|
font-size: 1.3rem;
|
|
margin-bottom: 40px;
|
|
line-height: 1.8;
|
|
color: rgba(255, 255, 255, 0.85);
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
animation: elegantSlide 1.2s ease-out 0.4s both;
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: 25px;
|
|
animation: elegantSlide 1.2s ease-out 0.6s both;
|
|
}
|
|
|
|
.btn-luxury {
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
color: #0d0d0d;
|
|
padding: 18px 40px;
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
transition: all 0.4s ease;
|
|
font-family: 'Inter', sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
|
|
}
|
|
|
|
.btn-luxury::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
|
|
transition: left 0.6s ease;
|
|
}
|
|
|
|
.btn-luxury:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.btn-luxury:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
|
|
}
|
|
|
|
.btn-outline {
|
|
background: transparent;
|
|
color: #d4af37;
|
|
padding: 18px 40px;
|
|
border: 2px solid #d4af37;
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
transition: all 0.4s ease;
|
|
font-family: 'Inter', sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.btn-outline:hover {
|
|
background: #d4af37;
|
|
color: #0d0d0d;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
|
|
}
|
|
|
|
.hero-visual {
|
|
position: relative;
|
|
animation: elegantSlide 1.2s ease-out 0.5s both;
|
|
}
|
|
|
|
.hero-image-container {
|
|
position: relative;
|
|
height: 500px;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow:
|
|
0 30px 80px rgba(0, 0, 0, 0.5),
|
|
inset 0 0 0 1px rgba(212, 175, 55, 0.2);
|
|
}
|
|
|
|
.hero-image-container img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.8s ease;
|
|
filter: brightness(0.9) contrast(1.1);
|
|
}
|
|
|
|
.hero-image-container:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.luxury-badge {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 30px;
|
|
background: rgba(212, 175, 55, 0.95);
|
|
color: #0d0d0d;
|
|
padding: 15px 25px;
|
|
border-radius: 4px;
|
|
font-weight: 700;
|
|
font-size: 0.9rem;
|
|
font-family: 'Inter', sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
|
|
animation: luxuryFloat 4s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes luxuryFloat {
|
|
0%, 100% { transform: translateY(0px); }
|
|
50% { transform: translateY(-10px); }
|
|
}
|
|
|
|
/* Premium Stats Section */
|
|
.stats-luxury {
|
|
background: linear-gradient(135deg, #1a1a1a, #262626);
|
|
padding: 80px 0;
|
|
border-top: 1px solid rgba(212, 175, 55, 0.2);
|
|
border-bottom: 1px solid rgba(212, 175, 55, 0.2);
|
|
}
|
|
|
|
.stats-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 60px;
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-luxury {
|
|
position: relative;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.stat-luxury::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
width: 60px;
|
|
height: 2px;
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.stat-number-luxury {
|
|
font-size: 4rem;
|
|
font-weight: 300;
|
|
font-family: 'Playfair Display', serif;
|
|
background: linear-gradient(135deg, #d4af37, #f4e19c);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
line-height: 1;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.stat-label-luxury {
|
|
font-size: 1.1rem;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-family: 'Inter', sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* Sophisticated Services */
|
|
.services-luxury {
|
|
padding: 140px 0;
|
|
background: #0d0d0d;
|
|
}
|
|
|
|
.luxury-section-header {
|
|
text-align: center;
|
|
margin-bottom: 100px;
|
|
}
|
|
|
|
.luxury-section-header h2 {
|
|
font-size: 4rem;
|
|
font-weight: 300;
|
|
font-family: 'Playfair Display', serif;
|
|
background: linear-gradient(135deg, #ffffff, #d4af37);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.luxury-section-header p {
|
|
font-size: 1.3rem;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.services-luxury-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
|
|
gap: 40px;
|
|
}
|
|
|
|
.service-luxury-card {
|
|
background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(38, 38, 38, 0.8));
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(212, 175, 55, 0.1);
|
|
border-radius: 8px;
|
|
padding: 50px;
|
|
transition: all 0.5s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.service-luxury-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 1px;
|
|
background: linear-gradient(90deg, transparent, #d4af37, transparent);
|
|
transform: translateX(-100%);
|
|
transition: transform 0.8s ease;
|
|
}
|
|
|
|
.service-luxury-card:hover::before {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.service-luxury-card:hover {
|
|
transform: translateY(-15px);
|
|
background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(38, 38, 38, 0.9));
|
|
border-color: rgba(212, 175, 55, 0.3);
|
|
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.service-luxury-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 2.2rem;
|
|
margin-bottom: 30px;
|
|
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
|
|
}
|
|
|
|
.service-luxury-card h3 {
|
|
font-size: 1.8rem;
|
|
font-weight: 400;
|
|
font-family: 'Playfair Display', serif;
|
|
color: #d4af37;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.service-luxury-card p {
|
|
line-height: 1.8;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* Elite Network Section */
|
|
.network-luxury {
|
|
padding: 140px 0;
|
|
background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
|
|
}
|
|
|
|
.network-luxury-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 100px;
|
|
align-items: center;
|
|
}
|
|
|
|
.network-luxury-text h2 {
|
|
font-size: 3.8rem;
|
|
font-weight: 300;
|
|
font-family: 'Playfair Display', serif;
|
|
background: linear-gradient(135deg, #ffffff, #d4af37);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: 35px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.network-luxury-text p {
|
|
font-size: 1.2rem;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
line-height: 1.8;
|
|
margin-bottom: 25px;
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.luxury-features {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.luxury-feature-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 20px;
|
|
margin-bottom: 30px;
|
|
padding: 25px;
|
|
border-left: 2px solid transparent;
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
.luxury-feature-item:hover {
|
|
border-left-color: #d4af37;
|
|
background: rgba(212, 175, 55, 0.05);
|
|
transform: translateX(10px);
|
|
}
|
|
|
|
.luxury-feature-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #0d0d0d;
|
|
font-weight: bold;
|
|
font-size: 1.2rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.luxury-feature-content h4 {
|
|
color: #d4af37;
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 1.3rem;
|
|
font-weight: 400;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.luxury-feature-content p {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
font-size: 1rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.network-luxury-visual {
|
|
position: relative;
|
|
height: 550px;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow:
|
|
0 40px 80px rgba(0, 0, 0, 0.6),
|
|
inset 0 0 0 1px rgba(212, 175, 55, 0.2);
|
|
}
|
|
|
|
.network-luxury-visual img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 1s ease;
|
|
filter: brightness(0.85) contrast(1.2);
|
|
}
|
|
|
|
.network-luxury-visual:hover img {
|
|
transform: scale(1.08) rotate(1deg);
|
|
}
|
|
|
|
/* Premium Clients */
|
|
.clients-luxury {
|
|
padding: 140px 0;
|
|
background: #0d0d0d;
|
|
border-top: 1px solid rgba(212, 175, 55, 0.2);
|
|
}
|
|
|
|
.clients-luxury-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
gap: 40px;
|
|
margin-top: 80px;
|
|
}
|
|
|
|
.client-luxury-item {
|
|
background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(38, 38, 38, 0.6));
|
|
border: 1px solid rgba(212, 175, 55, 0.1);
|
|
border-radius: 8px;
|
|
padding: 40px 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 120px;
|
|
transition: all 0.5s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.client-luxury-item::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
|
|
transition: left 0.8s ease;
|
|
}
|
|
|
|
.client-luxury-item:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.client-luxury-item:hover {
|
|
background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(38, 38, 38, 0.8));
|
|
border-color: #d4af37;
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
|
|
}
|
|
|
|
.client-luxury-item img {
|
|
max-width: 75px;
|
|
max-height: 55px;
|
|
width: auto;
|
|
height: auto;
|
|
object-fit: contain;
|
|
filter: brightness(0) invert(1);
|
|
transition: all 0.4s ease;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.client-luxury-item:hover img {
|
|
filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
|
|
transform: scale(1.15);
|
|
}
|
|
|
|
.client-luxury-item span {
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
font-family: 'Inter', sans-serif;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
/* Luxurious CTA */
|
|
.cta-luxury {
|
|
padding: 140px 0;
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
color: #0d0d0d;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cta-luxury::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(13,13,13,0.1)"/><circle cx="10" cy="10" r="0.5" fill="rgba(13,13,13,0.05)"/><circle cx="30" cy="30" r="0.5" fill="rgba(13,13,13,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.cta-luxury-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.cta-luxury h2 {
|
|
font-size: 4.5rem;
|
|
font-weight: 300;
|
|
font-family: 'Playfair Display', serif;
|
|
margin-bottom: 30px;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.cta-luxury p {
|
|
font-size: 1.4rem;
|
|
margin-bottom: 50px;
|
|
opacity: 0.9;
|
|
max-width: 700px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.cta-luxury-buttons {
|
|
display: flex;
|
|
gap: 30px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn-cta-dark {
|
|
background: #0d0d0d;
|
|
color: #d4af37;
|
|
padding: 20px 45px;
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
transition: all 0.4s ease;
|
|
font-family: 'Inter', sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
box-shadow: 0 10px 30px rgba(13, 13, 13, 0.4);
|
|
}
|
|
|
|
.btn-cta-dark:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 15px 40px rgba(13, 13, 13, 0.5);
|
|
}
|
|
|
|
.btn-cta-outline {
|
|
background: transparent;
|
|
color: #0d0d0d;
|
|
padding: 20px 45px;
|
|
border: 2px solid #0d0d0d;
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
transition: all 0.4s ease;
|
|
font-family: 'Inter', sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.btn-cta-outline:hover {
|
|
background: #0d0d0d;
|
|
color: #d4af37;
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
/* Elite Footer */
|
|
.footer-luxury {
|
|
background: #0d0d0d;
|
|
padding: 100px 0 50px;
|
|
border-top: 1px solid rgba(212, 175, 55, 0.2);
|
|
}
|
|
|
|
.footer-luxury-content {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr 1fr;
|
|
gap: 80px;
|
|
margin-bottom: 80px;
|
|
}
|
|
|
|
.footer-luxury-brand h3 {
|
|
font-size: 2.5rem;
|
|
font-weight: 300;
|
|
font-family: 'Playfair Display', serif;
|
|
background: linear-gradient(135deg, #d4af37, #f4e19c);
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.footer-luxury-brand p {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
line-height: 1.8;
|
|
margin-bottom: 40px;
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.luxury-social-links {
|
|
display: flex;
|
|
gap: 20px;
|
|
}
|
|
|
|
.luxury-social-links a {
|
|
width: 55px;
|
|
height: 55px;
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #0d0d0d;
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
.luxury-social-links a:hover {
|
|
transform: translateY(-4px) scale(1.1);
|
|
box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
|
|
}
|
|
|
|
.footer-luxury-column h4 {
|
|
color: #d4af37;
|
|
font-family: 'Playfair Display', serif;
|
|
font-weight: 400;
|
|
margin-bottom: 30px;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.footer-luxury-column ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.footer-luxury-column ul li {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.footer-luxury-column ul li a {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.footer-luxury-column ul li a:hover {
|
|
color: #d4af37;
|
|
transform: translateX(8px);
|
|
}
|
|
|
|
.footer-luxury-bottom {
|
|
border-top: 1px solid rgba(212, 175, 55, 0.2);
|
|
padding-top: 50px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.footer-luxury-bottom-links {
|
|
display: flex;
|
|
gap: 40px;
|
|
}
|
|
|
|
.footer-luxury-bottom-links a {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.footer-luxury-bottom-links a:hover {
|
|
color: #d4af37;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.nav-menu {
|
|
display: none;
|
|
}
|
|
|
|
.hero-content,
|
|
.network-luxury-content {
|
|
grid-template-columns: 1fr;
|
|
gap: 60px;
|
|
}
|
|
|
|
.hero-text h1 {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.services-luxury-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.footer-luxury-content {
|
|
grid-template-columns: 1fr;
|
|
gap: 50px;
|
|
}
|
|
|
|
.footer-luxury-bottom {
|
|
flex-direction: column;
|
|
gap: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-buttons,
|
|
.cta-luxury-buttons {
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.luxury-section-header h2 {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.cta-luxury h2 {
|
|
font-size: 3.5rem;
|
|
}
|
|
}
|
|
|
|
/* Scroll animations */
|
|
.fade-in-luxury {
|
|
opacity: 0;
|
|
transform: translateY(50px);
|
|
transition: all 1s ease;
|
|
}
|
|
|
|
.fade-in-luxury.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="bg-pattern"></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">Elite Access</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero" id="home">
|
|
<div class="container">
|
|
<div class="hero-content">
|
|
<div class="hero-text">
|
|
<div class="hero-subtitle">Elite Global Solutions</div>
|
|
<h1>Redefining Luxury in International Trade</h1>
|
|
<p>Experience unparalleled excellence in global logistics with our premium services, white-glove handling, and exclusive partnerships that elevate your business to extraordinary heights.</p>
|
|
<div class="hero-buttons">
|
|
<a href="#" class="btn-luxury">Discover Excellence</a>
|
|
<a href="#" class="btn-outline">Exclusive Portfolio</a>
|
|
</div>
|
|
</div>
|
|
<div class="hero-visual">
|
|
<div class="hero-image-container">
|
|
<img src="hero.png" alt="Elite Logistics" />
|
|
<div class="luxury-badge">Premium Service</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Stats Section -->
|
|
<section class="stats-luxury">
|
|
<div class="container">
|
|
<div class="stats-container">
|
|
<div class="stat-luxury">
|
|
<div class="stat-number-luxury">25</div>
|
|
<div class="stat-label-luxury">Years of Excellence</div>
|
|
</div>
|
|
<div class="stat-luxury">
|
|
<div class="stat-number-luxury">195</div>
|
|
<div class="stat-label-luxury">Countries Connected</div>
|
|
</div>
|
|
<div class="stat-luxury">
|
|
<div class="stat-number-luxury">99.9%</div>
|
|
<div class="stat-label-luxury">Success Rate</div>
|
|
</div>
|
|
<div class="stat-luxury">
|
|
<div class="stat-number-luxury">24/7</div>
|
|
<div class="stat-label-luxury">Concierge Service</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Services Section -->
|
|
<section class="services-luxury fade-in-luxury" id="services">
|
|
<div class="container">
|
|
<div class="luxury-section-header">
|
|
<h2>Exclusive Services Portfolio</h2>
|
|
<p>Bespoke logistics solutions crafted for discerning clients who demand nothing less than perfection</p>
|
|
</div>
|
|
<div class="services-luxury-grid">
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">🛳️</div>
|
|
<h3>Premium Ocean Freight</h3>
|
|
<p>White-glove ocean transportation with dedicated vessel space, priority handling, and personalized cargo care for your most valuable shipments.</p>
|
|
</div>
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">🛩️</div>
|
|
<h3>Executive Air Charter</h3>
|
|
<p>Exclusive air freight solutions with chartered flights, expedited customs clearance, and real-time concierge support for time-critical deliveries.</p>
|
|
</div>
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">🚐</div>
|
|
<h3>Elite Ground Services</h3>
|
|
<p>Premium ground transportation with secure convoy services, temperature-controlled vehicles, and dedicated route optimization.</p>
|
|
</div>
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">🏛️</div>
|
|
<h3>Luxury Warehousing</h3>
|
|
<p>Climate-controlled facilities with enhanced security, white-glove handling, and bespoke inventory management systems.</p>
|
|
</div>
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">📋</div>
|
|
<h3>VIP Customs Service</h3>
|
|
<p>Expedited customs processing with dedicated agents, diplomatic channels, and seamless regulatory compliance management.</p>
|
|
</div>
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">⚡</div>
|
|
<h3>Concierge Logistics</h3>
|
|
<p>End-to-end supply chain management with personal account executives and 24/7 dedicated support for complete peace of mind.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Network Section -->
|
|
<section class="network-luxury fade-in-luxury" id="network">
|
|
<div class="container">
|
|
<div class="network-luxury-content">
|
|
<div class="network-luxury-text">
|
|
<h2>Global Excellence Network</h2>
|
|
<p>Our prestigious worldwide network ensures seamless connectivity across all major financial centers and emerging luxury markets.</p>
|
|
<p>Leveraging exclusive partnerships and cutting-edge technology to deliver uncompromising quality and reliability in every transaction.</p>
|
|
<div class="luxury-features">
|
|
<div class="luxury-feature-item">
|
|
<div class="luxury-feature-icon">🌍</div>
|
|
<div class="luxury-feature-content">
|
|
<h4>Worldwide Presence</h4>
|
|
<p>Exclusive offices in 195+ countries with premium facilities and dedicated teams</p>
|
|
</div>
|
|
</div>
|
|
<div class="luxury-feature-item">
|
|
<div class="luxury-feature-icon">🎯</div>
|
|
<div class="luxury-feature-content">
|
|
<h4>Precision Tracking</h4>
|
|
<p>Real-time monitoring with blockchain verification and satellite tracking</p>
|
|
</div>
|
|
</div>
|
|
<div class="luxury-feature-item">
|
|
<div class="luxury-feature-icon">🔒</div>
|
|
<div class="luxury-feature-content">
|
|
<h4>Ultimate Security</h4>
|
|
<p>Military-grade protection with comprehensive insurance and risk management</p>
|
|
</div>
|
|
</div>
|
|
<div class="luxury-feature-item">
|
|
<div class="luxury-feature-icon">👑</div>
|
|
<div class="luxury-feature-content">
|
|
<h4>VIP Treatment</h4>
|
|
<p>Personal concierge service with priority access and exclusive benefits</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="network-luxury-visual">
|
|
<img src="map.png" alt="Global Luxury Network" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Clients Section -->
|
|
<section class="clients-luxury fade-in-luxury" id="clients">
|
|
<div class="container">
|
|
<div class="luxury-section-header">
|
|
<h2>Distinguished Clientele</h2>
|
|
<p>Trusted by the world's most prestigious brands and forward-thinking enterprises</p>
|
|
</div>
|
|
<div class="clients-luxury-grid">
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/Adidas.svg" alt="Adidas" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>ADIDAS</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/Intel.svg" alt="Intel" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>INTEL</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/Toyota.svg" alt="Toyota" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>TOYOTA</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/Shell.svg" alt="Shell" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>SHELL</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/Apple.svg" alt="Apple" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>APPLE</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/McDonald.svg" alt="McDonald's" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>McDONALD</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/Unilever.svg" alt="Unilever" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>UNILEVER</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/Coca-Cola.svg" alt="Coca-Cola" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>COCA COLA</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/P&G.svg" alt="P&G" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>P&G</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/Volkswagen.svg" alt="Volkswagen" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>VOLKSWAGEN</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/glaxosmithkline.svg" alt="GlaxoSmithKline" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>GSK</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/visa.svg" alt="Visa" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>VISA</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/adobe.svg" alt="Adobe" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>ADOBE</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/fedex.svg" alt="FedEx" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>PELCO</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/contemporary.svg" alt="Contemporary" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>NSRTTC</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/pfizer.svg" alt="Pfizer" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>PTMC</span>';" />
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA Section -->
|
|
<section class="cta-luxury fade-in-luxury" id="contact">
|
|
<div class="container">
|
|
<div class="cta-luxury-content">
|
|
<h2>Elevate Your Business Today</h2>
|
|
<p>Join an exclusive circle of industry leaders who trust Victory for their most important logistics needs. Experience the pinnacle of global trade excellence.</p>
|
|
<div class="cta-luxury-buttons">
|
|
<a href="#" class="btn-cta-dark">Request Consultation</a>
|
|
<a href="#" class="btn-cta-outline">Explore Services</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer-luxury">
|
|
<div class="container">
|
|
<div class="footer-luxury-content">
|
|
<div class="footer-luxury-brand">
|
|
<h3>Victory Elite</h3>
|
|
<p>Pioneering the future of luxury logistics with uncompromising excellence, innovative solutions, and personalized service that exceeds the highest expectations.</p>
|
|
<div class="luxury-social-links">
|
|
<a href="#" aria-label="Facebook">
|
|
<svg width="22" height="22" 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="22" height="22" 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="22" height="22" 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="22" height="22" 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-luxury-column">
|
|
<h4>Elite Services</h4>
|
|
<ul>
|
|
<li><a href="#">Premium Ocean Freight</a></li>
|
|
<li><a href="#">Executive Air Charter</a></li>
|
|
<li><a href="#">Elite Ground Services</a></li>
|
|
<li><a href="#">Luxury Warehousing</a></li>
|
|
<li><a href="#">VIP Customs Service</a></li>
|
|
<li><a href="#">Concierge Logistics</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="footer-luxury-column">
|
|
<h4>Excellence</h4>
|
|
<ul>
|
|
<li><a href="#">About Victory Elite</a></li>
|
|
<li><a href="#">Leadership Team</a></li>
|
|
<li><a href="#">Exclusive Careers</a></li>
|
|
<li><a href="#">Press & Media</a></li>
|
|
<li><a href="#">Sustainability</a></li>
|
|
<li><a href="#">Strategic Partnerships</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="footer-luxury-column">
|
|
<h4>Concierge</h4>
|
|
<ul>
|
|
<li><a href="#">Contact Concierge</a></li>
|
|
<li><a href="#">Premium Tracking</a></li>
|
|
<li><a href="#">Elite Consultation</a></li>
|
|
<li><a href="#">Documentation</a></li>
|
|
<li><a href="#">VIP Support</a></li>
|
|
<li><a href="#">Client Portal</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-luxury-bottom">
|
|
<div>
|
|
<p>© 2025 Victory Elite Logistics. All rights reserved.</p>
|
|
</div>
|
|
<div class="footer-luxury-bottom-links">
|
|
<a href="#">Privacy Policy</a>
|
|
<a href="#">Terms of Excellence</a>
|
|
<a href="#">Cookie Preferences</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
// Elegant header scroll effect
|
|
window.addEventListener('scroll', () => {
|
|
const header = document.querySelector('.header');
|
|
if (window.scrollY > 100) {
|
|
header.classList.add('scrolled');
|
|
} else {
|
|
header.classList.remove('scrolled');
|
|
}
|
|
});
|
|
|
|
// Luxury scroll animations
|
|
const luxuryObserverOptions = {
|
|
threshold: 0.1,
|
|
rootMargin: '0px 0px -80px 0px'
|
|
};
|
|
|
|
const luxuryObserver = new IntersectionObserver((entries) => {
|
|
entries.forEach(entry => {
|
|
if (entry.isIntersecting) {
|
|
entry.target.classList.add('visible');
|
|
}
|
|
});
|
|
}, luxuryObserverOptions);
|
|
|
|
document.querySelectorAll('.fade-in-luxury').forEach(el => {
|
|
luxuryObserver.observe(el);
|
|
});
|
|
|
|
// Smooth scrolling with luxury easing
|
|
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'
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
// Elegant counter animation for stats
|
|
function luxuryCounter(element, target, suffix = '') {
|
|
let count = 0;
|
|
const increment = target / 150;
|
|
const timer = setInterval(() => {
|
|
count += increment;
|
|
if (count >= target) {
|
|
count = target;
|
|
clearInterval(timer);
|
|
}
|
|
if (suffix === '%') {
|
|
element.textContent = count.toFixed(1) + suffix;
|
|
} else if (target >= 100) {
|
|
element.textContent = Math.floor(count) + suffix;
|
|
} else {
|
|
element.textContent = Math.floor(count) + suffix;
|
|
}
|
|
}, 30);
|
|
}
|
|
|
|
// Trigger luxury counter animation
|
|
const luxuryStatsObserver = new IntersectionObserver((entries) => {
|
|
entries.forEach(entry => {
|
|
if (entry.isIntersecting) {
|
|
const statNumbers = entry.target.querySelectorAll('.stat-number-luxury');
|
|
statNumbers.forEach(stat => {
|
|
const text = stat.textContent;
|
|
let target, suffix = '';
|
|
|
|
if (text.includes('%')) {
|
|
target = parseFloat(text);
|
|
suffix = '%';
|
|
} else if (text.includes('/')) {
|
|
target = parseInt(text);
|
|
suffix = '/7';
|
|
} else {
|
|
target = parseInt(text);
|
|
}
|
|
|
|
stat.textContent = '0';
|
|
luxuryCounter(stat, target, suffix);
|
|
});
|
|
luxuryStatsObserver.unobserve(entry.target);
|
|
}
|
|
});
|
|
});
|
|
|
|
const luxuryStatsSection = document.querySelector('.stats-luxury');
|
|
if (luxuryStatsSection) {
|
|
luxuryStatsObserver.observe(luxuryStatsSection);
|
|
}
|
|
|
|
// Luxury parallax effect
|
|
window.addEventListener('scroll', () => {
|
|
const scrolled = window.pageYOffset;
|
|
const hero = document.querySelector('.hero');
|
|
if (hero) {
|
|
const speed = scrolled * 0.3;
|
|
hero.style.transform = `translateY(${speed}px)`;
|
|
}
|
|
});
|
|
|
|
// Premium floating particles
|
|
function createLuxuryParticle() {
|
|
const particle = document.createElement('div');
|
|
particle.style.cssText = `
|
|
position: fixed;
|
|
width: 3px;
|
|
height: 3px;
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
border-radius: 50%;
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
animation: luxuryFloat 12s linear infinite;
|
|
opacity: 0.4;
|
|
box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
|
|
`;
|
|
|
|
particle.style.left = Math.random() * 100 + 'vw';
|
|
particle.style.animationDelay = Math.random() * 12 + 's';
|
|
|
|
document.body.appendChild(particle);
|
|
|
|
setTimeout(() => {
|
|
particle.remove();
|
|
}, 12000);
|
|
}
|
|
|
|
// Create luxury particles
|
|
setInterval(createLuxuryParticle, 4000);
|
|
|
|
// Add luxury particle animation
|
|
const luxuryParticleStyle = document.createElement('style');
|
|
luxuryParticleStyle.textContent = `
|
|
@keyframes luxuryFloat {
|
|
0% {
|
|
transform: translateY(100vh) rotate(0deg) scale(0);
|
|
opacity: 0;
|
|
}
|
|
5% {
|
|
opacity: 0.4;
|
|
transform: scale(1);
|
|
}
|
|
95% {
|
|
opacity: 0.4;
|
|
}
|
|
100% {
|
|
transform: translateY(-100px) rotate(360deg) scale(0);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
`;
|
|
document.head.appendChild(luxuryParticleStyle);
|
|
</script>
|
|
</body>
|
|
</html> |