:root {
    --brand-navy: #0a2540;
    --brand-navy-2: #0e3a66;
    --brand-orange: #ff7a1a;
    --brand-orange-dark: #e9650a;
    --brand-ink: #0b1a2b;
    --brand-muted: #5b6b7d;
    --brand-cloud: #f4f7fb;
    --brand-cloud-2: #eaf0f7;
    --brand-line: #e3e9f1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

/* Sticky-footer pattern: flex column on body with min-height: 100vh, <main>
   grows to fill remaining space, so on short pages (Error, Track with no
   result) the footer still pins to the viewport bottom instead of floating
   below the hero.

   Important — DO NOT add `html, body { height: 100% }`. That caps both at the
   viewport height, but body's content can exceed it (long pages), which
   creates a nested scroll container: html scrolls AND body scrolls, giving
   double scrollbars and broken anchor jumps. `min-height: 100vh` alone
   handles the sticky-footer case while letting the document scroll
   naturally on tall pages. */
body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--brand-ink);
    background: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Belt-and-braces against decorative pseudo-elements (e.g. orange-glow
       blobs on hero/caption-strip) and the off-canvas mobile drawer that
       sit outside their parent. `clip` (modern equivalent of hidden) is
       preferred here because, unlike `hidden`, it does NOT establish a
       scroll-container that propagates to ancestor html — so any descendant
       overflow can't make the document scroll sideways. It also doesn't
       break `position: sticky` on the header. */
    overflow-x: clip;
    padding-bottom: 52px; /* clearance for the sticky web-alert bar */
}
body > main { flex: 1 0 auto; }
/* The _Footer partial renders <section.caption-strip> + <section.footer-card-section>
   directly under <body>. Pin them so flex doesn't shrink the dark footer card. */
body > .caption-strip,
body > .footer-card-section { flex-shrink: 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.2;
}

a { color: var(--brand-orange); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-orange-dark); }

.container { max-width: 1200px; }

/* ── Top bar ───────────────────────────────────────────────── */
.top-bar {
    background: var(--brand-navy);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    padding: 10px 0;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--brand-orange); }
.top-bar .bi { color: var(--brand-orange); margin-right: 6px; }
.top-bar-meta a { margin-left: 12px; font-size: 16px; }

/* ── Main nav ──────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1030; }
.main-nav {
    background: #fff;
    box-shadow: 0 2px 16px rgba(10,37,64,0.06);
    padding: 14px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-img { height: 44px; width: auto; display: block; }
.brand-logo {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 14px rgba(255,122,26,0.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 19px; color: var(--brand-navy); font-family: 'Manrope', sans-serif; }
.brand-text small { font-size: 11px; color: var(--brand-muted); letter-spacing: 0.5px; text-transform: uppercase; }

.main-nav .nav-link {
    color: var(--brand-ink);
    font-weight: 600;
    padding: 8px 16px !important;
    position: relative;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--brand-orange); }
.main-nav .nav-link.active::after {
    content: '';
    position: absolute; left: 16px; right: 16px; bottom: 0;
    height: 3px; background: var(--brand-orange); border-radius: 2px;
}

.btn-cta {
    background: var(--brand-orange);
    color: #fff;
    border: 0;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(255,122,26,0.35);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-cta:hover { background: var(--brand-orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(255,122,26,0.45); }

/* ── Hero (with optional background video) ────────────────── */
.hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(10,37,64,0.92) 0%, rgba(14,58,102,0.88) 100%),
        url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1800&q=70') center/cover no-repeat;
    color: #fff;
    padding: 110px 0 130px;
    overflow: hidden;
    isolation: isolate;
}
.hero-video-wrap {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: -2;
}
.hero-video-wrap video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.02); /* removes tiny scroll edge */
}
.hero-video-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.78) 0%, rgba(14,58,102,0.72) 60%, rgba(10,37,64,0.92) 100%);
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute; right: -200px; bottom: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,122,26,0.35), transparent 70%);
    pointer-events: none;
}

/* ── Glossy / liquid glass ────────────────────────────────── */
.glossy {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.4);
    border-radius: 18px;
    overflow: hidden;
}
.glossy::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 1.2s ease;
    pointer-events: none;
}
.glossy:hover::before { transform: translateX(100%); }

