/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0f172a;
    --ink-2: #1f2a44;
    --brand: #f8b732;
    --brand-dark: #d99612;
    --slate: #64748b;
    --muted: #94a3b8;
    --card: #ffffff;
    --bg: #f8fafc;
    --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.08);
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: var(--bg);
}

body.nav-open {
    overflow: hidden;
}

main {
    margin-top: 140px;
}

section {
    padding: 80px min(8vw, 120px);
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    color: var(--ink);
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--slate);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--brand);
    margin-bottom: 16px;
}

.lead {
    color: var(--slate);
    font-size: 1.1rem;
    max-width: 560px;
}

.btn {
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
}

.btn.primary {
    background: linear-gradient(135deg, var(--brand), #ffd168);
    color: #1b1b1f;
    box-shadow: 0 15px 30px rgba(248, 183, 50, 0.4);
}

.btn.primary:hover {
    transform: translateY(-2px);
}

.btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(15, 23, 42, 0.2);
}

.btn.ghost:hover {
    border-color: var(--ink);
}

/* Navigation Bar */
.navbar {
    background: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    margin: 0 auto;
    padding: 10px 20px 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Left Side */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 100px;
    width: 150px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo a:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 8px rgba(255, 215, 0, 0.5));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;

    /* ⭐ ADDED → Ensures menu stays right */
    margin-left: auto;
}

.nav-menu.is-open,
.nav-menu.active {
    left: 0;
}

.nav-item {
    position: relative;
}

/* Dropdown Menu for Home1 */
.home-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    list-style: none;
    padding: 10px 0;
    margin: 5px 0 0 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1001;
}

.home-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: transparent;
    color: #ffd700;
    padding-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    display: block;
    border-radius: 25px;
    background: transparent;
}

.nav-link:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.is-open .bar:nth-child(1),
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.is-open .bar:nth-child(2),
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open .bar:nth-child(3),
.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 70px;
        width: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        margin: 5px 20px;
        border-radius: 10px;
    }

    .nav-link:hover {
        background: transparent;
        color: #ffd700;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .home-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 10px 40px;
        font-size: 14px;
    }
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    padding-top: 120px;
    align-items: center;
}

.hero__content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--ink);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--slate);
}

.hero__trust img {
    width: 140px;
    height: auto;
    opacity: 0.7;
}

.hero__globe {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(145deg, #111827, #1f2937);
    color: #fff;
    box-shadow: var(--shadow-soft);
    min-height: 360px;
    overflow: hidden;
}

.globe-visual {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent);
}

.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    transform: translate(-50%, -50%);
    animation: pulse 2.5s infinite;
}

.pulse.delay {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(5);
        opacity: 0;
    }
}

.status-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 23, 42, 0.8);
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.status-card strong {
    font-size: 2.2rem;
    display: block;
}

/* Metrics */
.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    background: #fff;
    margin: 40px min(5vw, 80px);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.metric-card {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.metric-card:last-child {
    border-right: none;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--ink);
}

.metric-suffix {
    vertical-align: super;
    margin-left: 4px;
    color: var(--ink);
}
/*dashboard*/
.dashboard {
    background: #f1f5f9;
}

.dashboard-tabs {
    display: inline-flex;
    gap: 12px;
    background: #fff;
    padding: 8px;
    border-radius: 999px;
    margin: 0 auto 40px;
    box-shadow: var(--shadow-soft);
}

.dashboard-tab {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--slate);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.dashboard-tab.active {
    background: #0f172a;
    color: #fff;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.chart-card {
    background: #fff;
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.range-pill,
.badge {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.range-pill {
    background: rgba(15, 23, 42, 0.08);
    color: var(--ink);
}

.badge.neutral {
    background: rgba(148, 163, 184, 0.2);
    color: #475569;
}

.chart-legend {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--slate);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.legend-dot.primary {
    background: #2563eb;
}

.legend-dot.secondary {
    background: #a5b4fc;
}

#volumeChart {
    width: 100%;
    height: auto;
}

.lane-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lane-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
}

.lane-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lane-route {
    font-weight: 600;
    color: var(--ink);
}

.lane-mode {
    font-size: 0.85rem;
    color: var(--slate);
}

.lane-metrics {
    text-align: right;
}

.lane-loads {
    font-weight: 600;
    color: var(--ink);
}

.lane-trend {
    font-size: 0.85rem;
    color: #22c55e;
}

.lane-trend.negative {
    color: #ef4444;
}

.lane-footnote {
    font-size: 0.85rem;
    color: var(--slate);
}
/*summary/*/
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-card {
    background: #fff;
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-card .label {
    font-size: 0.85rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.summary-card strong {
    font-size: 2rem;
    color: var(--ink);
}

.summary-card small {
    color: var(--muted);
}

/* Services */
.services {
    background: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card);
    padding: 32px;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(248, 183, 50, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-circle img {
    width: 48px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--slate);
    margin-bottom: 14px;
}

.service-card ul {
    list-style: none;
    color: var(--ink);
}

.service-card li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
}

.service-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/* Process */
.process {
    background: linear-gradient(135deg, #0f172a, #1f2937);
    color: #fff;
}

.process .section-heading h2,
.process .section-heading p {
    color: #fff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.process-step {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.4);
}

.step-number {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand);
}

.process-step h3 {
    margin: 16px 0 10px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.78);
}

/* FAQ */
.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-icon {
    font-size: 1.6rem;
    color: var(--brand);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--slate);
    transition: max-height 0.3s ease, padding-bottom 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 22px;
}

/* CTA */
.cta {
    background: #fff;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    margin: 60px min(5vw, 80px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    margin-bottom: 18px;
}

.contact-list {
    list-style: none;
    margin-top: 20px;
    color: var(--ink);
}

.contact-list li + li {
    margin-top: 8px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-form input,
.cta-form textarea {
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.2s, box-shadow 0.2s;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(248, 183, 50, 0.25);
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }

    .hero {
        padding-top: 80px;
    }

    .metrics {
        margin: 20px;
    }

    .dashboard-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .chart-card {
        padding: 24px;
    }

    .cta {
        margin: 20px;
        padding: 40px 20px;
    }
}
/* Footer */
/* Footer */
/* -------------------------
   FOOTER BASE STYLES
------------------------- */
.site-footer {
    background: #0f172a; /* Dark navy logistics theme */
    color: #e2e8f0;
    padding: 60px 20px 30px;
    font-family: "Poppins", sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* -------------------------
   BRAND + ABOUT SECTION
------------------------- */
.footer-brand {
    flex: 1.6;
    min-width: 280px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* -------------------------
   EMAIL SUBSCRIBE
------------------------- */
.footer-subscribe {
    margin-top: 20px;
}

.subscribe-label {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 10px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.subscribe-button {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
}

.subscribe-button:hover {
    background: #1d4ed8;
}

.subscribe-hint {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* -------------------------
   FOOTER LINKS
------------------------- */
.footer-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    min-width: 250px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

/* -------------------------
   FOOTER BOTTOM
------------------------- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 25px;
    display: flex;
    flex-direction: column;   /* Stack items */
    align-items: center;      /* Center horizontally */
    justify-content: center;  
    text-align: center;       /* Center text */
    gap: 12px;
   
}

.footer-bottom-left p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 12px;
    margin-top: 6px;
     justify-content: center;
}

.footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #fff;
}

/* -------------------------
   SOCIAL ICONS
------------------------- */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icon:hover {
    background: #2563eb;
}

/* -------------------------
   RESPONSIVE STYLES
------------------------- */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-columns {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

