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: #f6f6f6;
    width: 80%;
    padding: 100px 150px;
    clip-path: polygon(0 0, 45% 0, 70% 100%, 0% 100%);
    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: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.content button {
    width: 186px;
    background-color: black;
    color: white;
    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: #f6f6f6;
    width: 100%;
    position: absolute;
    z-index: 1;
    overflow: hidden;
    align-items: flex-end;
}

.image-box img {
    width: 100%;
    transform: translateY(-20%);
}


/* Warehousing Section */
.warehousing-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.warehousing-section h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.warehousing-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 14px;
    line-height: 1.5;
}

/* Cards - resized to fit all in one horizontal row */
.warehousing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 45px;
    margin-bottom: 20px;
}

.card {
    width: 220px;
    text-align: center;
    flex-shrink: 0;
}

.card img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
}

.card h2 {
    font-size: 18px;
    margin-top: 10px;
}

.connect-btn {
    background-color: #0094ff;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

/* Services Section */
.services-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-weight: bold;
}

.services-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.services-columns {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.services-list {
    list-style: disc inside;
    text-align: left;
    font-size: 14px;
    line-height: 2;
    margin: 0;
    padding: 0;
}


/* --- Map Section --- */
.map-section {
    background-color: #1976f2;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.map-image {
    width: 100%;
    max-width: 850px;
    margin-bottom: 30px;
}

.map-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}

.map-locations p {
    font-size: 13px;
    margin: 5px 0;
}

.connect-button {
    margin-top: 30px;
    padding: 10px 25px;
    background-color: white;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* --- Solutions Section --- */
.solutions-section {
    background-color: #111;
    color: white;
    padding: 60px 30px;
    text-align: center;
}

.solutions-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
}

.solutions-columns {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    text-align: left;
}

.column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.column ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.6;
}

/* --- FAQ Section --- */
.faq-section {
    background-color: #f6f6f6;
    padding: 60px 20px;
    text-align: center;
}

.faq-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
}

.faq-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-card {
    background-color: white;
    width: 288px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.faq-card h3 {
    color: #1e63ff;
}

.faq-heading {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.faq-text {
    font-size: 13px;
    line-height: 1.6;
}

/* === 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;
}

/* ===== MOBILE STYLES (max-width: 402px) ===== */
@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: 21px;
    }


    /* 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;
    }

    /* Warehousing cards */
    .warehousing-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 220px;
    }

    /* Services columns */
    .services-columns {
        flex-direction: column;
        gap: 20px;
    }

    /* Map section */
    .map-locations p {
        text-align: left;
        padding: 0 15px;
    }

    /* Solutions columns */
    .solutions-columns {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    /* FAQ cards */
    .faq-container {
        flex-direction: column;
        align-items: center;
    }

    .faq-card {
        width: 100%;
        max-width: 288px;
    }

    /* Connect section steps */
    .steps {
        flex-direction: column;
        margin-left: 0;
        gap: 20px;
    }

    /* 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%;
    }
}