.team-section {
    margin-top: 120px;
    width: 100%S;
}

.team-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 620px;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-card .card-img-top {
    height: 200px;
    object-fit: cover; /* Ensure images fit well */
    border-bottom: 2px solid rgb(14, 50, 59);
}

.team-card .card-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.team-card .card-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}
