/*
Theme Name: AGC Courier
Theme URI: https://akashgangacourier.com
Author: kanak sharma
Author URI: https://akashgangacourier.com
Description: A modern WordPress theme for Akash Ganga Courier Limited - India's trusted courier network with 37+ years of legacy.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agc
Tags: courier, logistics, delivery, business, corporate, responsive, bootstrap, modern
*/

/* ===================================
   AGC Courier Website Styles
   =================================== */


:root {
    --agc-blue: #0a2e6e;
    --agc-sky: #1e7fd4;
    --agc-orange: #f26522;
    --agc-light: #f4f8ff;
    --agc-dark: #0d1b2a;
    --agc-gray: #6c7a93;
    --agc-border: #dce6f5;
    --font-head: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--agc-dark);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
}

/* ─── FRAUD BANNER ─── */
.fraud-bar {
    background: #b91c1c;
    color: #fff;
    padding: 8px 0;
    font-size: 0.78rem;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.fraud-bar-inner {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 38s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ─── TOP CONTACT BAR ─── */
.top-bar {
    background: var(--agc-blue);
    color: #c8d8f0;
    font-size: 0.82rem;
    padding: 10px 0;
}

.top-bar a {
    color: #c8d8f0;
    text-decoration: none;
    transition: color .2s;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar .social-icons a {
    font-size: 1.1rem;
    margin-left: 14px;
    color: #93b4d8;
}

.top-bar .social-icons a:hover {
    color: #fff;
}

/* ─── NAVBAR ─── */
/* Stabilized Navbar Height */
.navbar {
    background: #fff !important;
    min-height: 80px;
    /* Fixed minimum height to prevent jittering */
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--agc-border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(10, 46, 110, .07);
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 55px;
    /* Control logo height specifically */
    width: auto;
    transition: transform 0.2s;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--agc-blue) !important;
    padding: 8px 14px !important;
    border-radius: 50px;
    transition: background .2s, color .2s;
}

.nav-link:hover:not(.track-btn),
.nav-link.active:not(.track-btn) {
    background: rgba(10, 46, 110, 0.08);
    color: var(--agc-blue) !important;
    box-shadow: inset 0 0 0 1px rgba(10, 46, 110, 0.1);
}

.nav-link.track-btn {
    background: var(--agc-orange);
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 25px;
    font-weight: 600;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 106, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

.nav-link.track-btn:hover {
    background: #d9531a;
}

/* ─── HERO ─── */
.hero {
    background: linear-gradient(135deg, var(--agc-blue) 0%, #0e4a9c 55%, #1565c0 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0 30px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* decorative circles */
.hero::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 60px solid rgba(255, 255, 255, .04);
}

.hero .circle-deco {
    position: absolute;
    top: -60px;
    right: 20%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, .05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #a8d0ff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.hero-badge i {
    color: var(--agc-orange);
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero h1 .highlight {
    color: var(--agc-orange);
    position: relative;
}

.hero p.lead {
    color: #93b8e8;
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 24px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}

.btn-primary-agc {
    background: var(--agc-orange);
    border: none;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    transition: all .25s;
    letter-spacing: .3px;
    box-shadow: 0 8px 24px rgba(242, 101, 34, .4);
}

.btn-primary-agc:hover {
    background: #d9531a;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(242, 101, 34, .5);
    color: #fff;
}

.btn-outline-agc {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all .25s;
}

.btn-outline-agc:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

/* stats row */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.stat-item {
    text-align: left;
}

.stat-item .num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-item .num span,
.highlight-orange {
    color: var(--agc-orange);
}

.stat-item .lbl {
    font-size: 0.78rem;
    color: #7aabdc;
    letter-spacing: .5px;
    margin-top: 2px;
}

/* hero illustration side */
.hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-truck-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 35px;
    text-align: center;
    animation: floatUp 4s ease-in-out infinite;
    max-width: 420px;
    margin: 0 auto;
}

.hero-truck-card i.bi-truck {
    font-size: 5rem;
    color: rgba(255, 255, 255, .12);
    display: block;
    margin-bottom: 5px;
}

.hero-truck-card .track-inline {
    background: #fff;
    border-radius: 12px;
    padding: 8px 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.hero-truck-card .track-inline input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--agc-dark);
    background: transparent;
}

.hero-truck-card .track-inline input::placeholder {
    color: #aab4c2;
}

.hero-truck-card .track-inline button {
    background: var(--agc-orange);
    border: none;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.hero-truck-card .track-inline button:hover {
    background: #d9531a;
}

/* floating badges */
.float-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(10, 46, 110, .2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--agc-dark);
    animation: floatUp 5s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
}

.float-badge i {
    font-size: 1.3rem;
    color: var(--agc-sky);
}

.float-badge.left {
    left: -50px;
    top: -10px;
    animation-delay: 1s;
}

.float-badge.bottom {
    right: -80px;
    bottom: 15%;
    animation-delay: 2s;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ─── TRACKING SECTION ─── */
.tracking-bar {
    background: var(--agc-light);
    border-bottom: 1px solid var(--agc-border);
    padding: 28px 0;
}

.tracking-bar h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--agc-blue);
    margin-bottom: 4px;
}

.tracking-bar p {
    font-size: 0.8rem;
    color: var(--agc-gray);
    margin: 0;
}

.track-form {
    display: flex;
    background: #fff;
    border: 2px solid var(--agc-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
}

.track-form:focus-within {
    border-color: var(--agc-sky);
}

.track-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--agc-dark);
}

.track-form button {
    background: var(--agc-blue);
    color: #fff;
    border: none;
    font-family: var(--font-head);
    font-weight: 700;
    padding: 0 28px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background .2s;
}

.track-form button:hover {
    background: var(--agc-sky);
}

/* ─── CONTACT CARD ─── */
.contact-office-card {
    background: #ffffff;
    border: 1.5px solid var(--agc-border);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 25px rgba(10, 46, 110, 0.08);
}

.contact-office-card .d-flex {
    margin-bottom: 0.65rem;
}

.contact-office-card .d-flex:last-child {
    margin-bottom: 0;
}

.contact-office-card i {
    font-size: 1rem;
    line-height: 1.2;
}

.contact-office-card span {
    line-height: 1.3;
    font-size: 0.92rem;
}

/* ─── PARTNERS CAROUSEL ─── */
.partners-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
    animation: scroll-partners 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

/* ─── SERVICES ─── */
.section {
    padding: 60px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f0fe;
    color: var(--agc-sky);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--agc-blue);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-title .orange {
    color: var(--agc-orange);
}

.section-sub {
    color: var(--agc-gray);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 520px;
}

.service-card {
    background: #fff;
    border: 1.5px solid var(--agc-border);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--agc-sky), var(--agc-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(10, 46, 110, .12);
    transform: translateY(-6px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
}

.service-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--agc-blue);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--agc-gray);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ─── WHY AGC ─── */
.why-section {
    background: var(--agc-blue);
}

