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: 60%;
    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;
    /*display: flex;*/
    align-items: flex-end;
}

.image-box img {
    width: 100%;
    transform: translateY(-20%);
}


.cargo-section {
    background-color: #0f0f0f;
    color: white;
    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: #ccc;
}

.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: white;
    position: relative;
}

.cargo-underline::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0.5px;
    width: 45px;
    height: 2px;
    background-color: white;
    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: #ccc;
    line-height: 1.6;
}


.service-tiers {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 150px;
    gap: 40px;
    flex-wrap: wrap;
}

.tier img {
    width: 482px;
    height: 455px;
    object-fit: contain;
}

.tier-text {
    flex: 1;
    max-width: 600px;
}

.tier-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tier-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tier-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.tier-image {
    flex-shrink: 0;
}

.tier.economy {
    background-color: #ffffff;
    color: #0f0f0f;
}

.tier.premium {
    background-color: #1f64e2;
    color: white;
}

.tier.critical {
    background-color: #0f0f0f;
    color: white;
}

.tier-text.white p {
    color: #eaeaea;
}

.blue {
    color: #1f64e2;
}


.freight-options {
    font-family: sans-serif;
    color: #1e1e1e;
}

.top-section {
    text-align: center;
    padding: 40px 20px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 30px;
}

.intro-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.options-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: sans-serif;
}

.options-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto; /* ensures horizontal scrolling on narrow viewports */
}


.option-card {
    background-color: #fff;
    padding: 20px;
    text-align: left;
    width: 250px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    flex-shrink: 0; /* prevents the card from shrinking */
}

.option-card img {
    width: 190px;
    height: 150px;
    display: block;
    margin: 0 auto 20px;
}

.option-card h3 {
    color: #2a64d1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.option-card .divider {
    height: 2px;
    background-color: #2a64d1;
    width: 100%;
    margin-bottom: 15px;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #111;
}


.quote-button {
    margin-top: 20px;
    text-align: center;
}

.quote-button button {
    background-color: #0047bb;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 182px;
    height: 46px;
}

.note {
    font-size: 12px;
    color: #555;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-section {
    background-color: #0052cc;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.bottom-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature {
    max-width: 250px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    line-height: 1.6;
}

.quote-button-bottom {
    margin-top: 20px;
    text-align: center;
}

.quote-button-bottom button {
    background-color: #fff;
    color: #0047bb;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 182px;
    height: 46px;
}

.partner-logos {
  background: #0d0d0d;
  padding: 30px 0;
  text-align: center;
}
.partner-logos img {
  max-width: 100%;
  height: auto;
}

.faq-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.faq-section h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 40px;
}
.faq-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-card {
  background: #f1f1f5;
  border-radius: 20px;
  padding: 25px;
  max-width: 300px;
  text-align: left;
}
.faq-card h3 {
  font-size: 15px;
  color: #2a64d1;
  margin-bottom: 10px;
}
.faq-card p {
  font-size: 13px;
  color: #000;
}

/* === 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: 50px;
    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: 10px;
        overflow-y: auto;
    }

    .nav.mobile-visible {
        display: flex;
    }

    .nav-item {
        font-size: 18px;
        padding: 12px 0;
        color: white;
    }

    /* Dropdown styles for mobile */
    .dropdown-parent {
        flex-direction: column;
    }

    .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;
    }

    /* 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: #111;
        color: white;
        z-index: 2;
    }

    .content h1 {
        font-size: 32px;
    }

    .content p {
        font-size: 14px;
    }

    .content button {
        width: 100%;
        max-width: 186px;
    }

    .info-box {
        flex-wrap: wrap;
        gap: 20px;
        font-size: 16px;
    }

    /* Hide the image box on mobile */
    .image-box {
        display: none;
    }

    /* Cargo section */
    .cargo-section {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .cargo-left h1 {
        font-size: 28px;
    }

    .cargo-left button {
        width: 100%;
        max-width: 283px;
    }

    /* Service tiers */
    .service-tiers {
        padding: 40px 20px;
    }

    .tier {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .tier.premium {
        flex-direction: column-reverse;
    }

    .tier img {
        width: 100%;
        height: auto;
        max-width: 300px;
    }

    /* Freight options */
    .options-container {
        flex-direction: column;
        align-items: center;
    }

    .option-card {
        width: 100%;
        max-width: 300px;
    }

    /* FAQ section */
    .faq-cards {
        flex-direction: column;
        align-items: center;
    }

    .faq-card {
        width: 100%;
        max-width: 300px;
    }

    /* Connect section */
    .steps {
        flex-direction: column;
        margin-left: 0;
        gap: 20px;
    }

    .step {
        max-width: 100%;
    }

    .step-number {
        font-size: 50px;
    }

    .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;
    }

    .socials {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }
}