.glossy-light {
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 100%);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 24px 50px rgba(10,37,64,0.18);
    border-radius: 18px;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,122,26,0.15);
    color: #ffb27a;
    border: 1px solid rgba(255,122,26,0.5);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin-bottom: 18px;
}
.hero h1 .accent { color: var(--brand-orange); }
.hero-lead { font-size: 1.15rem; max-width: 620px; opacity: 0.9; margin-bottom: 30px; }
.hero-actions .btn { padding: 12px 26px; border-radius: 999px; font-weight: 700; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: #fff; color: var(--brand-navy); }

/* ── Section helpers ──────────────────────────────────────── */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-cloud { background: var(--brand-cloud); }
.section-eyebrow {
    color: var(--brand-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.2px;
    font-size: 13px;
    margin-bottom: 10px;
}
.section-title { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 14px; }
.section-sub { color: var(--brand-muted); max-width: 720px; }

/* ── Service cards ────────────────────────────────────────── */
.service-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.service-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--brand-orange);
    transform: translateX(-4px);
    transition: transform .25s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,37,64,0.10);
    border-color: transparent;
}
.service-card:hover::before { transform: translateX(0); }
.service-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--brand-cloud);
    color: var(--brand-orange);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--brand-muted); margin-bottom: 0; }

/* ── Why us / feature list ───────────────────────────────── */
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid var(--brand-line);
    height: 100%;
}
.feature-card .feature-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.feature-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--brand-muted); margin: 0; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #2a3a4d;
}
.check-list li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute; left: 0; top: 0;
    color: var(--brand-orange);
    font-weight: 700;
}

/* ── Counters ─────────────────────────────────────────────── */
.counter-strip {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 24px 50px rgba(10,37,64,0.18);
}
.counter-strip .counter-icon {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 18px rgba(255,122,26,0.35);
    transition: transform .25s ease;
}
.counter-strip .counter-item:hover .counter-icon { transform: translateY(-3px) scale(1.05); }
.counter-strip .counter-item h3 {
    color: var(--brand-orange);
    font-size: 2.4rem;
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
}
.counter-strip .counter-item p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }

/* ── Working process ─────────────────────────────────────── */
.process-step {
    text-align: center;
    padding: 26px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--brand-line);
    position: relative;
    height: 100%;
}
.process-step .step-num {
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    background: var(--brand-orange);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(255,122,26,0.35);
}
.process-step .step-icon {
    font-size: 36px;
    color: var(--brand-navy);
    margin: 20px 0 14px;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { color: var(--brand-muted); font-size: 0.95rem; margin: 0; }

/* ── Tracking form ───────────────────────────────────────── */
.track-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(10,37,64,0.12);
    padding: 28px;
}
.track-form .form-control {
    padding: 14px 18px;
    font-size: 1.05rem;
    border-radius: 12px;
    border: 1px solid var(--brand-line);
}
.track-form .form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.2rem rgba(255,122,26,0.15);
}
.track-result {
    background: var(--brand-cloud);
    border-radius: 14px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid var(--brand-line);
}
.track-meta { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-bottom: 18px; }
.track-meta .label { font-size: 12px; color: var(--brand-muted); text-transform: uppercase; letter-spacing: 0.6px; }
.track-meta .value { font-weight: 700; color: var(--brand-navy); font-size: 1.05rem; }
.track-history { list-style: none; padding: 0; margin: 0; border-left: 2px dashed var(--brand-orange); padding-left: 24px; }
.track-history li { position: relative; padding: 10px 0; }
.track-history li::before {
    content: '';
    position: absolute; left: -32px; top: 16px;
    width: 14px; height: 14px;
    background: #fff;
    border: 3px solid var(--brand-orange);
    border-radius: 50%;
}
.track-history .status { font-weight: 700; color: var(--brand-navy); }
.track-history .when { color: var(--brand-muted); font-size: 13px; }
.track-history .remarks { color: #2a3a4d; font-size: 14px; }

/* ── Tracking 2-column result panel ──────────────────────── */
.track-panel {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 14px;
    padding: 22px 24px;
    height: 100%;
}
.track-panel h5 { color: var(--brand-navy); font-weight: 700; }
.track-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: capitalize;
}
.track-status-pill .pulse-dot {
    width: 10px; height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
    animation: pulse-green 1.6s infinite;
}