.why-section .section-tag {
    background: rgba(255, 255, 255, .1);
    color: #93b8e8;
}

.why-section .section-title {
    color: #fff;
}

.why-section .section-sub {
    color: #7aabdc;
}

.why-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 32px 26px;
    text-align: center;
    transition: all .3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px);
}

.why-card .icon-wrap {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(242, 101, 34, .15);
    border: 2px solid rgba(242, 101, 34, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--agc-orange);
    margin: 0 auto 20px;
}

.why-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}

.why-card p {
    color: #7aabdc;
    font-size: 0.87rem;
    line-height: 1.65;
    margin: 0;
}

/* ─── PROCESS ─── */
.process-section {
    background: var(--agc-light);
}

.step-card {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--agc-blue);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: var(--agc-border);
}

.step-card:last-child::before {
    display: none;
}

.step-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--agc-blue);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--agc-gray);
    font-size: 0.87rem;
    line-height: 1.6;
    margin: 0;
}

/* ─── NETWORK ─── */
.network-card {
    background: linear-gradient(135deg, #0b2d71, #0c3b98);
    border-radius: 26px;
    padding: 50px 44px;
    color: #fff;
    box-shadow: 0 16px 34px rgba(4, 26, 89, 0.28);
}

.network-card .section-title {
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    text-decoration: none;
}

.network-card p {
    color: #b9d0eb;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    text-decoration: none;
}

.network-card .btn-outline-agc {
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    text-decoration: none;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 700;
    transition: all .25s ease;
}

.network-card .btn-outline-agc:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    text-decoration: none;
}

