body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #111;
}

.logo img {
    height: 40px;
    margin-top: 25px;
    margin-left: 25px;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
    cursor: pointer;
    overflow: visible;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-parent {
    position: relative;
}

/* Dropdown Menu */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: black;
    padding: 10px 0;
    min-width: 160px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Dropdown Links */
.dropdown a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.dropdown a:hover {
    background-color: #f0f0f0;
}

.dropdown-parent:hover .dropdown,
.dropdown:hover {
    display: block;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 14px;
}

.arrow {
    font-size: 10px;
}


.language-dropdown {
    position: relative;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    color: black;
    padding: 10px 0;
    min-width: 160px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Dropdown Links */
.dropdown div {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.dropdown div:hover {
    background-color: #f0f0f0;
}

.language-dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}


.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    color: black;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 10px 0;
    min-width: 100px;
    text-align: center;
}

.dropdown-content div {
    padding: 8px 0;
    cursor: pointer;
}

.dropdown-content div:hover {
    background-color: #f0f0f0;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}


.content {
    background-color: black;
    color: white;
    width: 60%;
    padding: 100px 150px;
    clip-path: polygon(0 0, 65% 0, 95% 90%, 0% 75%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.air-freight-section {
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.content h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content button {
    width: 186px;
    background-color: white;
    color: black;
    border-radius: 20px;
    padding: 10px 24px;
    font-size: 14px;
    margin-bottom: 40px;
    cursor: pointer;
}

.info-box {
    display: flex;
    gap: 40px;
    font-size: 20px;
}

.info-box div {
    line-height: 1.3;
}

.image-box {
    background-color: black;
    width: 100%;
    position: absolute;
    z-index: 1;
    overflow: hidden;
    align-items: flex-end;
}

.image-box img {
    width: 100%;
    transform: translateY(-20%);
}

.cargo-section {
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    padding: 100px 150px;
    gap: 100px;
    position: relative;
}

.cargo-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cargo-left h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cargo-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: black;
}

.cargo-left button {
    background-color: #2a7fff;
    color: white;
    padding: 12px 24px;
    width: 283px;
    height: 45px;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 50px;
}

.cargo-underline {
    width: 100%;
    height: 2px;
    background-color: #2a7fff;
    position: relative;
}

.cargo-underline::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0.5px;
    width: 45px;
    height: 2px;
    background-color: #2a7fff;
    transform: rotate(135deg);
    transform-origin: right center;
}

.cargo-underline-second {
    width: 100%;
    height: 2px;
    background-color: black;
    position: relative;
}

.cargo-underline-second::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0.5px;
    width: 45px;
    height: 2px;
    background-color: black;
    transform: rotate(135deg);
    transform-origin: right center;
}

.cargo-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.cargo-right h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cargo-right p {
    font-size: 14px;
    color: black;
    line-height: 1.6;
}


/* Section 1 - FTL (Image Right) */
.section-ftl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 455px;
    background-color: #0e0e0e;
    color: white;
    padding: 0 40px;
}

.section-ftl .text {
    width: 610px;
    height: 265px;
    display: flex;
    flex-direction: column;
    gap: 27px;
    justify-content: center;
}

.section-ftl img {
    width: 482px;
    height: 455px;
    object-fit: contain;
}


/* Section 2 - LTL (Image Left) */
.section-ltl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 455px;
    background-color: #1e63ff;
    color: white;
    padding: 0 40px;
}

.section-ltl .text {
    width: 609px;
    height: 261px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.section-ltl img {
    width: 482px;
    height: 455px;
    object-fit: contain;
}


/* Section 3 - FTB (Image Right) */
.section-ftb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 455px;
    background-color: #ffffff;
    color: black;
    padding: 0 40px;
}

.section-ftb .text {
    width: 610px;
    height: 243px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.section-ftb img {
    width: 482px;
    height: 455px;
    object-fit: contain;
}


/* Section 4 - Domestic (Image Left) */
.section-domestic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 455px;
    background-color: #0e0e0e;
    color: white;
    padding: 0 40px;
}

.section-domestic .text {
    width: 609px;
    height: 283px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.section-domestic img {
    width: 482px;
    height: 455px;
    object-fit: contain;
}


/* Section 5 - Warehouse (Image Right) */
.section-warehouse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 455px;
    background-color: #1e63ff;
    color: white;
    padding: 0 40px;
}

