/* ==========================================
   GLOBAL OVERFLOW CONTROL
   ========================================== */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Fix marquee horizontal overflow */
.maritime-marquee-section {
    overflow: hidden !important;
}

.marquee-container {
    width: 100vw !important;
    max-width: 100vw !important;
}

/* ==========================================
   LOADER STYLES
   ========================================== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
}

#loader.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.ship-container {
    position: relative;
    width: 180px;
    height: auto;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10000;
}

/* Nice transition effects instead of expansion */
.ship-container.fade-out-black {
    transform: scale(1.2) translateY(-20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ship-icon {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
}

/* Fill animation using clip-path for PNG images */
.ship-white-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: clip-path 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ship-container.filling .ship-white-container {
    clip-path: inset(0 0% 0 0) !important;
}

/* Custom Font Declarations */
@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   PARTNERS SECTION STYLES
   ========================================== */
.partners-section {
    padding: 80px 0;
   
    position: relative;
    overflow: hidden;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.partners-title {
    color: var(--partners-title-color, #ffffff);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    font-family: 'SF Pro Display', sans-serif;
    transition: color 0.3s ease;
}

/* Partners Section - Fixed Background */
.partners-section {
    background: #181818;
    border-radius: 24px;
    margin: 40px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 60px 0;
}

.partners-title {
    color: #ffffff;
}

.partner-card {
    background: #2a2a2a;
    border: 1px solid #414141;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    border: 1px solid #414141;
}

.partner-card:hover {
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-logo {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .partner-card {
        padding: 20px 15px;
    }
    
    .partner-logo {
        max-width: 60px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .partner-card {
        padding: 15px 10px;
    }
    
    .partner-logo {
        max-width: 50px;
        max-height: 50px;
    }
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYLIGHTITALIC.OTF') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYHEAVYITALIC.OTF') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYBLACKITALIC.OTF') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYTHINITALIC.OTF') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYULTRALIGHTITALIC.OTF') format('opentype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* CSS Variables for Light/Dark Mode */
:root {
    /* Light Mode Colors */
    --bg-primary: #f8f8f8;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    
    /* Brand Colors (consistent across themes) */
    --primary-blue: #2c5aa0;
    --primary-color: #246d96;
    --success-green: #28a745;
    --warning-yellow: #ffc107;
    --danger-red: #dc3545;
    
    /* Navbar Variables */
    --navbar-blur-bg: transparent;
    --navbar-border: rgba(255, 255, 255, 0.2);
    --navbar-text: #ffffff;
    --navbar-shadow: rgba(0, 0, 0, 0.1);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #181818;
    --bg-secondary: #202020;
    --bg-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-light: #999999;
    --border-color: #404040;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.4);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    
    /* Navbar Dark Mode - Keep same transparent background */
    --navbar-blur-bg: transparent;
    --navbar-border: rgba(255, 255, 255, 0.2);
    --navbar-text: #ffffff;
    --navbar-shadow: rgba(0, 0, 0, 0.1);
}

/* Dark Mode Fleet Services Section */
[data-theme="dark"] .fleet-services-section {
    background: transparent; /* No background in dark mode either */
}

[data-theme="dark"] .fleet-header .fleet-subtitle {
    color: #cccccc !important; /* Light gray text for dark mode */
}

[data-theme="dark"] .fleet-header .fleet-main-title {
    color: #ffffff !important; /* White text for dark mode */
}

[data-theme="dark"] .fleet-header .fleet-description {
    color: #cccccc !important; /* Light gray text for dark mode */
}

[data-theme="dark"] .fleet-service-item {
    background: transparent; /* No background in dark mode either */
    border-color: #404040;
}

[data-theme="dark"] .fleet-service-item:hover {
    background: transparent; /* No background on hover */
    border-color: #f3f3f3; /* Keep original border color */
    box-shadow: none; /* No shadow on hover */
}

[data-theme="dark"] .fleet-service-item:hover .fleet-service-title,
[data-theme="dark"] .fleet-service-item:hover .fleet-service-description {
    color: #ffffff !important; /* Force white text on hover in dark mode */
}

[data-theme="dark"] .fleet-service-item:hover .fleet-service-image {
    border-color: var(--primary-color); /* Primary color border on hover */
}

[data-theme="dark"] .fleet-service-item:hover .fleet-service-arrow {
    background: var(--primary-color); /* Primary color background on hover */
    border-color: var(--primary-color); /* Primary color border on hover */
    color: #ffffff; /* White icon on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1400px;
    background: var(--navbar-blur-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--navbar-border);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-radius: 3rem;
    box-shadow: 0 8px 32px var(--navbar-shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navbar-text);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.8rem;
}

.logo-image {
    height: 1.5rem;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navbar-text);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.5rem;
    border-radius: 20px;
    position: relative;
    transition: color 0.3s, background 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: none;
    color: var(--primary-color);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle-header {
    background: transparent;
    border: none;
    color: var(--navbar-text);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle-header:hover {
    transform: scale(1.1);
}

.btn-invest {
    background: #fff;
    color: #181818;
    text-decoration: none;
    padding: 0.3rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-invest:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 192, 167, 0.3);
    cursor: pointer;
}

.btn-invest i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-invest:hover i {
    transform: translateX(3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navbar-text);
    margin: 3px 0;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
    }
    .nav-menu {
        justify-content: center;
    }
    .navbar {
        justify-content: space-between;
    }
}

@media (min-width: 769px) {
    .nav-theme-action, .nav-contact-action {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none !important;
    }
    .nav-theme-action, .nav-contact-action {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .nav-theme-action button.theme-toggle-header {
        margin: 0 auto;
    }
    .nav-contact-action .btn-invest {
        width: 90%;
        margin: 0 auto;
        display: block;
        background: #fff !important;
        color: #181818 !important;
        border: none !important;
        transition: background 0.3s, color 0.3s;
    }
    .nav-contact-action .btn-invest:hover {
        background: var(--primary-color) !important;
        color: #fff !important;
    }
}

.nav-contact-action .btn-invest::after {
    display: none !important;
    content: none !important;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('img/sky2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero-text-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-mini-text {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}

.hero-cta-btn {
    font-family: 'SF Pro Display', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-cta-btn i {
    background: white;
    color: #59778F;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-cta-btn:hover i {
    transform: rotate(-45deg) translate(2px, -2px);
}




.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%; /* slightly taller for smoother fade */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,   /* soft dark at very top */
        rgba(0, 0, 0, 0.15) 20%,  /* gentle transition */
        rgba(0, 0, 0, 0.05) 60%,  /* barely visible */
        rgba(0, 0, 0, 0) 100%     /* fully transparent */
    );
    pointer-events: none;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* General button styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 192, 167, 0.3);
}

.btn-primary:hover {
    background: #5aac97;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 192, 167, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Features Icons */
.hero-features {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 2;
}

.explore-btn {
    position: absolute;
    bottom: 30px; /* space from bottom */
    right: 30px;  /* space from right */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
    /* Frosted glass background - matching Our Services button */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-align: center;
    font-size: 12px;
    gap: 5px;
    
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 3;
    transition: all 0.3s ease;
}

.explore-btn i {
    font-size: 20px;
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.feature-icon {
    text-align: center;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.feature-icon:hover {
    opacity: 1;
}

.feature-icon i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-icon span {
    display: block;
    font-size: 0.9rem;
}

/* Section Base Styles for Future Sections */
.section {
    padding: 80px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.section-alt {
    background: var(--bg-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Card Components for Future Use */
.card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Grid System for Future Sections */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-blue);
}

.text-primary-color {
    color: var(--primary-color);
}

.bg-primary {
    background: var(--primary-blue);
}

.bg-primary-color {
    background: var(--primary-color);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 0.5rem;
        width: calc(100% - 2rem);
        border-radius: 15px;
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--navbar-border);
    border-radius: 15px;
    width: calc(100% - 2rem);
    text-align: center;
    transition: left 0.3s;
    box-shadow: 0 10px 32px var(--navbar-shadow);
    padding: 2rem 0;
    gap: 1.5rem;
    margin-top: 0.5rem;
    z-index: 999;
}

.nav-menu.active {
    left: 1rem;
}


    .nav-menu.active {
    left: 1rem;
}


.nav-theme-action, .nav-contact-action {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav-theme-action button.theme-toggle-header {
    margin: 0 auto;
}

.nav-contact-action .btn-invest {
    width: 90%;
    margin: 0 auto;
    display: block;
}

/* Remove mobile nav-actions block */
.nav-actions {
    display: none !important;
}


    .nav-actions.active {
        right: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .grid {
        gap: 1.5rem;
    }

    /* Hero responsive styles */
    .hero-content {
        bottom: 20px;
        left: 20px;
        max-width: 500px;
    }

    .hero-text-content {
        max-width: 100%;
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-mini-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .explore-btn {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .logo-image {
        height: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-mini-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-cta-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 1200px) {
    .hero-headline {
        font-size: 4rem;
    }

    .hero-mini-text {
        font-size: 1.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}



/* Print styles */
@media print {
    .navbar,
    .theme-toggle-header,
    .btn-invest {
        display: none;
    }
    
    .hero {
        background: var(--primary-blue);
        color: white;
        page-break-inside: avoid;
    }
}








    /* ==========================================
           SHIPPING PROFITABILITY SECTION STYLES
           ========================================== */

           .shipping-profitability-section {
            padding: 80px 0;
            background: transparent; /* No background for theme compatibility */
            margin-top: 60px; /* Space from section above */
            transition: background-color 0.3s ease;
        }

        .shipping-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section header following your existing patterns */
        .shipping-header {
            text-align: left;
            margin-bottom: 60px;
        }

        .shipping-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
           
        }

        .shipping-title-description-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .shipping-title-section {
            flex: 1;
        }

        .shipping-description-section {
            flex: 1;
        }

        .shipping-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 0;
        }

        .shipping-title-highlight {
            color: var(--primary-color);
        }

        .shipping-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Stats cards using your existing card patterns */
        .shipping-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 60px;
        }

        .shipping-stat-card {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 8px 30px var(--shadow-light);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .shipping-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }

        .shipping-stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
            display: block;
        }

        .shipping-stat-plus {
            font-size: 0.7em;
        }

        .shipping-stat-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Image container with your existing styling patterns */
        .shipping-image-container {
            width: 100%;
            margin-bottom: 2.5rem;
            padding: 0;
            display: flex;
            justify-content: center;
        }

        .shipping-image {
            width: 100%;
            max-width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px; /* Matching your existing border-radius */
            box-shadow: 0 8px 30px var(--shadow-light);
            transition: box-shadow 0.3s ease;
        }

        .shipping-image:hover {
            box-shadow: 0 15px 40px var(--shadow-medium);
        }

        /* Bottom description using your grid system */
        .shipping-bottom-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 2rem;
        }

        .shipping-description-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ==========================================
           RESPONSIVE DESIGN - FOLLOWING YOUR BREAKPOINTS
           ========================================== */

        /* Mobile styles - matching your @media (max-width: 768px) */
        @media (max-width: 768px) {
            .shipping-profitability-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .shipping-container {
                padding: 0 1rem;
            }

            .shipping-title-description-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .shipping-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .shipping-stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 40px;
            }

            .shipping-stat-card {
                padding: 2rem 1.5rem;
            }

            .shipping-stat-number {
                font-size: 2.5rem;
            }

            .shipping-image-container {
                padding: 0 0.5rem;
            }

            .shipping-image {
                width: 100%;
                max-width: 100%;
                height: 300px;
            }

            .shipping-bottom-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .shipping-description-text {
                font-size: 1rem;
            }
        }

        /* Small mobile styles - matching your @media (max-width: 480px) */
        @media (max-width: 480px) {
            .shipping-profitability-section {
                padding: 60px 0;
                margin-top: 30px;
            }

            .shipping-header {
                margin-bottom: 40px;
            }

            .shipping-title-description-wrapper {
                gap: 1.5rem;
            }

            .shipping-title {
                font-size: 1.8rem;
            }

            .shipping-description,
            .shipping-description-text {
                font-size: 1rem;
            }

            .shipping-stats-grid {
                gap: 1rem;
                margin-bottom: 30px;
            }

            .shipping-stat-card {
                padding: 1.5rem 1rem;
            }

            .shipping-stat-number {
                font-size: 2rem;
            }

            .shipping-stat-label {
                font-size: 0.9rem;
            }

            .shipping-image {
                height: 250px;
                border-radius: 10px;
            }
        }

        /* Large screens - matching your @media (min-width: 1200px) */
        @media (min-width: 1200px) {
            .shipping-title {
                font-size: 3rem;
            }

            .shipping-description {
                font-size: 1.2rem;
            }
        }

        /* ==========================================
           DEMO THEME TOGGLE (REMOVE IN PRODUCTION)
           ========================================== */
        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }


















          /* ==========================================
           LOGISTICS SOLUTIONS SECTION STYLES
           ========================================== */

           .logistics-solutions-section {
            padding: 80px 0;
            background: transparent; /* No background for theme compatibility */
            margin-top: 60px; /* Space from section above */
            transition: background-color 0.3s ease;
        }

        .logistics-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section header following your existing patterns */
        .logistics-header {
            text-align: left;
            margin-bottom: 60px;
        }

        .logistics-subtitle {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
          
        }

        .logistics-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            max-width: 600px;
        }

        /* Cards container */
        .logistics-cards-container {
            display: flex;
            gap: 1rem;
            height: 400px;
            margin-top: 3rem;
        }

        .logistics-card {
            background: var(--bg-card);
            border-radius: 15px;
            box-shadow: 0 8px 30px var(--shadow-light);
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Default minimized card */
        .logistics-card {
            flex: 0 0 120px;
        }

        /* Expanded card (default first card) */
        .logistics-card.expanded {
            flex: 1;
        }

        /* Card number */
        .logistics-card-number {
            position: absolute;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--border-color);
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .logistics-card.expanded .logistics-card-number {
            top: 2rem;
            right: 2rem;
            left: auto;
            transform: none;
            width: 45px;
            height: 45px;
            background: var(--border-color);
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        /* Card title for minimized state */
        .logistics-card-title-vertical {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) rotate(180deg);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            transition: opacity 0.3s ease;
        }

        .logistics-card.expanded .logistics-card-title-vertical {
            opacity: 0;
        }

        /* Expanded card content */
        .logistics-card-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.1s;
            padding: 2rem;
            display: flex;
            flex-direction: row;
            height: 100%;
            gap: 2rem;
        }

        .logistics-card.expanded .logistics-card-content {
            opacity: 1;
            transform: translateY(0);
        }

        /* Image container for left side */
        .logistics-card-image-container {
            flex: 0 0 45%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Text content container for right side */
        .logistics-card-text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logistics-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .logistics-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .logistics-card-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-secondary);
            flex-grow: 1;
        }

        /* Hover effects for non-expanded cards */
        .logistics-card:not(.expanded):hover {
            flex: 0 0 140px;
            transform: translateY(-2px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }

        /* ==========================================
           RESPONSIVE DESIGN - FOLLOWING YOUR BREAKPOINTS
           ========================================== */

        /* Tablet styles */
        @media (max-width: 768px) {
            .logistics-solutions-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .logistics-container {
                padding: 0 1rem;
            }

            .logistics-main-title {
                font-size: 2rem;
            }

            .logistics-cards-container {
                flex-direction: column;
                height: auto;
                gap: 1rem;
            }

            .logistics-card {
                flex: 1 1 auto;
                min-height: 120px;
            }

            .logistics-card.expanded {
                min-height: 400px;
            }

            .logistics-card-title-vertical {
                writing-mode: horizontal-tb;
                text-orientation: initial;
                transform: none;
                bottom: 1rem;
                left: 50%;
                transform: translateX(-50%);
                font-size: 1rem;
            }

            .logistics-card-number {
                top: 1rem;
                left: 50%;
                transform: translateX(-50%);
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .logistics-card.expanded .logistics-card-number {
                top: 1rem;
                right: 1rem;
                left: auto;
                transform: none;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .logistics-card-content {
                padding: 1.5rem;
                flex-direction: column;
                gap: 1rem;
            }

            .logistics-card-image-container {
                flex: none;
                height: 200px;
            }

            .logistics-card-image {
                height: 100%;
            }

            .logistics-card-title {
                font-size: 1.3rem;
            }

            .logistics-card-description {
                font-size: 0.9rem;
            }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
            .logistics-solutions-section {
                padding: 60px 0;
                margin-top: 30px;
            }

            .logistics-header {
                margin-bottom: 40px;
            }

            .logistics-main-title {
                font-size: 1.8rem;
            }

            .logistics-card.expanded {
                min-height: 350px;
            }

            .logistics-card-content {
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
            }

            .logistics-card-image-container {
                flex: none;
                height: 150px;
            }

            .logistics-card-image {
                height: 100%;
            }

            .logistics-card-title {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }

            .logistics-card-description {
                font-size: 0.85rem;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .logistics-main-title {
                font-size: 3rem;
            }

            .logistics-cards-container {
                height: 450px;
            }

            .logistics-card-image-container {
                flex: 0 0 50%;
            }

            .logistics-card-content {
                gap: 3rem;
            }
        }

        /* ==========================================
           DEMO THEME TOGGLE (REMOVE IN PRODUCTION)
           ========================================== */
        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }


















         /* ==========================================
           MARITIME MARQUEE SECTION STYLES
           ========================================== */

           .maritime-marquee-section {
            padding: 80px 0;
            background: transparent !important; /* No background for theme compatibility */
            margin-top: 60px; /* Space from section above */
            overflow: visible; /* Allow marquee to be visible during movement */
            position: relative;
        }

        .marquee-container {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%); /* Center the marquee */
            width: 200vw; /* Full viewport width for movement */
            height: 120px;
            display: flex;
            align-items: center;
            overflow: hidden;
            z-index: 5;
            transition: transform 0.3s ease; /* Smooth transition for position resets */
            will-change: transform;
        }

        .marquee-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
            /* NO CSS animations - movement controlled by JavaScript */
            transform: translateX(0);
            transition: none; /* Remove any transitions for smooth scroll control */
            width: 100%;
            justify-content: space-around;
            flex-wrap: nowrap;
        }

        .marquee-text {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            opacity: 0.8;
            margin-right: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        /* Decorative anchor icons */
        .marquee-icon {
            color: var(--primary-color);
            margin: 0 2rem;
            flex-shrink: 0;
            opacity: 0.7;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        /* Ensure proper theme compatibility */
        .maritime-marquee-section {
            color: var(--text-primary);
        }

        .maritime-marquee-section .marquee-text {
            color: var(--text-primary) !important;
        }

        .maritime-marquee-section .marquee-icon {
            color: var(--primary-color) !important;
        }

        /* Gradient overlay for smooth edges */
        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-primary), transparent);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-primary), transparent);
        }

        /* ==========================================
           RESPONSIVE DESIGN - FOLLOWING YOUR BREAKPOINTS
           ========================================== */

        /* Tablet styles */
        @media (max-width: 768px) {
            .maritime-marquee-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .marquee-container {
                height: 100px;
            }

            .marquee-text {
                font-size: 1.8rem;
                margin-right: 1.2rem;
            }

            .marquee-icon {
                font-size: 1.5rem;
                margin: 0 1.5rem;
            }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
            .maritime-marquee-section {
                padding: 40px 0;
                margin-top: 30px;
            }

            .marquee-container {
                height: 80px;
            }

            .marquee-text {
                font-size: 1.2rem;
                margin-right: 1rem;
            }

            .marquee-icon {
                font-size: 1rem;
                margin: 0 1rem;
            }

            .marquee-container::before,
            .marquee-container::after {
                width: 50px;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .marquee-container {
                height: 150px;
            }

            .marquee-text {
                font-size: 3rem;
                margin-right: 2rem;
            }

            .marquee-icon {
                font-size: 2.5rem;
                margin: 0 2.5rem;
            }
        }

        /* ==========================================
           DEMO CONTENT FOR TESTING
           ========================================== */
        .demo-content {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-secondary);
            margin: 2rem 0;
        }

        .demo-text {
            font-size: 2rem;
            color: var(--text-primary);
            text-align: center;
        }

        /* Demo theme toggle */
        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }

        .scroll-indicator {
            position: fixed;
            top: 60px;
            right: 20px;
            padding: 10px 15px;
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 0.9rem;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }















         /* ==========================================
           FLEET SERVICES SECTION STYLES
           ========================================== */

           .fleet-services-section {
            padding: 80px 0;
            background: transparent; /* No background to blend with page */
            margin-top: 60px;
            position: relative;
        }

        /* Light mode override */
        :root .fleet-services-section {
            background: transparent; /* No background in light mode either */
        }

        :root .fleet-header .fleet-subtitle,
        :root .fleet-header .fleet-main-title {
            color: #333333; /* Dark text for light mode */
        }

        :root .fleet-header .fleet-description {
            color: #666666; /* Medium gray text for light mode */
        }

        :root .fleet-service-item {
            background: transparent; /* No background in light mode either */
            border-color: #404040; /* Light border for light mode */
        }

        :root .fleet-service-title,
        :root .fleet-service-description {
            color: #666666; /* Medium gray text for light mode */
        }

        :root .fleet-service-arrow {
            border-color: #666666; /* Medium gray border for light mode */
            color: #666666; /* Medium gray color for light mode */
        }

        /* Light mode hover text colors */
        :root .fleet-service-item:hover .fleet-service-title,
        :root .fleet-service-item:hover .fleet-service-description {
            color: #333333; /* Dark text on hover for light mode */
        }

        .fleet-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section header */
        .fleet-header {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 60px;
        }

        .fleet-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff; /* White text on dark background */
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .fleet-header-content {
            max-width: 600px;
        }

        .fleet-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff; /* White text on dark background */
            margin-bottom: 1.5rem;
        }

        .fleet-main-title .highlight {
            color: var(--primary-color);
        }

        .fleet-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #cccccc; /* Light gray text on dark background */
        }

        /* Services list */
        .fleet-services-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .fleet-service-item {
            position: relative;
            background: transparent; /* No background to blend with page */
            border-bottom: 1px solid #404040;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            overflow: hidden;
            margin-bottom: 8px;
        }

      

        .fleet-service-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2.5rem 0;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .fleet-service-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .fleet-service-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #999999; /* Gray text before hover */
            transition: all 0.4s ease;
            margin: 0;
        }

        .fleet-service-description {
            font-size: 1rem;
            color: #999999; /* Gray text before hover */
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 400px;
            transition-delay: 0.1s;
        }

        .fleet-service-right {
            display: flex;
            align-items: center;
            gap: 2rem;
            position: relative;
        }

        .fleet-service-image {
            width: 200px;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.4s ease;
            border: 3px solid transparent; /* Transparent border initially */
            transition: all 0.4s ease, border-color 0.3s ease; /* Smooth border transition */
        }

        .fleet-service-arrow {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: transparent;
            border: 2px solid #999999; /* Gray border before hover */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999999; /* Gray color before hover */
            font-size: 1.2rem;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .fleet-service-arrow i {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        /* Hover state - exactly like screenshot */
        .fleet-service-item:hover {
            background: transparent; /* No background on hover */
            transform: none; /* No movement on hover */
     
            padding-left: 0; /* No padding change on hover */
            border-color: #404040; /* Keep original border color */
            box-shadow: none; /* No shadow on hover */
        }

        .fleet-service-item:hover .fleet-service-title {
            transform: none; /* No movement on hover */
        }

        .fleet-service-item:hover .fleet-service-description {
            opacity: 1;
            transform: translateY(0);
        }

        .fleet-service-item:hover .fleet-service-image {
            opacity: 1;
            transform: translateX(0);
            border: 3px solid var(--primary-color); /* Primary color border on hover */
        }

        .fleet-service-item:hover .fleet-service-arrow {
            background: var(--primary-color); /* Primary color background on hover */
            border-color: var(--primary-color); /* Primary color border on hover */
            color: #ffffff; /* White icon on hover */
            transform: none; /* No scaling - keep original size */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .fleet-service-item:hover .fleet-service-arrow i {
            transform: rotate(-45deg) translate(2px, -2px); /* Point to top-right */
        }

        /* Background overlay for smooth transition - remove this since we don't want background */
        .fleet-service-item::before {
            display: none; /* Hide the background overlay */
        }

        /* ==========================================
           RESPONSIVE DESIGN - FOLLOWING YOUR BREAKPOINTS
           ========================================== */

        /* Tablet styles */
        @media (max-width: 768px) {
            .fleet-services-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .fleet-container {
                padding: 0 1rem;
            }

            .fleet-header {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: left;
            }

            .fleet-main-title {
                font-size: 2rem;
            }

            .fleet-service-title {
                font-size: 2rem;
            }

            .fleet-service-content {
                padding: 2rem 0;
            }

            .fleet-service-right {
                gap: 1.5rem;
            }

            .fleet-service-image {
                width: 150px;
                height: 90px;
            }

            .fleet-service-arrow {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }

            .fleet-service-item:hover {
                transform: none; /* No movement on hover */
                padding-left: 0; /* No padding change on hover */
            }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
            .fleet-services-section {
                padding: 40px 0;
                margin-top: 30px;
            }

            .fleet-header {
                margin-bottom: 40px;
            }

            .fleet-main-title {
                font-size: 1.8rem;
            }

            .fleet-description {
                font-size: 1rem;
            }

            .fleet-service-title {
                font-size: 1.5rem;
            }

            .fleet-service-content {
                padding: 1.5rem 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .fleet-service-right {
                width: 100%;
                justify-content: space-between;
                gap: 1rem;
            }

            .fleet-service-image {
                width: 120px;
                height: 70px;
            }

            .fleet-service-arrow {
                width: 45px;
                height: 45px;
                font-size: 0.9rem;
            }

            .fleet-service-item:hover {
                transform: none;
                padding-left: 0;
            }

            .fleet-service-description {
                max-width: 100%;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .fleet-main-title {
                font-size: 3rem;
            }

            .fleet-service-title {
                font-size: 3rem;
            }

            .fleet-service-image {
                width: 250px;
                height: 150px;
            }

            .fleet-service-arrow {
                width: 70px;
                height: 70px;
                font-size: 1.4rem;
            }
        }

        /* ==========================================
           DEMO THEME TOGGLE (REMOVE IN PRODUCTION)
           ========================================== */
        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }
   










          /* ==========================================
           LOGISTICS DELIVERY SECTION STYLES
           ========================================== */

           .logistics-delivery-section {
            padding: 100px 0;
            padding-top: 180px; /* Extra top padding for marquee bar */
            background: transparent !important; /* No background for theme compatibility */
            margin-top: 60px;
            position: relative;
            min-height: 100vh;
            /* Remove overflow hidden to ensure marquee is visible */
            overflow: visible;
        }

        .logistics-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            height: 100%;
        }

        /* Marquee bar at the top */
        .logistics-marquee-bar {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%); /* Center the marquee bar */
            width: 200vw; /* Full viewport width */
            height: 80px;
            background: var(--primary-color);
            background: #246d96; /* Fallback color */
            display: flex;
            align-items: center;
            z-index: 10; /* Higher z-index to be above container */
            transition: transform 0.3s ease; /* Smooth transition for position resets */
            overflow: hidden; /* Ensure content doesn't overflow */
            /* Ensure smooth movement */
            will-change: transform;
            /* Ensure it's visible */
            visibility: visible;
            opacity: 1;
        }

        .logistics-marquee-bar.animate {
            transform: translateX(-20%);
        }

        .marquee-content {
            display: flex;
            align-items: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            white-space: nowrap;
            width: 100%;
            justify-content: space-around;
            text-transform: uppercase;
            /* Ensure content repeats to fill the wider marquee */
            min-width: 100%;
            /* Better spacing for the repeated content */
            gap: 1rem;
            /* Ensure content fills the full width */
            flex-wrap: nowrap;
        }

        .marquee-content span {
            flex-shrink: 0;
            margin: 0 0.5rem;
            /* Ensure text is visible */
            color: white;
        }

        .marquee-star {
            color: #ffd700;
            margin: 0 1rem;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Container image */
        .container-image-wrapper {
            position: absolute;
            top: 60px;
            right: -300px;
            width: 600px;
            height: 400px;
            z-index: 5; /* Lower z-index than marquee */
            transition: transform 0.3s ease; /* Smooth transition for position resets */
            /* Ensure smooth movement */
            will-change: transform;
        }

        .container-image-wrapper.animate {
            transform: translateX(-350px);
        }

        .container-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
        }

        /* Content area */
        .logistics-content {
            position: relative;
            z-index: 3;
            max-width: 600px;
            padding-top: 100px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease 0.3s;
        }

        .logistics-content.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .logistics-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 2rem;
        }

        .logistics-title .highlight {
            color: var(--primary-color);
        }

        .logistics-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 500px;
        }

        /* Stats section */
        .stats-section {
            background: var(--primary-color);
            border-radius: 25px;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 15px 40px rgba(36, 109, 150, 0.3);
        }

        .stats-left {
            flex: 1;
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .stats-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        .stats-avatars {
            display: flex;
            margin-top: 1rem;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid white;
            margin-left: -10px;
            background: #ddd;
            overflow: hidden;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .get-started-btn {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .get-started-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .get-started-btn i {
            background: var(--primary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        /* ==========================================
           RESPONSIVE DESIGN
           ========================================== */

        /* Tablet styles */
        @media (max-width: 768px) {
            .logistics-delivery-section {
                padding: 80px 0;
                margin-top: 40px;
            }

            .logistics-container {
                padding: 0 1rem;
            }

            .logistics-marquee-bar {
                height: 60px;
            }

            .marquee-content {
                font-size: 1.2rem;
            }

            .container-image-wrapper {
                width: 400px;
                height: 280px;
                right: -200px;
            }

            .container-image-wrapper.animate {
                transform: translateX(-250px);
            }

            .logistics-content {
                padding-top: 80px;
            }

            .logistics-title {
                font-size: 2.5rem;
            }

            .stats-section {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .stats-number {
                font-size: 2rem;
            }

            .avatar {
                width: 35px;
                height: 35px;
            }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
            .logistics-delivery-section {
                padding: 60px 0;
                margin-top: 30px;
            }

            .logistics-marquee-bar {
                height: 50px;
            }

            .marquee-content {
                font-size: 1rem;
            }

            .marquee-star {
                margin: 0 1rem;
                font-size: 1rem;
            }

            .container-image-wrapper {
                width: 300px;
                height: 200px;
                right: -150px;
                top: 40px;
            }

            .container-image-wrapper.animate {
                transform: translateX(-180px);
            }

            .logistics-content {
                padding-top: 60px;
            }

            .logistics-title {
                font-size: 2rem;
            }

            .logistics-description {
                font-size: 1rem;
            }

            .stats-section {
                padding: 1.5rem;
                border-radius: 20px;
            }

            .stats-number {
                font-size: 1.8rem;
            }

            .stats-text {
                font-size: 0.9rem;
            }

            .avatar {
                width: 30px;
                height: 30px;
            }

            .get-started-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .logistics-title {
                font-size: 4rem;
            }

            .container-image-wrapper {
                width: 700px;
                height: 480px;
            }

            .container-image-wrapper.animate {
                transform: translateX(-400px);
            }
        }

        /* ==========================================
           DEMO CONTENT
           ========================================== */
        .demo-content {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-secondary);
            margin: 2rem 0;
        }

        .demo-text {
            font-size: 2rem;
            color: var(--text-primary);
            text-align: center;
        }

        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }

        /* ==========================================
           FOOTER STYLES
           ========================================== */
        .footer {
            background-color: #181818;
            color: #ffffff;
            padding: 60px 0 30px 0;
            font-family: 'SF Pro Display', sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main Footer Content */
        .footer-main {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #333333;
        }

        /* Footer Columns */
        .footer-column {
            display: flex;
            flex-direction: column;
        }

        /* Company Branding Column */
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }

        .footer-logo-icon i {
            color: #1a1a1a;
            font-size: 18px;
        }

        .footer-logo-text {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
        }

        .footer-contact-info p {
            margin: 0 0 8px 0;
            color: #cccccc;
            font-size: 14px;
            line-height: 1.4;
        }

        .footer-phone {
            color: #ffffff !important;
            font-weight: 600;
            font-size: 16px !important;
        }

        /* Footer Headings */
        .footer-heading {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 20px 0;
            text-transform: uppercase;
        }

        /* Footer Address */
        .footer-address p {
            margin: 0 0 8px 0;
            color: #cccccc;
            font-size: 14px;
            line-height: 1.4;
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        /* Footer Bottom */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
        }

        .footer-copyright p {
            margin: 0;
            color: #999999;
            font-size: 14px;
        }

        /* Social Media Icons */
        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #ffffff;
            color: #1a1a1a;
        }

        .social-icon i {
            font-size: 16px;
        }

        /* Responsive Design for Footer */
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px 0;
            }

            .footer-main {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                margin-bottom: 30px;
                padding-bottom: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-container {
                padding: 0 15px;
            }

            .footer-logo-text {
                font-size: 18px;
            }

            .footer-heading {
                font-size: 16px;
            }
        }

        /* ==========================================
           TICKET HERO SECTION STYLES (Duplicate of hero styles)
           ========================================== */

.ticket-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('img/sky2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.ticket-hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.ticket-hero-text-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.ticket-hero-headline {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ticket-hero-mini-text {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}

.ticket-hero-cta-btn {
    font-family: 'SF Pro Display', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ticket-hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ticket-hero-cta-btn i {
    background: white;
    color: #59778F;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ticket-hero-cta-btn:hover i {
    transform: rotate(-45deg) translate(2px, -2px);
}

.ticket-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%; /* slightly taller for smoother fade */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,   /* soft dark at very top */
        rgba(0, 0, 0, 0.15) 20%,  /* gentle transition */
        rgba(0, 0, 0, 0.05) 60%,  /* barely visible */
        rgba(0, 0, 0, 0) 100%     /* fully transparent */
    );
    pointer-events: none;
    z-index: 1;
}

.ticket-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ticket-explore-btn {
    position: absolute;
    bottom: 30px; /* space from bottom */
    right: 30px;  /* space from right */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
    /* Frosted glass background - matching Our Services button */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-align: center;
    font-size: 12px;
    gap: 5px;
    
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 3;
    transition: all 0.3s ease;
}

.ticket-explore-btn i {
    font-size: 20px;
}

.ticket-explore-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

/* Ticket container styles */
.ticket-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ticket-visa-content {
    padding: 80px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.ticket-visa-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.ticket-visa-content p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Ticket Hero Responsive Styles */
@media (max-width: 768px) {
    .ticket-hero-content {
        bottom: 20px;
        left: 20px;
        max-width: 500px;
    }

    .ticket-hero-text-content {
        max-width: 100%;
    }

    .ticket-hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .ticket-hero-mini-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .ticket-hero-cta-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .ticket-explore-btn {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .ticket-hero {
        background-attachment: scroll;
    }

    .ticket-hero-content {
        padding: 0 1rem;
    }

    .ticket-hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .ticket-hero-mini-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .ticket-hero-cta-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }
}

@media (min-width: 1200px) {
    .ticket-hero-headline {
        font-size: 4rem;
    }

    .ticket-hero-mini-text {
        font-size: 1.2rem;
    }
}



















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































/* Custom Font Declarations */
@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYLIGHTITALIC.OTF') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYHEAVYITALIC.OTF') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYBLACKITALIC.OTF') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYTHINITALIC.OTF') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYULTRALIGHTITALIC.OTF') format('opentype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* CSS Variables for Light/Dark Mode */
:root {
    /* Light Mode Colors */
    --bg-primary: #f8f8f8;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    
    /* Brand Colors (consistent across themes) */
    --primary-blue: #2c5aa0;
    --primary-color: #246d96;
    --success-green: #28a745;
    --warning-yellow: #ffc107;
    --danger-red: #dc3545;
    
    /* Navbar Variables */
    --navbar-blur-bg: transparent;
    --navbar-border: rgba(255, 255, 255, 0.2);
    --navbar-text: #ffffff;
    --navbar-shadow: rgba(0, 0, 0, 0.1);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #181818;
    --bg-secondary: #202020;
    --bg-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-light: #999999;
    --border-color: #404040;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.4);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    
    /* Navbar Dark Mode - Keep same transparent background */
    --navbar-blur-bg: transparent;
    --navbar-border: rgba(255, 255, 255, 0.2);
    --navbar-text: #ffffff;
    --navbar-shadow: rgba(0, 0, 0, 0.1);
}

/* Dark Mode Fleet Services Section */
[data-theme="dark"] .fleet-services-section {
    background: transparent; /* No background in dark mode either */
}

[data-theme="dark"] .fleet-header .fleet-subtitle {
    color: #cccccc !important; /* Light gray text for dark mode */
}

[data-theme="dark"] .fleet-header .fleet-main-title {
    color: #ffffff !important; /* White text for dark mode */
}

[data-theme="dark"] .fleet-header .fleet-description {
    color: #cccccc !important; /* Light gray text for dark mode */
}

[data-theme="dark"] .fleet-service-item {
    background: transparent; /* No background in dark mode either */
    border-color: #404040;
}

[data-theme="dark"] .fleet-service-item:hover {
    background: transparent; /* No background on hover */
    border-color: #f3f3f3; /* Keep original border color */
    box-shadow: none; /* No shadow on hover */
}

[data-theme="dark"] .fleet-service-item:hover .fleet-service-title,
[data-theme="dark"] .fleet-service-item:hover .fleet-service-description {
    color: #ffffff !important; /* Force white text on hover in dark mode */
}

[data-theme="dark"] .fleet-service-item:hover .fleet-service-image {
    border-color: var(--primary-color); /* Primary color border on hover */
}

[data-theme="dark"] .fleet-service-item:hover .fleet-service-arrow {
    background: var(--primary-color); /* Primary color background on hover */
    border-color: var(--primary-color); /* Primary color border on hover */
    color: #ffffff; /* White icon on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1400px;
    background: var(--navbar-blur-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--navbar-border);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-radius: 3rem;
    box-shadow: 0 8px 32px var(--navbar-shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navbar-text);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.8rem;
}

.logo-image {
    height: 1.5rem;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navbar-text);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.5rem;
    border-radius: 20px;
    position: relative;
    transition: color 0.3s, background 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: none;
    color: var(--primary-color);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle-header {
    background: transparent;
    border: none;
    color: var(--navbar-text);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle-header:hover {
    transform: scale(1.1);
}

.btn-invest {
    background: #fff;
    color: #181818;
    text-decoration: none;
    padding: 0.3rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-invest:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 192, 167, 0.3);
    cursor: pointer;
}

.btn-invest i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-invest:hover i {
    transform: translateX(3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navbar-text);
    margin: 3px 0;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
    }
    .nav-menu {
        justify-content: center;
    }
    .navbar {
        justify-content: space-between;
    }
}