.network-card .row.g-4>.col-6 {
    padding: 0.8rem 0;
}

.network-card .big-num {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
}

.network-card .network-plus {
    color: var(--agc-orange);
    font-size: 1.1em;
    font-weight: 700;
}

.network-card .label {
    color: #c8d7f4;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 0.35rem;
    text-transform: uppercase;
}

.network-card .divider {
    width: 1px;
    background: rgba(255, 255, 255, .17);
    align-self: stretch;
}

/* ─── TESTIMONIALS ─── */
.testi-card {
    background: #fff;
    border: 1.5px solid var(--agc-border);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
}

.testi-card .stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.testi-card p {
    color: var(--agc-gray);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-card .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--agc-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
}

.testi-card .author-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--agc-dark);
}

.testi-card .author-loc {
    font-size: 0.78rem;
    color: var(--agc-gray);
}

/* ─── CTA BANNER ─── */
.cta-section {
    background: linear-gradient(120deg, var(--agc-orange) 0%, #d9531a 100%);
    padding: 80px 0;
}

.cta-section h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    margin-bottom: 14px;
}

.cta-section p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.btn-white {
    background: #fff;
    border: none;
    color: var(--agc-orange);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    transition: all .25s;
}

.btn-white:hover {
    background: var(--agc-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all .25s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
    color: #fff;
}

/* ─── FOOTER ─── */
footer {
    background: var(--agc-dark);
    color: #8899aa;
    padding: 70px 0 30px;
}

footer .brand {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 14px;
}

footer .brand span {
    color: var(--agc-orange);
}

footer p.desc {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
}

footer h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 18px;
    letter-spacing: .3px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #8899aa;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color .2s;
}

footer ul li a:hover {
    color: var(--agc-orange);
}

footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
}

footer .contact-item i {
    color: var(--agc-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

footer hr {
    border-color: rgba(255, 255, 255, .08);
    margin: 40px 0 24px;
}

footer .bottom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-credit {
    font-size: 0.82rem;
    color: #8899aa;
}

.footer-credit a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color .3s;
    display: inline-block;
    position: relative;
}

.footer-credit a:hover {
    color: var(--agc-orange);
}

.footer-credit a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--agc-orange);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.footer-credit a:hover::after {
    visibility: visible;
    transform: scaleX(1);
}

footer .socials a {
    color: #8899aa;
    font-size: 1.1rem;
    margin-left: 14px;
    transition: color .2s;
}

footer .socials a:hover {
    color: #fff;
}

/* ─── RESPONSIVE ADJUSTMENTS ─── */
@media (max-width: 991px) {
    .hero {
        padding: 30px 0 !important;
        text-align: center;
        min-height: auto;
    }

    .hero .row {
        flex-direction: column-reverse;
        /* Tracking card on top for mobile */
    }

    .hero-img-wrap {
        margin-bottom: 50px;
        /* Extra space to prevent overlap with text below */
    }

    .hero h1 {
        font-size: 2rem !important;
        margin-top: 20px;
    }

    .hero p.lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .float-badge {
        display: none;
        /* Hide badges on mobile to prevent overlap */
    }

    .hero-truck-card {
        animation: none !important;
        /* Disable floating animation on mobile */
    }

    .network-card {
        padding: 40px 30px;
        text-align: center;
    }

    .network-card .col-lg-5 {
        margin-bottom: 20px;
    }

    .network-card .big-num {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero-truck-card {
        padding: 20px 15px;
    }

    .hero-truck-card i.bi-truck {
        font-size: 3.5rem;
    }

    .hero-truck-card .track-inline {
        padding: 6px;
    }

    .hero-truck-card .track-inline input {
        font-size: 0.82rem;
    }

    .hero-truck-card .track-inline button {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    .network-card {
        padding: 30px 20px;
    }

    .network-card .big-num {
        font-size: 2rem;
    }

    .network-card .label {
        font-size: 0.8rem;
    }
}

.wpcf7-submit {
    background: #F47920 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px !important;
    color: #fff !important;
    font-weight: 600 !important;
    width: 100% !important;
    font-size: 1rem !important;
}

.wpcf7-submit:hover {
    background: #d9531a !important;
    color: #fff !important;
}