/* ── Shipment history vertical timeline (right panel) ────── */
.ship-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.ship-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 17px;
    width: 2px;
    background: #d1d5db;
}
.ship-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 6px 0 18px;
    position: relative;
}
.ship-marker {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #d1d5db;
}
.ship-step.done .ship-marker {
    background: #10b981;
    color: #fff;
    box-shadow: 0 0 0 2px #10b981;
}
.ship-step.active .ship-marker {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(255,122,26,0.25);
    animation: pulse-orange 1.6s infinite;
}
.ship-step.active::after {
    /* faint colour wash on the currently-active row so it reads as "where the
       package is right now" even at a glance. */
    content: "";
    position: absolute;
    inset: -4px -8px -10px -8px;
    background: linear-gradient(180deg, rgba(255,122,26,0.08), transparent);
    border-radius: 12px;
    z-index: 0;
    pointer-events: none;
}
.ship-body { position: relative; z-index: 1; }
.ship-status { font-weight: 700; color: var(--brand-navy); font-size: 1rem; }
.ship-step.active .ship-status { color: var(--brand-orange); }
.ship-when { color: var(--brand-muted); font-size: 13px; margin-top: 2px; }
.ship-remarks { color: #2a3a4d; font-size: 14px; margin-top: 4px; }

@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0   rgba(16,185,129,0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(16,185,129,0);   }
    100% { box-shadow: 0 0 0 0   rgba(16,185,129,0);   }
}
@keyframes pulse-orange {
    0%   { box-shadow: 0 0 0 0   rgba(255,122,26,0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(255,122,26,0);    }
    100% { box-shadow: 0 0 0 0   rgba(255,122,26,0);    }
}
@media (prefers-reduced-motion: reduce) {
    .track-status-pill .pulse-dot,
    .ship-step.active .ship-marker { animation: none; }
}

.alert-empty {
    background: #fff7ec;
    border: 1px solid #ffd9b3;
    color: #8a3e00;
    padding: 16px 18px;
    border-radius: 12px;
    margin-top: 20px;
}
.alert-error {
    background: #fdecee;
    border: 1px solid #f7c2c8;
    color: #8a1f2b;
    padding: 16px 18px;
    border-radius: 12px;
    margin-top: 20px;
}
.alert-success {
    background: #e8f7ee;
    border: 1px solid #bce8cc;
    color: #1d6837;
    padding: 16px 18px;
    border-radius: 12px;
    margin-top: 20px;
}

/* ── Page hero (interior) ────────────────────────────────── */
.page-hero {
    background:
        linear-gradient(135deg, rgba(10,37,64,0.92), rgba(14,58,102,0.88)),
        url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=70') center/cover no-repeat;
    color: #fff;
    padding: 64px 0;
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin: 0; }
.page-hero .breadcrumb-trail { color: rgba(255,255,255,0.75); margin-top: 8px; }
.page-hero .breadcrumb-trail a { color: var(--brand-orange); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    height: 100%;
}
.contact-card .icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--brand-cloud);
    color: var(--brand-orange);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
}
.contact-card h5 { font-size: 1rem; color: var(--brand-muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; }
.contact-card p, .contact-card a { color: var(--brand-ink); font-weight: 600; margin: 0; }

.contact-form .form-control {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--brand-line);
}
.contact-form .form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.2rem rgba(255,122,26,0.15);
}
.honeypot { position: absolute !important; left: -9999px !important; height: 0; width: 0; overflow: hidden; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--brand-navy);
    color: rgba(255,255,255,0.78);
    padding: 70px 0 28px;
    margin-top: 80px;
}
.footer-brand { margin-bottom: 14px; display: inline-flex; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: rgba(255,255,255,0.6); }
.footer-about { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 340px; }
.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.footer-list a { color: rgba(255,255,255,0.78); }
.footer-list a:hover { color: var(--brand-orange); }
.footer-contact .bi { color: var(--brand-orange); margin-right: 8px; }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.12); margin: 40px 0 22px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    margin-right: 8px;
    transition: background .2s ease;
}
.footer-social a:hover { background: var(--brand-orange); color: #fff; }

/* ── Back to top ─────────────────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    background: var(--brand-orange);
    color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(255,122,26,0.4);
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 1040;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--brand-orange-dark); color: #fff; transform: translateY(-3px); }

/* ── CTA strip ───────────────────────────────────────────── */
.cta-strip {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255,122,26,0.25);
}
.cta-strip h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,0.95); margin-bottom: 20px; }
.cta-strip .btn { background: #fff; color: var(--brand-navy); padding: 12px 28px; border-radius: 999px; font-weight: 700; }
.cta-strip .btn:hover { background: var(--brand-navy); color: #fff; }

/* ── Who We Are — Advantages ─────────────────────────────── */
.who-we-are { padding: 90px 0; background: #fff; }
.who-photos {
    position: relative;
    padding: 0 20px;
}
.who-photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10,37,64,0.18);
}
.who-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.who-photo-top { aspect-ratio: 4/3; }
.who-photo-bottom {
    aspect-ratio: 4/3;
    margin-top: -60px;
    margin-left: 30%;
    transform: rotate(-2deg);
}
.who-badge {
    position: absolute;
    border-radius: 22px;
    padding: 22px 26px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.who-badge .num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}
.who-badge .num sup { font-size: 1.1rem; margin-left: 4px; }
.who-badge .lbl { font-size: 0.85rem; opacity: 0.95; margin-top: 4px; display: block; letter-spacing: 0.3px; }
.who-badge-orange {
    top: 18%;
    right: -10px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
}
.who-badge-dark {
    bottom: 12%;
    left: -10px;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
}

.advantages h2 { margin-bottom: 16px; }
.advantage-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 26px 0;
}
.advantage-tile {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 16px;
    border: 1px solid var(--brand-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(10,37,64,0.04);
}
.advantage-tile .ic {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--brand-cloud);
    color: var(--brand-orange);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex: 0 0 52px;
}
.advantage-tile h5 { font-size: 1rem; margin: 0; color: var(--brand-navy); line-height: 1.25; }
.advantage-divider { border-top: 1px solid var(--brand-line); margin: 12px 0 20px; }
.advantage-bullets { list-style: none; padding: 0; margin: 0 0 26px; }
.advantage-bullets li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: #2a3a4d;
}
.advantage-bullets li::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    position: absolute; left: 0; top: 0;
    color: var(--brand-orange);
    font-weight: 700;
}
.advantage-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.call-block {
    display: flex; align-items: center; gap: 14px;
}
.call-block .ring {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--brand-navy);
    color: var(--brand-orange);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.call-block .lbl { color: var(--brand-muted); font-size: 0.85rem; margin: 0; }