@media (min-width: 769px) {
    .nav-theme-action, .nav-contact-action {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none !important;
    }
    .nav-theme-action, .nav-contact-action {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .nav-theme-action button.theme-toggle-header {
        margin: 0 auto;
    }
    .nav-contact-action .btn-invest {
        width: 90%;
        margin: 0 auto;
        display: block;
        background: #fff !important;
        color: #181818 !important;
        border: none !important;
        transition: background 0.3s, color 0.3s;
    }
    .nav-contact-action .btn-invest:hover {
        background: var(--primary-color) !important;
        color: #fff !important;
    }
}

.nav-contact-action .btn-invest::after {
    display: none !important;
    content: none !important;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('img/8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero-text-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-mini-text {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}

.hero-cta-btn {
    font-family: 'SF Pro Display', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-cta-btn i {
    background: white;
    color: #59778F;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-cta-btn:hover i {
    transform: rotate(-45deg) translate(2px, -2px);
}




.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%; /* slightly taller for smoother fade */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,   /* soft dark at very top */
        rgba(0, 0, 0, 0.15) 20%,  /* gentle transition */
        rgba(0, 0, 0, 0.05) 60%,  /* barely visible */
        rgba(0, 0, 0, 0) 100%     /* fully transparent */
    );
    pointer-events: none;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* General button styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 192, 167, 0.3);
}

.btn-primary:hover {
    background: #5aac97;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 192, 167, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Features Icons */
.hero-features {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 2;
}

.explore-btn {
    position: absolute;
    bottom: 30px; /* space from bottom */
    right: 30px;  /* space from right */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
    /* Frosted glass background - matching Our Services button */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-align: center;
    font-size: 12px;
    gap: 5px;
    
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 3;
    transition: all 0.3s ease;
}

.explore-btn i {
    font-size: 20px;
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.feature-icon {
    text-align: center;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.feature-icon:hover {
    opacity: 1;
}

.feature-icon i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-icon span {
    display: block;
    font-size: 0.9rem;
}

/* Section Base Styles for Future Sections */
.section {
    padding: 80px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.section-alt {
    background: var(--bg-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Card Components for Future Use */
.card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Grid System for Future Sections */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-blue);
}

.text-primary-color {
    color: var(--primary-color);
}

.bg-primary {
    background: var(--primary-blue);
}

.bg-primary-color {
    background: var(--primary-color);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 0.5rem;
        width: calc(100% - 2rem);
        border-radius: 15px;
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--navbar-border);
    border-radius: 15px;
    width: calc(100% - 2rem);
    text-align: center;
    transition: left 0.3s;
    box-shadow: 0 10px 32px var(--navbar-shadow);
    padding: 2rem 0;
    gap: 1.5rem;
    margin-top: 0.5rem;
    z-index: 999;
}

.nav-menu.active {
    left: 1rem;
}


    .nav-menu.active {
    left: 1rem;
}


.nav-theme-action, .nav-contact-action {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav-theme-action button.theme-toggle-header {
    margin: 0 auto;
}

.nav-contact-action .btn-invest {
    width: 90%;
    margin: 0 auto;
    display: block;
}

/* Remove mobile nav-actions block */
.nav-actions {
    display: none !important;
}


    .nav-actions.active {
        right: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .grid {
        gap: 1.5rem;
    }

    /* Hero responsive styles */
    .hero-content {
        bottom: 20px;
        left: 20px;
        max-width: 500px;
    }

    .hero-text-content {
        max-width: 100%;
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-mini-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .explore-btn {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .logo-image {
        height: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-mini-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-cta-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 1200px) {
    .hero-headline {
        font-size: 4rem;
    }

    .hero-mini-text {
        font-size: 1.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}



/* Print styles */
@media print {
    .navbar,
    .theme-toggle-header,
    .btn-invest {
        display: none;
    }
    
    .hero {
        background: var(--primary-blue);
        color: white;
        page-break-inside: avoid;
    }
}








    /* ==========================================
           SHIPPING PROFITABILITY SECTION STYLES
           ========================================== */

           .shipping-profitability-section {
            padding: 80px 0;
            background: transparent; /* No background for theme compatibility */
            margin-top: 60px; /* Space from section above */
            transition: background-color 0.3s ease;
        }

        .shipping-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section header following your existing patterns */
        .shipping-header {
            text-align: left;
            margin-bottom: 60px;
        }

        .shipping-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
           
        }

        .shipping-title-description-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .shipping-title-section {
            flex: 1;
        }

        .shipping-description-section {
            flex: 1;
        }

        .shipping-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 0;
        }

        .shipping-title-highlight {
            color: var(--primary-color);
        }

        .shipping-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Stats cards using your existing card patterns */
        .shipping-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 60px;
        }

        .shipping-stat-card {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 8px 30px var(--shadow-light);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .shipping-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }

        .shipping-stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
            display: block;
        }

        .shipping-stat-plus {
            font-size: 0.7em;
        }

        .shipping-stat-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Image container with your existing styling patterns */
        .shipping-image-container {
            width: 100%;
            margin-bottom: 2.5rem;
            padding: 0;
            display: flex;
            justify-content: center;
        }

        .shipping-image {
            width: 100%;
            max-width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px; /* Matching your existing border-radius */
            box-shadow: 0 8px 30px var(--shadow-light);
            transition: box-shadow 0.3s ease;
        }

        .shipping-image:hover {
            box-shadow: 0 15px 40px var(--shadow-medium);
        }

        /* Bottom description using your grid system */
        .shipping-bottom-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 2rem;
        }

        .shipping-description-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ==========================================
           RESPONSIVE DESIGN - FOLLOWING YOUR BREAKPOINTS
           ========================================== */

        /* Mobile styles - matching your @media (max-width: 768px) */
        @media (max-width: 768px) {
            .shipping-profitability-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .shipping-container {
                padding: 0 1rem;
            }

            .shipping-title-description-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .shipping-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .shipping-stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 40px;
            }

            .shipping-stat-card {
                padding: 2rem 1.5rem;
            }

            .shipping-stat-number {
                font-size: 2.5rem;
            }

            .shipping-image-container {
                padding: 0 0.5rem;
            }

            .shipping-image {
                width: 100%;
                max-width: 100%;
                height: 300px;
            }

            .shipping-bottom-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .shipping-description-text {
                font-size: 1rem;
            }
        }

        /* Small mobile styles - matching your @media (max-width: 480px) */
        @media (max-width: 480px) {
            .shipping-profitability-section {
                padding: 60px 0;
                margin-top: 30px;
            }

            .shipping-header {
                margin-bottom: 40px;
            }

            .shipping-title-description-wrapper {
                gap: 1.5rem;
            }

            .shipping-title {
                font-size: 1.8rem;
            }

            .shipping-description,
            .shipping-description-text {
                font-size: 1rem;
            }

            .shipping-stats-grid {
                gap: 1rem;
                margin-bottom: 30px;
            }

            .shipping-stat-card {
                padding: 1.5rem 1rem;
            }

            .shipping-stat-number {
                font-size: 2rem;
            }

            .shipping-stat-label {
                font-size: 0.9rem;
            }

            .shipping-image {
                height: 250px;
                border-radius: 10px;
            }
        }

        /* Large screens - matching your @media (min-width: 1200px) */
        @media (min-width: 1200px) {
            .shipping-title {
                font-size: 3rem;
            }

            .shipping-description {
                font-size: 1.2rem;
            }
        }

        /* ==========================================
           DEMO THEME TOGGLE (REMOVE IN PRODUCTION)
           ========================================== */
        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }


















          /* ==========================================
           LOGISTICS SOLUTIONS SECTION STYLES
           ========================================== */

           .logistics-solutions-section {
            padding: 80px 0;
            background: transparent; /* No background for theme compatibility */
            margin-top: 60px; /* Space from section above */
            transition: background-color 0.3s ease;
        }

        .logistics-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section header following your existing patterns */
        .logistics-header {
            text-align: left;
            margin-bottom: 60px;
        }

        .logistics-subtitle {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
           
        }

        .logistics-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            max-width: 600px;
        }

        /* Cards container */
        .logistics-cards-container {
            display: flex;
            gap: 1rem;
            height: 400px;
            margin-top: 3rem;
        }

        .logistics-card {
            background: var(--bg-card);
            border-radius: 15px;
            box-shadow: 0 8px 30px var(--shadow-light);
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Default minimized card */
        .logistics-card {
            flex: 0 0 120px;
        }

        /* Expanded card (default first card) */
        .logistics-card.expanded {
            flex: 1;
        }

        /* Card number */
        .logistics-card-number {
            position: absolute;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--border-color);
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .logistics-card.expanded .logistics-card-number {
            top: 2rem;
            right: 2rem;
            left: auto;
            transform: none;
            width: 45px;
            height: 45px;
            background: var(--border-color);
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        /* Card title for minimized state */
        .logistics-card-title-vertical {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) rotate(180deg);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            transition: opacity 0.3s ease;
        }

        .logistics-card.expanded .logistics-card-title-vertical {
            opacity: 0;
        }

        /* Expanded card content */
        .logistics-card-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.1s;
            padding: 2rem;
            display: flex;
            flex-direction: row;
            height: 100%;
            gap: 2rem;
        }

        .logistics-card.expanded .logistics-card-content {
            opacity: 1;
            transform: translateY(0);
        }

        /* Image container for left side */
        .logistics-card-image-container {
            flex: 0 0 45%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Text content container for right side */
        .logistics-card-text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logistics-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .logistics-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .logistics-card-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-secondary);
            flex-grow: 1;
        }

        /* Hover effects for non-expanded cards */
        .logistics-card:not(.expanded):hover {
            flex: 0 0 140px;
            transform: translateY(-2px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }

        /* ==========================================
           RESPONSIVE DESIGN - FOLLOWING YOUR BREAKPOINTS
           ========================================== */

        /* Tablet styles */
        @media (max-width: 768px) {
            .logistics-solutions-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .logistics-container {
                padding: 0 1rem;
            }

            .logistics-main-title {
                font-size: 2rem;
            }

            .logistics-cards-container {
                flex-direction: column;
                height: auto;
                gap: 1rem;
            }

            .logistics-card {
                flex: 1 1 auto;
                min-height: 120px;
            }

            .logistics-card.expanded {
                min-height: 400px;
            }

            .logistics-card-title-vertical {
                writing-mode: horizontal-tb;
                text-orientation: initial;
                transform: none;
                bottom: 1rem;
                left: 50%;
                transform: translateX(-50%);
                font-size: 1rem;
            }

            .logistics-card-number {
                top: 1rem;
                left: 50%;
                transform: translateX(-50%);
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .logistics-card.expanded .logistics-card-number {
                top: 1rem;
                right: 1rem;
                left: auto;
                transform: none;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .logistics-card-content {
                padding: 1.5rem;
                flex-direction: column;
                gap: 1rem;
            }

            .logistics-card-image-container {
                flex: none;
                height: 200px;
            }

            .logistics-card-image {
                height: 100%;
            }

            .logistics-card-title {
                font-size: 1.3rem;
            }

            .logistics-card-description {
                font-size: 0.9rem;
            }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
            .logistics-solutions-section {
                padding: 60px 0;
                margin-top: 30px;
            }

            .logistics-header {
                margin-bottom: 40px;
            }

            .logistics-main-title {
                font-size: 1.8rem;
            }

            .logistics-card.expanded {
                min-height: 350px;
            }

            .logistics-card-content {
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
            }

            .logistics-card-image-container {
                flex: none;
                height: 150px;
            }

            .logistics-card-image {
                height: 100%;
            }

            .logistics-card-title {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }

            .logistics-card-description {
                font-size: 0.85rem;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .logistics-main-title {
                font-size: 3rem;
            }

            .logistics-cards-container {
                height: 450px;
            }

            .logistics-card-image-container {
                flex: 0 0 50%;
            }

            .logistics-card-content {
                gap: 3rem;
            }
        }

        /* ==========================================
           DEMO THEME TOGGLE (REMOVE IN PRODUCTION)
           ========================================== */
        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }


















         /* ==========================================
           MARITIME MARQUEE SECTION STYLES
           ========================================== */

           .maritime-marquee-section {
            padding: 80px 0;
            background: transparent !important; /* No background for theme compatibility */
            margin-top: 60px; /* Space from section above */
            overflow: visible; /* Allow marquee to be visible during movement */
            position: relative;
        }

        .marquee-container {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%); /* Center the marquee */
            width: 200vw; /* Full viewport width for movement */
            height: 120px;
            display: flex;
            align-items: center;
            overflow: hidden;
            z-index: 5;
            transition: transform 0.3s ease; /* Smooth transition for position resets */
            will-change: transform;
        }

        .marquee-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
            /* NO CSS animations - movement controlled by JavaScript */
            transform: translateX(0);
            transition: none; /* Remove any transitions for smooth scroll control */
            width: 100%;
            justify-content: space-around;
            flex-wrap: nowrap;
        }

        .marquee-text {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            opacity: 0.8;
            margin-right: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        /* Decorative anchor icons */
        .marquee-icon {
            color: var(--primary-color);
            margin: 0 2rem;
            flex-shrink: 0;
            opacity: 0.7;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        /* Ensure proper theme compatibility */
        .maritime-marquee-section {
            color: var(--text-primary);
        }

        .maritime-marquee-section .marquee-text {
            color: var(--text-primary) !important;
        }

        .maritime-marquee-section .marquee-icon {
            color: var(--primary-color) !important;
        }

        /* Gradient overlay for smooth edges */
        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-primary), transparent);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-primary), transparent);
        }

        /* ==========================================
           RESPONSIVE DESIGN - FOLLOWING YOUR BREAKPOINTS
           ========================================== */

        /* Tablet styles */
        @media (max-width: 768px) {
            .maritime-marquee-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .marquee-container {
                height: 100px;
            }

            .marquee-text {
                font-size: 1.8rem;
                margin-right: 1.2rem;
            }

            .marquee-icon {
                font-size: 1.5rem;
                margin: 0 1.5rem;
            }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
            .maritime-marquee-section {
                padding: 40px 0;
                margin-top: 30px;
            }

            .marquee-container {
                height: 80px;
            }

            .marquee-text {
                font-size: 1.2rem;
                margin-right: 1rem;
            }

            .marquee-icon {
                font-size: 1rem;
                margin: 0 1rem;
            }

            .marquee-container::before,
            .marquee-container::after {
                width: 50px;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .marquee-container {
                height: 150px;
            }

            .marquee-text {
                font-size: 3rem;
                margin-right: 2rem;
            }

            .marquee-icon {
                font-size: 2.5rem;
                margin: 0 2.5rem;
            }
        }

        /* ==========================================
           DEMO CONTENT FOR TESTING
           ========================================== */
        .demo-content {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-secondary);
            margin: 2rem 0;
        }

        .demo-text {
            font-size: 2rem;
            color: var(--text-primary);
            text-align: center;
        }

        /* Demo theme toggle */
        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }

        .scroll-indicator {
            position: fixed;
            top: 60px;
            right: 20px;
            padding: 10px 15px;
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 0.9rem;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }















         /* ==========================================
           FLEET SERVICES SECTION STYLES
           ========================================== */

           .fleet-services-section {
            padding: 80px 0;
            background: transparent; /* No background to blend with page */
            margin-top: 60px;
            position: relative;
        }

        /* Light mode override */
        :root .fleet-services-section {
            background: transparent; /* No background in light mode either */
        }

        :root .fleet-header .fleet-subtitle,
        :root .fleet-header .fleet-main-title {
            color: #333333; /* Dark text for light mode */
        }

        :root .fleet-header .fleet-description {
            color: #666666; /* Medium gray text for light mode */
        }

        :root .fleet-service-item {
            background: transparent; /* No background in light mode either */
            border-color: #404040; /* Light border for light mode */
        }

        :root .fleet-service-title,
        :root .fleet-service-description {
            color: #666666; /* Medium gray text for light mode */
        }

        :root .fleet-service-arrow {
            border-color: #666666; /* Medium gray border for light mode */
            color: #666666; /* Medium gray color for light mode */
        }

        /* Light mode hover text colors */
        :root .fleet-service-item:hover .fleet-service-title,
        :root .fleet-service-item:hover .fleet-service-description {
            color: #333333; /* Dark text on hover for light mode */
        }

        .fleet-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section header */
        .fleet-header {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 60px;
        }

        .fleet-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff; /* White text on dark background */
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .fleet-header-content {
            max-width: 600px;
        }

        .fleet-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff; /* White text on dark background */
            margin-bottom: 1.5rem;
        }

        .fleet-main-title .highlight {
            color: var(--primary-color);
        }

        .fleet-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #cccccc; /* Light gray text on dark background */
        }

        /* Services list */
        .fleet-services-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .fleet-service-item {
            position: relative;
            background: transparent; /* No background to blend with page */
            border-bottom: 1px solid #404040;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            overflow: hidden;
            margin-bottom: 8px;
        }

      

        .fleet-service-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2.5rem 0;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .fleet-service-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .fleet-service-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #999999; /* Gray text before hover */
            transition: all 0.4s ease;
            margin: 0;
        }

        .fleet-service-description {
            font-size: 1rem;
            color: #999999; /* Gray text before hover */
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 400px;
            transition-delay: 0.1s;
        }

        .fleet-service-right {
            display: flex;
            align-items: center;
            gap: 2rem;
            position: relative;
        }

        .fleet-service-image {
            width: 200px;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.4s ease;
            border: 3px solid transparent; /* Transparent border initially */
            transition: all 0.4s ease, border-color 0.3s ease; /* Smooth border transition */
        }

        .fleet-service-arrow {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: transparent;
            border: 2px solid #999999; /* Gray border before hover */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999999; /* Gray color before hover */
            font-size: 1.2rem;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .fleet-service-arrow i {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        /* Hover state - exactly like screenshot */
        .fleet-service-item:hover {
            background: transparent; /* No background on hover */
            transform: none; /* No movement on hover */
     
            padding-left: 0; /* No padding change on hover */
            border-color: #404040; /* Keep original border color */
            box-shadow: none; /* No shadow on hover */
        }

        .fleet-service-item:hover .fleet-service-title {
            transform: none; /* No movement on hover */
        }

        .fleet-service-item:hover .fleet-service-description {
            opacity: 1;
            transform: translateY(0);
        }

        .fleet-service-item:hover .fleet-service-image {
            opacity: 1;
            transform: translateX(0);
            border: 3px solid var(--primary-color); /* Primary color border on hover */
        }

        .fleet-service-item:hover .fleet-service-arrow {
            background: var(--primary-color); /* Primary color background on hover */
            border-color: var(--primary-color); /* Primary color border on hover */
            color: #ffffff; /* White icon on hover */
            transform: none; /* No scaling - keep original size */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .fleet-service-item:hover .fleet-service-arrow i {
            transform: rotate(-45deg) translate(2px, -2px); /* Point to top-right */
        }

        /* Background overlay for smooth transition - remove this since we don't want background */
        .fleet-service-item::before {
            display: none; /* Hide the background overlay */
        }

        /* ==========================================
           RESPONSIVE DESIGN - FOLLOWING YOUR BREAKPOINTS
           ========================================== */

        /* Tablet styles */
        @media (max-width: 768px) {
            .fleet-services-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .fleet-container {
                padding: 0 1rem;
            }

            .fleet-header {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: left;
            }

            .fleet-main-title {
                font-size: 2rem;
            }

            .fleet-service-title {
                font-size: 2rem;
            }

            .fleet-service-content {
                padding: 2rem 0;
            }

            .fleet-service-right {
                gap: 1.5rem;
            }

            .fleet-service-image {
                width: 150px;
                height: 90px;
            }

            .fleet-service-arrow {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }

            .fleet-service-item:hover {
                transform: none; /* No movement on hover */
                padding-left: 0; /* No padding change on hover */
            }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
            .fleet-services-section {
                padding: 40px 0;
                margin-top: 30px;
            }

            .fleet-header {
                margin-bottom: 40px;
            }

            .fleet-main-title {
                font-size: 1.8rem;
            }

            .fleet-description {
                font-size: 1rem;
            }

            .fleet-service-title {
                font-size: 1.5rem;
            }

            .fleet-service-content {
                padding: 1.5rem 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .fleet-service-right {
                width: 100%;
                justify-content: space-between;
                gap: 1rem;
            }

            .fleet-service-image {
                width: 120px;
                height: 70px;
            }

            .fleet-service-arrow {
                width: 45px;
                height: 45px;
                font-size: 0.9rem;
            }

            .fleet-service-item:hover {
                transform: none;
                padding-left: 0;
            }

            .fleet-service-description {
                max-width: 100%;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .fleet-main-title {
                font-size: 3rem;
            }

            .fleet-service-title {
                font-size: 3rem;
            }

            .fleet-service-image {
                width: 250px;
                height: 150px;
            }

            .fleet-service-arrow {
                width: 70px;
                height: 70px;
                font-size: 1.4rem;
            }
        }

        /* ==========================================
           DEMO THEME TOGGLE (REMOVE IN PRODUCTION)
           ========================================== */
        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }
   










          /* ==========================================
           LOGISTICS DELIVERY SECTION STYLES
           ========================================== */

           .logistics-delivery-section {
            padding: 100px 0;
            padding-top: 180px; /* Extra top padding for marquee bar */
            background: transparent !important; /* No background for theme compatibility */
            margin-top: 60px;
            position: relative;
            min-height: 100vh;
            /* Remove overflow hidden to ensure marquee is visible */
            overflow: visible;
        }

        .logistics-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            height: 100%;
        }

        /* Marquee bar at the top */
        .logistics-marquee-bar {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%); /* Center the marquee bar */
            width: 200vw; /* Full viewport width */
            height: 80px;
            background: var(--primary-color);
            background: #246d96; /* Fallback color */
            display: flex;
            align-items: center;
            z-index: 10; /* Higher z-index to be above container */
            transition: transform 0.3s ease; /* Smooth transition for position resets */
            overflow: hidden; /* Ensure content doesn't overflow */
            /* Ensure smooth movement */
            will-change: transform;
            /* Ensure it's visible */
            visibility: visible;
            opacity: 1;
        }

        .logistics-marquee-bar.animate {
            transform: translateX(-20%);
        }

        .marquee-content {
            display: flex;
            align-items: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            white-space: nowrap;
            width: 100%;
            justify-content: space-around;
            text-transform: uppercase;
            /* Ensure content repeats to fill the wider marquee */
            min-width: 100%;
            /* Better spacing for the repeated content */
            gap: 1rem;
            /* Ensure content fills the full width */
            flex-wrap: nowrap;
        }

        .marquee-content span {
            flex-shrink: 0;
            margin: 0 0.5rem;
            /* Ensure text is visible */
            color: white;
        }

        .marquee-star {
            color: #ffd700;
            margin: 0 1rem;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Container image */
        .container-image-wrapper {
            position: absolute;
            top: 60px;
            right: -300px;
            width: 600px;
            height: 400px;
            z-index: 5; /* Lower z-index than marquee */
            transition: transform 0.3s ease; /* Smooth transition for position resets */
            /* Ensure smooth movement */
            will-change: transform;
        }

        .container-image-wrapper.animate {
            transform: translateX(-350px);
        }

        .container-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
        }

        /* Content area */
        .logistics-content {
            position: relative;
            z-index: 3;
            max-width: 600px;
            padding-top: 100px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease 0.3s;
        }

        .logistics-content.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .logistics-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 2rem;
        }

        .logistics-title .highlight {
            color: var(--primary-color);
        }

        .logistics-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 500px;
        }

        /* Stats section */
        .stats-section {
            background: var(--primary-color);
            border-radius: 25px;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 15px 40px rgba(36, 109, 150, 0.3);
        }

        .stats-left {
            flex: 1;
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .stats-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        .stats-avatars {
            display: flex;
            margin-top: 1rem;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid white;
            margin-left: -10px;
            background: #ddd;
            overflow: hidden;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .get-started-btn {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .get-started-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .get-started-btn i {
            background: var(--primary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        /* ==========================================
           RESPONSIVE DESIGN
           ========================================== */

        /* Tablet styles */
        @media (max-width: 768px) {
            .logistics-delivery-section {
                padding: 80px 0;
                margin-top: 40px;
            }

            .logistics-container {
                padding: 0 1rem;
            }

            .logistics-marquee-bar {
                height: 60px;
            }

            .marquee-content {
                font-size: 1.2rem;
            }

            .container-image-wrapper {
                width: 400px;
                height: 280px;
                right: -200px;
            }

            .container-image-wrapper.animate {
                transform: translateX(-250px);
            }

            .logistics-content {
                padding-top: 80px;
            }

            .logistics-title {
                font-size: 2.5rem;
            }

            .stats-section {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .stats-number {
                font-size: 2rem;
            }

            .avatar {
                width: 35px;
                height: 35px;
            }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
            .logistics-delivery-section {
                padding: 60px 0;
                margin-top: 30px;
            }

            .logistics-marquee-bar {
                height: 50px;
            }

            .marquee-content {
                font-size: 1rem;
            }

            .marquee-star {
                margin: 0 1rem;
                font-size: 1rem;
            }

            .container-image-wrapper {
                width: 300px;
                height: 200px;
                right: -150px;
                top: 40px;
            }

            .container-image-wrapper.animate {
                transform: translateX(-180px);
            }

            .logistics-content {
                padding-top: 60px;
            }

            .logistics-title {
                font-size: 2rem;
            }

            .logistics-description {
                font-size: 1rem;
            }

            .stats-section {
                padding: 1.5rem;
                border-radius: 20px;
            }

            .stats-number {
                font-size: 1.8rem;
            }

            .stats-text {
                font-size: 0.9rem;
            }

            .avatar {
                width: 30px;
                height: 30px;
            }

            .get-started-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Large screens */
        @media (min-width: 1200px) {
            .logistics-title {
                font-size: 4rem;
            }

            .container-image-wrapper {
                width: 700px;
                height: 480px;
            }

            .container-image-wrapper.animate {
                transform: translateX(-400px);
            }
        }

        /* ==========================================
           DEMO CONTENT
           ========================================== */
        .demo-content {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-secondary);
            margin: 2rem 0;
        }

        .demo-text {
            font-size: 2rem;
            color: var(--text-primary);
            text-align: center;
        }

        .demo-theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            font-family: 'SF Pro Display', sans-serif;
        }

        /* ==========================================
           FOOTER STYLES
           ========================================== */
        .footer {
            background-color: #181818;
            color: #ffffff;
            padding: 60px 0 30px 0;
            font-family: 'SF Pro Display', sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main Footer Content */
        .footer-main {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #333333;
        }

        /* Footer Columns */
        .footer-column {
            display: flex;
            flex-direction: column;
        }

        /* Company Branding Column */
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }

        .footer-logo-icon i {
            color: #1a1a1a;
            font-size: 18px;
        }

        .footer-logo-text {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
        }

        .footer-contact-info p {
            margin: 0 0 8px 0;
            color: #cccccc;
            font-size: 14px;
            line-height: 1.4;
        }

        .footer-phone {
            color: #ffffff !important;
            font-weight: 600;
            font-size: 16px !important;
        }

        /* Footer Headings */
        .footer-heading {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 20px 0;
            text-transform: uppercase;
        }

        /* Footer Address */
        .footer-address p {
            margin: 0 0 8px 0;
            color: #cccccc;
            font-size: 14px;
            line-height: 1.4;
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        /* Footer Bottom */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
        }

        .footer-copyright p {
            margin: 0;
            color: #999999;
            font-size: 14px;
        }

        /* Social Media Icons */
        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #ffffff;
            color: #1a1a1a;
        }

        .social-icon i {
            font-size: 16px;
        }

        /* Responsive Design for Footer */
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px 0;
            }

            .footer-main {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                margin-bottom: 30px;
                padding-bottom: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-container {
                padding: 0 15px;
            }

            .footer-logo-text {
                font-size: 18px;
            }

            .footer-heading {
                font-size: 16px;
            }
        }

        /* ==========================================
           TICKET HERO SECTION STYLES (Duplicate of hero styles)
           ========================================== */

.ticket-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('img/sky2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.ticket-hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.ticket-hero-text-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.ticket-hero-headline {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ticket-hero-mini-text {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}

.ticket-hero-cta-btn {
    font-family: 'SF Pro Display', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ticket-hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ticket-hero-cta-btn i {
    background: white;
    color: #59778F;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ticket-hero-cta-btn:hover i {
    transform: rotate(-45deg) translate(2px, -2px);
}

.ticket-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%; /* slightly taller for smoother fade */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,   /* soft dark at very top */
        rgba(0, 0, 0, 0.15) 20%,  /* gentle transition */
        rgba(0, 0, 0, 0.05) 60%,  /* barely visible */
        rgba(0, 0, 0, 0) 100%     /* fully transparent */
    );
    pointer-events: none;
    z-index: 1;
}

.ticket-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ticket-explore-btn {
    position: absolute;
    bottom: 30px; /* space from bottom */
    right: 30px;  /* space from right */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
    /* Frosted glass background - matching Our Services button */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-align: center;
    font-size: 12px;
    gap: 5px;
    
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 3;
    transition: all 0.3s ease;
}

.ticket-explore-btn i {
    font-size: 20px;
}

.ticket-explore-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

/* Ticket container styles */
.ticket-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ticket-visa-content {
    padding: 80px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.ticket-visa-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.ticket-visa-content p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Ticket Hero Responsive Styles */
@media (max-width: 768px) {
    .ticket-hero-content {
        bottom: 20px;
        left: 20px;
        max-width: 500px;
    }

    .ticket-hero-text-content {
        max-width: 100%;
    }

    .ticket-hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .ticket-hero-mini-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .ticket-hero-cta-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .ticket-explore-btn {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .ticket-hero {
        background-attachment: scroll;
    }

    .ticket-hero-content {
        padding: 0 1rem;
    }

    .ticket-hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .ticket-hero-mini-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .ticket-hero-cta-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }
}

@media (min-width: 1200px) {
    .ticket-hero-headline {
        font-size: 4rem;
    }

    .ticket-hero-mini-text {
        font-size: 1.2rem;
    }
}









































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































/* ==========================================
   AIR FREIGHT HERO SECTION STYLES
   ========================================== */

.air-freight-hero-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 0;
    background: var(--bg-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.air-freight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Background Text - Large "AIR FREIGHT" */
.air-freight-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 15vw, 20rem);
    font-weight: 900;
    color: rgba(128, 128, 128, 0.1);
    text-transform: uppercase;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    transition: color 0.3s ease;
}

/* Plane Image Container */
.air-freight-image-container {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.air-freight-plane {
    width: clamp(300px, 40vw, 600px);
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: filter 0.3s ease;
}

/* Content Section */
.air-freight-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.air-freight-header {
    padding: 2rem 0;
}

.air-freight-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.air-freight-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.air-freight-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-20px);
    }
}

/* Dark Mode Styles */
[data-theme="dark"] .air-freight-hero-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .air-freight-bg-text {
    color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .air-freight-title {
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .air-freight-description {
    color: var(--text-secondary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .air-freight-plane {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Responsive Design */
@media (max-width: 768px) {
    .air-freight-hero-section {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .air-freight-container {
        padding: 0 1rem;
    }
    
    .air-freight-bg-text {
        font-size: clamp(4rem, 20vw, 8rem);
        writing-mode: vertical-rl;
        text-orientation: mixed;
        right: 5%;
        left: auto;
        transform: translateY(-50%);
    }
    
    .air-freight-image-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin: 2rem 0;
    }
    
    .air-freight-plane {
        width: clamp(250px, 80vw, 400px);
    }
    
    .air-freight-content {
        max-width: 100%;
        text-align: center;
    }
    
    .air-freight-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .air-freight-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .air-freight-hero-section {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .air-freight-header {
        padding: 1rem 0;
    }
    
    .air-freight-bg-text {
        font-size: clamp(3rem, 25vw, 6rem);
        opacity: 0.8;
    }
}

/* ==========================================
   AIR FREIGHT SECTION STYLES
   ========================================== */

/* Air Freight Hero Section */
.air-freight-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    margin-top: 80px;
    padding: 40px 20px;
}

.air-freight-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Text */
.air-freight-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.1;
    z-index: 1;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.05em;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

/* Plane Image Container */
.air-freight-plane-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.air-freight-plane-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.air-freight-plane-image:hover {
    transform: translateY(-10px);
}

/* Air Freight Content Section */
.air-freight-content-section {
    padding: 80px 20px;
    background: transparent;
}

.air-freight-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.air-freight-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.air-freight-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.air-freight-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

/* Dark Mode Styles */
[data-theme="dark"] .air-freight-bg-text {
    color: #ffffff;
    opacity: 0.08;
}

[data-theme="dark"] .air-freight-title {
    color: #ffffff;
}

[data-theme="dark"] .air-freight-description {
    color: #cccccc;
}

[data-theme="dark"] .air-freight-plane-image {
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.1));
}

/* Responsive Design */
@media (max-width: 768px) {
    .air-freight-hero-section {
        min-height: 60vh;
        margin-top: 60px;
        padding: 20px 10px;
    }

    .air-freight-bg-text {
        font-size: clamp(3rem, 15vw, 8rem);
        writing-mode: horizontal-tb;
    }

    .air-freight-plane-container {
        max-width: 90%;
    }

    .air-freight-plane-image {
        max-width: 400px;
    }

    .air-freight-content-section {
        padding: 60px 20px;
    }

    .air-freight-title {
        margin-bottom: 20px;
    }

    .air-freight-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .air-freight-hero-section {
        min-height: 50vh;
        padding: 15px 10px;
    }

    .air-freight-bg-text {
        font-size: clamp(2.5rem, 18vw, 6rem);
    }

    .air-freight-plane-image {
        max-width: 300px;
    }

    .air-freight-content-section {
        padding: 40px 15px;
    }
}
/* ==========================================
   AIR FREIGHT SECTION STYLES
   ========================================== */

/* Air Freight Hero Section */
.air-freight-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    margin-top: 80px;
    padding: 40px 20px;
}

.air-freight-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Text */
.air-freight-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.1;
    z-index: 1;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.05em;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

/* Plane Image Container */
.air-freight-plane-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.air-freight-plane-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.air-freight-plane-image:hover {
    transform: translateY(-10px);
}

/* Air Freight Content Section */
.air-freight-content-section {
    padding: 80px 20px;
    background: transparent;
}

.air-freight-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.air-freight-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.air-freight-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.air-freight-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

/* Dark Mode Styles */
[data-theme="dark"] .air-freight-bg-text {
    color: #ffffff;
    opacity: 0.08;
}

[data-theme="dark"] .air-freight-title {
    color: #ffffff;
}

[data-theme="dark"] .air-freight-description {
    color: #cccccc;
}

[data-theme="dark"] .air-freight-plane-image {
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.1));
}

/* Responsive Design */
@media (max-width: 768px) {
    .air-freight-hero-section {
        min-height: 60vh;
        margin-top: 60px;
        padding: 20px 10px;
    }

    .air-freight-bg-text {
        font-size: clamp(3rem, 15vw, 8rem);
        writing-mode: horizontal-tb;
    }

    .air-freight-plane-container {
        max-width: 90%;
    }

    .air-freight-plane-image {
        max-width: 400px;
    }

    .air-freight-content-section {
        padding: 60px 20px;
    }

    .air-freight-title {
        margin-bottom: 20px;
    }

    .air-freight-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .air-freight-hero-section {
        min-height: 50vh;
        padding: 15px 10px;
    }

    .air-freight-bg-text {
        font-size: clamp(2.5rem, 18vw, 6rem);
    }

    .air-freight-plane-image {
        max-width: 300px;
    }

    .air-freight-content-section {
        padding: 40px 15px;
    }
}
/* ==========================================
   AIR FREIGHT SECTION STYLES - UPDATED
   ========================================== */

/* Air Freight Hero Section */
.air-freight-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    margin-top: 80px;
    padding: 40px 20px;
}

