/* My Team Section Styles */
.my-devteam {
    padding: 40px 0;
}

.my-devteam .team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center content horizontally */
    gap: 20px;
    margin: 0 auto;
}

.my-devteam .team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.my-devteam .team-member:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.my-devteam .team-member img {
    width: 200px; /* Adjust the width as desired */
    height: 200px; /* Adjust the height as desired */
    object-fit: contain; /* Ensure the image fits within the container */
    border-radius: 50%; /* Make the image rounded */
    border: 2px solid #ddd;
    margin-left: 55px;
}

.my-devteam .member-info {
    padding: 20px;
    text-align: center;
}

.my-devteam .member-info h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.my-devteam .member-info p {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .my-devteam .team-container {
        flex-direction: column; /* Change to a column layout on small screens */
        align-items: center; /* Center content horizontally on small screens */
    }
}

h5 {
    color: #02236d;
}