  body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
        }

        .site-header {
            background: #ffed45;
        
            min-height: 80px;
            display: flex;
            align-items: center;
        }

        .site-header .navbar {
            width: 100%;
            padding: 0;
        }

        .site-logo img {
            max-width: 245px;
            width: 100%;
            height: auto;
            display: block;
        }

        .navbar-nav {
            gap: 18px;
        }

        .navbar-nav .nav-link {
            color: #000;

            font-weight: 600;
            line-height: 1;
            padding: 12px 0;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: #000;
            text-decoration: underline;
        }

        .dropdown-toggle::after {
            vertical-align: 2px;
            margin-left: 7px;
            border-top-width: 7px;
            border-right-width: 7px;
            border-left-width: 7px;
        }

        .dropdown-menu {
            background: #000000;
   
            border-radius: 0;
            padding: 8px 0;
            margin-top: 14px;
        }

        .dropdown-item {
            color: #ffed45;
            font-size: 18px;
            font-weight: 600;
            padding: 9px 18px;
        }

        .dropdown-item:hover {
            background: #ffed45;
            color: #000;
        }

        .header-phone {
            color: #000;
            font-size: 24px;
            font-weight: 700;
            text-decoration: underline;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
        }

        .header-phone:hover {
            color: #000;
        }

        .phone-svg {
            width: 28px;
            height: 28px;
            fill: #000;
            flex: 0 0 auto;
        }

        .navbar-toggler {
            border: 2px solid #000;
            padding: 8px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        @media (max-width: 1199px) {
            .site-logo img {
                max-width: 220px;
            }

            .navbar-nav {
                gap: 14px;
            }

            .navbar-nav .nav-link {
                font-size: 22px;
            }

            .header-phone {
                font-size: 22px;
            }
        }

        @media (max-width: 991px) {
            .site-header {
                min-height: auto;
                padding: 15px 0;
            }

            .site-logo img {
                max-width: 210px;
            }

            .navbar-collapse {
                margin-top: 18px;
                padding-top: 12px;
                border-top: 1px solid rgba(0, 0, 0, 0.25);
            }

            .navbar-nav {
                gap: 0;
                text-align: left;
            }

            .navbar-nav .nav-link {
                font-size: 21px;
                padding: 12px 0;
            }

            .dropdown-menu {
                margin-top: 0;
                border: 1px solid #000;
            }

            .header-phone {
                margin-top: 14px;
                font-size: 21px;
            }
        }

        @media (max-width: 575px) {
            .site-logo img {
                max-width: 175px;
            }

            .navbar-nav .nav-link {
                font-size: 19px;
            }

            .header-phone {
                font-size: 19px;
            }
        }


        .hero-section {
    position: relative;
    min-height: calc(110vh - 110px);
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.42) 42%,
        rgba(0, 0, 0, 0.20) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    color: #fff;
    margin-bottom: 34px;
    max-width: 950px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 345px;
    height: 70px;
    background: #ffed45;
    color: #000;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #000;
    color: #ffed45;
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 42px;
}

.hero-social a {
    color: #ffed45;
    font-size: 42px;
    line-height: 1;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-social a:hover {
    color: #fff;
}

.social-line {
    width: 335px;
    height: 1px;
    background: #ffed45;
    display: inline-block;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mouse {
    width: 34px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.wheel {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: wheelMove 1.5s infinite;
}

.arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

@keyframes wheelMove {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(18px);
        opacity: 0;
    }
}

@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 58px;
    }

    .hero-content p {
        font-size: 21px;
    }

    .hero-btn {
        min-width: 300px;
        height: 64px;
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 760px;
        align-items: center;
    }

    .hero-content {
        padding-top: 90px;
        padding-bottom: 100px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 19px;
        line-height: 1.5;
    }

    .hero-social {
        gap: 28px;
    }

    .social-line {
        width: 190px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 720px;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.58);
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btn {
        min-width: 100%;
        height: 58px;
        font-size: 18px;
    }

    .hero-social {
        gap: 22px;
        margin-top: 34px;
    }

    .hero-social a {
        font-size: 32px;
    }

    .social-line {
        width: 95px;
    }

    .scroll-down {
        bottom: 18px;
    }
}
/* General Reset & Fonts */
.dispatch-modern-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #050505 url("../images/what-we-do-bg_1920.jpg") center center / cover no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

.dispatch-modern-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 237, 69, 0.08), transparent 35%);
    z-index: 1;
}

.dispatch-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.dispatch-modern-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.dispatch-content {
    max-width: 680px;
}