.call-block .num { color: var(--brand-orange); font-weight: 800; font-size: 1.15rem; margin: 0; font-family: 'Manrope', sans-serif; }

/* ── Services Carousel ───────────────────────────────────── */
.services-carousel-section { padding: 80px 0; background: #f4f7fb; }
.services-carousel-section .header-row {
    display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap;
    margin-bottom: 36px;
}
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrow {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--brand-orange);
    color: #fff;
    border: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(255,122,26,0.3);
    transition: transform .15s ease, background .15s ease;
}
.carousel-arrow:hover { background: var(--brand-orange-dark); transform: translateY(-2px); }
.carousel-arrow:disabled { background: #c9d2dd; box-shadow: none; cursor: not-allowed; }

.services-track {
    display: grid;
    grid-auto-flow: column;
    /* Desktop: show exactly 3 cards. With two 24px gaps between them,
       each card gets (100% - 48px) / 3. */
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 12px;
    scroll-behavior: smooth;
}
/* Tablet: drop to 2 cards. */
@media (max-width: 991.98px) {
    .services-track { grid-auto-columns: calc((100% - 24px) / 2); }
}
.services-track::-webkit-scrollbar { display: none; }

.service-slide {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(10,37,64,0.06);
    scroll-snap-align: start;
    display: flex; flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,37,64,0.12);
}
.service-slide-head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.service-slide-head .ic {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex: 0 0 44px;
}
.service-slide-head h3 { font-size: 1.1rem; margin: 0; color: var(--brand-navy); }
.service-slide-img {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 16px;
    position: relative;
}
.service-slide-img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-slide:hover .service-slide-img img { transform: scale(1.06); }
.service-slide p {
    color: var(--brand-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 16px;
}
.service-slide-foot {
    border-top: 1px solid var(--brand-line);
    padding-top: 14px;
    display: flex; align-items: center; justify-content: space-between;
}
.service-slide-foot a {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--brand-ink);
    font-weight: 700;
}
.service-slide-foot a .arrow {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--brand-cloud);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .15s ease, color .15s ease;
}
.service-slide-foot a:hover { color: var(--brand-orange); }
.service-slide-foot a:hover .arrow { background: var(--brand-orange); color: #fff; }

.carousel-dots {
    display: flex; gap: 10px; justify-content: center; align-items: center;
    margin-top: 24px;
}
.carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(10,37,64,0.18);
    border: 0;
    cursor: pointer;
    transition: background .2s ease, width .2s ease;
}
.carousel-dot.active {
    background: var(--brand-orange);
    width: 32px;
    border-radius: 6px;
}
.services-tagline { text-align: center; color: var(--brand-muted); margin-top: 16px; }