.air-freight-hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.air-freight-main-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Background Text */
.air-freight-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.1;
    z-index: 1;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.05em;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

/* Plane Image Container */
.air-freight-plane-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.air-freight-plane-image {
    width: 100%;
    height: auto;
    max-width: 700px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.air-freight-plane-image:hover {
    transform: translateY(-10px);
}

/* Air Freight Content Section (now part of hero) */
.air-freight-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

.air-freight-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.air-freight-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

/* Dark Mode Styles */
[data-theme="dark"] .air-freight-bg-text {
    color: #ffffff;
    opacity: 0.08;
}

[data-theme="dark"] .air-freight-title {
    color: #ffffff;
}

[data-theme="dark"] .air-freight-description {
    color: #cccccc;
}

[data-theme="dark"] .air-freight-plane-image {
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.1));
}

/* Responsive Design */
@media (max-width: 768px) {
    .air-freight-hero-section {
        min-height: 90vh;
        margin-top: 60px;
        padding: 20px 10px;
    }

    .air-freight-main-content {
        gap: 40px;
    }

    .air-freight-bg-text {
        font-size: clamp(3rem, 15vw, 8rem);
        writing-mode: horizontal-tb;
    }

    .air-freight-plane-container {
        max-width: 90%;
    }

    .air-freight-plane-image {
        max-width: 500px;
    }

    .air-freight-title {
        margin-bottom: 20px;
    }

    .air-freight-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .air-freight-hero-section {
        min-height: 80vh;
        padding: 15px 10px;
    }

    .air-freight-main-content {
        gap: 30px;
    }

    .air-freight-bg-text {
        font-size: clamp(2.5rem, 18vw, 6rem);
    }

    .air-freight-plane-image {
        max-width: 350px;
    }
}
/* ==========================================
   AIR FREIGHT SECTION STYLES - BOOTSTRAP STRUCTURE
   ========================================== */

