/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-divine {
    color: #00ffff;
}

.brand-traders {
    color: #ff00ff;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #a0a0a0;
    font-weight: 500;
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    border-radius: 1px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.mobile-menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.mobile-menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.mobile-menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer Styles */
.footer {
    background: #0a0a0a;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-upper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.brand-name {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.brand-description {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 16px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    width: 20px;
    text-align: center;
}

.contact-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    line-height: 1.3;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.footer-lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.heart {
    color: #ff0000;
    font-size: 16px;
    text-shadow: 0 0 10px #ff0000;
}

.hercules-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px #00ffff;
    transition: all 0.3s ease;
}

.hercules-link:hover {
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
}

.social-icon.linkedin {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.social-icon.linkedin:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.social-icon.twitter {
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.social-icon.twitter:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.social-icon.facebook {
    border-color: #8000ff;
    box-shadow: 0 0 15px rgba(128, 0, 255, 0.3);
}

.social-icon.facebook:hover {
    background: rgba(128, 0, 255, 0.1);
    box-shadow: 0 0 25px rgba(128, 0, 255, 0.5);
}

.social-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
}


/* Grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

/* Subtle city skyline background */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    margin-bottom: 40px;
}

.logo-box {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px 30px;
    display: inline-block;
    margin-bottom: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
}

.logo-divine {
    color: #00ffff;
}

.logo-traders {
    color: #ff00ff;
}

.tagline {
    font-size: 14px;
    color: white;
    margin-top: 5px;
}

.main-heading {
    font-size: 4.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
    line-height: 1.1;
    margin-bottom: 30px;
    /* max-width: 800px; */
}

/* New section styles */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding: 80px 0; */
}

.section-heading {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 40px;
    max-width: 900px;
}

.section-heading-line1 {
    color: #00ffff;
    /* text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff; */
    display: block;
}

.section-heading-line2 {
    background: linear-gradient(45deg, #00ffff, #ff00ff, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-shadow: 0 0 20px #ff00ff, 0 0 40px #8000ff; */
    display: block;
}

.content-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
}

.description {
    font-size: 18px;
    line-height: 1.8;
    /* max-width: 600px; */
    /* text-align: left; */
    color: #e0e0e0;
}

.description p {
    margin-bottom: 20px;
}

.highlight {
    font-weight: bold;
    /* text-shadow: 0 0 10px currentColor; */
}

.highlight-freight {
    color: #00ffff;
}

.highlight-customs {
    color: #ff00ff;
}

.highlight-logistics {
    color: #8000ff;
}

.cargo-icon {
    width: 120px;
    height: 80px;
    position: relative;
    margin-top: 20px;
}

.ship {
    width: 100%;
    height: 25px;
    background: transparent;
    border: 3px solid #00ffff;
    border-radius: 0 0 15px 15px;
    position: relative;
    box-shadow: 0 0 15px #00ffff;
}

.water-lines {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 8px;
}

.water-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #00ffff;
    border-radius: 1px;
    box-shadow: 0 0 8px #00ffff;
}

.water-line:nth-child(1) {
    bottom: 0;
    opacity: 0.8;
}

.water-line:nth-child(2) {
    bottom: 3px;
    opacity: 0.6;
}

.containers {
    position: absolute;
    top: -50px;
    left: 15px;
    display: flex;
    gap: 4px;
    align-items: end;
}

.container-box {
    width: 15px;
    border-radius: 3px;
    position: relative;
}

