body {
    font-family: 'Tahoma', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #f8f8f8;
    .logo-container {
        display: flex;
        align-items: center;
    }
    .logo-container img {
        height: 50px;
        margin-right: 10px;
    }
    .logo-container h1 {
        font-size: 24px;
        margin: 0;
    }
}
header {
    background-image: url('../img/BG5.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 50px 0;
}
nav {
    background-color: #2c3e50;
    overflow: hidden;
}
nav a {
    float: right;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    background-color: #2980b9;
    color: white;
}
.content {
    padding: 20px;
    text-align: center;
    background-color: #ecf0f1;
    background-image: url('/img/baground\ web\ 2.jpg'); /* Add your image path here */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}
.mentors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.team-member {
    background-color: rgb(132, 193, 197);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 10px;
    text-align: center;
    width: 200px;
    transition: transform 0.2s;
}
.mentors-container {
display: flex;
justify-content: center; /* Align items to the start */
flex-wrap: wrap; /* Wrap to the next line if there's not enough space */
gap: 10px; /* Optional: Add space between items */
}
.mentors-member {
    background-color: rgb(255, 177, 9);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 10px;
    text-align: center;
    width: 200px;
    transition: transform 0.2s;
}
.team-member:hover {
    transform: scale(1.05);
}
.mentors-member:hover {
    transform: scale(1.05);
}
.team-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
.mentors-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.mentors-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
.team-member h3 {
    font-size: 1.2em;
    margin: 10px 0 5px;
    color: #ffffff;
}
.mentors-member h3 {
    font-size: 1.2em;
    margin: 10px 0 5px;
    color: #ffffff;
}
.team-member p {
    margin: 5px 0;
    color: #000000;
}
.mentors-member p {
    margin: 5px 0;
    color: #000000;
}
.team-member .social-icons {
    margin-top: 10px;
}
.mentors-member .social-icons {
    margin-top: 10px;
}
.team-member .social-icons a {
    color: #093950; /* LinkedIn color */
    margin: 0 5px;
    text-decoration: none;
    font-size: 1.5em;
}
.mentors-member .social-icons a {
    color: #45606b; /* LinkedIn color */
    margin: 0 5px;
    text-decoration: none;
    font-size: 1.5em;
}
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}