/* ==========================================================================
   Sangharsh India Logistics - 2026 Ultra-Modern Standard Stylesheet
   Fully Responsive (Mobile, Tablet, Laptop, Desktop, 4K) & Fluid Layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@600;700&display=swap');

:root {
    /* Brand Harmonized Colors */
    --primary-dark: #0B1329;
    --primary-navy: #152238;
    --primary-slate: #1E293B;
    --accent-orange: #FF6B00;
    --accent-orange-dark: #E05D00;
    --accent-orange-text: #A83E00; /* AA-compliant (4.5:1+) orange for small text/links on white */
    --accent-amber: #F59E0B;
    --accent-cyan: #0284C7;
    --accent-emerald: #10B981;
    
    /* Neutral & Surface Colors */
    --bg-light: #F8FAFC;
    --bg-surface: #F1F5F9;
    --bg-card: #FFFFFF;
    --border-light: #E2E8F0;
    --border-glow: rgba(255, 107, 0, 0.25);
    
    /* High-Contrast Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    --text-light: #E2E8F0;
    --text-white: #FFFFFF;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 35px rgba(15, 23, 42, 0.12);
    --shadow-orange: 0 10px 25px rgba(255, 107, 0, 0.3);
    
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary);
    background-color: #FFFFFF;
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* Hindi (Devanagari) brand tagline needs its own font in the stack —
   Poppins/Inter ship no Devanagari glyphs and silently fall back otherwise. */
.hindi-tagline {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* Visible keyboard focus (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible {
    outline: 2px solid var(--accent-orange-dark);
    outline-offset: 2px;
    border-radius: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Smooth Scroll Reveals — motion is opt-in for anyone who hasn't asked for less of it */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography Utilities */
.text-accent { color: var(--accent-orange); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.section-title {
    margin-bottom: 3rem;
}
.section-title span.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1.1rem;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: var(--accent-orange-dark);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.825rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.85rem;
}
.section-title h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.35rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.section-title p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-align: center;
    max-width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, #C44E00 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(255, 107, 0, 0.4);
}

.btn-white {
    background: #FFFFFF;
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    background: var(--bg-light);
    color: var(--accent-orange);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
}
.btn-outline:hover {
    background: var(--accent-orange);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: var(--transition-smooth);
    text-decoration: none;
}
.float-btn:hover {
    transform: scale(1.12) rotate(5deg);
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: #0078FF; }
.float-btn.email { background: var(--accent-orange); }

.float-btn.back-to-top {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.float-btn.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Top Announcement Ticker Bar */
.top-ticker-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    color: #CBD5E1;
    font-size: 0.85rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 1px 0 rgba(255,107,0,0.15);
}
.ticker-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: white;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(255,107,0,0.35);
}
.ticker-text {
    overflow: hidden;
    flex: 1;
    white-space: nowrap;
    letter-spacing: 0.01em;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

/* Header & Navigation */
.header-area {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    gap: 1rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
}
.logo-wrap img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}
.nav-item {
    position: relative;
}
.nav-link {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.925rem;
    color: var(--text-primary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}
.nav-link:hover, .nav-item.active .nav-link {
    color: var(--accent-orange);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after, .nav-item.active .nav-link::after {
    transform: scaleX(1);
}
.header-area.is-scrolled {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 0.75rem;
    border-right: 1px solid var(--border-light);
}
.nav-contact-info .text-muted {
    font-size: 0.725rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-contact-info .phone {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--accent-orange);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(15,23,42,0.15);
    border: 1px solid var(--border-light);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition-smooth);
    z-index: 1100;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
}
.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--accent-orange);
    padding-left: 1.6rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.85rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 0.25rem;
}

/* Hero Section */
.hero-slider {
    position: relative;
    background: var(--primary-dark);
    color: var(--text-white);
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: brightness(0.7);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11,19,41,0.94) 0%, rgba(11,19,41,0.7) 60%, rgba(11,19,41,0.25) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
    max-width: 750px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.18);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: #FFAA55;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: clamp(0.78rem, 1.8vw, 0.9rem);
    margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    line-height: 1.15;
}
.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #E2E8F0;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Tabbed Quick Track & Emission Widget */
.quick-track-section {
    position: relative;
    z-index: 20;
    margin-top: -3.5rem;
    margin-bottom: 4rem;
}
.track-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    padding: 1.75rem;
    border: 1px solid var(--border-light);
}