.container-1 { 
    height: 30px; 
    background: linear-gradient(45deg, #00ffff, #0080ff);
    box-shadow: 0 0 10px #00ffff;
}
.container-2 { 
    height: 40px; 
    background: linear-gradient(45deg, #ff00ff, #8000ff);
    box-shadow: 0 0 10px #ff00ff;
}
.container-3 { 
    height: 25px; 
    background: linear-gradient(45deg, #8000ff, #4000ff);
    box-shadow: 0 0 10px #8000ff;
}
.container-4 { 
    height: 35px; 
    background: linear-gradient(45deg, #00ffff, #00ff80);
    box-shadow: 0 0 10px #00ffff;
}
.container-5 { 
    height: 20px; 
    background: linear-gradient(45deg, #ff00ff, #ff0080);
    box-shadow: 0 0 10px #ff00ff;
}

.pixel-effects {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 20px;
}

.pixel {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.pixel:nth-child(1) {
    background: #00ffff;
    top: 5px;
    left: 20px;
    animation-delay: 0s;
}

.pixel:nth-child(2) {
    background: #ff00ff;
    top: 10px;
    left: 40px;
    animation-delay: 0.5s;
}

.pixel:nth-child(3) {
    background: #8000ff;
    top: 8px;
    left: 60px;
    animation-delay: 1s;
}

.pixel:nth-child(4) {
    background: #00ffff;
    top: 12px;
    left: 80px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 2px solid;
}

.btn-primary {
    background: transparent;
    border-color: #00ffff;
    color: white;
}

.btn-primary:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 20px #00ffff;
}

.btn-secondary {
    background: white;
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    /* bottom: 30px; */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #00ffff;
    font-size: 14px;
}

.scroll-arrow {
    display: block;
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Services Section */
.services-section {
    /* padding: 100px 0; */
    background: #0a0a0a;
    position: relative;
    margin-top: -10rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 10px;
}

.service-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
    flex: 1 1 0; /* ensure equal widths across row */
    min-width: 0; /* prevent overflow affecting width calculations */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-globe {
    width: 40px;
    height: 40px;
    border: 3px solid #00ffff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px #00ffff;
}

.icon-globe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #00ffff;
    border-radius: 50%;
}

.icon-globe::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 2px;
    background: #00ffff;
    box-shadow: 0 0 5px #00ffff;
}

.icon-dollar {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px #00ffff;
}

.icon-dollar::before {
    content: '$';
    font-size: 32px;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}

.icon-lightning {
    width: 40px;
    height: 40px;
    position: relative;
    color: #00ffff;
}

.icon-lightning::before {
    content: '⚡';
    font-size: 32px;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-headphones {
    width: 40px;
    height: 40px;
    position: relative;
    color: #00ffff;
}

.icon-headphones::before {
    content: '🎧';
    font-size: 24px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: left;
}

.gradient-line {
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Network Section */
.network-section {
    padding: 0px 0px 100px 0px;
    background: #0a0a0a;
    position: relative;
}

.network-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.descriptive-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.descriptive-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.descriptive-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.1);
}

.card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.icon-circle.blue {
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff;
}

.icon-circle.green {
    background: #00ff80;
    box-shadow: 0 0 10px #00ff80;
}

.icon-line {
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #00ffff 50%, #ff00ff 50%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-description {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.4;
    margin: 0;
}

.statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: left;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #00ffff;
    /* text-shadow: 0 0 20px #00ffff; */
    line-height: 1;
    text-align: center;
}

.stat-label {
    font-size: 16px;
    color: #b0b0b0;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

/* Shipment Routes Section */
.routes-section {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: -16rem;
}

.map-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    background: #0f0f10;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    aspect-ratio: 2 / 1; /* matches 1000x500 SVG */
}

.map-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Ocean tint + background map image similar to reference */
    background:
        radial-gradient(120% 120% at 50% 50%, rgba(0, 40, 80, 0.6) 0%, rgba(0, 20, 40, 0.8) 60%, rgba(0, 10, 20, 0.95) 100%),
        url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg') center/100% 100% no-repeat,
        #0b6ea8;
    opacity: 0.9;
    z-index: 0;
}

.map-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Subtle shipping-lane style lines pattern */
    background:
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0px, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 22px),
        repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 26px);
    mix-blend-mode: overlay;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.world-map {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Responsive tweaks for map section */
@media (max-width: 768px) {
    .routes-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .route-line {
        stroke-width: 2.2;
        stroke-dasharray: 8 7;
    }
    .marker-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        border-radius: 10px;
    }
    .route-line {
        stroke-width: 2;
        stroke-dasharray: 7 6;
    }
    .marker-label {
        font-size: 9px;
    }
}

.route-line {
    fill: none;
    stroke: url(#routeGradient);
}

/* Fallback solid stroke if gradient not present */
.route-line {
    stroke: rgba(0, 255, 255, 0.9);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 10 8;
    animation: dash-move 2.5s linear infinite;
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.6));
}

@keyframes dash-move {
    to { stroke-dashoffset: -18; }
}

.marker {
    fill: #ff00ff;
    stroke: #ffffff;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 6px rgba(255, 0, 255, 0.6));
}

.marker-label {
    font-size: 12px;
    fill: #e0e0e0;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
    dominant-baseline: central;
    text-anchor: middle;
}