.dispatch-icon {
    color: #ffed45;
    font-size: 86px;
    font-weight: 900;
    line-height: 0.75;
    transform: rotate(-8deg);
    margin-bottom: 50px;
}

.dispatch-heading-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.dispatch-heading-row h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.dispatch-heading-row span {
    flex: 1;
    max-width: 230px;
    height: 1px;
    background: #ffed45;
}

.dispatch-content p {
    max-width: 520px;
    margin: 0 0 45px;
    color: #f2f2f2;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.dispatch-truck-img {
    max-width: 560px;
}

.dispatch-truck-img img {
    width: 100%;
    height: auto;
    display: block;
}

.truck-small-line {
    width: 290px;
    height: 2px;
    background: #ffed45;
    margin: -2px auto 0;
}

.dispatch-faq .accordion-item {
    background: rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 237, 69, 0.18);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
}

.dispatch-faq .accordion-button {
    background: transparent;
    color: #fff;
    box-shadow: none;
    padding: 17px 20px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.dispatch-faq .accordion-button span {
    color: #ffed45;
    margin-right: 14px;
    flex: 0 0 auto;
}

.dispatch-faq .accordion-button::after {
    background-image: none;
    width: 12px;
    height: 12px;
    border-right: 3px solid #ffed45;
    border-bottom: 3px solid #ffed45;
    transform: rotate(45deg);
}

.dispatch-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
}

.dispatch-faq .accordion-button:not(.collapsed) {
    background: rgba(255, 237, 69, 0.08);
    color: #fff;
}

.dispatch-faq .accordion-body {
    padding: 0 22px 18px 76px;
    color: #dcdcdc;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .dispatch-modern-section {
        padding: 75px 0;
    }

    .dispatch-modern-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .dispatch-content {
        max-width: 100%;
    }

    .dispatch-content p {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .dispatch-modern-section {
        padding: 60px 0;
    }

    .dispatch-icon {
        font-size: 68px;
    }

    .dispatch-heading-row {
        gap: 12px;
    }

    .dispatch-heading-row h2 {
        font-size: 28px;
    }

    .dispatch-heading-row span {
        max-width: 70px;
    }

    .dispatch-faq .accordion-button {
        font-size: 22px;
        padding: 15px 16px;
    }

    .dispatch-faq .accordion-body {
        padding: 0 16px 16px 62px;
        font-size: 15px;
    }

    .truck-small-line {
        width: 190px;
    }
}

/* Why Choose Section */
.why-choose-section {
    position: relative;
    min-height: 580px;
    background: url("../images/menu_bg_1366@3x.jpg") center center / cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.why-overlay {
    position: absolute;
    inset: 0;
   
    z-index: 1;
}

.why-wrapper {
    position: relative;
    z-index: 2;
    min-height: 580px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 70px;
}

.why-video-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn {
    width: 215px;
    height: 215px;
    border-radius: 50%;
    border: 4px solid #252525;
    outline: 4px solid #ffeb4f;
    background: #ffeb4f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.05);
}

.play-btn span {
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 40px solid #050505;
    margin-left: 10px;
}

.why-content {
    max-width: 710px;
    color: #fff;
    padding-top: 20px;
}

.why-content h2 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 22px;
    color: #fff;
}

.why-content p {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 18px;
    color: #fff;
}

.why-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 75px;
}

.why-buttons a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.btn-main {
    background: #000;
    color: #ffeb4f;
    padding: 0 46px;
}

.btn-main:hover {
    background: #ffeb4f;
    color: #000;
}

.btn-price {
    background: #ffeb4f;
    color: #000;
    padding: 0 45px;
}

.btn-price:hover {
    background: #000;
    color: #ffeb4f;
}

.scroll-top {
    position: absolute;
    right: 40px;
    bottom: 55px;
    z-index: 3;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    border: none;
    background: #ffeb4f;
    color: #000;
    font-size: 22px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1199px) {
    .why-wrapper {
        gap: 45px;
    }

    .play-btn {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        min-height: auto;
        padding: 80px 0;
    }

    .why-wrapper {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .why-content {
        margin: 0 auto;
    }

    .why-buttons {
        justify-content: center;
        margin-top: 45px;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .play-btn {
        width: 135px;
        height: 135px;
    }

    .play-btn span {
        border-top-width: 17px;
        border-bottom-width: 17px;
        border-left-width: 29px;
    }

    .why-buttons a {
        width: 100%;
        font-size: 18px;
        min-height: 58px;
    }

    .scroll-top {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 25px;
    }
}


/* ----------------------------  */





/* Specialities Section */
.specialities-section {
    position: relative;
    width: 100%;
    min-height: 760px;
    background: url("../images/Vector_1920@3x.jpg") center center / cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.specialities-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.148);
    z-index: 1;
}

.specialities-box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 36% 64%;
    min-height: 650px;
    max-width: 1120px;
    margin: 0 auto;
}