.widget-tabs-nav {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
    flex-wrap: wrap;
}
.widget-tab-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}
.widget-tab-btn.active {
    color: var(--accent-orange);
}
.widget-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -0.6rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.widget-tab-pane {
    display: none;
}
.widget-tab-pane.active {
    display: block;
}

.track-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.input-field {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
    color: var(--text-primary);
    background: #FFFFFF;
}
.input-field:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
}

/* Trust Strip */
.trust-strip {
    background: #F1F5F9;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.trust-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

/* Services Grid */
.services-section {
    padding: 4.5rem 0;
    background: #FFFFFF;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.service-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(255, 107, 0, 0.35);
}
.service-img-box {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-img-box img {
    transform: scale(1.08);
}
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(11, 19, 41, 0.88);
    color: var(--accent-orange);
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}
.service-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-icon-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.service-icon-title i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}
.service-body h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
}
.service-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    flex: 1;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 4.5rem 0;
    background: #FFFFFF;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.process-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition-smooth);
}
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}
.process-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    padding: 4.5rem 0;
    color: var(--text-white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.stat-card {
    padding: 1.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}
.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

/* Matrix Table Wrapper for Touch & Mobile Overflow */
.matrix-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}
.matrix-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    background: white;
}
.matrix-table th {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}
.matrix-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
    color: var(--text-secondary);
}

/* Page Header / Breadcrumb Banner */
.page-banner {
    background: linear-gradient(135deg, #0B1329 0%, #152238 100%);
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-banner::before {
    content: "";
    position: absolute;
    top: -35%; right: -6%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,107,0,0.16) 0%, rgba(255,107,0,0) 70%);
    pointer-events: none;
}
.page-banner::after {
    content: "";
    position: absolute;
    bottom: -45%; left: 8%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(2,132,199,0.12) 0%, rgba(2,132,199,0) 70%);
    pointer-events: none;
}
.page-banner .container { position: relative; }
.page-banner .banner-content {
    position: relative;
}
.page-banner .banner-content::before {
    content: "";
    position: absolute;
    left: -1.5rem; top: -0.5rem; bottom: -0.5rem;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-orange), rgba(255,107,0,0));
    border-radius: 2px;
    opacity: 0.85;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
}
.breadcrumb a {
    color: var(--accent-orange);
    font-weight: 600;
}
.breadcrumb a:hover {
    color: #FFAA55;
    text-decoration: underline;
}
.page-banner h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #FFFFFF !important;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 780px;
}

/* Forms & Layout Grids */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.form-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: white;
    padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 3.5rem auto;
    box-shadow: var(--shadow-orange);
}
.cta-banner h2 {
    color: white;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}
.cta-banner p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Flagship 2026 Corporate Footer */
.footer-area {
    background: #080F21;
    color: #CBD5E1;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
    font-size: 0.92rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.1fr 1.7fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-title {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.6rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-orange);
}
.footer-links li {
    margin-bottom: 0.65rem;
}
.footer-links a {
    color: #CBD5E1;
}
.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 0.3rem;
}
.footer-contact li {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.footer-contact i {
    color: var(--accent-orange);
    font-size: 1.15rem;
    margin-top: 0.2rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 41, 0.82);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-container {
    background: white;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-md);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}
.modal-close:hover { color: var(--accent-orange); }

