mirror of
https://github.com/thecyberlearn/victory-web.git
synced 2026-08-18 08:33:03 +00:00
1568 lines
56 KiB
HTML
1568 lines
56 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 International Trading - 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;
|
|
z-index: 2;
|
|
}
|
|
|
|
@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);
|
|
}
|
|
|
|
/* Contact Form Section */
|
|
.contact-luxury {
|
|
padding: 140px 0;
|
|
background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
|
|
}
|
|
|
|
.contact-form {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
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.2);
|
|
border-radius: 8px;
|
|
padding: 60px;
|
|
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.form-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 12px;
|
|
color: #d4af37;
|
|
font-weight: 600;
|
|
font-family: 'Inter', sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group select,
|
|
.form-group textarea {
|
|
width: 100%;
|
|
padding: 15px 20px;
|
|
border: 2px solid rgba(212, 175, 55, 0.2);
|
|
border-radius: 4px;
|
|
font-size: 1rem;
|
|
background: rgba(13, 13, 13, 0.6);
|
|
color: #ffffff;
|
|
font-family: 'Inter', sans-serif;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group select:focus,
|
|
.form-group textarea:focus {
|
|
outline: none;
|
|
border-color: #d4af37;
|
|
box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
|
|
}
|
|
|
|
.submit-btn {
|
|
background: linear-gradient(135deg, #d4af37, #baa24b);
|
|
color: #0d0d0d;
|
|
padding: 18px 40px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.4s ease;
|
|
font-family: 'Inter', sans-serif;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
width: 100%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
|
|
}
|
|
|
|
.submit-btn::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;
|
|
}
|
|
|
|
.submit-btn:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.submit-btn:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
|
|
}
|
|
|
|
/* 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;
|
|
text-align: center;
|
|
}
|
|
|
|
.client-luxury-item:hover span {
|
|
color: #d4af37;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|
|
.form-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.contact-form {
|
|
padding: 40px 30px;
|
|
}
|
|
}
|
|
|
|
/* 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 Trading</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="#contact" class="nav-cta">Get Quote</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">Quick & Reliable Solutions</div>
|
|
<h1>International Trade Excellence</h1>
|
|
<p>Victory International Trading delivers comprehensive import/export solutions with 35+ years of experience across Dubai, Singapore, India, Myanmar & Indonesia. We ensure fast delivery and competitive prices for your global business needs.</p>
|
|
<div class="hero-buttons">
|
|
<a href="#contact" class="btn-luxury">Get Free Quote</a>
|
|
<a href="#services" class="btn-outline">Our Services</a>
|
|
</div>
|
|
</div>
|
|
<div class="hero-visual">
|
|
<div class="hero-image-container">
|
|
<img src="hero.png" alt="Victory International Trading - Global Logistics" />
|
|
<div class="luxury-badge">35+ Years Experience</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">35+</div>
|
|
<div class="stat-label-luxury">Years Experience</div>
|
|
</div>
|
|
<div class="stat-luxury">
|
|
<div class="stat-number-luxury">1000+</div>
|
|
<div class="stat-label-luxury">Products</div>
|
|
</div>
|
|
<div class="stat-luxury">
|
|
<div class="stat-number-luxury">5+</div>
|
|
<div class="stat-label-luxury">Countries</div>
|
|
</div>
|
|
<div class="stat-luxury">
|
|
<div class="stat-number-luxury">100%</div>
|
|
<div class="stat-label-luxury">Trusted</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>Our Expertise</h2>
|
|
<p>Comprehensive solutions in all aspects related to export and import with established partnerships and mutual trust</p>
|
|
</div>
|
|
<div class="services-luxury-grid">
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">🏢</div>
|
|
<h3>Branded FMCG</h3>
|
|
<p>Fast-moving consumer goods distribution and export/import services with comprehensive solutions for global markets and established brand partnerships.</p>
|
|
</div>
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">📦</div>
|
|
<h3>Commodities</h3>
|
|
<p>Reliable commodity trading with competitive prices, safe delivery within committed timeframes, and strong global network connections.</p>
|
|
</div>
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">🚗</div>
|
|
<h3>Automotive</h3>
|
|
<p>Cars and automotive parts import/export services with trusted solutions and comprehensive logistics support across multiple markets.</p>
|
|
</div>
|
|
<div class="service-luxury-card">
|
|
<div class="service-luxury-icon">⚙️</div>
|
|
<h3>Tyre Distribution</h3>
|
|
<p>Quality tire distribution across global markets with established partnerships and reliable supply chain management solutions.</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>Connected to Each Corner of Earth</h2>
|
|
<p>With Victory International Trading's strong worldwide logistic network, we ensure safe delivery of your consignment within the committed time frame.</p>
|
|
<p>Our established partnership, respect and mutual trust are core values that have built our strong global network over 35+ successful years.</p>
|
|
<div class="luxury-features">
|
|
<div class="luxury-feature-item">
|
|
<div class="luxury-feature-icon">🌍</div>
|
|
<div class="luxury-feature-content">
|
|
<h4>Global Presence</h4>
|
|
<p>Offices in Dubai, Singapore, India, Myanmar & Indonesia</p>
|
|
</div>
|
|
</div>
|
|
<div class="luxury-feature-item">
|
|
<div class="luxury-feature-icon">🎯</div>
|
|
<div class="luxury-feature-content">
|
|
<h4>Fast Delivery</h4>
|
|
<p>Committed timeframes with competitive prices globally</p>
|
|
</div>
|
|
</div>
|
|
<div class="luxury-feature-item">
|
|
<div class="luxury-feature-icon">🔒</div>
|
|
<div class="luxury-feature-content">
|
|
<h4>Safe Logistics</h4>
|
|
<p>Strong worldwide logistic network ensuring security</p>
|
|
</div>
|
|
</div>
|
|
<div class="luxury-feature-item">
|
|
<div class="luxury-feature-icon">👑</div>
|
|
<div class="luxury-feature-content">
|
|
<h4>Trusted Brand</h4>
|
|
<p>35+ years of established partnerships and mutual trust</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="network-luxury-visual">
|
|
<img src="map.png" alt="Victory Global Network Map" />
|
|
</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 leading global brands and forward-thinking enterprises worldwide</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\'S</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>FEDEX</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/contemporary.svg" alt="Contemporary" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>CONTEMPORARY</span>';" />
|
|
</div>
|
|
<div class="client-luxury-item">
|
|
<img src="./logos/pfizer.svg" alt="Pfizer" onerror="this.style.display='none'; this.parentNode.innerHTML='<span>PFIZER</span>';" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Contact Section -->
|
|
<section class="contact-luxury fade-in-luxury" id="contact">
|
|
<div class="container">
|
|
<div class="luxury-section-header">
|
|
<h2>Contact Us to Grow Your Business</h2>
|
|
<p>Reach out to us for free quotation and comprehensive import/export solutions</p>
|
|
</div>
|
|
<form class="contact-form" onsubmit="handleSubmit(event)">
|
|
<div class="form-row">
|
|
<div class="form-group">
|
|
<label for="name">Full Name</label>
|
|
<input type="text" id="name" name="name" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="email">Email Address</label>
|
|
<input type="email" id="email" name="email" required>
|
|
</div>
|
|
</div>
|
|
<div class="form-row">
|
|
<div class="form-group">
|
|
<label for="company">Company Name</label>
|
|
<input type="text" id="company" name="company">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="service">Service Interest</label>
|
|
<select id="service" name="service">
|
|
<option value="">Select a service</option>
|
|
<option value="fmcg">Branded FMCG</option>
|
|
<option value="commodities">Commodities</option>
|
|
<option value="automotive">Automotive</option>
|
|
<option value="tires">Tyre Distribution</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="message">Message</label>
|
|
<textarea id="message" name="message" rows="5" placeholder="Tell us about your import/export requirements..."></textarea>
|
|
</div>
|
|
<button type="submit" class="submit-btn">Get Free Quotation</button>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA Section -->
|
|
<section class="cta-luxury fade-in-luxury">
|
|
<div class="container">
|
|
<div class="cta-luxury-content">
|
|
<h2>Elevate Your Global Trade</h2>
|
|
<p>Join thousands of satisfied clients who trust Victory International Trading for their import/export needs. Experience comprehensive solutions with competitive prices and fast delivery.</p>
|
|
<div class="cta-luxury-buttons">
|
|
<a href="#contact" class="btn-cta-dark">Request Quote</a>
|
|
<a href="#services" 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 Trading</h3>
|
|
<p>Victory International Trading is your trusted partner in global commerce with 35+ years of experience delivering comprehensive import/export solutions across FMCG and commodity sectors.</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="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>Services</h4>
|
|
<ul>
|
|
<li><a href="#">Branded FMCG</a></li>
|
|
<li><a href="#">Commodities</a></li>
|
|
<li><a href="#">Automotive</a></li>
|
|
<li><a href="#">Tyre Distribution</a></li>
|
|
<li><a href="#">Import Solutions</a></li>
|
|
<li><a href="#">Export Solutions</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="footer-luxury-column">
|
|
<h4>Company</h4>
|
|
<ul>
|
|
<li><a href="#">About Victory</a></li>
|
|
<li><a href="#">Our Network</a></li>
|
|
<li><a href="#">Global Offices</a></li>
|
|
<li><a href="#">Partnerships</a></li>
|
|
<li><a href="#">Careers</a></li>
|
|
<li><a href="#">News & Media</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="footer-luxury-column">
|
|
<h4>Support</h4>
|
|
<ul>
|
|
<li><a href="#">Contact Us</a></li>
|
|
<li><a href="#">Get Quote</a></li>
|
|
<li><a href="#">Track Shipment</a></li>
|
|
<li><a href="#">Documentation</a></li>
|
|
<li><a href="#">FAQ</a></li>
|
|
<li><a href="#">Client Portal</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-luxury-bottom">
|
|
<div>
|
|
<p>© 2025 Victory International Trading. All rights reserved.</p>
|
|
</div>
|
|
<div class="footer-luxury-bottom-links">
|
|
<a href="#">Privacy Policy</a>
|
|
<a href="#">Terms of Service</a>
|
|
<a href="#">Cookie Policy</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(0) + suffix;
|
|
} else if (suffix === '+') {
|
|
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 = '+';
|
|
} 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);
|
|
}
|
|
|
|
// Form submission handler
|
|
function handleSubmit(event) {
|
|
event.preventDefault();
|
|
|
|
// Get form data
|
|
const formData = new FormData(event.target);
|
|
const data = Object.fromEntries(formData);
|
|
|
|
// Simulate form submission
|
|
const submitBtn = event.target.querySelector('.submit-btn');
|
|
const originalText = submitBtn.textContent;
|
|
|
|
submitBtn.textContent = 'Sending...';
|
|
submitBtn.disabled = true;
|
|
|
|
setTimeout(() => {
|
|
alert('Thank you for your inquiry! Victory International Trading will contact you within 24 hours with a free quotation.');
|
|
event.target.reset();
|
|
submitBtn.textContent = originalText;
|
|
submitBtn.disabled = false;
|
|
}, 2000);
|
|
}
|
|
|
|
// 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> |