/* global csss */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'), url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'), url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'), url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-SemiBold.woff2') format('woff2'), url('../fonts/Archivo-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Regular.woff2') format('woff2'), url('../fonts/Archivo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul,
ol,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
label,
div,
body {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

body {
    font-family: 'Inter';
}

.container {
    width: 100%;
    max-width: 1340px;
    padding: 0px 20px;
    margin: 0 auto;
}

.clear {
    clear: both;
}

input {
    outline: 0;
}

section,
footer {
    overflow: hidden;
}

h1 {
    font-weight: 600;
    font-size: 50px;
    line-height: 54px;
}

h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
}


/* global csss */


/* home page start here */


/* header section start here */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 36px;
    box-shadow: 0px 4px 4px 0px #00000040;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

header .navbar ul {
    display: flex;
    gap: 23px;
}

header .navbar ul li a {
    font-size: 18px;
    line-height: 24px;
    color: #1C1F35;
}

header .navbar ul li a.active {
    font-weight: 700;
    color: #A20121;
}

header .quote-country-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

header .get-btn a {
    background: #A20121;
    display: inline-block;
    width: 204px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    padding: 11px 0px;
    text-align: center;
}

header .dropdown {
    position: relative;
    display: inline-block;
    border: 1px solid #A20121;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    background-color: #fff;
}

header .selected-flag {
    display: flex;
    align-items: center;
    gap: 8px;
}

header .selected-flag img {
    width: 24px;
}

header .arrow {
    font-size: 18px;
    color: #333;
}

header .dropdown-menu {
    position: absolute;
    top: 130%;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: none;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

header .dropdown-menu div {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

header .dropdown-menu div:hover {
    background-color: #f0f0f0;
}

header .dropdown-menu img {
    width: 24px;
}

header .toggle-btn {
    display: none;
}


/* header section end here */


/* hero section start here */

.hero {
    background-image: url(../images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 262px 0px 252px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 83px;
}

.hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 20px;
    background-image: url(../images/wcc-guy.png);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 351px;
    width: 100%;
    height: 421px;
    z-index: -1;
}

.hero span {
    font-size: 30px;
    line-height: 36px;
    color: #1C1F35;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 14px;
    display: inline-block;
}

.hero h1 {
    color: #000;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    line-height: 28px;
    color: #1C1F35;
    margin: 0 auto;
    margin-bottom: 44px;
    max-width: 600px;
    width: 100%;
}

.hero-btn {
    display: flex;
    gap: 42px;
    justify-content: center;
}

.whatsapp-float {
    display: inline-block;
    position: fixed;
    left: 46px;
    bottom: 40px;
    z-index: 999;
    width: 80px;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

.hero-btn a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    background-color: #A60002;
    max-width: 268px;
    width: 100%;
    padding: 12px 0px;
    display: inline-block;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.hero-btn a:last-child {
    background-color: #fff;
    color: #000;
    max-width: 158px;
}

.operate {
    background-color: #A60002;
    padding: 110px 0px 150px;
    position: relative;
    z-index: 1;
}


/* hero section end here */


/* operate section start here */

.operate::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/red-layer.png);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 532px;
    width: 100%;
    height: 628px;
    z-index: -1;
}

.operate h2 {
    font-family: 'Archivo';
    color: #fff;
    margin-bottom: 18px;
}

.operate p {
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 36px;
    max-width: 664px;
    width: 100%;
}

.operate .operate-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.operate .operate-cards .card-items {
    max-width: 412px;
    width: 100%;
    background-color: #940002;
    border-radius: 8px;
    border: 1px solid #710001;
    padding: 45px 19px;
}

.operate .card-items img {
    margin-bottom: 10px;
}

.operate .card-items h3 {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.operate .card-items p {
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin: 0;
    max-width: 100%;
}


/* operate section end here */


/* about section start here */

.about-us {
    padding: 112px 0px;
    background-color: #fff;
    position: relative;
}

.about-us .about-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-us h2 {
    font-family: 'Archivo';
    color: #000;
    margin-bottom: 18px;
}

.about-us p {
    font-size: 20px;
    line-height: 26px;
    color: #000;
    margin-bottom: 32px;
    max-width: 533px;
    width: 100%;
}

.about-us span {
    font-family: 'Archivo';
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    background-color: #d1b84733;
    padding: 14px 26px;
    border-radius: 8px;
    display: block;
    text-transform: capitalize;
}

.about-us .about-inner .col-right {
    position: relative;
}

.about-us .about-inner .col-right::before {
    content: "";
    position: absolute;
    bottom: -100px;
    right: 0px;
    background-image: url(../images/wcc-worker.png);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 217px;
    width: 100%;
    height: 269px;
    z-index: 1;
}

.about-us .about-inner .col-right img {
    width: 100%;
    height: 100%;
}


/* about section end here */


/* cargo section start here */

.cargo {
    padding: 38px 0px;
    background-color: #fff;
}

.cargo .cargo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cargo h2 {
    font-family: 'Archivo';
    color: #000;
    margin-bottom: 18px;
}

.cargo p {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 32px;
    max-width: 533px;
    width: 100%;
}

.cargo a {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    background-color: #D1B746;
    padding: 14px 0px;
    max-width: 220px;
    width: 100%;
    color: #000;
    display: inline-block;
    text-align: center;
}

.cargo .col-left {
    background-image: url(../images/container.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 575px;
    height: 407px;
    position: relative;
}

.cargo .col-left .status {
    display: flex;
    flex-direction: column;
    row-gap: 13px;
    position: absolute;
    top: 48px;
    right: -94px;
}

.cargo .col-left .status-box {
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #AC8829;
    border-radius: 8px;
    padding: 18px 20px;
    width: 412px;
    backdrop-filter: blur(50.8px);
    background-color: rgba(255, 255, 255, 0.7);
}

.cargo .col-left .status-box h3 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    color: #000;
}

.cargo .col-left .status-box span {
    font-size: 18px;
    line-height: 24px;
    color: #000;
}


/* services section start here */

.services {
    /*background-image: url(../images/map2.png);*/
    background-color: rgba(166, 0, 2, 1);
    padding: 60px 0px 46px;
}

.services .services-inner {
    background-image: url(../images/map2.png);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 921px;
    width: 100%;
    margin: 0 auto;
    height: 586px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services .services-inner h2 {
    font-family: 'Archivo';
    color: #fff;
    margin-bottom: 10px;
}

.services .services-inner p {
    font-size: 18px;
    line-height: 24px;
    max-width: 494px;
    width: 100%;
    color: #fff;
    margin: 0 auto;
}

.services .services-btn {
    display: flex;
    gap: 42px;
    justify-content: center;
}

.services .services-btn a {
    max-width: 264px;
    width: 100%;
    display: inline-block;
    padding: 21px 0px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    background-color: #D1B746;
}

.services .services-btn a:last-child {
    background-color: #000;
    color: #fff;
}


/* services section end here */


/* shippments section start here */

.shippments {
    padding: 60px 0px 86px;
}

.shippments .efficient-cargo {
    display: flex;
}

.shippments .efficient-cargo .col-left {
    padding: 50px 40px;
    background-color: #F2F0E6;
    width: 50%;
}

.shippments .efficient-cargo .col-left h2 {
    font-family: 'Archivo';
    margin-bottom: 10px;
    color: #000;
}

.shippments .efficient-cargo .col-left p {
    font-family: 'Archivo';
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.shippments .efficient-cargo .col-right {
    width: 50%;
}

.shippments .efficient-cargo .col-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shippments .plan {
    display: flex;
}

.shippments .plan-items {
    max-width: 325px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding: 18px 0px;
    background: #D1B746;
}

.shippments .plan-items:nth-child(2) {
    background: #D1B746BF;
}

.shippments .plan-items:nth-child(3) {
    background: #D1B7468C;
}

.shippments .plan-items:last-child {
    background: #D1B74659;
}

.shippments .plan-items h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
}

.shippments .flying-cargo {
    flex-direction: row-reverse;
}

.shippments .flying-cargo .col-left {
    background-color: transparent;
}


/* shippments section end here */


/* customer section start here */

.customer {
    padding: 0px 0px 100px;
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
}

.customer h2 {
    font-family: 'Archivo';
    margin-bottom: 26px;
}

.customer .customer-slider {
    display: flex;
}

.customer .slid-items {
    padding: 57.35px 66.6px;
    background-color: #F4F4F4;
}

.customer .slid-items .card-head {
    display: flex;
    align-items: center;
}

.customer .slid-items .profile-pic {
    margin-right: 20px;
}

.customer .slid-items h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #091242;
}

.customer .slid-items span {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #091242;
}

.customer .slid-items .quotation {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #A20121;
    margin-left: auto;
}

.customer .slid-items .quotation img {
    margin: 0;
}

.customer .slid-items p {
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
    margin: 22px 0px 30px;
    color: #666C89;
}

.customer .slid-items:nth-child(even) {
    background-color: #A20121;
}

.customer .slid-items:nth-child(even) h4,
.customer .slid-items:nth-child(even) span,
.customer .slid-items:nth-child(even) p {
    color: #fff;
}

.customer .slid-items:nth-child(even) .quotation {
    background: linear-gradient(94.06deg, #FFFFFF -1.21%, #FFF8E1 58.66%, #FFDCB2 116.84%);
}

.customer .card-head img {
    margin-left: auto;
}

.slick-arrow {
    width: 40.27px !important;
    height: 40.27px;
    background-color: #A20121;
    border-radius: 50%;
    top: -46px;
    right: 0px;
}

.slick-prev {
    left: auto;
    right: 50px
}

.slick-prev:before {
    content: '';
    background-image: url(../images/arrow-left.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: invert(1);
}

.slick-next:before {
    content: '';
    background-image: url(../images/arrow-right.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: invert(1);
}

.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
    background-color: #A20121;
}


/* customer section end here */


/* contact-us section start here */

.contact-us {
    background-color: #000;
}

.contact-us .contact-inner {
    display: flex;
    gap: 78px;
    max-width: 1066px;
    width: 100%;
    margin: 0 auto;
    padding: 126px 0px 62px;
}

.about-contact .contact-inner {
    padding: 126px 0px;
}

.contact-us .col-left {
    max-width: 312px;
    width: 100%;
}

.contact-us .col-left h2 {
    color: #fff;
    margin-bottom: 6px;
}

.contact-us .col-left p {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.contact-us .col-left ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.contact-us .col-left ul li:last-child {
    margin-bottom: 0;
}

.contact-us .col-left ul li a {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}

.contact-us .col-right {
    max-width: 672px;
    width: 100%;
    margin-top: 38px;
}

.contact-us .col-right .form-group {
    display: flex;
    gap: 24px;
}

.contact-us .col-right form input,
.contact-us .col-right form textarea {
    width: 100%;
    padding: 18px 26px;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    border: 1px solid #4E5683;
    margin-bottom: 26px;
    background-color: transparent;
}

.contact-us .col-right form button {
    display: block;
    width: 176px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding: 16px 0px;
    background: #A20121;
    border: 0;
    cursor: pointer;
}

.contact-us .gallery {
    padding-bottom: 22px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.contact-us .gallery img {
    width: 100%;
    height: 100%;
}


/* contact-us section end here */


/* sale-together section start here */

.sale-together {
    background-image: url(../images/sale-together.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0px;
    text-align: center;
}

.sale-together h2 {
    color: #fff;
}


/* sale-together section end here */


/* footer section start here */

footer {
    padding: 60px 0px 42px;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    width: 779px;
    height: 417px;
    top: 66px;
    right: 20px;
    background-image: url(../images/footer-map.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

footer .footer-inner {
    display: flex;
    gap: 140px;
    max-width: 1066px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 48px;
}

footer .col-left {
    max-width: 282.45px;
    width: 100%;
}

footer .col-left p {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin-bottom: 30px;
    max-width: 282px;
    width: 100%;
}

footer .col-left ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

footer .col-left ul li:last-child {
    margin-bottom: 0;
}

footer .col-left ul li a {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #000;
}

footer .col-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    max-width: 680.89px;
    width: 100%;
    margin-top: 65px;
}

footer .col-right h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 65px;
    color: #000;
}

footer .col-right ul li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin-bottom: 20px !important;
    display: inline-block;
}

footer .col-right ul li a:last-child {
    margin-bottom: 0;
}

footer .col-right form input {
    width: 280px;
    padding: 18px 26px;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    border: 1px solid black;
    margin-bottom: 18px;
}

footer .col-right form button {
    display: block;
    width: 134px;
    font-weight: 600;
    font-size: 14.17px;
    line-height: 135%;
    color: #fff;
    padding: 16px 0px;
    background: #A20121;
    border: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

footer .col-right .contact-form {
    position: relative;
}

footer .col-right .social-link ul {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
    margin-top: 20px;
}

footer .col-right .social-link ul a {
    margin: 0 !important;
}

footer .copyright {
    border-top: 1px solid #A20121;
    padding: 22px 0px;
    text-align: center;
}

footer .copyright span {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}


/* footer section start here */


/* home page end here */


/* about-us page start here */


/* deliver section start here */

.deliver {
    padding: 120px 0px 0px;
    margin-top: 83px;
}

.deliver .deliver-inner {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.deliver .deliver-inner h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.deliver .deliver-inner p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 28px;
    color: #000;
}

.deliver .deliver-inner img {
    width: 100%;
    height: 100%;
}


/* deliver section end here */


/* status-section start here*/

.stats-section {
    text-align: center;
}

.stats-section img {
    width: 100%;
    height: 100%;
}

.stats-section .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 100px;
    justify-content: center;
    margin: 0 auto;
    margin-top: -114px;
    position: relative;
    z-index: 1;
    background: var(--light-background, #FAF9F3);
    padding: 42px 0px 60px;
}

.stats-section .stat-box .stat-number {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    color: #000;
    margin-bottom: 30px;
}

.stats-section .stat-box .stat-label {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #A20121;
}


/* status-section end here*/


/* message section start here */

.message {
    padding: 60px 0px;
    position: relative;
}

.message .message-wrap {
    display: flex;
    gap: 34px;
}

.message h2 {
    text-align: center;
    color: #A20121;
    margin-bottom: 55px;
}

.message p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #000;
    max-width: 1135px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.message .col-left p:last-child {
    margin: 0;
}

.message .message-inner {
    display: flex;
    gap: 70px;
    max-width: 1135px;
    width: 100%;
    margin: 0 auto;
}

.message .message-inner p {
    text-align: left;
}

.message .message-inner .chairman-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.message .chairman-profile h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    color: #000;
    margin-bottom: 10px;
}

.message .chairman-profile span {
    font-size: 18px;
    line-height: 24px;
    color: #000;
}


/* message section end here */


/* our-purpose section start here */

.our-purpose {
    padding: 58px 0px 72px;
    background-color: #A20121;
    position: relative;
    z-index: 1;
}

.our-purpose::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/red-layer.png);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 532px;
    width: 100%;
    height: 628px;
    z-index: -1;
}

.our-purpose .purpose-items {
    display: flex;
    gap: 58px;
}

.our-purpose .purpose-items h2 {
    font-family: 'Archivo';
    color: #000;
    margin-bottom: 10px;
}

.our-purpose .purpose-items .col-right {
    max-width: 533px;
    width: 100%;
}

.our-purpose .purpose-items p {
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 10px;
    color: #fff;
}

.our-purpose .purpose-items p:last-child {
    color: #000;
    margin: 0;
    padding: 14px 26px;
    border-left: 6px solid #FFFFFF;
    text-transform: capitalize;
}

.purpose-inner .purpose-items:first-child .col-left img {
    margin-top: 17px;
}

.purpose-inner .purpose-items .col-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purpose-inner .purpose-items:nth-child(even) .col-right {
    margin-top: 32px;
}

.purpose-inner .purpose-items:nth-child(even) {
    margin-left: 108px;
    margin-top: -100px;
}


/* our-purpose section end here */


/* team section start here */
/*.team {*/
/*    padding: 48px 0;*/
/*    text-align: center;*/
/*    background-color: #f9f9f9;*/
/*}*/

/*.team h2 {*/
/*    color: #000;*/
/*    margin-bottom: 50px;*/
/*    font-size: 32px;*/
/*}*/

/*.team .team-inner {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    gap: 30px;*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 0 20px;*/
/*}*/

/*.team .team-info {*/
/*    background: #fff;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);*/
/*    width: 100%;*/
/*    max-width: 280px;*/
/*    padding: 30px 20px;*/
/*    box-sizing: border-box;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    min-height: 400px;*/
/*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.team .team-info:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.team .team-info img {*/
/*    width: 140px;*/
/*    height: 140px;*/
/*    object-fit: cover;*/
/*    border-radius: 50%;*/
/*    margin-bottom: 20px;*/
/*    border: 4px solid #f1f1f1;*/
/*}*/

/*.team .team-info h4 {*/
/*    font-weight: 700;*/
/*    font-size: 22px;*/
/*    line-height: 1.3;*/
/*    color: #A20121;*/
/*    margin-bottom: 6px;*/
/*    text-align: center;*/
/*}*/

/*.team .team-info span {*/
/*    font-size: 16px;*/
/*    color: #666;*/
/*    text-align: center;*/
/*}*/

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.team-title {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 700;
    color: #333;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    max-width: 260px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.team-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e0e0e0;
    margin-bottom: 20px;
}

.team-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #A20121;
    margin-bottom: 6px;
}

.team-content p {
    font-size: 15px;
    color: #666;
}





/* team section end here */


/* about-us page end here */


/* rates page start here */


/* rates-banner section start here */

.rates-banner {
    padding: 176px 0px 76px;
    background-image: url(../images/rates-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 83px;
}

.rates-banner h1 {
    margin-bottom: 33px;
    color: #fff;
}

.rates-banner .search {
    display: flex;
    gap: 12px;
    max-width: 400px;
    width: 100%;
    padding: 10px 12px;
    background-color: #fff;
    border-radius: 8px;
    margin-left: auto;
}

.rates-banner .searchTerm {
    width: 100%;
    border: 0;
    padding: 0;
    outline: none;
    font-size: 14px;
    line-height: 20px;
    color: #4B5558;
}

.rates-banner .searchButton {
    border: 0;
    text-align: center;
    cursor: pointer;
    background-color: #ffff;
}


/* rates-banner section end here */


/* courier section start here */

.courier {
    padding: 72px 0px;
}

.courier .courier-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.courier .courier-inner .col-left,
.courier .courier-inner .col-right {
    width: 50%;
}

.courier .courier-inner h2 {
    font-family: 'Archivo';
    max-width: 530px;
    width: 100%;
    margin-bottom: 22px;
}

.courier .courier-inner p {
    font-size: 18px;
    line-height: 24px;
    max-width: 552px;
    width: 100%;
    margin-bottom: 66px;
}

.courier .courier-inner a {
    max-width: 221px;
    width: 100%;
    background-color: #D1B746;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    display: block;
    padding: 8px 0px;
    text-align: center;
    margin-left: auto;
    margin-right: 60px;
}

.courier .courier-inner .col-right img {
    width: 100%;
    height: 100%;
}


/* courier section end here */


/* price section start here */

.price {
    background-color: #FAF9F3;
    padding: 80px 20px;
}

.price h2 {
    text-align: center;
    margin-bottom: 41px;
    color: #333333;
}

.price .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price .table-wrapper table {
    max-width: 1083px;
    min-width: 700px;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    margin-top: 20px;
}

.price table th,
.price table td {
    border: 1px solid #E4E4E4;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.price table th {
    background-color: #fff;
}

.price table thead tr th:first-child {
    border-radius: 12px 0px 0px 0px;
}

.price table thead tr th:nth-child(4) {
    display: flex;
    align-items: center;
    gap: 16px;
}

.price table thead tr th:last-child {
    border-radius: 0px 12px 0px 0px;
}

.price table tbody tr:last-child td:first-child {
    border-radius: 0px 0px 0px 12px;
}

.price table tbody tr:last-child td:last-child {
    border-radius: 0px 0px 12px 0px;
}

.price table .highlight {
    background-color: #9e0b0f;
    text-align: left;
}

.price table tbody tr td:nth-child(2),
.price table tbody tr td:nth-child(4) {
    background-color: #fff;
}

.price table tbody tr td:first-child,
.price table tbody tr td:nth-child(3),
.price table tbody tr td:last-child {
    color: #fff;
}

.price table tbody tr td:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price table tbody tr td:nth-child(2),
.price table tbody tr td:nth-child(3),
.price table tbody tr td:nth-child(4),
.price table tbody tr td:last-child {
    font-weight: 400;
}

.price .table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.price .table-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}


/* price section end here */


/* rates page end here */


/* tracking page start here */


/* tracking-banner section start here */

.tracking-banner {
    padding: 148px 0px 120px;
    text-align: center;
    background-image: url(../images/tracking-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 83px;
}

.tracking-banner span {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
    display: inline-block;
}

.tracking-banner h1 {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 24px;
    color: #fff;
}

.tracking-banner p {
    font-size: 20px;
    line-height: 28px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}


/* tracking-banner section end here */


/* shipping section start here */

.shipping {
    padding: 52px 0px;
}

.shipping .shipping-inner {
    background-color: #A20121;
    border-radius: 20px;
}

.shipping .shipping-inner .col-left {
    padding: 68px 62px 84px;
    width: 100%;
    text-align: center;
}

.shipping h2 {
    color: #fff;
}

.shipping p {
    font-size: 20px;
    line-height: 26px;
    color: #fff;
    margin: 40px 0px 60px;
}

.shipping .col-left form#trackingForm {
    display: flex;
    justify-content: center;
}

.shipping .col-left .tracking-button {
    max-width: 484px;
    width: 100%;
    padding: 18px 20px 18px 82px;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shipping .col-left input {
    font-size: 20px;
    line-height: 26px;
    color: #000;
    border: 0px;
    width: 100%;
}

.shipping .col-left button {
    max-width: 50px;
    width: 100%;
    height: 50px;
    border-radius: 50%;
    background-color: #A20121;
    border: 0px;
    cursor: pointer;
}


/* shipping section end here */


/* network-container section start here */

.network-container {
    color: #fff;
    text-align: center;
    padding: 80px 0px;
}

.network-container .head {
    margin-bottom: 40px;
}

.network-container .head h2 {
    margin-bottom: 20px;
    color: #000;
}

.network-container .head p {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.network-container .node {
    background-color: #830614;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto 20px auto;
    max-width: 340px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}




.network-container .node .icon-box {
    width: 45px;
    height: 40px;
    margin-right: 10px;
}

.network-container .node .icon-box img {
    width: 100%;
    height: 100%;
}

.network-container .node h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.network-container .node p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #ddd;
}
.network-container .text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* Route Info Styling */
.route-info {
    display: flex;
    align-items: center;
    gap: 12px; /* space between items */
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    flex-wrap: wrap; /* wrap if needed on small screens */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.route-date,
.route-duration,
.route-label {
    font-size: 12px;
    color: #fff;
    opacity: 0.85;
}

.route-date {
    font-weight: 600;
}

.route-duration {
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 8px;
    border-radius: 15px;
    font-weight: 600;
    white-space: nowrap; /* keep duration on one line */
}

.route-label {
    font-weight: 400;
    opacity: 0.7;
}
.status-label {
    margin-top: 8px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    user-select: none;
}

/* Status variants */
.status-label.in_transit {
    background-color: #ff9800; /* orange */
}

.status-label.delivered {
    background-color: #4caf50; /* green */
}

.status-label.pending {
    background-color: #2196f3; /* blue */
}

.status-label.cancelled {
    background-color: #f44336; /* red */
}
.network-container .node .timing {
    font-size: 14px;
    font-weight: 600;
    color: #2a6fdb;
    background: #f0f6ff;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

.network-container .arrow-down {
    width: 4px;
    height: 40px;
    background-color: #000;
    margin: 0 auto 20px auto;
    position: relative;
}

.network-container .arrow-down span {
    display: inline-block;
    width: 4px;
    height: 20px;
    background-color: #c51a0f;
    position: absolute;
    bottom: 0;
    left: 0;
}

.network-container .road-transport-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.network-container .road-transport-left,
.network-container .road-transport-center,
.network-container .road-transport-right {
    display: flex;
    align-items: center;
    box-shadow: 0px 20px 50px 0px #DCE0F980;
    border: 2px solid #A20121;
    border-radius: 5px;
    padding: 5px 10px;
    width: 200px;
    justify-content: center;
    font-size: 18px;
    color: #A20121;
    margin-bottom: 20px;
}

.network-container .icon-box-small {
    width: 30px;
    margin-right: 10px;
}

.network-container .icon-box-small img {
    width: 100%;
}


/* .horizontal-arrows {
    margin: 40px 0;
} */


/* .arrow-right,
.arrow-left {
    display: inline-block;
    width: 40px;
    height: 10px;
    background-color: #fff;
    margin: 0 10px;
} */


/* === New Card Styles === */

.network-container .distributors-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    justify-content: center;
}

.network-container .distributor-card.single-card {
    max-width: 100%;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 20px 50px 0px #DCE0F980;
    border: 2px solid #A20121
}

.network-container .shipment-header {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.network-container .shipment-header .shipment-number {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
    color: #B0B0B0;
}

.network-container .shipment-header h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #232323;
    margin-bottom: 10px;
}

.network-container .shipment-header .shipment-type {
    font-size: 14px;
    line-height: 20px;
    color: #484A58;
}


/* .shipment-truck {
    position: absolute;
    top: 0;
    right: 0;
} */

.network-container .shipment-truck img {
    width: 100px;
}

.network-container .shipment-locations {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin: 20px 0;
}

.network-container .location-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.network-container .location-item:last-child {
    margin: 0;
}

.network-container .green-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #E8F9EE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-container .green-dot span {
    background-color: #84e195;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.network-container .red-dot {
    width: 38px;
    height: 38px;
    margin-right: 15px;
}

.network-container .location-item h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #232323;
    text-align: left;
}

.network-container .location-item p {
    font-size: 12px;
    line-height: 18px;
    color: #B0B0B0;
    text-align: left;
}

.network-container .client-footer {
    display: flex;
    align-items: center;
}

.network-container .client-footer .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.network-container .client-footer span {
    font-size: 14px;
    line-height: 20px;
    color: #B0B0B0;
    text-align: left;
    display: block;
}

.network-container .client-footer h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #232323;
    text-align: left;
}

.network-container .client-footer p {
    font-size: 14px;
    line-height: 20px;
    color: #484A58;
    text-align: left;
}

.network-container .client-actions {
    margin-left: auto;
}

.network-container .client-actions img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: #F7F5FF;
    margin-left: 10px;
    cursor: pointer;
    padding: 8px;
}


/* network-container section end here */


/* tracking page end here */


/* contact page start here */


/* contact-banner section start here */

.contact-banner {
    padding: 200px 0px 280px;
    text-align: center;
    background-image: url(../images/contact-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 83px;
}

.contact-banner h1 {
    color: #fff;
}

.contact-banner span {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: #fff;
}


/* contact-banner section end here */


/* contact-form section start here */

.contact-form {
    padding: 42px 20px;
    max-width: 1434px;
    width: 100%;
    margin: 0 auto;
}

.contact-form .contact-form-inner {
    background: #A201214D;
    border-radius: 20px;
    padding: 46px 30px 46px 104px;
    display: flex;
    align-items: center;
    gap: 95px;
}

.contact-form .col-left {
    max-width: 520px;
    width: 100%;
}

.contact-form .col-left h2 {
    color: #A20121;
}

.contact-form .col-left p {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin: 42px 0px 56px;
}

.contact-form .social-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-form .social-contact a {
    max-width: 130px;
    width: 100%;
    height: 130px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 28px 52px 54px;
    max-width: 685px;
    width: 100%;
}

.contact-form-box .form-row {
    display: flex;
    gap: 60px;
    margin-bottom: 20px;
}

.contact-form-box .form-row label {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #000;
}

.contact-form-box .form-row input,
.contact-form-box .form-row textarea {
    background: #A201214D;
    border-radius: 10px;
    max-width: 294px;
    width: 100%;
    padding: 22px 10px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    border: 0;
    margin-top: 10px;
}

.contact-form-box .form-row textarea {
    max-width: 100%;
}

.contact-form-box .form-row:nth-child(3) {
    flex-direction: column;
    gap: 0px;
}

.contact-form .checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px 0px 70px;
}

.contact-form .checkbox-row label {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    cursor: pointer;
}

.contact-form .checkbox-row input[type="checkbox"] {
    max-width: 30px;
    width: 100%;
    height: 30px;
    background-color: #A20121;
    border: 1px solid #A20121;
    border-radius: 8px;
    box-shadow: 0px 0px 0px 4px #F4EBFF;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
}

.contact-form .checkbox-row input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 3px;
    left: 7px;
    font-size: 18px;
    color: white;
}

.contact-form-box .form-btn {
    max-width: 506px;
    width: 100%;
    margin: 0 auto;
}

.contact-form-box button {
    width: 100%;
    border-radius: 10px;
    border: 0px;
    background-color: #A20121;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    padding: 25px 0px;
    cursor: pointer;
}


/* contact-form section end here */


/* network section end here */

.network h2 {
    color: #A20121;
    max-width: 748px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 94px;
    text-align: center;
}

.network-inner {
    display: flex;
    gap: 56px;
    text-align: center;
}

.network-inner .world-items {
    max-width: 394px;
    width: 100%;
}

.network-inner iframe {
    height: 371px;
}

.network-inner h3 {
    font-weight: 700;
    font-size: 23px;
    line-height: 29px;
    margin: 25px 0px 18px;
    color: #A20121;
}

.network-inner a {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.network-inner a img {
    margin-right: 10px;
}

.network-inner .location-btn a {
    max-width: 216px;
    width: 100%;
    display: inline-block;
    border-radius: 10px;
    background-color: #A20121;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    padding: 16px 0px;
    margin: 0;
}


/* network section end here */


/* contact page end here */

@media (max-width: 1400px) {
    .hero {
        padding: 200px 0px;
    }
    .cargo .col-left .status {
        right: 0px;
    }
}

@media (max-width: 1200px) {
    header .navbar ul {
        gap: 16px;
    }
    header .navbar ul li a {
        font-size: 14px;
    }
    header .get-btn a {
        width: 180px;
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        padding: 8px 0px;
    }
    .hero {
        padding: 160px 0px;
    }
    .hero span {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 10px;
        letter-spacing: 12px;
    }
    h1 {
        font-size: 46px;
        line-height: 54px;
        margin-bottom: 10px;
    }
    .hero::before {
        max-width: 300px;
        height: 360px;
    }
    .whatsapp-float {
        left: 30px;
        bottom: 20px;
        max-width: 60px;
        width: 100%;
    }
    p {
        font-size: 16px !important;
        line-height: 24px !important;
    }
    .operate {
        padding: 110px 0px;
    }
    .about-us .about-inner .col-left,
    .about-us .about-inner .col-right {
        width: 50%;
    }
    .cargo .cargo-inner {
        gap: 20px;
    }
    .cargo .col-left .status-box {
        gap: 10px;
    }
    .services .services-btn a {
        max-width: 240px;
        padding: 16px 0px;
    }
    .shippments .plan-items h3 {
        font-size: 20px;
        line-height: 26px;
    }
    h2 {
        font-size: 30px;
        line-height: 36px;
    }
    footer .footer-inner {
        gap: 80px;
    }
    /* about page */
    .our-purpose .purpose-items {
        gap: 30px;
        margin-bottom: 30px;
    }
    .purpose-inner .purpose-items:nth-child(even) {
        margin-top: 0px;
    }
    .purpose-inner .purpose-items:nth-child(even),
    .purpose-inner .purpose-items:first-child .col-left img {
        margin: 0;
    }
    .our-purpose .purpose-items .col-left {
        width: 40%;
    }
    .our-purpose .purpose-items .col-right {
        width: 60%;
    }
    .deliver .deliver-inner {
        padding: 0px 20px;
    }
    .stats-section .stats-container {
        padding: 40px 0px;
        gap: 60px;
    }
    /* about page */
    /* contact page */
    .contact-banner {
        padding: 190px 0px;
    }
    .contact-banner span {
        font-size: 32px;
        line-height: 38px;
    }
    .contact-form .contact-form-inner {
        padding: 30px;
        gap: 40px;
    }
    .contact-form .col-left p {
        margin: 30px 0px 40px;
    }
    .contact-form-box {
        padding: 28px 30px 40px;
    }
    .contact-form-box .form-row {
        gap: 30px;
    }
    .contact-form .social-contact a {
        max-width: 60px;
        height: 60px;
    }
    .contact-form .social-contact a img {
        width: 30px;
    }
    .contact-form-box .form-row input,
    .contact-form-box .form-row textarea {
        padding: 10px;
    }
    .contact-form .checkbox-row label {
        font-size: 16px;
        line-height: 22px;
    }
    .contact-form .checkbox-row {
        margin: 0px 0px 30px;
    }
    .network h2 {
        margin-bottom: 60px;
    }
    .network-inner {
        gap: 16px;
    }
    .network-inner h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .network-inner a {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 18px;
    }
    .network-inner a img {
        margin-right: 6px;
        width: 20px;
    }
    .network-inner .location-btn a {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 0px;
        max-width: 180px;
    }
    /* contact page */
    /* tracking page */
    .tracking-banner h1 {
        margin-bottom: 20px;
    }
    .tracking-banner span {
        line-height: 42px;
        letter-spacing: 14px;
    }
    .shipping .shipping-inner .col-left {
        padding: 40px;
    }
    .shipping .col-left .tracking-button {
        max-width: 340px;
        padding: 13px 20px 11px 40px;
    }
    .network-container .shipment-header .shipment-number,
    .network-container .shipment-header .shipment-type,
    .network-container .client-footer p {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    .network-container .shipment-header h3 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 6px;
    }
    .network-container .client-footer h4 {
        font-size: 14px;
        line-height: 20px;
    }
    .network-container .client-actions img {
        width: 34px;
        height: 34px;
        margin-left: 6px;
    }
    /* tracking page */
    /* rates page */
    .rates-banner .search {
        max-width: 300px;
    }
    .rates-banner h1 {
        margin-bottom: 30px;
    }
    .courier .courier-inner h2 {
        margin-bottom: 20px;
    }
    .courier .courier-inner p {
        margin-bottom: 30px;
    }
    /* rates page */
}

@media (max-width: 991px) {
    .navbar {
        position: absolute;
        background-color: #fff;
        top: 0;
        width: 60%;
        height: 100vh;
        z-index: 9;
        transition: 0.3s;
        left: -100%;
    }
    .navbar.active {
        left: 0;
        transition: 0.3s;
    }
    header .navbar ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }
    header .toggle-btn {
        display: flex;
    }
    .toggle-btn {
        width: 30px;
        height: 20px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .toggle-btn span {
        display: inline-block;
        width: 100%;
        height: 4px;
        background: #333;
        border-radius: 2px;
        transition: 0.3s ease;
    }
    .toggle-btn.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .toggle-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .toggle-btn.open span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .hero {
        padding: 120px 0px;
    }
    .hero span {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 6px;
    }
    h1 {
        font-size: 36px;
        line-height: 42px;
    }
    .hero-btn a {
        font-size: 14px;
        line-height: 20px;
        max-width: 220px;
        padding: 10px 0px;
    }
    .hero-btn {
        display: flex;
        gap: 30px;
        justify-content: center;
    }
    .hero::before {
        max-width: 200px;
        height: 220px;
    }
    .operate {
        padding: 80px 0px;
    }
    h2 {
        font-size: 26px !important;
        line-height: 32px !important;
        margin-bottom: 10px !important;
    }
    .operate .operate-cards {
        grid-template-columns: 1fr 1fr;
    }
    .about-us {
        padding: 80px 0px;
        background-color: #fff;
    }
    .about-us span {
        font-size: 20px;
        line-height: 26px;
    }
    .cargo .col-left .status-box {
        padding: 10px 10px;
        width: 340px;
    }
    .cargo .col-left .status-box h3 {
        font-size: 24px;
        line-height: 30px;
    }
    .cargo .col-left .status-box span {
        font-size: 16px;
        line-height: 22px;
        color: #000;
    }
    .services .services-btn a {
        max-width: 220px;
        padding: 12px 0px;
        font-size: 16px;
        line-height: 22px;
    }
    .shippments {
        padding: 60px 0px;
    }
    .shippments .efficient-cargo .col-left {
        padding: 20px;
    }
    .shippments .plan-items h3 {
        font-size: 16px;
        line-height: 22px;
    }
    .slick-arrow {
        width: 32px !important;
        height: 32px;
        top: -34px;
    }
    .slick-prev {
        right: 40px;
    }
    .cargo a {
        font-size: 16px;
        line-height: 22px;
        padding: 10px 0px;
        max-width: 200px;
    }
    .customer .slid-items {
        padding: 30px 24px;
        background-color: #F4F4F4;
    }
    .customer .slid-items .quotation {
        width: 40px;
        height: 40px;
    }
    .customer .slid-items .quotation img {
        margin: 0;
        width: 24px;
    }
    .customer {
        padding: 0px 0px 80px;
    }
    .contact-us .contact-inner {
        gap: 40px;
        padding: 80px 0px 60px;
    }
    .sale-together {
        padding: 80px 0px;
    }
    .sale-together h2 {
        margin: 0 !important;
    }
    footer {
        padding: 60px 0px 0px;
    }
    footer .footer-inner {
        gap: 20px;
    }
    footer .col-right form input {
        width: 200px;
        padding: 12px 20px;
        font-size: 16px;
        line-height: 22px;
    }
    footer .col-left p {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    footer .col-right form button {
        width: 100px;
        font-size: 14px;
        padding: 12px 0px;
    }
    footer .col-right .social-link ul {
        gap: 6px;
    }
    /* about page */
    .deliver {
        padding: 80px 0px 0px;
    }
    .team .team-inner {
        gap: 40px;
    }
    .stats-section .stats-container {
        gap: 30px;
    }
    .stats-section .stat-box .stat-number {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    .stats-section .stat-box .stat-label {
        font-size: 18px;
        line-height: 24px;
    }
    .message h2 {
        margin-bottom: 30px !important;
    }
    .message .message-inner {
        gap: 40px;
    }
    .message .message-inner .chairman-profile img {
        width: 140px;
        height: 140px;
    }
    .message .chairman-profile h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 6px;
    }
    .message .chairman-profile span {
        font-size: 16px;
        line-height: 22px;
    }
    .message .message-wrap {
        align-items: end;
    }
    .team .team-inner h4 {
        font-size: 22px;
        line-height: 28px;
        margin: 30px 0px 20px;
    }
    .team h2 {
        margin-bottom: 40px !important;
    }
    /* about page */
    /* contact page */
    .contact-banner {
        padding: 160px 0px;
    }
    .contact-banner span {
        font-size: 24px;
        line-height: 30px;
    }
    .contact-form .contact-form-inner {
        padding: 30px 20px;
        gap: 30px;
    }
    .contact-form-box {
        padding: 20px;
    }
    .contact-form-box .form-row label {
        font-size: 16px;
        line-height: 22px;
    }
    .contact-form-box .form-row {
        gap: 20px;
    }
    .contact-form-box button {
        font-size: 18px;
        line-height: 24px;
        padding: 14px 0px;
    }
    .contact-form .checkbox-row input[type="checkbox"] {
        max-width: 24px;
        height: 24px;
    }
    .contact-form .checkbox-row input[type="checkbox"]:checked::after {
        top: 2px;
        left: 5px;
        font-size: 14px;
    }
    .contact-form-box .form-row input,
    .contact-form-box .form-row textarea {
        margin-top: 6px;
    }
    /* contact page */
    /* tracking page */
    .tracking-banner span {
        font-size: 30px;
        line-height: 36px;
        letter-spacing: 10px;
    }
    .shipping .shipping-inner .col-left {
        padding: 20px;
    }
    .shipping p {
        margin: 20px 0px 30px;
    }
    .shipping .col-left input {
        font-size: 18px;
        line-height: 24px;
    }
    .network-container .road-transport-container {
        width: 100%;
    }
    .network-container .distributors-row {
        grid-template-columns: 1fr 1fr;
    }
    /* tracking page */
    /* rates page */
    .rates-banner {
        padding: 140px 0px 70px;
    }
    .price table th,
    .price table td {
        padding: 12px;
        font-size: 13px;
    }
    .rates-banner .search {
        max-width: 260px;
    }
    .courier {
        padding: 60px 0px;
    }
    .courier .courier-inner a {
        margin: 0;
    }
    .price {
        padding: 60px 20px;
    }
    /* rates page */
}

@media (max-width: 767px) {
    header {
        padding: 6px 20px;
    }
    header .get-btn a {
        width: 140px;
        font-size: 12px;
        line-height: 18px;
        padding: 7px 0px;
    }
    header .dropdown {
        padding: 4px 6px;
    }
    header .quote-country-wrapper {
        gap: 10px;
    }
    .hero {
        padding: 80px 20px;
    }
    .whatsapp-float {
        left: 20px;
        bottom: 0px;
        max-width: 56px;
    }
    .operate .operate-cards {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .operate .operate-cards .card-items {
        margin: 0 auto;
    }
    .hero-btn {
        gap: 10px;
    }
    .hero-btn a {
        max-width: 202px;
        padding: 10px;
    }
    .hero-btn a:last-child {
        max-width: 120px;
    }
    .hero::before {
        max-width: 160px;
        height: 190px;
    }
    .about-us .about-inner,
    .cargo .cargo-inner,
    .shippments .efficient-cargo,
    .shippments .plan,
    .contact-us .contact-inner,
    footer .footer-inner,
    footer .col-right {
        flex-direction: column;
    }
    .about-us p,
    .cargo p,
    .operate p {
        max-width: 100%;
    }
    .contact-us .gallery {
        grid-template-columns: 1fr;
    }
    .operate .card-items h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .operate,
    .about-us,
    .customer {
        padding: 60px 0px;
        text-align: center;
    }
    .about-us .about-inner .col-left,
    .about-us .about-inner .col-right,
    .shippments .efficient-cargo .col-left,
    .shippments .efficient-cargo .col-right {
        width: 100%;
    }
    .cargo,
    .shippments .efficient-cargo {
        text-align: center;
    }
    .cargo .cargo-inner {
        flex-direction: column-reverse;
    }
    .cargo a {
        font-size: 14px;
        line-height: 20px;
        padding: 10px;
        max-width: 190px;
    }
    .cargo .col-left {
        width: 360px;
        height: 251px;
    }
    .cargo .col-left .status-box img {
        width: 40px;
    }
    .cargo .col-left .status-box h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .cargo .col-left .status-box span {
        font-size: 14px;
        line-height: 20px;
    }
    .cargo .col-left .status {
        row-gap: 4px;
        top: 20px;
        right: 20px;
    }
    .cargo .col-left .status-box {
        width: 250px;
    }
    .services .services-inner {
        max-width: 630px;
        height: 400px;
        background-position: center;
    }
    .services .services-btn {
        gap: 10px;
    }
    .services .services-btn a {
        max-width: 168px;
        padding: 10px;
        font-size: 14px;
        line-height: 20px;
    }
    .customer h2,
    .team h2 {
        margin-bottom: 60px !important;
    }
    .shippments .plan {
        flex-direction: column;
        align-items: center;
    }
    .shippments .plan-items {
        max-width: 100%;
    }
    .shippments .efficient-cargo .col-left {
        padding: 20px 20px;
    }
    .contact-us .contact-inner {
        gap: 30px;
        padding: 60px 0px;
    }
    .contact-us .gallery img {
        max-width: 400px;
        margin: 0 auto;
    }
    .contact-us .col-left,
    .contact-us .col-right {
        max-width: 100%;
    }
    .contact-us .col-right {
        margin: 0;
    }
    .contact-us .col-right form input,
    .contact-us .col-right form textarea {
        padding: 10px 12px;
        font-size: 14px;
        line-height: 20px;
    }
    footer::before {
        right: 0;
    }
    footer .col-right {
        grid-template-columns: 1fr 1fr 1fr;
    }
    footer .col-right h3 {
        margin-bottom: 20px;
    }
    footer .col-right .contact-form {
        position: relative;
        padding: 0;
    }
    /* about page */
    .message .message-wrap {
        flex-direction: column-reverse;
    }
    .stats-section .stats-container {
        grid-template-columns: 1fr 1fr;
        margin-top: -51px;
    }
    .tower-pic {
        display: none;
    }
    .team .team-inner {
        gap: 26px;
    }
    h1 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    /* about page */
    /* contact page */
    .contact-banner {
        padding: 130px 0px;
    }
    .contact-form .contact-form-inner {
        flex-direction: column;
    }
    .contact-form .col-left {
        text-align: center;
    }
    .contact-form .social-contact {
        justify-content: center;
    }
    .contact-form .social-contact a {
        max-width: 46px;
        height: 46px;
    }
    .contact-form .social-contact a img {
        width: 20px;
    }
    .contact-form-box .form-row {
        flex-direction: column;
    }
    .contact-form-box .form-row>div {
        display: flex;
        flex-direction: column;
    }
    .contact-form .col-left p {
        margin: 20px 0px 30px;
    }
    .contact-form-box .form-row input,
    .contact-form-box .form-row textarea {
        max-width: 100%;
    }
    .network-inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .network-inner h3 {
        margin: 10px 0px;
    }
    /* contact page */
    /* tracking page */
    .tracking-banner {
        padding: 120px 0px;
    }
    .tracking-banner span {
        font-size: 26px;
        line-height: 32px;
        letter-spacing: 4px;
    }
    .shipping .shipping-inner {
        text-align: center;
    }
    .shipping .shipping-inner .col-left {
        width: 100%;
    }
    .shipping .col-left button {
        max-width: 36px;
        height: 36px;
    }
    .shipping .shipping-inner .col-left {
        padding: 40px;
    }
    .shipping .col-left button img {
        width: 20px;
    }
    .shipping .col-left .tracking-button {
        margin: 0 auto;
    }
    .network-container .road-transport-container {
        flex-direction: column;
    }
    .network-container {
        color: #fff;
        text-align: center;
        padding: 60px 0px 0px;
    }
    .network-container .road-transport-left,
    .network-container .road-transport-center,
    .network-container .road-transport-right {
        max-width: 200px;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .network-container .distributors-row {
        grid-template-columns: 1fr;
    }
    /* tracking page */
    /* rates page */
    .rates-banner {
        padding: 90px 0px 70px;
        background-position: center;
    }
    .rates-banner h1 {
        text-align: center;
    }
    .rates-banner .search {
        margin: 0 auto;
    }
    .courier .courier-inner {
        flex-direction: column;
    }
    .courier .courier-inner a {
        margin: 0 auto;
    }
    .courier .courier-inner .col-left {
        width: 100%;
        text-align: center;
    }
    .courier .courier-inner h2,
    .courier .courier-inner p {
        max-width: 100%;
    }
    .courier .courier-inner a {
        max-width: 210px;
        font-size: 16px;
        line-height: 22px;
    }
    .courier .courier-inner .col-right {
        width: 60%;
    }
    h2 {
        font-size: 24px !important;
        line-height: 30px !important;
    }
    /* rates page */
}

@media (max-width: 640px) {
    .about-us .about-inner .col-right::before {
        bottom: -56px;
        max-width: 120px;
        height: 153px;
    }
    .about-us::before {
        max-width: 134px;
        height: 170px;
    }
    .stats-section .stats-container {
        grid-template-columns: 1fr;
        margin-top: -30px;
    }
    .message h2 {
        text-align: center;
    }
    .message .message-inner,
    .team .team-inner {
        flex-direction: column;
    }
    .message .message-inner p {
        text-align: center;
    }
    .message .message-inner .chairman-profile {
        justify-content: center;
    }
    .our-purpose .purpose-items {
        flex-direction: column;
    }
    .our-purpose .purpose-items .col-left,
    .our-purpose .purpose-items .col-right {
        width: 100%;
    }
    footer .col-right {
        grid-template-columns: 1fr 1fr;
    }
    .courier .courier-inner .col-right {
        width: 100%;
    }
}
