Files
BALSAM-CARGO-LOGISTICS/index.html
T

1053 lines
40 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Balsam Cargo Logistics - Premium Courier & Freight Forwarding</title>
<meta name="description" content="Premium courier and freight forwarding services for domestic and international shipments. Serving India with reliable logistics solutions.">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #2c3e50;
background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
overflow-x: hidden;
}
/* Animated Background */
body::before {
content: '';
position: fixed;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(42, 181, 160, 0.05) 1px, transparent 1px);
background-size: 50px 50px;
pointer-events: none;
z-index: 0;
}
/* Navigation */
nav {
background: rgba(13, 42, 78, 0.95);
backdrop-filter: blur(10px);
padding: 1rem 2rem;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 8px 32px rgba(13, 42, 78, 0.15);
border-bottom: 1px solid rgba(42, 181, 160, 0.2);
}
nav .container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
height: 50px;
display: flex;
align-items: center;
}
.logo svg {
height: 100%;
width: auto;
filter: drop-shadow(0 2px 8px rgba(42, 181, 160, 0.3));
}
nav ul {
display: flex;
list-style: none;
gap: 2.5rem;
}
nav a {
color: white;
text-decoration: none;
font-size: 0.95rem;
font-weight: 500;
position: relative;
transition: color 0.3s;
}
nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #2ab5a0, #ff6b35);
transition: width 0.3s;
}
nav a:hover {
color: #2ab5a0;
}
nav a:hover::after {
width: 100%;
}
.nav-cta {
background: linear-gradient(135deg, #2ab5a0, #1f9380);
color: white;
padding: 0.7rem 1.5rem;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(42, 181, 160, 0.3);
}
.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(42, 181, 160, 0.5);
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #0d2a4e 0%, #1a3d61 50%, #2ab5a0 100%);
color: white;
padding: 7rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
background-size: 80px 80px;
animation: float 20s linear infinite;
}
@keyframes float {
0% { transform: translate(0, 0); }
100% { transform: translate(50px, 50px); }
}
.hero .container {
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.hero-tag {
display: inline-block;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
color: white;
padding: 0.5rem 1.2rem;
border-radius: 20px;
margin-bottom: 1.5rem;
font-size: 0.85rem;
font-weight: 600;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
font-weight: 800;
line-height: 1.1;
background: linear-gradient(135deg, white 0%, #e0f7fa 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2.5rem;
color: #e8f4f8;
font-weight: 300;
}
.hero-cta {
display: inline-block;
background: linear-gradient(135deg, #ff6b35, #ff8a50);
color: white;
padding: 1.1rem 3rem;
border-radius: 30px;
text-decoration: none;
font-weight: 700;
font-size: 1.05rem;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
border: 2px solid transparent;
}
.hero-cta:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}
/* Container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
/* Sections */
section {
padding: 5rem 0;
position: relative;
z-index: 2;
}
section.light {
background: linear-gradient(135deg, #f5f9fc 0%, #f0f4f8 100%);
}
h2 {
font-size: 2.8rem;
color: #0d2a4e;
margin-bottom: 1rem;
font-weight: 800;
position: relative;
display: inline-block;
}
h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(90deg, #2ab5a0, #ff6b35);
border-radius: 2px;
}
.section-subtitle {
font-size: 1.1rem;
color: #5a7a8a;
margin: 2rem 0 3rem 0;
max-width: 600px;
font-weight: 500;
line-height: 1.8;
}
/* Services Grid */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}
.service-card {
background: white;
border-radius: 15px;
padding: 2.5rem;
text-align: center;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: 1px solid rgba(42, 181, 160, 0.1);
box-shadow: 0 5px 20px rgba(13, 42, 78, 0.08);
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #2ab5a0, #ff6b35);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(13, 42, 78, 0.15);
border-color: #2ab5a0;
}
.service-card:hover::before {
transform: scaleX(1);
}
.icon {
font-size: 3.5rem;
margin-bottom: 1rem;
display: inline-block;
animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
.service-card h3 {
color: #0d2a4e;
margin: 1.5rem 0 1rem 0;
font-size: 1.4rem;
font-weight: 700;
}
.service-card p {
color: #5a7a8a;
font-size: 0.95rem;
line-height: 1.7;
}
/* Service Category */
.service-category {
margin-bottom: 4.5rem;
}
.category-title {
font-size: 1.7rem;
color: #0d2a4e;
margin-bottom: 0.8rem;
font-weight: 700;
position: relative;
display: inline-block;
padding-bottom: 0.8rem;
}
.category-title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, #2ab5a0, #ff6b35);
border-radius: 2px;
}
.category-description {
color: #5a7a8a;
margin: 1.5rem 0 2.5rem 0;
max-width: 700px;
font-weight: 500;
line-height: 1.8;
}
/* Quote Section */
.quote-section {
background: linear-gradient(135deg, white 0%, #f8fafc 100%);
border-radius: 20px;
padding: 3rem;
margin-top: 3rem;
border: 2px solid #2ab5a0;
box-shadow: 0 10px 40px rgba(42, 181, 160, 0.15);
position: relative;
overflow: hidden;
}
.quote-section::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(42, 181, 160, 0.03) 1px, transparent 1px);
background-size: 50px 50px;
pointer-events: none;
}
.quote-section h3 {
color: #0d2a4e;
margin-bottom: 2rem;
font-size: 1.8rem;
font-weight: 700;
position: relative;
z-index: 1;
}
.form-group {
margin-bottom: 1.5rem;
position: relative;
z-index: 1;
}
label {
display: block;
margin-bottom: 0.6rem;
color: #0d2a4e;
font-weight: 600;
font-size: 0.95rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
width: 100%;
padding: 0.9rem 1.2rem;
border: 2px solid #e0e6ed;
border-radius: 10px;
font-family: inherit;
font-size: 0.95rem;
transition: all 0.3s;
background: white;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
outline: none;
border-color: #2ab5a0;
box-shadow: 0 0 0 4px rgba(42, 181, 160, 0.15);
transform: translateY(-2px);
}
textarea {
resize: vertical;
min-height: 120px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.submit-btn {
background: linear-gradient(135deg, #2ab5a0, #1f9380);
color: white;
padding: 1rem 2.5rem;
border: none;
border-radius: 10px;
font-weight: 700;
cursor: pointer;
font-size: 1rem;
transition: all 0.3s;
box-shadow: 0 6px 20px rgba(42, 181, 160, 0.3);
margin-top: 1rem;
}
.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(42, 181, 160, 0.4);
}
.submit-btn:active {
transform: translateY(0);
}
/* Stats Section */
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin: 3rem 0;
padding: 2rem;
background: linear-gradient(135deg, rgba(42, 181, 160, 0.1), rgba(255, 107, 53, 0.1));
border-radius: 15px;
border: 1px solid rgba(42, 181, 160, 0.2);
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 2.5rem;
font-weight: 800;
background: linear-gradient(135deg, #2ab5a0, #ff6b35);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-label {
color: #5a7a8a;
font-size: 0.95rem;
margin-top: 0.5rem;
font-weight: 600;
}
/* Footer */
footer {
background: linear-gradient(135deg, #0d2a4e 0%, #1a3d61 100%);
color: white;
padding: 4rem 2rem;
text-align: center;
border-top: 1px solid rgba(42, 181, 160, 0.2);
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
}
.footer-section {
margin-bottom: 2rem;
}
.footer-section h4 {
color: #2ab5a0;
margin-bottom: 1rem;
font-size: 1.2rem;
}
.social-links {
display: flex;
justify-content: center;
gap: 1rem;
margin: 1.5rem 0;
}
.social-links a {
color: white;
text-decoration: none;
width: 45px;
height: 45px;
border-radius: 50%;
background: rgba(42, 181, 160, 0.2);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
border: 2px solid #2ab5a0;
}
.social-links a:hover {
background: #2ab5a0;
transform: translateY(-4px);
}
.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin: 2rem 0;
}
.contact-item {
text-align: left;
}
.contact-item strong {
color: #2ab5a0;
font-size: 1.1rem;
}
.divider {
border-top: 1px solid rgba(42, 181, 160, 0.2);
margin: 2rem 0;
}
/* WhatsApp Float Button */
.whatsapp-float {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 65px;
height: 65px;
background: linear-gradient(135deg, #25d366, #20a653);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
cursor: pointer;
z-index: 999;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
text-decoration: none;
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.whatsapp-float:hover {
transform: scale(1.15);
box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
animation: none;
}
.whatsapp-float svg {
width: 35px;
height: 35px;
}
/* Responsive */
@media (max-width: 768px) {
nav ul {
gap: 1rem;
}
nav a {
font-size: 0.85rem;
}
.hero {
padding: 4rem 1rem;
}
.hero h1 {
font-size: 2.2rem;
}
.hero p {
font-size: 1.05rem;
}
h2 {
font-size: 2rem;
}
.services-grid {
grid-template-columns: 1fr;
}
.form-row {
grid-template-columns: 1fr;
}
.quote-section {
padding: 2rem;
}
section {
padding: 3rem 0;
}
}
@media (max-width: 480px) {
nav {
padding: 0.75rem 1rem;
}
nav ul {
gap: 0.5rem;
}
nav a {
display: none;
}
nav a.nav-cta {
display: inline-block;
}
.hero {
padding: 3rem 1rem;
}
.hero h1 {
font-size: 1.6rem;
}
h2 {
font-size: 1.5rem;
}
.icon {
font-size: 2.5rem;
}
.whatsapp-float {
width: 55px;
height: 55px;
bottom: 1.5rem;
right: 1.5rem;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<div class="container">
<div class="logo">
<svg width="160" height="50" viewBox="0 0 300 100" xmlns="http://www.w3.org/2000/svg">
<!-- Logo SVG -->
<defs>
<linearGradient id="waveGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#0d2a4e;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2ab5a0;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Wave -->
<path d="M 20 50 Q 30 30, 40 50 T 60 50 L 55 65 Q 45 80, 35 65 Z" fill="url(#waveGradient)"/>
<!-- Airplane -->
<g transform="translate(45, 25)">
<ellipse cx="0" cy="0" rx="8" ry="5" fill="#0d2a4e"/>
<path d="M -8 0 L 15 0" stroke="#0d2a4e" stroke-width="2" fill="none"/>
<path d="M 0 -3 L 0 3" stroke="#0d2a4e" stroke-width="1.5" fill="none"/>
</g>
<!-- Container Ship -->
<g transform="translate(30, 60)">
<rect x="0" y="0" width="30" height="12" fill="#2ab5a0"/>
<rect x="8" y="-5" width="3" height="5" fill="#0d2a4e"/>
<rect x="16" y="-4" width="2" height="4" fill="#0d2a4e"/>
<circle cx="6" cy="8" r="1.5" fill="#0d2a4e"/>
<circle cx="18" cy="8" r="1.5" fill="#0d2a4e"/>
<circle cx="12" cy="8" r="1.5" fill="#0d2a4e"/>
</g>
<!-- Text -->
<text x="75" y="45" font-size="22" font-weight="bold" fill="#0d2a4e" font-family="Arial, sans-serif">BALSAM</text>
<text x="75" y="65" font-size="12" fill="#333" font-family="Arial, sans-serif" letter-spacing="2">CARGO LOGISTICS</text>
</svg>
</div>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#outsourcing">Outsourcing</a></li>
<li><a href="#quote">Get Quote</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#quote" class="nav-cta">Request Quote</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<span class="hero-tag">Premium Logistics Solutions</span>
<h1>Global Logistics,<br>Local Expertise</h1>
<p>Fast, reliable, and cost-effective courier and freight forwarding for businesses across India and worldwide</p>
<a href="#quote" class="hero-cta">Get Your Free Quote →</a>
</div>
</section>
<!-- Services Within India -->
<section id="services">
<div class="container">
<h2>Services Within India</h2>
<p class="section-subtitle">Comprehensive domestic and international logistics solutions tailored for your business needs.</p>
<!-- Domestic Section -->
<div class="service-category">
<div class="category-title">🚚 Domestic Courier</div>
<p class="category-description">Fast, reliable courier services across all of India. We handle small parcels, documents, and packages with precision tracking and timely delivery to every corner of the country.</p>
<div class="services-grid">
<div class="service-card">
<div class="icon">📦</div>
<h3>Same City Delivery</h3>
<p>Next-day delivery within your city with real-time tracking and proof of delivery confirmation.</p>
</div>
<div class="service-card">
<div class="icon">🇮🇳</div>
<h3>Pan-India Courier</h3>
<p>Reach customers nationwide with our extensive network of distribution centers and local partners.</p>
</div>
<div class="service-card">
<div class="icon">🔒</div>
<h3>Signature Delivery</h3>
<p>Secure delivery with recipient confirmation and insurance options for high-value shipments.</p>
</div>
</div>
</div>
<!-- International Air Freight -->
<div class="service-category">
<div class="category-title">✈️ International Courier - Air</div>
<p class="category-description">Fast international shipping via air freight. Perfect for time-sensitive shipments to over 220 countries worldwide. Get documents and small parcels delivered quickly.</p>
<div class="services-grid">
<div class="service-card">
<div class="icon">🛫</div>
<h3>Express Air Courier</h3>
<p>Fastest international shipping for documents and small parcels. Delivery within 3-5 business days globally.</p>
</div>
<div class="service-card">
<div class="icon">🌐</div>
<h3>Global Coverage</h3>
<p>Access to all major global courier networks with customs clearance support included in every shipment.</p>
</div>
<div class="service-card">
<div class="icon">💼</div>
<h3>B2B Solutions</h3>
<p>Volume discounts and dedicated account management for regular international shipments and partnerships.</p>
</div>
</div>
</div>
<!-- International Sea Freight -->
<div class="service-category">
<div class="category-title">🚢 Ocean Freight - Sea Shipping</div>
<p class="category-description">Cost-effective ocean freight for bulk shipments and heavy cargo. Ideal for non-urgent, large-volume international logistics at the best rates.</p>
<div class="services-grid">
<div class="service-card">
<div class="icon">📦</div>
<h3>Full Container Load (FCL)</h3>
<p>Dedicated container shipping for large volumes at competitive rates with flexible scheduling options.</p>
</div>
<div class="service-card">
<div class="icon">🤝</div>
<h3>Less Than Container (LCL)</h3>
<p>Share container space for smaller shipments and enjoy reduced costs without compromising on reliability.</p>
</div>
<div class="service-card">
<div class="icon">🛡️</div>
<h3>Cargo Insurance</h3>
<p>Comprehensive insurance coverage for all ocean freight shipments with hassle-free claim processing.</p>
</div>
</div>
</div>
<!-- Quote Section for Services -->
<div class="quote-section" id="quote">
<h3>🚀 Get Your Instant Shipping Quote</h3>
<p style="color: #5a7a8a; margin-bottom: 2rem;">Fill in your details and we'll provide a competitive quote within 2 hours</p>
<form action="https://formspree.io/f/mkoadkpk" method="POST">
<div class="form-row">
<div class="form-group">
<label for="name">Full Name *</label>
<input type="text" id="name" name="name" placeholder="John Doe" required>
</div>
<div class="form-group">
<label for="email">Email Address *</label>
<input type="email" id="email" name="email" placeholder="your@email.com" required>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="phone">Phone Number *</label>
<input type="tel" id="phone" name="phone" placeholder="+91 9876543210" required>
</div>
<div class="form-group">
<label for="company">Company Name</label>
<input type="text" id="company" name="company" placeholder="Your Company">
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="service">Service Type *</label>
<select id="service" name="service" required>
<option value="">Select a service</option>
<option value="domestic-courier">Domestic Courier</option>
<option value="international-air">International Air Courier</option>
<option value="ocean-freight">Ocean Freight</option>
<option value="freight-forwarding">Freight Forwarding Outsourcing</option>
</select>
</div>
<div class="form-group">
<label for="weight">Approximate Weight/Volume</label>
<input type="text" id="weight" name="weight" placeholder="e.g., 5 kg or 1 CBM">
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="origin">Origin Location *</label>
<input type="text" id="origin" name="origin" placeholder="Dehradun, India" required>
</div>
<div class="form-group">
<label for="destination">Destination Location *</label>
<input type="text" id="destination" name="destination" placeholder="City, Country" required>
</div>
</div>
<div class="form-group">
<label for="message">Additional Details</label>
<textarea id="message" name="message" placeholder="Tell us about your shipping needs, special requirements, frequency, etc."></textarea>
</div>
<button type="submit" class="submit-btn">Send Quote Request ✓</button>
</form>
</div>
</div>
</section>
<!-- Freight Forwarding Outsourcing Section -->
<section id="outsourcing" class="light">
<div class="container">
<h2>Freight Forwarding Outsourcing Services</h2>
<p class="section-subtitle">Scale your logistics operations without scaling your team. Delegate your entire freight forwarding operation to our experienced team.</p>
<!-- Stats Section -->
<div class="stats">
<div class="stat-item">
<div class="stat-number">220+</div>
<div class="stat-label">Countries Covered</div>
</div>
<div class="stat-item">
<div class="stat-number">99.2%</div>
<div class="stat-label">On-Time Delivery Rate</div>
</div>
<div class="stat-item">
<div class="stat-number">24/7</div>
<div class="stat-label">Customer Support</div>
</div>
<div class="stat-item">
<div class="stat-number">₹ Crores</div>
<div class="stat-label">Cargo Handled Annually</div>
</div>
</div>
<div style="background: linear-gradient(135deg, rgba(42, 181, 160, 0.1), rgba(255, 107, 53, 0.1)); padding: 2.5rem; border-radius: 20px; margin: 3rem 0; border: 2px solid rgba(42, 181, 160, 0.2);">
<h3 style="color: #0d2a4e; margin-bottom: 1.5rem; font-size: 1.6rem;">Why Partner With Balsam for Outsourcing?</h3>
<p style="color: #5a7a8a; line-height: 1.8; margin-bottom: 1.5rem; font-weight: 500;">
Global freight forwarders, import-export companies, and logistics providers trust <strong style="color: #0d2a4e;">Balsam Cargo Logistics</strong> to handle their entire freight forwarding operations. We serve as your dedicated outsourcing partner, managing everything from quote generation to final delivery — allowing you to scale operations without expanding headcount.
</p>
<p style="color: #5a7a8a; line-height: 1.8; font-weight: 500;">
With our deep expertise in customs documentation, carrier relationships, and cargo handling, we provide seamless, end-to-end freight forwarding solutions that keep your business running smoothly across domestic and international markets.
</p>
</div>
<div class="services-grid">
<div class="service-card">
<div class="icon">📋</div>
<h3>Customs & Documentation</h3>
<p>Complete handling of import-export documentation, customs forms, and regulatory compliance for all shipments worldwide.</p>
</div>
<div class="service-card">
<div class="icon">🏭</div>
<h3>Carrier Management</h3>
<p>Negotiated rates with major carriers and logistics providers to optimize costs for your shipments.</p>
</div>
<div class="service-card">
<div class="icon">📦</div>
<h3>Warehouse Services</h3>
<p>Secure storage, consolidation, and handling of goods with organized inventory management and handling.</p>
</div>
<div class="service-card">
<div class="icon">🔍</div>
<h3>Real-Time Tracking</h3>
<p>Complete visibility and proactive updates for all shipments with transparency at every step of the journey.</p>
</div>
<div class="service-card">
<div class="icon">💡</div>
<h3>Supply Chain Optimization</h3>
<p>Expert recommendations to improve efficiency, reduce costs, and streamline your entire logistics network.</p>
</div>
<div class="service-card">
<div class="icon">🤝</div>
<h3>Dedicated Account Support</h3>
<p>Personalized service with a dedicated account manager available for your outsourcing partnership needs.</p>
</div>
</div>
<div style="background: linear-gradient(135deg, #2ab5a0 0%, #1f9380 100%); padding: 3rem; border-radius: 20px; margin-top: 3rem; text-align: center; box-shadow: 0 10px 40px rgba(42, 181, 160, 0.3);">
<h3 style="color: white; margin-bottom: 1rem; font-size: 1.6rem;">Ready to Transform Your Operations?</h3>
<p style="color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1.05rem;">
Let us handle the logistics complexity while you focus on growth and profitability.
</p>
<a href="mailto:info@balsamcargologistics.com" style="background-color: white; color: #0d2a4e; padding: 0.9rem 2.5rem; border-radius: 25px; text-decoration: none; font-weight: 700; display: inline-block; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.2);">
📧 Get Outsourcing Proposal
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<div class="container">
<h2>Get In Touch</h2>
<p class="section-subtitle">We're here to help. Reach out to our team anytime for questions or partnership opportunities.</p>
<div class="contact-info">
<div class="contact-item">
<strong>📍 Headquarters</strong>
<p>Premnagar, Dehradun<br>Uttarakhand, India 248001</p>
</div>
<div class="contact-item">
<strong>💬 WhatsApp</strong>
<p><a href="https://wa.me/919528274910" style="color: #2ab5a0; text-decoration: none; font-weight: 600;">Chat with us</a><br>Quick responses</p>
</div>
<div class="contact-item">
<strong>📧 Email</strong>
<p><a href="mailto:info@balsamcargologistics.com" style="color: #2ab5a0; text-decoration: none; font-weight: 600;">info@balsamcargologistics.com</a></p>
</div>
</div>
<div style="text-align: center; margin-top: 3rem; padding: 2rem; background: linear-gradient(135deg, rgba(42, 181, 160, 0.08), rgba(255, 107, 53, 0.08)); border-radius: 15px;">
<h3 style="color: #0d2a4e; margin-bottom: 1.5rem; font-size: 1.5rem;">Follow Our Latest Updates</h3>
<div class="social-links">
<a href="https://www.linkedin.com/in/balsam-cargo-logistics-6272173a9/?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BfnzVwQSMSxSw%2FkpeexZGDg%3D%3D" target="_blank" title="LinkedIn">
<svg fill="currentColor" viewBox="0 0 24 24"><path d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/></svg>
</a>
<a href="https://www.instagram.com/balsamcargologistics?utm_source=qr&igsh=bXB2a21hZjVuaGdi" target="_blank" title="Instagram">
<svg fill="currentColor" viewBox="0 0 24 24"><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-.073zM5.838 12a6.162 6.162 0 1112.324 0 6.162 6.162 0 01-12.324 0zM12 16a4 4 0 110-8 4 4 0 010 8zm4.965-10.322a1.44 1.44 0 110-2.88 1.44 1.44 0 010 2.88z"/></svg>
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-section">
<h4>Balsam Cargo Logistics</h4>
<p style="font-size: 0.95rem; line-height: 1.6;">Your trusted partner in domestic and international freight forwarding and courier services. Delivering excellence across 220+ countries.</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<p style="line-height: 1.8;">
<a href="#services" style="color: white; text-decoration: none; transition: color 0.3s;">Services</a>
<a href="#outsourcing" style="color: white; text-decoration: none; transition: color 0.3s;">Outsourcing</a>
<a href="#quote" style="color: white; text-decoration: none; transition: color 0.3s;">Get Quote</a>
<a href="#contact" style="color: white; text-decoration: none; transition: color 0.3s;">Contact</a>
</p>
</div>
<div class="divider"></div>
<div style="text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.7);">
<p>&copy; 2024 Balsam Cargo Logistics. All rights reserved.</p>
<p>📍 Premnagar, Dehradun | Uttarakhand, India</p>
<p style="margin-top: 1rem; border-top: 1px solid rgba(42, 181, 160, 0.2); padding-top: 1rem;">Delivering Excellence • Building Trust • Scaling Dreams</p>
</div>
</div>
</footer>
<!-- WhatsApp Float Button -->
<a href="https://wa.me/919528274910" class="whatsapp-float" title="Chat on WhatsApp">
<svg viewBox="0 0 24 24" fill="white">
<path d="M12 2C6.48 2 2 6.48 2 12c0 1.54.36 3 .97 4.29L2 22l6.29-1.71C9.95 21.59 10.97 22 12 22c5.52 0 10-4.48 10-10S17.52 2 12 2zm0 18c-1.41 0-2.73-.36-3.88-.99l-.28-.15-2.89.78.81-2.81-.18-.29C4.25 14.48 4 13.28 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8-3.59 8-8 8z"/>
<path fill="white" d="M16.57 15.47c-.27-.13-1.58-.77-1.82-.86-.25-.09-.43-.13-.61.13-.18.27-.7.86-.86 1.04-.16.18-.32.2-.59.07-.27-.13-1.13-.4-2.15-1.31-.8-.7-1.33-1.56-1.49-1.83-.16-.27-.02-.41.12-.54.13-.12.27-.32.41-.48.14-.16.18-.28.27-.45.09-.18.05-.33-.04-.47-.09-.13-.61-1.44-.84-1.98-.22-.52-.45-.45-.61-.46-.16-.01-.34-.01-.52-.01-.18 0-.48.07-.73.35-.25.28-.96.93-.96 2.27 0 1.34.98 2.63 1.12 2.81.14.18 1.98 3.02 4.79 4.23.67.28 1.19.45 1.6.58.67.21 1.28.18 1.76.11.54-.08 1.66-.68 1.89-1.33.23-.65.23-1.21.16-1.33-.07-.12-.25-.19-.52-.32z"/>
</svg>
</a>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
}
});
});
// Update WhatsApp number - Replace with your actual WhatsApp number
// Format: https://wa.me/91XXXXXXXXXX (use country code, no + sign)
document.querySelector('.whatsapp-float').href = 'https://wa.me/919528274910'; // Replace with your number
</script>
</body>
</html>