body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    text-align: center;
}

/* Top Section */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: white;
    padding: 20px;
}

.logo img {
    width: 80px;
    margin-right: 20px;
}

.company-info h1 {
    margin: 0;
}

/* Who We Are */
.who-we-are {
    padding: 40px 20px;
    background: white;
}

/* Projects Section */
.projects {
    padding: 40px 20px;
    background: #eaeaea;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    width: 60%;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.project {
    min-width: 100%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

button {
    background: #333;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

button:hover {
    background: #555;
}

.leaders {
    display: flex;
    flex-direction: column; /* Stack leaders vertically */
    align-items: center;
    gap: 40px; /* Adjust space between rows */
    margin-top: 40px;
}

.leader {
    display: flex;
    width: 80%; /* Adjust width as needed */
    max-width: 900px; /* Prevent it from stretching too wide */
    height: 150px;
}

.leader:nth-child(odd) {
    justify-content: flex-start; /* Left-align odd items */
    text-align: left;
}

.leader:nth-child(even) {
    justify-content: flex-end; /* Right-align even items */
    text-align: right;
}

.leader img, 
.leader img {
    width: 150px;
    height: 150px;
    border-radius: 50%;

}

.leader-text {
    margin-right: 5%;
    margin-left: 5%;
}

.footer {
    background: #333;
    color: white;
    padding: 10px;
}