/* ── Clients Marquee ─────────────────────────────────────── */
.clients-strip {
    background: #fff;
    padding: 36px 0;
    border-top: 1px solid var(--brand-line);
    border-bottom: 1px solid var(--brand-line);
    overflow: hidden;
}
.marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
.marquee-item {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 48px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: rgba(10,37,64,0.35);
    white-space: nowrap;
    transition: color .2s ease;
}
.marquee-item:hover { color: var(--brand-orange); }
.marquee-item .bi { margin-right: 10px; font-size: 1.6rem; }
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Caption strip (sits above the dark footer card) ─────── */
.caption-strip {
    background:
        linear-gradient(135deg, rgba(10,37,64,0.88) 0%, rgba(14,58,102,0.86) 100%),
        url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=70') center/cover no-repeat;
    color: #fff;
    padding: 80px 0;
    position: relative;
    /* Clip the orange-glow ::after that sits at right: -180px so it doesn't
       poke past the viewport on narrow screens. */
    overflow: hidden;
}
.caption-strip::after {
    /* Soft orange glow on the right edge — matches the hero treatment so the
       caption section feels visually connected to the top of the page. */
    content: '';
    position: absolute;
    right: -180px; bottom: -180px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255,122,26,0.28), transparent 70%);
    pointer-events: none;
}
.caption-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.caption-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,122,26,0.15);
    color: #ffb27a;
    border: 1px solid rgba(255,122,26,0.5);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.caption-headline {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin: 0 0 14px;
    line-height: 1.25;
}
.caption-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 680px;
    line-height: 1.7;
}