.section-warehouse .text {
    width: 448px;
    height: 205px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.section-warehouse img {
    width: 482px;
    height: 455px;
    object-fit: contain;
}


/* Shared styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Cargo section */
.cargo-section {
    background-color: #f5f6f8;
    padding: 60px 40px;
}

.cargo-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cargo-left {
    flex: 1;
    position: relative;
    margin-left: 150px;
}

.cargo-left h2 {
    font-size: 28px;
    color: #1a4bcc;
    margin-bottom: 16px;
}

.cargo-left p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.cargo-line {
    width: 60px;
    height: 30px;
    border-bottom: 2px solid black;
    border-left: 2px solid black;
    margin-top: 20px;
}

.cargo-right {
    flex: 1;
    margin-left: 150px;
}

.cargo-feature {
    margin-bottom: 20px;
}

.cargo-feature h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.cargo-feature p {
    font-size: 13px;
    color: #444;
}

/* Brands section */
.brands-section {
    background-color: #111;
    padding: 40px 0;
    text-align: center;
}

.brands-image {
    max-width: 90%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f6fa;
    color: #000;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.faq-card {
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.faq-card-center-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-size: 35px;
    border-radius: 20px;
}

.center-title h1 {
    font-size: 32px;
    font-weight: bold;
}

.faq-card h2 {
    font-size: 16px;
    color: #0050ff;
    margin-bottom: 10px;
}

.faq-card p {
    font-size: 14px;
    color: #333;
}

/* ===== Connect Section ===== */
.connect-section {
    background-color: #0d0d0d;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.connect-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
    margin-left: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    text-align: left;
}

.step-number {
    font-size: 65px;
    font-weight: bold;
    color: #fff;
}

.step p {
    font-size: 22px;
    line-height: 1.4;
    color: #fff;
}

.connect-btn {
    background-color: #1890ff;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.connect-btn:hover {
    background-color: #1476d9;
}

/* ===== Footer Section ===== */
footer {
    padding: 20px 100px;
    background-color: #000;
    color: #fff;
}

.footer-top-border {
    width: 1200px;
    border-top: 2px solid #007bff;
    margin: 0 auto 30px auto;
}

.footer-content {
    display: flex;
    gap: 165px;
}

.footer-logo {
    max-width: 180px;
}

.logo {
    width: 200px;
    height: 71px;
    letter-spacing: -2px;
}

.footer-logo p {
    margin: 15px 0;
    font-weight: 600;
    width: 250px;
}

.socials img {
    margin-right: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

/* Columns */
.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    max-width: 150px;
}

.footer-column p {
    font-size: 13px;
    margin: 5px 0;
}

/* Mobile Menu Toggle Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle.active {
    color: #2a7fff;
}

@media (max-width: 402px) {
    /* Header adjustments */
    .header {
        padding: 15px 20px;
        position: relative;
    }

    .logo img {
        height: 30px;
        margin: 10px 0 0 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(17, 17, 17, 0.98);
        z-index: 1000;
        padding: 80px 30px 30px;
        flex-direction: column;
        gap: 20px;
        overflow-y: auto;
    }

    .nav.mobile-visible {
        display: flex;
    }

    .nav-item {
        font-size: 18px;
        padding: 12px 0;
    }

    /* Dropdown styles for mobile */
    .dropdown-parent {
        flex-direction: column;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-icon {
        font-size: 12px;
        transition: transform 0.3s;
    }

    .dropdown {
        display: none;
        padding-left: 15px;
        margin-top: 10px;
        position: static;
        background: transparent;
        box-shadow: none;
    }

    .dropdown-parent.active .dropdown {
        display: block;
    }

    .dropdown a {
        color: #ccc;
        padding: 10px 0;
        font-size: 16px;
    }

    .dropdown a:hover {
        color: white;
        background: transparent;
    }

    /* Reset hover effects for mobile */
    .dropdown-parent:hover .dropdown {
        display: none;
    }

    .dropdown-parent.active:hover .dropdown {
        display: block;
    }

    /* Language dropdown positioning */
    .language-dropdown {
        position: absolute;
        right: 60px;
        top: 15px;
    }

    /* Hero section */
    .air-freight-section {
        flex-direction: column;
        height: auto;
    }

    .content {
        clip-path: none !important;
        width: 100%;
        padding: 60px 30px;
        background-color: black;
        color: white;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content h1 {
        font-size: 32px;
    }

    .content p {
        font-size: 14px;
    }

    .info-box {
        flex-wrap: wrap;
        gap: 20px;
        font-size: 16px;
    }

    /* Hide the image box on mobile */
    .image-box {
        display: none;
    }

    /* Cargo sections */
    .cargo-section {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .cargo-left, .cargo-right {
        width: 100%;
        margin-left: 0;
    }

    .cargo-left h1 {
        font-size: 28px;
    }

    /* Service sections (FTL, LTL, etc) */
    .section-ftl,
    .section-ltl,
    .section-ftb,
    .section-domestic,
    .section-warehouse {
        flex-direction: column;
        height: auto;
        padding: 60px 30px;
    }

    .section-ftl .text,
    .section-ltl .text,
    .section-ftb .text,
    .section-domestic .text,
    .section-warehouse .text {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .section-ftl img,
    .section-ltl img,
    .section-ftb img,
    .section-domestic img,
    .section-warehouse img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }

    /* Alternate image/text order for mobile */
    .section-ltl,
    .section-domestic {
        flex-direction: column-reverse;
    }

    /* Precise transport section */
    .cargo-container {
        flex-direction: column;
    }

    /* FAQ section */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-card-center-title h1 {
        font-size: 28px;
    }

    /* Connect section */
    .steps {
        flex-direction: column;
        margin-left: 0;
        gap: 20px;
    }

    .step {
        max-width: 100%;
    }

    .step-number {
        font-size: 40px;
    }

    .step p {
        font-size: 18px;
    }

    /* Footer */
    footer {
        padding: 40px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo p {
        width: 100%;
    }

    .socials {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h3 {
        max-width: 100%;
    }
}
