.founders-container {
    row-gap: 20px;
    column-gap: 10px;
}

.founder-card {
    /* background: #fff; */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.founder-card:hover {
    transform: translateY(-5px);
}

/* .founder-img-container {

} */

.founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.2rem;
}

.founder-name {
    margin-bottom: 0.2rem;
}

.founders-desig {
    text-align: center;
    margin-bottom: 0.2rem;
}

.founder-desc {
    text-align: center;
    margin-bottom: 0.2rem;
}