.navbar {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.menu-toggle {
    display: none; /* Hide by default on larger screens */
    cursor: pointer;
}

.menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu-items a {
    color: #fff; /* Set the color to white or any preferred color */
    text-decoration: none; /* Remove underline */
}

.menu-items a:hover {
    color: #ff9900; /* Change color on hover */
}

.menu-items li {
    margin-right: 20px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show on smaller screens */
    }
    .menu-items {
        display: none; /* Hide by default on smaller screens */
        flex-direction: column;
    }
    .menu-items.active {
        display: flex; /* Show when menu is toggled */
    }
}

/* Hamburger icon styling */
.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}



.shipment {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
}

.status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.delivered {
    background-color: #4CAF50; /* Green */
    color: white;
}











.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1dd2ba;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin: 10px;
}

.button-link:hover {
    background-color: #0c2dc4;
}

/* CSS for the back button */
.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #111ed4;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.back-button:hover {
    background-color: #1529db;
}


/* Other existing styles are placed here */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}


.content-container {
    /* Set the dimensions and center the content */
    width: 50%;
    /* Take up the left 50% of the page */
    padding: 20px;
    /* Optional: Add some styles for the content container */
    background-color: rgba(255, 255, 255, 0.8);
    /* Adjust the background color and opacity */
}

.image-container {
    /* Set the dimensions and styles for the image container */
    width: 50%;
    /* Take up the right 50% of the page */
    background-image: url('world.jpg');
    /* Add the background image URL */
    background-size: cover;
    /* Adjust to your preference */
    background-position: center;
    /* Adjust to your preference */
}


header {
    background-color: #062374;
    color: #bbb931;
    text-align: center;
    padding: 1rem;
    width: 100%;
}

/* Style for the header container */
.header-container {
    display: flex;
    /* Use flexbox */
    justify-content: center;
    /* Align items to the end (right side) */
    align-items: center;
    /* Center items vertically */
}

/* Style for the logo */
.logo img {
    width: 200px;
    /* Adjust the width of the logo as needed */
    height: auto;
    /* Maintain aspect ratio */
}

/* Style for the title */
.title {
    margin-right: 10px;
    /* Add some space between the logo and the text */
    margin-left: 5px;
    /* Adjust the margin to move the text slightly to the left */
}

h1 {
    white-space: nowrap;
    /* Prevent line breaks within h1 */
    overflow: hidden;
    /* Hide the overflowed content */
    animation: rotateWords 10s linear infinite;
    /* Adjust the duration and animation timing as needed */
}

main {
    padding: 2rem;
}

.about-page {
    background-size: 500%;
    /* Adjust the background size as needed */
    /*background-position: center; */
    background-size: cover;
    /* Adjust the background size as needed */
    background-repeat: no-repeat;
    /* Prevent the background image from repeating */
    width: 100%;
    height: 100%;  
}

  /* Add styling for the navigation buttons */
.nav-buttons {
    display: flex;
    justify-content: flex-start;
    background-color: #f2f2f2;
    padding: 10px;
}

.nav-button {
    padding: 10px 20px;
    margin-right: 1px;
    text-decoration: none;
    color: #333;
    background-color: #1dd2ba;
    border: 1px solid #11c299;
    border-radius: 4px;
}

.nav-button:hover {
    background-color: #2bd23f;
}

