.page-banner {
    background: #E65C00;
    color: white;
    padding: 60px;
    text-align: center;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px;
}

.team-card {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-5px);
}

.avatar {
    width: 150px; /* Increased size from 70px to 150px */
    height: 150px; /* Increased size from 70px to 150px */
    background: var(--iimj-orange);
    color: white;
    /* border-radius: 50%; <-- Removed to make it square */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    overflow: hidden; 
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportions clean without distortion */
}

.team-card h3 {
    color: var(--iimj-blue);
    margin-bottom: 5px;
}

.team-card p {
    color: #666;
    font-size: 14px;
}