.ship-dot {
    fill: #00ffff;
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.8));
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #001a1a 30%, #1a001a 70%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-banner {
    background: #1a1a1a;
    border: 1px solid #00ffff;
    border-radius: 50px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.banner-icon {
    color: #00ffff;
    font-size: 16px;
    text-shadow: 0 0 10px #00ffff;
}

.banner-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-heading {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-line1 {
    display: block;
    color: #00ffff;
    /* text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff; */
}

.hero-line2 {
    display: block;
    margin-top: 10px;
}

.hero-with {
    color: #b0b0b0;
    font-size: 3rem;
    font-weight: 300;
}

.hero-confidence {
    color: #ff00ff;
    /* text-shadow: 0 0 30px #ff00ff, 0 0 60px #ff00ff; */
    font-size: 4rem;
    font-weight: bold;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 50px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.hero-btn-outline {
    background: transparent;
    border: 2px solid #00ffff;
    color: white;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.hero-btn-outline:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 30px #00ffff;
    transform: translateY(-2px);
}

.hero-btn-filled {
    background: #1a1a1a;
    border: 2px solid #ff00ff;
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.hero-btn-filled:hover {
    background: #ff00ff;
    color: #0a0a0a;
    box-shadow: 0 0 30px #ff00ff;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-bullet.cyan {
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff;
}

.feature-bullet.magenta {
    background: #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
}

.feature-bullet.purple {
    background: #8000ff;
    box-shadow: 0 0 10px #8000ff;
}

.feature-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-upper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.brand-name {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.brand-description {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 16px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    width: 20px;
    text-align: center;
}

.contact-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    line-height: 1.3;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.footer-lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.heart {
    color: #ff0000;
    font-size: 16px;
    text-shadow: 0 0 10px #ff0000;
}

.hercules-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px #00ffff;
    transition: all 0.3s ease;
}

.hercules-link:hover {
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
}

.social-icon.linkedin {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.social-icon.linkedin:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.social-icon.twitter {
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.social-icon.twitter:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.social-icon.facebook {
    border-color: #8000ff;
    box-shadow: 0 0 15px rgba(128, 0, 255, 0.3);
}

.social-icon.facebook:hover {
    background: rgba(128, 0, 255, 0.1);
    box-shadow: 0 0 25px rgba(128, 0, 255, 0.5);
}

.social-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(0, 255, 255, 0.1);
    }
    
    .header-nav.mobile-nav-open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 255, 255, 0.1);
        color: #00ffff;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .main-heading, .section-heading {
        font-size: 2.5rem;
    }
    
    .content-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .description {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .footer-upper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-lower {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .main-heading, .section-heading {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .network-section {
        padding: 60px 0;
    }
    
    .descriptive-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .descriptive-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .statistics {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-line1 {
        font-size: 2.5rem;
    }
    
    .hero-with {
        font-size: 2rem;
    }
    
    .hero-confidence {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 200px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-line1 {
        font-size: 2rem;
    }
    
    .hero-with {
        font-size: 1.5rem;
    }
    
    .hero-confidence {
        font-size: 2rem;
    }
    
    .hero-banner {
        padding: 10px 15px;
    }
    
    .banner-text {
        font-size: 12px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-upper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-lower {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-copyright {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-upper {
        gap: 30px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .contact-text {
        font-size: 13px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-text {
        font-size: 12px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00FFFF, #FF00FF);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
    background: linear-gradient(135deg, #FF00FF, #8A2BE2);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Responsive adjustments for scroll to top button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

.cargo-ship-animation {
    position: fixed;
    bottom: 30%;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    justify-content: flex-start;
}

.cargo-ship-animation .cargo-ship-track {
    width: fit-content;
    transform: translateX(-150vw);
    animation: cargoShipTravel 90s linear infinite;
    will-change: transform;
}

.cargo-ship-animation svg {
    display: block;
    transform-origin: center center;
    animation: cargoShipFlip 90s linear infinite;
    will-change: transform;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
}

.fade-in-up.is-visible {
    animation: fadeInUp 0.9s ease forwards;
}

@keyframes cargoShipTravel {
    0% {
        transform: translateX(-150vw);
    }

    50% {
        transform: translateX(150vw);
    }

    100% {
        transform: translateX(-150vw);
    }
}

@keyframes cargoShipFlip {
    0%,
    49.999% {
        transform: scaleX(1);
    }

    50%,
    100% {
        transform: scaleX(-1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