/* ── Footer card ─────────────────────────────────────────── */
.footer-card-section {
    background:
        linear-gradient(135deg, rgba(10,37,64,0.92) 0%, rgba(14,58,102,0.88) 100%),
        url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=70') center/cover no-repeat;
    padding: 0 0 36px;
    margin-top: 0;
}
.footer-card {
    border-radius: 22px;
    padding: 56px 48px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    background: rgba(24, 37, 58, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
  
   
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.footer-card h6.footer-heading {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.footer-card h6.footer-heading::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 36px; height: 3px;
    background: var(--brand-orange);
    border-radius: 2px;
}
.hours-table { list-style: none; padding: 0; margin: 0 0 24px; }
.hours-table li {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
}
.hours-table li span:last-child { color: #fff; font-weight: 600; }
.btn-pill-light {
    background: #fff;
    color: var(--brand-navy);
    border: 0;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-pill-light:hover { background: var(--brand-orange); color: #fff; }

.footer-tail {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding-top: 28px;
}
.footer-tail a { color: var(--brand-orange); }

/* ── Mobile slide-in nav drawer (close button + backdrop in _Header.cshtml) ── */
.nav-close, .nav-backdrop { display: none; }    /* desktop default: hidden */

@media (max-width: 991.98px) {
    .hero { padding: 70px 0 90px; }

    /* Hamburger styling — bigger tap target, brand-coloured. */
    .navbar-toggler {
        border: 0;
        padding: 8px 10px;
        background: var(--brand-cloud);
        border-radius: 10px;
    }
    .navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(255,122,26,0.25); }

    /* Override Bootstrap collapse → fixed-position slide-in drawer.
       Bootstrap still toggles the .show class on click; we just swap
       its display/transform behavior. !important is needed to win over
       Bootstrap's `.collapse:not(.show) { display: none }` rule. */
    .navbar-collapse {
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 86vw);
        background: #fff;
        box-shadow: -12px 0 36px rgba(10,37,64,0.18);
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        padding: 70px 24px 28px;
        z-index: 1050;
        overflow-y: auto;
        visibility: hidden;
    }
    .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
    }

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        gap: 4px;
        margin: 0;
        width: 100%;
    }
    .navbar-collapse .nav-item { width: 100%; }
    .navbar-collapse .nav-link {
        padding: 14px 16px !important;
        border-radius: 10px;
        font-weight: 600;
        color: var(--brand-ink);
    }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        background: var(--brand-cloud);
        color: var(--brand-orange);
    }
    .navbar-collapse .nav-link.active::after { display: none; }
    .main-nav .btn-cta {
        display: block;
        text-align: center;
        margin-top: 22px;
    }

    /* Close (X) button inside the drawer. */
    .nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 0;
        background: var(--brand-cloud);
        color: var(--brand-navy);
        font-size: 1.1rem;
        cursor: pointer;
        transition: background 0.15s ease, color 0.15s ease;
    }
    .nav-close:hover { background: var(--brand-orange); color: #fff; }

    /* Dim backdrop. Lights up when the panel has .show — sibling selector
       depends on backdrop sitting AFTER #nav-main in the DOM. */
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(10, 37, 64, 0.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
        z-index: 1045;
        cursor: pointer;
    }
    .navbar-collapse.show ~ .nav-backdrop {
        opacity: 1;
        visibility: visible;
    }

    /* Lock body scroll while the drawer is open. */
    body:has(.navbar-collapse.show) { overflow: hidden; }

    .services-track { grid-auto-columns: 85%; }
    .who-photo-bottom { margin-left: 12%; margin-top: -40px; }
    .who-badge { padding: 16px 18px; }
    .who-badge .num { font-size: 1.8rem; }
    .footer-card { padding: 36px 22px; }
}
@media (max-width: 575px) {
    .advantage-tiles { grid-template-columns: 1fr; }
    .marquee-item { padding: 0 28px; font-size: 1.1rem; }
}

