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: 40px;
    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%);
}




/* === Sea Freight Sections (no conflicts) === */

.sea-section {
  padding: 60px 40px;
}

.dark-bg {
  background-color: #111;
  color: #fff;
}

.light-bg {
  background-color: #fff;
  color: #000;
}

.blue-bg {
  background-color: #0070f3;
  color: #fff;
}

.sea-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.sea-container.reverse {
  flex-direction: row-reverse;
}

.sea-left,
.sea-right {
  flex: 1;
  min-width: 300px;
}

.sea-right {
  text-align: right;
}

.sea-section h1,
.sea-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sea-section p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.sea-button {
  background-color: #0070f3;
  border: none;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 20px;
}

.sea-button:hover {
  background-color: #005bd1;
}

.sea-section ul {
  list-style: none;
  padding: 0;
}

.sea-section ul li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.sea-section img {
  width: 482px;
  height: 455px;
  object-fit: contain;
}

.highlight-text {
  color: #1e90ff;
}

.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;
}



/* === Time-sensitive Section === */
.time-section {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f5f5f5;
}

.time-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.time-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-active,
.btn-inactive {
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  min-width: 200px;
}

.btn-active {
  background-color: #0070f3;
  color: #fff;
}

.btn-inactive {
  background-color: #000;
  color: #fff;
}

/* === Brands Section === */
.brands-section {
  background-color: #111;
  padding: 40px 0;
  text-align: center;
}

.brands-img {
  width: 100%;
  max-width: 1500px;
  height: auto;
}

/* === FAQ Section === */
.faq-section {
  background-color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.faq-section h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
}

.faq-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.faq-card {
  background-color: #f2f4f7;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  text-align: left;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.faq-card h4 {
  font-size: 14px;
  color: #0070f3;
  font-weight: bold;
  margin-bottom: 15px;
}

.faq-card p {
  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;
        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;
    }

    /* Sea sections */
    .sea-section {
        padding: 40px 20px;
    }

    .sea-container {
        flex-direction: column;
    }

    .sea-container.reverse {
        flex-direction: column;
    }

    .sea-left,
    .sea-right {
        min-width: 100%;
    }

    .sea-right {
        text-align: center;
    }

    .sea-section img {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Time-sensitive section */
    .time-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* FAQ cards */
    .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;
    }
}