/* Left Tabs */
.specialities-tabs {
    background: #ffeb3b;
    padding: 22px 0;
    display: flex;
    flex-direction: column;
}

.special-tab {
    width: 100%;
    border: none;
    background: transparent;
    color: #000;
    text-align: right;
    padding: 13px 34px 13px 20px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
}

.special-tab::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 4px;
    height: 0;
    background: #000;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.special-tab strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
}

.special-tab span {
    display: block;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
    margin-top: 3px;
}

.special-tab.active {
    background: #000;
    color: #ffeb3b;
}

.special-tab.active::before,
.special-tab:hover::before {
    height: 70%;
}

.special-tab:hover {
    background: #111;
    color: #ffeb3b;
}

/* Right Content */
.specialities-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.content-inner {
    max-width: 560px;
    padding: 62px 45px 45px 95px;
    color: #000;
}

.content-inner h2 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 42px;
    color: #000;
}

.truck-icon {
    font-size: 34px;
    margin-bottom: 8px;
    color: #000;
}

.content-inner h3 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 22px;
    color: #000;
}

.content-inner p {
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
    max-width: 510px;
    margin-bottom: 28px;
    color: #000;
}

.special-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.special-buttons a {
    text-decoration: none;
    min-width: 165px;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.black-btn {
    background: #000;
    color: #ffeb3b;
}

.yellow-btn {
    background: #ffeb3b;
    color: #000;
}

.black-btn:hover {
    background: #ffeb3b;
    color: #000;
}

.yellow-btn:hover {
    background: #000;
    color: #ffeb3b;
}

/* Responsive */
@media (max-width: 991px) {
    .specialities-section {
        min-height: auto;
        padding: 70px 0;
    }

    .specialities-box {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .specialities-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
    }

    .special-tab {
        text-align: center;
        padding: 15px 12px;
    }

    .special-tab::before {
        display: none;
    }

    .content-inner {
        padding: 50px 25px;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .content-inner p {
        margin-left: auto;
        margin-right: auto;
    }

    .special-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .specialities-section {
        padding: 50px 0;
    }

    .specialities-tabs {
        grid-template-columns: 1fr;
    }

    .content-inner h2 {
        font-size: 34px;
        margin-bottom: 32px;
    }

    .content-inner h3 {
        font-size: 26px;
    }

    .special-buttons {
        flex-direction: column;
    }

    .special-buttons a {
        width: 100%;
    }
}


/* Leading Freight Section */
.leading-section {
    position: relative;
    min-height: 820px;
    background: url("../images/how_we_work_bg_1200@3x.png") center center / cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 70px 0 60px;
}

.leading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.leading-wrapper {
    position: relative;
    z-index: 2;
    color: #fff;
}

.leading-wrapper h2 {
    text-align: center;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
    margin-bottom: 62px;
}

/* Steps */
.steps-grid {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 68px;
    row-gap: 70px;
}

.steps-grid::before,
.steps-grid::after {
    content: "";
    position: absolute;
    left: -35px;
    right: -35px;
    border-top: 1px dashed rgba(255, 255, 255, 0.65);
    pointer-events: none;
}

.steps-grid::before {
    top: 6px;
}

.steps-grid::after {
    top: calc(50% + 8px);
}

.step-item {
    position: relative;
    min-height: 210px;
}

.step-number {
    position: absolute;
    top: -60px;
    left: 0;
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    color: #ffeb3b;
}

.step-dot {
    position: absolute;
    top: -3px;
    left: 4px;
    width: 18px;
    height: 18px;
    background: #ffeb3b;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 235, 59, 0.35);
}

.step-item h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 10px;
}

.step-item p {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

/* Bottom */
.leading-bottom {
    max-width: 1120px;
    margin: 42px auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.leading-bottom img {
    width: 190px;
    height: auto;
    object-fit: contain;
}

.leading-btn {
    min-width: 230px;
    min-height: 50px;
    padding: 0 32px;
    border-radius: 50px;
    background: #ffeb3b;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.leading-btn:hover {
    background: #000;
    color: #ffeb3b;
}

.leading-scroll-top {
    position: absolute;
    right: 35px;
    bottom: 62px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: #ffeb3b;
    color: #000;
    font-size: 18px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1199px) {
    .steps-grid {
        column-gap: 40px;
    }

    .leading-wrapper h2 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .leading-section {
        min-height: auto;
        padding: 65px 0;
    }

    .leading-wrapper h2 {
        font-size: 25px;
        margin-bottom: 45px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 55px;
    }

    .steps-grid::before,
    .steps-grid::after {
        display: none;
    }

    .step-number {
        position: static;
        font-size: 38px;
        margin-bottom: 8px;
    }

    .step-dot {
        display: none;
    }

    .step-item {
        min-height: auto;
    }

    .step-item h3 {
        margin-top: 0;
    }

    .leading-bottom {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .leading-section {
        padding: 55px 0;
    }

    .leading-wrapper h2 {
        font-size: 22px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .step-item h3 {
        font-size: 18px;
    }

    .step-item p {
        font-size: 14px;
    }

    .leading-bottom img {
        width: 150px;
    }

    .leading-btn {
        width: 100%;
        min-width: auto;
    }

    .leading-scroll-top {
        right: 18px;
        bottom: 22px;
    }
}


.pricing-section {
    background: #ffffff;
    padding: 62px 15px 63px;
    font-family: Arial, Helvetica, sans-serif;
}

.pricing-wrap {
    max-width: 1080px;
    margin: 0 auto;
}

.pricing-wrap > h2 {
    margin: 0 0 52px;
    color: #000;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    position: relative;
    min-height: 450px;
    border: 1px solid #ffe43f;
    background: #fff;
    overflow: hidden;
}

.price-card-head {
    height: 97px;
    background: #ffec4a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
}

.price-card-head h3 {
    margin: 0;
    color: #000;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -0.7px;
}

.price-card-body {
    position: relative;
    min-height: 351px;
    padding: 30px 17px 40px;
}

.price-card-body p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #151515;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.42;
}

/* large yellow check watermark */
.price-card-body::after {
    content: "✓";
    position: absolute;
    right: 7px;
    bottom: -13px;
    color: #ffe545;
    font-size: 158px;
    font-weight: 900;
    line-height: 0.75;
    transform: rotate(-8deg);
    z-index: 1;
}

.price-btn {
    position: absolute;
    left: 27px;
    bottom: 42px;
    z-index: 3;
    width: 190px;
    height: 43px;
    background: #ffe545;
    color: #000;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.price-btn:hover {
    background: #000;
    color: #ffe545;
}

/* Responsive */
@media (max-width: 1199px) {
    .pricing-wrap {
        max-width: 960px;
    }

    .price-card-head h3 {
        font-size: 27px;
    }
}

@media (max-width: 991px) {
    .pricing-section {
        padding: 90px 15px 70px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 430px;
        margin: 0 auto;
    }

    .pricing-wrap > h2 {
        font-size: 34px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .pricing-section {
        padding: 70px 15px 55px;
    }

    .pricing-wrap > h2 {
        font-size: 28px;
    }

    .price-card-head h3 {
        font-size: 26px;
    }

    .price-card-body p {
        font-size: 15px;
    }
}


.dispatch-faq-section {
    background: #ffffff;
    padding: 53px 15px 71px;
    font-family: Arial, Helvetica, sans-serif;
}

.faq-wrap {
    max-width: 1192px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    margin-bottom: 78px;
}

.faq-heading h2 {
    margin: 0 0 17px;
    color: #000;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.7px;
}

.faq-heading p {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 0.95;
}

.faq-columns {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.faq-column {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-box {
    background: #f4f4f4;
    overflow: hidden;
    width: 100%;
}

.faq-question {
    width: 100%;
    min-height: 77px;
    border: 0;
    background: #f4f4f4;
    padding: 0 20px 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.faq-question i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #ffe545;
    color: #000;
    font-style: normal;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    margin-left: 18px;
}

.faq-box.active .faq-question i {
    font-size: 26px;
    line-height: 28px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 32px 24px;
    color: #333;
    font-size: 15px;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .dispatch-faq-section {
        padding: 75px 15px 60px;
    }

    .faq-heading {
        margin-bottom: 50px;
    }

    .faq-columns {
        flex-direction: column;
        max-width: 650px;
        margin: 0 auto;
    }

    .faq-column {
        width: 100%;
    }

    .faq-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .dispatch-faq-section {
        padding: 60px 15px 45px;
    }

    .faq-heading h2 {
        font-size: 28px;
    }

    .faq-heading p {
        font-size: 15px;
        line-height: 1.2;
    }

    .faq-heading p br {
        display: none;
    }

    .faq-question {
        padding: 0 16px 0 18px;
        min-height: 72px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-question i {
        width: 30px;
        height: 30px;
        min-width: 30px;
        line-height: 30px;
    }

    .faq-answer p {
        padding: 0 18px 22px;
    }
}
.site-footer {
    background: #050505;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 52px 15px 0;
}

.footer-wrap {
    max-width: 1190px;
    min-height: 406px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-top {
    display: grid;
    grid-template-columns: 260px 220px 180px 1fr;
    column-gap: 40px;
    align-items: flex-start;
}

.footer-logo img {
    width: 232px;
    height: auto;
    display: block;
}

.footer-bold-link {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 26px;
}

.footer-dispatch-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
}

.footer-dispatch-title span {
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
}

.footer-dispatch-title a {
    color: #fff348;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.footer-dispatch ul,
.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-dispatch li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    text-decoration: none;
}

.footer-menu {
    padding-top: 6px;
}

.footer-menu li {
    margin-bottom: 27px;
}

.footer-menu li a {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.footer-contact {
    padding-top: 0;
}

.footer-contact p,
.footer-contact > a {
    color: #fff348;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin: 0 0 29px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 2px;
}

.footer-social a {
    color: #fff348;
    font-size: 29px;
    line-height: 1;
    text-decoration: none;
}

.footer-social a:hover,
.footer-menu a:hover,
.footer-dispatch a:hover,
.footer-contact a:hover,
.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-bottom: 0;
}

.footer-copy p {
    color: #fff348;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 10px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-bottom: 22px;
}

.footer-bottom-links a {
    color: #fff348;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .site-footer {
        padding-top: 45px;
    }

    .footer-wrap {
        min-height: auto;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 35px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 45px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 22px;
        padding-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo img {
        width: 225px;
    }

    .footer-menu li {
        margin-bottom: 16px;
    }

    .footer-contact p,
    .footer-contact > a {
        margin-bottom: 18px;
    }

    .footer-social {
        gap: 25px;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
    }
}
.box-truck-section {
    position: relative;
    width: 100%;
    min-height: 585px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}



.box-truck-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(35, 19, 8, 0.76) 0%,
        rgba(48, 25, 18, 0.74) 42%,
        rgba(22, 22, 22, 0.68) 100%
    );
    z-index: 2;
}

.box-truck-content {
    position: relative;
    z-index: 3;
    max-width: 535px;
    text-align: center;
    margin-top: -8px;
}

.box-truck-breadcrumb {
    position: absolute;
    top: -135px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.box-truck-breadcrumb span {
    margin: 0 5px;
}

.box-truck-content h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 6px;
    letter-spacing: -0.6px;
}

.box-truck-content p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.42;
    margin: 0 auto 22px;
}

.box-truck-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    height: 44px;
    padding: 0 28px;
    border-radius: 50px;
    background: #ffed45;
    color: #000;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    margin-top: -1px;
    transition: 0.3s ease;
}

.box-truck-btn:hover {
    background: #000;
    color: #ffed45;
}

/* Responsive */
@media (max-width: 991px) {
    .box-truck-section {
        min-height: 560px;
        padding: 90px 20px;
    }

    .box-truck-content {
        max-width: 560px;
        margin-top: 0;
    }

    .box-truck-breadcrumb {
        position: static;
        transform: none;
        margin-bottom: 85px;
    }

    .box-truck-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .box-truck-section {
        min-height: 620px;
        padding: 65px 16px;
    }

    .box-truck-overlay {
        background: rgba(25, 18, 16, 0.78);
    }

    .box-truck-breadcrumb {
        margin-bottom: 60px;
        font-size: 12px;
    }

    .box-truck-content h1 {
        font-size: 29px;
    }

    .box-truck-content p {
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 20px;
    }

    .box-truck-btn {
        min-width: 145px;
        height: 43px;
        font-size: 15px;
    }
}

.box-info-section {
    width: 100%;
    background: #f7f7f7;
    padding: 70px 0 55px;
    font-family: Arial, Helvetica, sans-serif;
}

.box-info-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.box-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    margin-bottom: 78px;
}

.box-info-row:last-child {
    margin-bottom: 0;
}

.box-info-text h2 {
    color: #000;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 24px;
    max-width: 470px;
}

.box-info-text p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 18px;
    max-width: 520px;
}

.box-info-text p:last-child {
    margin-bottom: 0;
}

.box-info-image {
    width: 100%;
}

.box-info-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Screenshot wali image size ko close rakhne ke liye */
.box-info-row:first-child .box-info-image img {
    height: 330px;
}

.box-info-row.reverse .box-info-image img {
    height: 340px;
}

.box-info-row:last-child .box-info-image img {
    height: 310px;
}

/* Responsive */
@media (max-width: 991px) {
    .box-info-section {
        padding: 60px 0;
    }

    .box-info-row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 60px;
    }

    .box-info-row.reverse .box-info-image {
        order: 2;
    }

    .box-info-row.reverse .box-info-text {
        order: 1;
    }

    .box-info-text h2 {
        font-size: 28px;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .box-info-text p {
        max-width: 100%;
    }

    .box-info-image img,
    .box-info-row:first-child .box-info-image img,
    .box-info-row.reverse .box-info-image img,
    .box-info-row:last-child .box-info-image img {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .box-info-section {
        padding: 45px 0;
    }

    .box-info-container {
        padding: 0 16px;
    }

    .box-info-row {
        gap: 22px;
        margin-bottom: 48px;
    }

    .box-info-text h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .box-info-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .box-info-image img,
    .box-info-row:first-child .box-info-image img,
    .box-info-row.reverse .box-info-image img,
    .box-info-row:last-child .box-info-image img {
        height: 220px;
    }
}

.dispatch-form-section {
    width: 100%;
    background: #f4f4f4;
    
    padding:  22px 24px;
    font-family: Arial, Helvetica, sans-serif;
}

.dispatch-form-container {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 84px;
    align-items: start;
}

.dispatch-form-image img {
    width: 100%;
    height: 287px;
    object-fit: cover;
    display: block;
}

.dispatch-form-wrap h2 {
    color: #000;
    font-size: 29px;
    font-weight: 800;
    line-height: 1.1;
    margin: 9px 0 14px;
}

.dispatch-form {
    background: #fff;
    padding: 46px 18px 24px;
}

.form-success {
    display: none;
    background: #e9ffe9;
    color: #147c14;
    border: 1px solid #9be09b;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #b7b7b7;
    background: transparent;
    outline: none;
    color: #333;
    font-size: 12px;
    padding: 0 0 10px;
    border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a6a6a6;
    opacity: 1;
}

.form-group label {
    display: block;
    color: #a6a6a6;
    font-size: 12px;
    margin-bottom: 7px;
}

.form-group select {
    color: #333;
    appearance: auto;
}

.form-group textarea {
    height: 67px;
    resize: vertical;
}

.privacy-text {
    color: #506070;
    font-size: 11px;
    line-height: 1.2;
    margin: 0 0 13px;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #506070;
    font-size: 11px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.check-row input {
    width: 13px;
    height: 13px;
    margin-top: 1px;
    flex: 0 0 auto;
}

.dispatch-submit-btn {
    min-width: 85px;
    height: 36px;
    border: 0;
    border-radius: 50px;
    background: #ffed45;
    color: #000;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.dispatch-submit-btn:hover {
    background: #000;
    color: #ffed45;
}

/* Responsive */
@media (max-width: 991px) {
    .dispatch-form-container {
        max-width: 720px;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }

    .dispatch-form-image img {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .dispatch-form-container {
        gap: 24px;
    }

    .dispatch-form-wrap h2 {
        font-size: 26px;
    }

    .dispatch-form {
        padding: 32px 16px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dispatch-form-image img {
        height: 260px;
    }
}

.factoring-section {
    position: relative;
    width: 100%;
    min-height: 571px;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.factoring-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.factoring-content-box {
    position: relative;
    z-index: 2;
    width: 58.2%;
    min-height: 423px;
    margin-left: 86px;
    margin-top: 48px;
    background: #050505;
    padding: 78px 110px 60px 114px;
    color: #fff;
}

.factoring-content-box h2 {
    color: #fff;
    font-size: 76px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 6px;
    margin: 0 0 36px;
    max-width: 780px;
}

.factoring-content-box p {
    color: #fff;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.38;
    margin: 0 0 60px;
    max-width: 830px;
}

.factoring-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 73px;
    background: #ffed45;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-size: 25px;
    font-weight: 700;
    transition: 0.3s ease;
}

.factoring-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 1399px) {
    .factoring-content-box {
        width: 60%;
        margin-left: 60px;
        padding: 70px 80px 55px;
    }

    .factoring-content-box h2 {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .factoring-content-box p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .factoring-section {
        min-height: auto;
        padding: 45px 18px;
    }

    .factoring-content-box {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 55px 38px;
    }

    .factoring-content-box h2 {
        font-size: 44px;
        letter-spacing: 2px;
    }

    .factoring-content-box p {
        font-size: 19px;
        margin-bottom: 42px;
    }
}

@media (max-width: 575px) {
    .factoring-section {
        padding: 30px 14px;
    }

    .factoring-content-box {
        padding: 38px 24px;
    }

    .factoring-content-box h2 {
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: 1px;
        margin-bottom: 24px;
    }

    .factoring-content-box p {
        font-size: 16px;
        line-height: 1.5;
    }

    .factoring-btn {
        min-width: 165px;
        height: 56px;
        font-size: 18px;
    }
}

.achievements-section {
    width: 100%;
    background: #f8f8f8;
    padding: 65px 0 44px;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

.achievements-container {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 390px 423px;
    gap: 43px;
    align-items: start;
}

.achievements-left h2 {
    color: #000;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 20px;
}

.achievements-left p {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.38;
    margin: 0 0 26px;
}

.achievements-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 114px;
    height: 36px;
    padding: 0 22px;
    background: #ffed45;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    margin-top: 4px;
    transition: 0.3s ease;
}

.achievements-btn:hover {
    background: #000;
    color: #ffed45;
}

.achievements-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.achievement-card {
    min-height: 153px;
    border: 1px solid #ded8c8;
    background: transparent;
    padding: 27px 28px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    align-items: start;
}

.achievement-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    color: #000;
    font-size: 14px;
}

.achievement-icon.blue {
    background: #cfe3fb;
}

.achievement-icon.yellow {
    background: #f7f1bd;
}

.achievement-icon.green {
    background: #d5f6d0;
}

.achievement-content h3 {
    color: #000;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    margin: 12px 0 31px;
}

.achievement-content p {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .achievements-section {
        padding: 55px 18px;
    }

    .achievements-container {
        max-width: 720px;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .achievements-left h2 {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .achievements-section {
        padding: 42px 15px;
    }

    .achievements-left h2 {
        font-size: 28px;
    }

    .achievement-card {
        min-height: auto;
        padding: 24px 20px;
        grid-template-columns: 42px 1fr;
    }

    .achievement-content h3 {
        margin: 10px 0 18px;
    }
}
.factoring-process-section {
    position: relative;
    width: 100%;
    min-height: 535px;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

.process-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 2;
}

.process-container {
    position: relative;
    z-index: 3;
    max-width: 860px;
    min-height: 535px;
    margin: 0 auto;
    padding: 74px 0 48px;
}

.process-content {
    max-width: 405px;
}

.process-content h2 {
    color: #fff;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 18px;
    max-width: 360px;
}

.process-content p {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.38;
    margin: 0;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    margin-top: 62px;
    text-align: center;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    border-top: 1px dashed rgba(255, 255, 255, 0.75);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #ffed45;
    color: #000;
    border: 3px solid #101010;
    outline: 1px dashed #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.process-step h3 {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
}

.process-step p {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.42;
    margin: 0 auto;
    max-width: 165px;
}

/* Responsive */
@media (max-width: 991px) {
    .factoring-process-section {
        min-height: auto;
    }

    .process-container {
        max-width: 720px;
        min-height: auto;
        padding: 65px 18px;
    }

    .process-timeline {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .process-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .process-content h2 {
        max-width: 100%;
        font-size: 29px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 45px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        height: 100%;
        border-top: 0;
        border-left: 1px dashed rgba(255, 255, 255, 0.65);
    }

    .process-step {
        background: rgba(0, 0, 0, 0.18);
        padding: 4px 0;
    }

    .step-number {
        margin-bottom: 14px;
    }
}

@media (max-width: 575px) {
    .process-container {
        padding: 50px 16px;
    }

    .process-content h2 {
        font-size: 27px;
    }

    .process-content p,
    .process-step p {
        font-size: 12px;
    }
}

.invoice-pricing-section {
    width: 100%;
    background: #f8f8f8;
    padding: 50px 0 75px;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

.invoice-pricing-container {
    max-width: 910px;
    margin: 0 auto;
    padding: 0 15px;
}

.invoice-pricing-container > h2 {
    text-align: center;
    color: #000;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 47px;
    letter-spacing: 1.2px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pricing-card {
    min-height: 338px;
    border: 1px solid #ebe7dc;
    background: #fff;
}

.pricing-card-head {
    height: 55px;
    background: #f0eee7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-card-head h3 {
    color: #000;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.pricing-card-body {
    padding: 25px 25px 24px;
}

.pricing-card-body p {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 38px;
}

.pricing-card-body p:nth-child(2) {
    margin-bottom: 38px;
}

.pricing-card-body strong {
    font-weight: 800;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 115px;
    height: 36px;
    padding: 0 22px;
    border-radius: 50px;
    background: #f3f1eb;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: 0.3s ease;
}

.pricing-btn:hover {
    background: #ffed45;
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .invoice-pricing-section {
        padding: 45px 0 60px;
    }

    .invoice-pricing-container {
        max-width: 720px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-card-body {
        padding: 25px;
    }

    .pricing-card-body p,
    .pricing-card-body p:nth-child(2) {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .invoice-pricing-section {
        padding: 38px 0 45px;
    }

    .invoice-pricing-container > h2 {
        font-size: 27px;
        margin-bottom: 30px;
        letter-spacing: 0;
    }

    .pricing-card-head h3 {
        font-size: 15px;
    }

    .pricing-card-body p {
        font-size: 13px;
    }
}

.freight-four-section {
    width: 100%;
    background: #f8f8f8;
    padding: 0 0 35px;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

.freight-four-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px;
}

.freight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
    margin-bottom: 38px;
}

.freight-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.freight-text {
    padding-top: 8px;
}

.freight-text h2 {
    color: #000;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 17px;
    max-width: 360px;
}

.freight-text p {
    color: #000;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 12px;
    max-width: 390px;
}

.freight-image-wrap {
    position: relative;
    width: 100%;
}

.freight-image-wrap img {
    width: 100%;
    height: 208px;
    object-fit: cover;
    display: block;
}

.freight-image-wrap span {
    position: absolute;
    color: #ffed45;
    font-size: 62px;
    font-weight: 800;
    line-height: 1;
    z-index: 2;
}

.freight-image-wrap.number-right span {
    right: -13px;
    bottom: -22px;
}

.freight-image-wrap.number-left span {
    left: -23px;
    bottom: -22px;
}

/* Section-specific adjustment */
.freight-row:nth-child(2) .freight-text {
    padding-top: 16px;
}

.freight-row:nth-child(3) .freight-text {
    padding-top: 6px;
}

.freight-row:nth-child(4) .freight-text {
    padding-top: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .freight-four-container {
        max-width: 720px;
    }

    .freight-row,
    .freight-row.reverse {
        gap: 30px;
    }

    .freight-text h2 {
        font-size: 27px;
    }

    .freight-image-wrap img {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .freight-four-section {
        padding: 35px 0;
    }

    .freight-row,
    .freight-row.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 42px;
    }

    .freight-row.reverse .freight-image-wrap {
        order: 2;
    }

    .freight-row.reverse .freight-text {
        order: 1;
    }

    .freight-text h2 {
        max-width: 100%;
        font-size: 28px;
    }

    .freight-text p {
        max-width: 100%;
        font-size: 12px;
    }

    .freight-image-wrap img {
        height: 260px;
    }

    .freight-image-wrap.number-right span {
        right: 0;
    }

    .freight-image-wrap.number-left span {
        left: 0;
    }
}

@media (max-width: 575px) {
    .freight-four-container {
        padding: 0 15px;
    }

    .freight-text h2 {
        font-size: 25px;
    }

    .freight-image-wrap img {
        height: 220px;
    }

    .freight-image-wrap span {
        font-size: 52px;
    }
}
.company-intro-section {
    width: 100%;
    background: #f7f7f4;
    padding: 20px 0 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.company-intro-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 53px;
}

.company-intro-container p {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .company-intro-container {
        padding: 0 24px;
    }

    .company-intro-container p {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .company-intro-section {
        padding: 18px 0;
    }

    .company-intro-container {
        padding: 0 16px;
    }

    .company-intro-container p {
        font-size: 17px;
        line-height: 1.5;
    }
}
.dispatch-section{
    padding: 60px 0;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.top-text{
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
}

.section-title{
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin: 25px 0 30px;
}

.benefits-row{
    margin-top: 10px;
}

.benefits-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* bullet dot like design */
.benefits-list li::before{
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-size: 18px;
    line-height: 1;
}


.hotshot-section{
    padding: 60px 0;
    background: #fff;
    font-family: Arial, sans-serif;
}

/* Main heading */
.main-title{
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

/* Paragraph text */
.text{
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

/* Sub heading */
.sub-title{
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 30px 0 25px;
}

/* list styling */
.list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* bullet dot */
.list li::before{
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #000;
}
.loader{
    position: fixed;
    inset: 0;
    background: #ffeb3b; /* 🔥 yellow background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide{
    opacity: 0;
    visibility: hidden;
}

/* center box */
.loader-box{
    text-align: center;
}

/* logo */
.loader-logo img{
    width: 110px;
    height: auto;
    margin-bottom: 20px;

    /* 🔥 make black style feel */
    filter: brightness(0) saturate(100%);
}

/* spinner (black theme) */
.spinner{
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0,0,0,0.15);
    border-top: 4px solid #000;
    border-radius: 50%;
    margin: 0 auto 18px;
    animation: spin 0.9s linear infinite;
}

/* text */
.loader-text{
    font-size: 14px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
}

/* animation */
@keyframes spin{
    0%{ transform: rotate(0deg); }
    100%{ transform: rotate(360deg); }
}