/* ── Hero search tabs (Track / Pincode / Location) ───────── */
.hero-search-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.hero-search-card .hero-tabs {
    flex-wrap: nowrap;
    background: rgba(0,0,0,0.25);
    padding: 6px;
    gap: 4px;
    border-radius: 0;
    margin: 0;
}
.hero-search-card .hero-tabs .nav-item { flex: 1 1 0; display: flex; }
.hero-search-card .hero-tabs .nav-link {
    flex: 1 1 0;
    background: transparent;
    color: rgba(255,255,255,0.78);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 12px 10px;
    border-radius: 10px;
    border: 0;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.hero-search-card .hero-tabs .nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.hero-search-card .hero-tabs .nav-link.active {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 6px 14px rgba(255,122,26,0.4);
}
.hero-search-card .hero-tabs .nav-link i { margin-right: 6px; }
.hero-search-card .hero-tabs-content { padding: 22px 22px 26px; }
.hero-search-card .tab-pane h5 { color: #fff; font-weight: 700; }
.hero-search-card .tab-pane p.small { color: rgba(255,255,255,0.8); }
.hero-search-card .track-form .form-control {
    background: rgba(255,255,255,0.94);
    border-color: rgba(255,255,255,0.94);
    color: var(--brand-ink);
}
.hero-search-card .track-form .form-control::placeholder { color: var(--brand-muted); }

/* ── Locator standalone page reuses the .track-card frame ── */
.locator-tabs {
    background: var(--brand-cloud);
    padding: 6px;
    border-radius: 12px;
    gap: 4px;
}
.locator-tabs .nav-item { flex: 1 1 0; display: flex; }
.locator-tabs .nav-link {
    flex: 1 1 0;
    color: var(--brand-navy);
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    border: 0;
    background: transparent;
    text-align: center;
}
.locator-tabs .nav-link:hover { background: rgba(10,37,64,0.06); color: var(--brand-navy); }
.locator-tabs .nav-link.active {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255,122,26,0.35);
}
.locator-tabs .nav-link i { margin-right: 6px; }

.locator-result {
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid var(--brand-line);
    background: #fff;
    box-shadow: 0 8px 22px rgba(10,37,64,0.06);
}
.locator-result.is-yes { border-color: #a7f3d0; background: linear-gradient(135deg, #ecfdf5, #fff); }
.locator-result.is-no  { border-color: #fcd34d; background: linear-gradient(135deg, #fffbeb, #fff); }
.locator-result h5 { color: var(--brand-navy); margin: 0 0 4px; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-accordion .accordion-item {
    border: 1px solid var(--brand-line);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(10,37,64,0.05);
}
.faq-accordion .accordion-button {
    background: #fff;
    color: var(--brand-navy);
    font-weight: 700;
    padding: 18px 22px;
    border: 0;
    box-shadow: none;
    font-size: 1.02rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--brand-cloud);
    color: var(--brand-navy);
    box-shadow: inset 0 -1px 0 var(--brand-line);
}
.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,122,26,0.18);
}
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a2540'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
    padding: 20px 22px;
    color: #2a3a4d;
    background: #fff;
    line-height: 1.7;
}
.faq-num {
    display: inline-block;
    min-width: 36px;
    margin-right: 12px;
    color: var(--brand-orange);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
}
.faq-cta {
    background: linear-gradient(135deg, var(--brand-cloud), #fff);
    border: 1px dashed var(--brand-line);
    border-radius: 16px;
    padding: 36px 28px;
}

/* ── Legal docs (Privacy, Terms) ─────────────────────────── */
.legal-doc {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 10px 30px rgba(10,37,64,0.05);
}
.legal-doc .legal-meta {
    color: var(--brand-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--brand-line);
}
.legal-doc h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--brand-navy);
}
.legal-doc h2:first-of-type { margin-top: 28px; }
.legal-doc .legal-intro {
    color: #2a3a4d;
    line-height: 1.75;
    margin-bottom: 14px;
}
.legal-doc p, .legal-doc li { color: #2a3a4d; line-height: 1.75; }
.legal-doc ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.legal-doc ul li { margin-bottom: 6px; }
.legal-doc a { color: var(--brand-orange); }
.legal-doc a:hover { color: var(--brand-orange-dark); }
@media (max-width: 575px) {
    .legal-doc { padding: 24px 20px; }
}

/* ── Web Alert ticker (sticky bottom bar, pauses on hover) ──── */
.web-alert-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--brand-navy);
    border-top: 2px solid rgba(255,255,255,0.10);
    color: #fff;
    overflow: hidden;
}
.web-alert-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 48px;
}
.web-alert-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #fff;
    padding-right: 16px;
    border-right: 1px solid rgba(255,255,255,0.14);
    white-space: nowrap;
}
.web-alert-label .bi { color: var(--brand-orange); font-size: 1rem; }
/* The viewport clips; the track is the moving ribbon. */
.web-alert-viewport { flex: 1 1 auto; overflow: hidden; }
.web-alert-track {
    display: flex;
    width: max-content;
    animation: web-alert-scroll 32s linear infinite;
}
/* Pause when the visitor hovers (or focuses a link inside) the ticker. */
.web-alert-viewport:hover .web-alert-track,
.web-alert-track:focus-within { animation-play-state: paused; }
.web-alert-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    font-size: 0.95rem;
    line-height: 1.3;
    white-space: nowrap;
    color: rgba(255,255,255,0.92);
    border-left: 3px solid transparent;
}
.web-alert-item .bi { font-size: 1.1rem; }
.web-alert-item a { color: inherit; text-decoration: none; }
.web-alert-item a:hover { color: #fff; text-decoration: underline; }
/* Type accents — colour the leading icon (+ left bar on larger screens). */
.web-alert-item.wa-info .bi    { color: #5bb4ff; }
.web-alert-item.wa-success .bi { color: #4ddca0; }
.web-alert-item.wa-warning .bi { color: #ffc24b; }
.web-alert-item.wa-danger .bi  { color: #ff6b6b; }
@keyframes web-alert-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .web-alert-track { animation: none; flex-wrap: wrap; white-space: normal; }
}
@media (max-width: 575px) {
    .web-alert-label { display: none; }
    .web-alert-item { padding: 0 20px; font-size: 0.86rem; }
}