/* ==========================================================================
   Responsive Breakpoints & Media Query Overrides
   ========================================================================== */

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        transition: var(--transition-smooth);
        z-index: 1200;
        overflow-y: auto;
    }
    .nav-menu.active {
        right: 0;
    }
    .mobile-toggle {
        display: block;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        width: 100%;
        display: none;
        padding-left: 1rem;
    }
    .nav-item.open .dropdown-menu {
        display: block;
    }
    .nav-contact-info {
        display: none !important;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .track-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .track-form-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .floating-actions {
        bottom: 1rem;
        right: 1rem;
        gap: 0.6rem;
    }
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    /* Header CTA was a fixed 187px-wide button that, combined with the logo,
       overflowed a real phone's viewport — since body has overflow-x:hidden
       to stop sideways page scroll, that overflow silently clipped the
       hamburger toggle right off the edge instead of just scrolling to it. */
    .header-right .btn-primary {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    .navbar {
        gap: 0.5rem;
    }
    .logo-wrap {
        margin-right: 0.5rem;
    }
    /* The "ISO 9001:2008 CERTIFIED" pill was eating over half the ticker
       bar's width on narrow screens, squeezing the scrolling city/tagline
       text into a sliver. The same message is already repeated inside the
       scrolling ticker text itself, so the static badge can shrink hard. */
    .top-ticker-bar {
        font-size: 0.78rem;
        padding: 0.5rem 0;
    }
    .ticker-content {
        gap: 0.6rem;
    }
    .ticker-label {
        font-size: 0.62rem;
        padding: 0.25rem 0.55rem;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .ticker-label {
        font-size: 0;
        padding: 0.4rem;
        gap: 0;
        border-radius: 50%;
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }
    .ticker-label i {
        font-size: 0.85rem;
    }
    .ticker-content {
        gap: 0.5rem;
    }
    .header-right .btn-primary {
        font-size: 0;
        padding: 0.6rem;
        gap: 0;
        border-radius: 50%;
        width: 42px;
        height: 42px;
    }
    .header-right .btn-primary i {
        font-size: 1.15rem;
    }
    .container {
        padding: 0 1rem;
    }
    .quick-track-section {
        margin-top: -2rem;
    }
    .track-card {
        padding: 1.25rem;
    }
    .widget-tabs-nav {
        flex-direction: column;
        gap: 0.25rem;
    }
    .widget-tab-btn {
        width: 100%;
        text-align: left;
    }
    .widget-tab-btn.active::after {
        display: none;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .floating-actions {
        bottom: 0.75rem;
        right: 0.75rem;
        gap: 0.5rem;
    }
    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   Multi-Slide Hero (image + video slides, real banner content)
   ========================================================================== */
.hero-slider .hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.1s ease;
    z-index: 1;
}
.hero-slider .hero-slide.active { opacity: 1; z-index: 2; }
.hero-slider .hero-slide img,
.hero-slider .hero-slide video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.hero-slide-dots {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 15;
}
.hero-slide-dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.25);
    padding: 0;
    cursor: pointer;
}
.hero-slide-dots button.active { background: var(--accent-orange); border-color: var(--accent-orange); }
.hero-slide-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFAA55;
    margin-bottom: 0.5rem;
}
.hero-video-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 15;
    background: rgba(255, 107, 0, 0.9);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Branch marquee ticker (real 21-city network) — CSS-only, replaces <marquee> */
.branch-marquee {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    padding: 0.65rem 0;
    overflow: hidden;
}
.branch-marquee .ticker-track {
    display: flex;
    width: max-content;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
}
.branch-marquee .ticker-track a { color: var(--accent-orange-dark); }
.branch-marquee .ticker-track a:hover { text-decoration: underline; }

/* Dual stat display (counter section + operational highlights table) */
.op-highlights-table { width:100%; border-collapse:collapse; }
.op-highlights-table td { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size:1.05rem; }
.op-highlights-table td:last-child { text-align:right; font-weight:800; color: var(--accent-orange); font-family:'Poppins',sans-serif; font-variant-numeric: tabular-nums; }

/* ==========================================================================
   CSS-only ticker (replaces deprecated, unpausable <marquee>)
   Pauses on hover AND keyboard focus; sits still entirely under
   prefers-reduced-motion so it never forces motion on anyone who opted out.
   ========================================================================== */
.css-ticker { overflow: hidden; position: relative; }
.css-ticker .ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
    .css-ticker .ticker-track {
        animation: ticker-scroll var(--ticker-duration, 40s) linear infinite;
    }
    .css-ticker:hover .ticker-track,
    .css-ticker:focus-within .ticker-track {
        animation-play-state: paused;
    }
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.css-ticker .ticker-track > * { flex: none; }
.css-ticker.is-paused .ticker-track { animation-play-state: paused !important; }
.ticker-pause-btn {
    flex: none;
    width: 22px; height: 22px;
    border: none;
    border-radius: 3px;
    background: rgba(255,255,255,0.12);
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 10px;
    font-size: 11px;
}
.ticker-pause-btn:hover { background: rgba(255,255,255,0.22); }

/* Honeypot field — invisible to people, catches bots that fill every input */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   Premium Map Card — branded frame around the Google My Maps embed.
   Crops Google's own grey title bar via overflow + negative margin so the
   card reads as one designed unit instead of a bare iframe.
   ========================================================================== */