/* Air Freight Hero Section */
.air-freight-hero-section {
    background: transparent;
    margin-top: 60px;
}

/* Air Freight Background Text */
.air-freight-bg-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Air Freight Hero Image */
.air-freight-hero-img {
    transition: transform 0.3s ease;
}

.air-freight-hero-img:hover {
    transform: translate(-50%, -50%) translateY(-10px) !important;
}

/* Air Freight Hero Title */
.air-freight-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Air Freight Hero Description */
.air-freight-hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Dark Mode Styles */
[data-theme="dark"] .air-freight-bg-text {
    color: #ffffff !important;
    opacity: 0.08 !important;
}

[data-theme="dark"] .air-freight-hero-title {
    color: #ffffff !important;
}

[data-theme="dark"] .air-freight-hero-desc {
    color: #cccccc !important;
}

[data-theme="dark"] .air-freight-hero-img {
    filter: drop-shadow(0 16px 32px rgba(255, 255, 255, 0.1)) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .air-freight-hero-section {
        margin-top: 40px;
    }
    
    .air-freight-bg-text {
        font-size: 12vw !important;
    }
    
    .air-freight-hero-img {
        width: 90% !important;
        max-width: 500px !important;
    }
}

@media (max-width: 480px) {
    .air-freight-hero-section {
        margin-top: 20px;
    }
    
    .air-freight-bg-text {
        font-size: 15vw !important;
    }
    
    .air-freight-hero-img {
        width: 95% !important;
        max-width: 350px !important;
    }
}

/* Fleet Service Link Styles */
.fleet-service-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.fleet-service-link:hover {
    text-decoration: none;
    color: inherit;
}

.fleet-service-link:focus {
    outline: none;
    text-decoration: none;
    color: inherit;
}

.fleet-service-link:visited {
    color: inherit;
}
