body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: url('img/remotejob.jpg');/* Add this line for the background image */
    background-color: #f4f4f4;
    /* background-size: cover; Adjust to 'contain' if needed 
    background-position: center;  Adjust if needed 
    background-repeat: no-repeat; */
}

.navbar {
    background-color: #f1eaea;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    /* padding: 10px 20px 22px 20px; */
}

.logo img{
    height: 109px; /* Adjust the height of your logo */
    width: 100px;
    margin-right: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar-left, .navbar-right {
    display: flex;
}

.navbar-left a {
    margin-left: 20px; /* Adjust the spacing between categories */
}

.navbar-right a {
    margin-left: 20px; /* Adjust the spacing between categories */
}

/* Style for colorful boxes */
.navbar a {
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.navbar-left a {
    background-color: #e74c3c;
}

.navbar-right a {
    background-color: #e74c3c;
}

.navbar a:hover {
    background-color: #633a99;
}

/* Adjust the spacing between the logo and the first box */
.navbar-left a:first-child {
    margin-left: 20px;
}


.about-us, .team {
    max-width: 800px;
    margin: 2em auto;
    padding: 1em;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255,255,255,0.9);
}

.media {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.image-container, .video-container {
    flex: 1;
    margin: 0 10px;
}

.footer-banner {
    background-color: #001f3f; /* Dark Blue Background */
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px 20px;
}

.footer-column {
    flex: 1;
    margin-right: 20px; /* Adjust the margin between columns */
}

.company-logo img {
    width: 100px; /* Adjust the size of the company logo */
}

.connect-section,
.quick-links,
.support-links,
.legal-section,
.animation-section {
    text-align: left;
}

.connect-section h3,
.quick-links h3,
.support-links h3,
.legal-section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.connect-section p,
.connect-section a,
.quick-links ul,
.support-links ul,
.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.connect-section p,
.quick-links li,
.support-links li,
.legal-section li {
    margin-bottom: 5px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}






/*Meet our team members*/

.team-members-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-member {
    width: 48%;
    margin-bottom: 20px;
    display: flex;
}

.image-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.info-container {
    flex: 1;
    padding: 0 20px;
    overflow: hidden; /* Add this line to hide overflow */
    position: relative;
}

/* Slide animation */
.slide-animation {
    transform: translateX(100%);
    animation: slide-in 1s forwards;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* ... Remaining CSS code ... */