.map-premium {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.18), 0 2px 8px rgba(15, 23, 42, 0.06);
}
.map-premium-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    color: white;
}
.map-premium-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
}
.map-premium-title i { color: var(--accent-orange); font-size: 1.2rem; }
.map-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6EE7B7;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
}
.map-live-badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.6);
    animation: map-pulse 2s infinite;
}
@keyframes map-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.map-premium-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.map-premium-stats div {
    text-align: right;
}
.map-premium-stats .n {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--accent-orange);
    line-height: 1;
}
.map-premium-stats .l {
    font-size: 0.68rem;
    color: #CBD5E1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
}
.map-premium-viewport {
    position: relative;
    width: 100%;
    height: clamp(340px, 46vw, 480px);
    overflow: hidden;
    background: #E9EEF3;
}
.map-premium-viewport img {
    /* Custom-illustrated India map (assets/img/india-branch-map.svg) with
       every branch pin and label baked in — no Google embed, no crop/scale
       hacks needed. object-fit:contain keeps every label on-screen rather
       than cropping edge cities off to fill the frame. */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem 0;
}
.map-premium-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.9rem 1.5rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.map-premium-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
}
.map-premium-footer a:hover { color: var(--accent-orange); }

/* Network directory — paired region list beside the map */
.network-directory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.network-region h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-orange-dark);
    margin-bottom: 0.65rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}
.network-region ul { display: flex; flex-direction: column; gap: 0.45rem; }
.network-region li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.network-region li i { color: var(--accent-orange); font-size: 0.8rem; flex-shrink: 0; }

.map-section-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 992px) {
    .map-section-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .map-premium-header { flex-direction: column; align-items: flex-start; }
    .map-premium-stats { gap: 1rem; }
    .map-premium-stats div { text-align: left; }
    .network-directory { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 480px) {
    .network-directory { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Industries Served — premium card grid
   ========================================================================== */
.industries-section {
    position: relative;
    padding: 5rem 0;
    background: var(--bg-light);
    overflow: hidden;
}
.industries-section::before {
    content: "";
    position: absolute;
    top: -20%; right: -8%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, rgba(255,107,0,0) 70%);
    pointer-events: none;
}
.industries-section::after {
    content: "";
    position: absolute;
    bottom: -25%; left: -10%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(2,132,199,0.06) 0%, rgba(2,132,199,0) 70%);
    pointer-events: none;
}
.industries-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.16);
}
/* Photo-style hero panel — no real photography per industry, so a rich
   gradient + oversized ghost number + icon stands in for one, matching
   the "premium image card" pattern used across modern services sites. */
.industry-image {
    position: relative;
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    overflow: hidden;
}
.industry-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 28% 22%, rgba(255,107,0,0.35) 0%, rgba(255,107,0,0) 62%);
    transition: opacity 0.4s ease;
}
.industry-card:hover .industry-image::before {
    background: radial-gradient(circle at 28% 22%, rgba(255,107,0,0.5) 0%, rgba(255,107,0,0) 68%);
}
.industry-index {
    position: absolute;
    bottom: -0.6rem;
    right: 0.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    line-height: 1;
    color: rgba(255,255,255,0.07);
    letter-spacing: -0.02em;
    z-index: 1;
    transition: color 0.4s ease;
}
.industry-card:hover .industry-index {
    color: rgba(255,255,255,0.12);
}
.industry-icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #FFAA55;
    font-size: 1.7rem;
    transition: var(--transition-smooth);
}
.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(255,107,0,0.4);
    transform: scale(1.1) rotate(-4deg);
}
.industry-body {
    padding: 1.5rem 1.5rem 1.6rem;
}
.industry-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.08rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}
.industry-desc {
    position: relative;
    font-size: 0.86rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.industries-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    border-radius: var(--radius-lg);
    color: white;
}
.industries-cta .msg {
    font-weight: 600;
    font-size: 1.05rem;
}
.industries-cta a.call-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-orange);
    color: white;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}
.industries-cta a.call-link:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .industries-grid { grid-template-columns: 1fr; }
    .industries-cta { flex-direction: column; gap: 1rem; }
}

/* ==========================================================================
   Blog / Insights — index grid, article byline & author bio
   ========================================================================== */
.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition-smooth);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -10px rgba(15, 23, 42, 0.16);
    border-color: rgba(255, 107, 0, 0.3);
}
.category-badge {
    display: inline-flex;
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-orange-dark);
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.25);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.85rem;
}
.blog-card h3 {
    font-size: 1.12rem;
    line-height: 1.4;
    margin-bottom: 0.65rem;
    color: var(--primary-dark);
}
.blog-card p.excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}
.blog-byline {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}
.author-avatar {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
}
.blog-byline .who { line-height: 1.3; }
.blog-byline .who .name { font-weight: 700; font-size: 0.85rem; color: var(--primary-dark); }
.blog-byline .who .role { font-size: 0.75rem; color: var(--text-muted); }
.blog-card .read-link {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--accent-orange-dark);
}
.blog-card .read-link:hover { color: var(--accent-orange); }

/* Article page byline (top of post) */
.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.article-meta-bar .author-avatar { width: 52px; height: 52px; font-size: 1.05rem; }
.article-meta-bar .who .name { font-size: 1rem; }
.article-meta-bar .who .role { font-size: 0.82rem; }
.article-meta-bar .sep { color: var(--border-light); }
.article-meta-bar .date-read { font-size: 0.85rem; color: var(--text-muted); }
.article-meta-bar .meta-extra {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.article-meta-bar .meta-extra i { color: var(--accent-orange); margin-right: 0.3rem; }
.article-meta-bar .meta-extra .category-badge { margin-bottom: 0; }

/* Long-form article body typography */
.article-body h3 {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin: 2.25rem 0 1rem;
}
.article-body h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 1.75rem 0 0.85rem;
}
.article-body p { margin-bottom: 1.25rem; }
.article-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Logistics Motion Layer — subtle premium micro-interactions on top of the
   existing design. No layout/content/color changes; purely opacity,
   transform and small SVG route/pulse accents. Everything here lives inside
   prefers-reduced-motion:no-preference, matching the .reveal convention
   above — with motion turned off, elements simply render in their normal,
   fully-visible resting state (no flash, no dependency on animations
   completing).
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {

    /* Sitewide: soft opacity settle on each page load */
    body { animation: pageFadeIn 0.4s ease both; }
    @keyframes pageFadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    /* Button micro-interactions — existing hover elevation kept as-is;
       just a small forward icon nudge + gentle press feedback */
    .btn i:first-child { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
    .btn:hover i:first-child { transform: translateX(3px); }
    .btn:active { transform: scale(0.97); }

    /* Card icon micro-interactions — cards keep their existing hover lift;
       this only nudges the leading icon/arrow within them */
    .service-card:hover .service-icon-title > i { transform: translateX(3px); }
    .service-icon-title > i { display: inline-block; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
    .service-link i { display: inline-block; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
    .service-card:hover .service-link i { transform: translateX(4px); }
    .blog-card .read-link i { display: inline-block; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
    .blog-card:hover .read-link i { transform: translateX(4px); }
    .industries-cta a.call-link i { display: inline-block; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
    .industries-cta a.call-link:hover i { transform: translateX(3px); }
    .footer-links a i, .dropdown-item i { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
    .footer-links a:hover i { transform: translateX(2px); }

    /* Location-pin micro-pulse where geo icons already appear in lists */
    .network-region li i, .footer-contact li i.bi-geo-alt-fill {
        display: inline-block;
        transition: transform 0.2s ease;
    }
    .network-region li:hover i, .footer-contact li:hover i.bi-geo-alt-fill {
        animation: iconPulse 0.5s ease;
    }
    @keyframes iconPulse {
        0%, 100% { transform: scale(1); }
        50%      { transform: scale(1.3); }
    }
}

/* Leader cards (OurLeaders.html) had no hover treatment at all — bringing
   them in line with the lift + icon-nudge language used by every other
   card on the site (.service-card, .industry-card, .blog-card). */
/* ==========================================================================
   Key Management Personnel — alternating photo/bio row layout
   ========================================================================== */
.kmp-section {
    padding: 5rem 0;
    background: white;
}
.kmp-heading {
    text-align: center;
    margin-bottom: 4rem;
}
.kmp-kicker {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.kmp-heading h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.kmp-underline {
    width: 56px;
    height: 3px;
    background: var(--accent-orange);
    margin: 0 auto;
    border-radius: 2px;
}
.kmp-list {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}
.kmp-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.kmp-row.reverse {
    flex-direction: row-reverse;
}
.kmp-photo {
    flex: 0 0 300px;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.kmp-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.kmp-row:hover .kmp-photo img {
    transform: scale(1.05);
}
.kmp-photo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.kmp-icon-circle {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.kmp-icon-circle i {
    font-size: 2.6rem;
    color: white;
}
.kmp-row:hover .kmp-icon-circle {
    transform: scale(1.08);
}
.kmp-content {
    flex: 1;
    min-width: 0;
}
.kmp-content h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}
.kmp-role {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.kmp-content p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
@media (max-width: 900px) {
    .kmp-row, .kmp-row.reverse {
        flex-direction: column;
        gap: 1.5rem;
    }
    .kmp-photo {
        flex: 0 0 auto;
        width: 220px;
        margin: 0 auto;
    }
    .kmp-content {
        text-align: center;
    }
    .kmp-content p {
        text-align: left;
    }
    .kmp-list {
        gap: 3rem;
    }
}

/* Author bio card (bottom of post) */
.author-bio-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 3rem;
}
.author-bio-card .author-avatar { width: 60px; height: 60px; font-size: 1.2rem; }
.author-bio-card h4 { font-size: 1.02rem; margin-bottom: 0.15rem; color: var(--primary-dark); }
.author-bio-card .role { font-size: 0.82rem; color: var(--accent-orange-dark); font-weight: 700; margin-bottom: 0.5rem; }
.author-bio-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

@media (max-width: 992px) {
    .blog-index-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-index-grid { grid-template-columns: 1fr; }
    .author-bio-card { flex-direction: column; }
}

/* ==========================================================================
   Operational Highlights — premium stat tile grid + floating badge image
   ========================================================================== */
.ophighlights-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    color: white;
    overflow: hidden;
}
.ophighlights-section::before {
    content: "";
    position: absolute;
    top: -18%; left: -8%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(255,107,0,0.10) 0%, rgba(255,107,0,0) 70%);
    pointer-events: none;
}
.ophighlights-section::after {
    content: "";
    position: absolute;
    bottom: -20%; right: -8%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(2,132,199,0.08) 0%, rgba(2,132,199,0) 70%);
    pointer-events: none;
}
.ophighlights-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}
.ophighlights-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
}
.ophighlights-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.ophighlights-image-wrap .img-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 55%;
    background: linear-gradient(0deg, rgba(8,15,33,0.92) 0%, rgba(8,15,33,0) 100%);
    pointer-events: none;
}
.ophighlights-badge-float {
    position: absolute;
    left: 1.5rem; bottom: 1.5rem; right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.ophighlights-badge-float .icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    box-shadow: 0 10px 24px rgba(255,107,0,0.4);
    font-size: 1.35rem;
}
.ophighlights-badge-float .n {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.6rem; color: white; line-height: 1;
}
.ophighlights-badge-float .l {
    font-size: 0.78rem; color: #CBD5E1; margin-top: 0.2rem;
}
.ophighlights-copy p {
    color: #CBD5E1;
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 1rem 0 1.75rem;
    max-width: 520px;
}
.ophighlights-stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.ophighlights-stat {
    position: relative;
    padding: 1.5rem 1.15rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.ophighlights-stat::before {
    content: "";
    position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ophighlights-stat:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: rgba(255,107,0,0.3);
    box-shadow: 0 16px 32px -10px rgba(0,0,0,0.35);
}
.ophighlights-stat:hover::before { transform: scaleX(1); }
.ophighlights-stat i {
    font-size: 1.3rem;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
    display: block;
}
.ophighlights-stat .n {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: white;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-variant-numeric: tabular-nums;
}
.ophighlights-stat .l {
    font-size: 0.8rem;
    color: #94A3B8;
    font-weight: 600;
}
@media (max-width: 992px) {
    .ophighlights-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .ophighlights-image-wrap img { height: 300px; }
}
@media (max-width: 560px) {
    .ophighlights-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ophighlights-stat { padding: 1.15rem 1rem; }
    .ophighlights-stat .n { font-size: 1.5rem; }
    .ophighlights-badge-float { flex-wrap: wrap; }
}

/* ==========================================================================
   Trust & Compliance badge strip — registration credentials presented as a
   visible trust element rather than footer fine print.
   ========================================================================== */
.trust-badges-section {
    padding: 3rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.trust-badges-kicker {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}
.trust-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 0.65rem 1.25rem;
    transition: var(--transition-smooth);
}
.trust-badge-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 0, 0.35);
    box-shadow: var(--shadow-md);
}
.trust-badge-chip i {
    font-size: 1.05rem;
    color: var(--accent-orange);
}
.trust-badge-chip .label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}
.trust-badge-chip .value {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}
@media (max-width: 560px) {
    .trust-badges-row { gap: 0.6rem; }
    .trust-badge-chip { padding: 0.55rem 1rem; }
}
